/* ============================================
   YARN NOTE — Landing Page Styles
   Aesthetic: "Australian Earth" — warm, layered,
   organic textures with confident typography
   ============================================ */

/* --- Custom Properties --- */
:root {
  --cream: #FFF8F0;
  --cream-dark: #F7EDDF;
  --sand: #F5EDE3;
  --sand-dark: #E8DDD0;
  --bark: #8B7355;
  --bark-light: #A8956E;
  --bark-dark: #6E5A42;
  --earth: #6B5B3E;
  --warmblack: #2C2416;
  --warm-gray: #9B9384;
  --warm-gray-light: #B8AFA4;
  --sage: #7A8B6F;
  --sage-light: #E8EDE5;
  --sage-dark: #5F6E54;
  --clay: #C4735B;
  --clay-light: #F2DCD4;
  --clay-dark: #A85D47;
  --sky: #5B8FA8;
  --sky-light: #D4E8F0;
  --sky-dark: #477387;
  --white: #FFFFFF;

  --font-heading: 'Fraunces', 'Georgia', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;

  --shadow-sm: 0 1px 3px rgba(44,36,22,0.06);
  --shadow-md: 0 4px 16px rgba(44,36,22,0.08);
  --shadow-lg: 0 8px 32px rgba(44,36,22,0.12);
  --shadow-xl: 0 16px 48px rgba(44,36,22,0.16);
  --shadow-glow: 0 0 40px rgba(196,115,91,0.2);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-spring: cubic-bezier(0.22, 1.2, 0.36, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--warmblack);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--warmblack);
}

h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--earth);
}

.text-warm-gray { color: var(--warm-gray); }
.text-clay { color: var(--clay); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
}

/* --- Noise Texture Overlay --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-out-expo);
  background: transparent;
}

.nav.scrolled {
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(139, 115, 85, 0.1);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--warmblack);
  letter-spacing: -0.02em;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--earth);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clay);
  border-radius: 1px;
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover { color: var(--warmblack); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  background: var(--clay);
  color: var(--white) !important;
  border-radius: var(--radius-2xl);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 2px 12px rgba(196, 115, 91, 0.3);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--clay-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(196, 115, 91, 0.4);
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--warmblack);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: var(--cream);
    box-shadow: -8px 0 40px rgba(44, 36, 22, 0.15);
    transition: right 0.5s var(--ease-out-expo);
    padding: 40px;
  }

  .nav-links.open { right: 0; }

  .nav-links a { font-size: 1.2rem; }
  .nav-cta { text-align: center; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Animated warm gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(196,115,91,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(91,143,168,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(122,139,111,0.06) 0%, transparent 50%),
    var(--cream);
  animation: heroShift 20s ease-in-out infinite alternate;
}

@keyframes heroShift {
  0% { background-position: 0% 0%, 100% 0%, 50% 50%; }
  50% { background-position: 20% 20%, 80% 30%, 40% 60%; }
  100% { background-position: 10% 40%, 90% 10%, 60% 40%; }
}

/* Decorative shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  animation: float 12s ease-in-out infinite alternate;
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(196,115,91,0.1);
  top: -100px;
  right: -50px;
  animation-duration: 15s;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(91,143,168,0.08);
  bottom: -50px;
  left: -100px;
  animation-duration: 18s;
  animation-delay: -3s;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: rgba(122,139,111,0.08);
  top: 30%;
  left: 50%;
  animation-duration: 12s;
  animation-delay: -6s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--sage-light);
  color: var(--sage-dark);
  border-radius: var(--radius-2xl);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.2s forwards;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.4s forwards;
}

.hero-title .accent {
  color: var(--clay);
  font-style: italic;
  position: relative;
}

.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(196,115,91,0.15);
  border-radius: 4px;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--earth);
  margin-bottom: 36px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.8s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: fadeUp 1s var(--ease-out-expo) 0.6s forwards;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--white);
  border-radius: 36px;
  border: 3px solid var(--sand-dark);
  box-shadow:
    var(--shadow-xl),
    inset 0 0 0 1px rgba(255,255,255,0.5),
    0 32px 80px rgba(44,36,22,0.2);
  overflow: hidden;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--warmblack);
  border-radius: 0 0 20px 20px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--cream);
  padding: 44px 20px 20px;
  display: flex;
  flex-direction: column;
}

.phone-greeting {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--warmblack);
  margin-bottom: 4px;
}

.phone-subgreeting {
  font-size: 0.75rem;
  color: var(--warm-gray);
  margin-bottom: 20px;
}

.phone-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
}

.phone-card-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--warmblack);
  margin-bottom: 4px;
}

.phone-card-desc {
  font-size: 0.68rem;
  color: var(--warm-gray);
  line-height: 1.5;
}

.phone-cta-btn {
  background: var(--clay);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 14px;
  text-align: center;
  font-weight: 600;
  font-size: 0.82rem;
  margin-top: auto;
  margin-bottom: 8px;
  box-shadow: 0 2px 12px rgba(196,115,91,0.3);
}

.phone-voice-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--sky-light);
  color: var(--sky-dark);
  border-radius: var(--radius-xl);
  padding: 12px;
  text-align: center;
  font-weight: 500;
  font-size: 0.78rem;
}

/* Floating elements around phone */
.phone-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  animation: floatCard 6s ease-in-out infinite alternate;
}

.phone-float-1 {
  top: 60px;
  right: -40px;
  color: var(--sage-dark);
  animation-delay: -1s;
}

.phone-float-2 {
  bottom: 120px;
  left: -50px;
  color: var(--sky-dark);
  animation-delay: -3s;
}

.phone-float-3 {
  bottom: 40px;
  right: -30px;
  color: var(--clay-dark);
  animation-delay: -5s;
}

.phone-float-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-float-icon.sage-bg { background: var(--sage-light); }
.phone-float-icon.sky-bg { background: var(--sky-light); }
.phone-float-icon.clay-bg { background: var(--clay-light); }

.phone-float-icon svg {
  width: 18px;
  height: 18px;
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

@media (max-width: 968px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; margin-bottom: 36px; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 20px; }
  .phone-float { display: none; }
}

@media (max-width: 480px) {
  .phone-mockup { width: 240px; height: 480px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-2xl);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 2px 16px rgba(196, 115, 91, 0.3);
}

.btn-primary:hover {
  background: var(--clay-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 115, 91, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--earth);
  border: 2px solid var(--sand-dark);
}

.btn-ghost:hover {
  background: var(--sand);
  border-color: var(--bark-light);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust {
  padding: 48px 0;
  border-top: 1px solid rgba(139,115,85,0.08);
  border-bottom: 1px solid rgba(139,115,85,0.08);
  background: rgba(245,237,227,0.3);
}

.trust-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--warm-gray-light);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.trust-logo:hover { opacity: 1; }

.trust-logo-shape {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--sand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-logo-shape svg {
  width: 20px;
  height: 20px;
  color: var(--warm-gray);
}

/* ============================================
   FEATURES BENTO GRID
   ============================================ */
.features {
  background: var(--cream);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clay);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--warm-gray);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bento-card {
  border-radius: var(--radius-2xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  cursor: default;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bento-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease-spring);
}

.bento-card:hover .bento-card-icon {
  transform: scale(1.08) rotate(-2deg);
}

.bento-card-icon svg {
  width: 28px;
  height: 28px;
}

.bento-card h3 {
  margin-bottom: 10px;
}

.bento-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
}

/* Decorative corner shape */
.bento-card::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  bottom: -60px;
  right: -60px;
  opacity: 0.08;
  transition: opacity 0.4s, transform 0.4s var(--ease-out-expo);
}

.bento-card:hover::after {
  opacity: 0.12;
  transform: scale(1.1);
}

/* Card variants */
.bento-sky {
  background: linear-gradient(135deg, var(--sky-light) 0%, #EAF3F8 100%);
}
.bento-sky .bento-card-icon { background: rgba(91,143,168,0.15); color: var(--sky-dark); }
.bento-sky h3 { color: var(--sky-dark); }
.bento-sky p { color: var(--sky); }
.bento-sky::after { background: var(--sky); }

.bento-sage {
  background: linear-gradient(135deg, var(--sage-light) 0%, #EFF3ED 100%);
}
.bento-sage .bento-card-icon { background: rgba(122,139,111,0.15); color: var(--sage-dark); }
.bento-sage h3 { color: var(--sage-dark); }
.bento-sage p { color: var(--sage); }
.bento-sage::after { background: var(--sage); }

.bento-clay {
  background: linear-gradient(135deg, var(--clay-light) 0%, #F7E6E0 100%);
}
.bento-clay .bento-card-icon { background: rgba(196,115,91,0.15); color: var(--clay-dark); }
.bento-clay h3 { color: var(--clay-dark); }
.bento-clay p { color: var(--clay); }
.bento-clay::after { background: var(--clay); }

.bento-bark {
  background: linear-gradient(135deg, var(--sand) 0%, var(--cream-dark) 100%);
}
.bento-bark .bento-card-icon { background: rgba(139,115,85,0.15); color: var(--bark-dark); }
.bento-bark h3 { color: var(--bark-dark); }
.bento-bark p { color: var(--bark); }
.bento-bark::after { background: var(--bark); }

@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card { padding: 28px; min-height: auto; }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

/* Top wave divider */
.how-it-works::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  margin-top: 20px;
}

/* Connecting line */
.steps-line {
  position: absolute;
  top: 44px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--clay-light), var(--clay), var(--clay-light));
  border-radius: 1px;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--clay-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease-spring);
}

.step:hover .step-number {
  border-color: var(--clay);
  transform: scale(1.08);
  box-shadow: var(--shadow-glow);
}

.step-number svg {
  width: 36px;
  height: 36px;
  color: var(--clay);
}

.step h3 {
  margin-bottom: 8px;
  color: var(--warmblack);
}

.step p {
  font-size: 0.95rem;
  max-width: 260px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .steps-container { grid-template-columns: 1fr; gap: 48px; }
  .steps-line {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--clay-light), var(--clay), var(--clay-light));
  }
  .how-it-works::before { height: 40px; }
}

/* ============================================
   APP SHOWCASE
   ============================================ */
.showcase {
  background: var(--warmblack);
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
}

.showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(196,115,91,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 70% 30%, rgba(91,143,168,0.06) 0%, transparent 60%);
}

.showcase .section-label { color: var(--clay-light); }
.showcase .section-header h2 { color: var(--cream); }
.showcase .section-header p { color: var(--warm-gray); }

.showcase-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 24px 20px;
  scrollbar-width: none;
}

.showcase-scroll::-webkit-scrollbar { display: none; }

.showcase-card {
  flex: 0 0 300px;
  scroll-snap-align: center;
  background: rgba(255,248,240,0.06);
  border: 1px solid rgba(255,248,240,0.08);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  backdrop-filter: blur(10px);
}

.showcase-card:hover {
  background: rgba(255,248,240,0.1);
  border-color: rgba(255,248,240,0.15);
  transform: translateY(-4px);
}

.showcase-screen {
  height: 400px;
  background: var(--cream);
  margin: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.showcase-screen-header {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--warmblack);
  margin-bottom: 4px;
}

.showcase-screen-sub {
  font-size: 0.72rem;
  color: var(--warm-gray);
  margin-bottom: 16px;
}

.showcase-screen-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.showcase-line {
  height: 8px;
  border-radius: 4px;
  background: var(--sand);
}

.showcase-line.w-full { width: 100%; }
.showcase-line.w-3-4 { width: 75%; }
.showcase-line.w-1-2 { width: 50%; }
.showcase-line.w-2-3 { width: 66%; }

.showcase-block {
  background: var(--sand);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-top: 8px;
}

.showcase-block-sm {
  height: 6px;
  border-radius: 3px;
  background: var(--sand-dark);
  margin-bottom: 6px;
}

.showcase-block-sm:last-child { margin-bottom: 0; }

.showcase-card-label {
  padding: 16px 20px;
  text-align: center;
}

.showcase-card-label h4 {
  color: var(--cream);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.showcase-card-label p {
  color: var(--warm-gray);
  font-size: 0.78rem;
}

/* ============================================
   STATS
   ============================================ */
.stats {
  background: var(--cream);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-2xl);
  background: var(--white);
  border: 1px solid rgba(139,115,85,0.08);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out-expo);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139,115,85,0.15);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--clay-light);
  color: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--warmblack);
  line-height: 1.2;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--warm-gray);
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial {
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.testimonial-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 1;
  color: var(--clay-light);
  margin-bottom: -20px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  color: var(--warmblack);
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clay-light), var(--sky-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--clay-dark);
}

.testimonial-info h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--warmblack);
  text-align: left;
}

.testimonial-info p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  text-align: left;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.pricing-card {
  border-radius: var(--radius-2xl);
  padding: 40px;
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-free {
  background: var(--white);
  border: 2px solid var(--sand-dark);
}

.pricing-free:hover { box-shadow: var(--shadow-md); }

.pricing-pro {
  background: var(--warmblack);
  color: var(--cream);
  box-shadow: var(--shadow-xl);
}

.pricing-pro:hover { box-shadow: 0 20px 60px rgba(44,36,22,0.25); }

.pricing-popular {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--clay);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-2xl);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pricing-free .pricing-desc { color: var(--warm-gray); }
.pricing-pro .pricing-desc { color: var(--warm-gray-light); }

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}

.pricing-dollar {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-period {
  font-size: 0.95rem;
  color: var(--warm-gray);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-free .pricing-features li svg { color: var(--sage); }
.pricing-pro .pricing-features li svg { color: var(--clay); }
.pricing-pro .pricing-features li { color: rgba(255,248,240,0.85); }

.pricing-btn {
  width: 100%;
  text-align: center;
}

.pricing-pro .btn-primary {
  background: var(--clay);
}

.pricing-pro .btn-primary:hover {
  background: var(--clay-dark);
}

.pricing-free .btn-ghost {
  border-color: var(--bark-light);
  color: var(--bark);
}

.pricing-free .btn-ghost:hover {
  background: var(--sand);
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--sand) 0%, var(--clay-light) 50%, var(--sky-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(255,248,240,0.5) 0%, transparent 60%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.1rem;
  margin-bottom: 36px;
  color: var(--earth);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--warmblack);
  color: var(--warm-gray);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--warm-gray);
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,248,240,0.08);
  font-size: 0.82rem;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-aus-icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================
   MOBILE OVERLAY
   ============================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 36, 22, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   SMOOTH SCROLL BAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--sand-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--bark-light);
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
  background: rgba(196, 115, 91, 0.2);
  color: var(--warmblack);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
