/* ============================================================
   IRONBARK DIGITAL — Design System
   Palette: Australian bush — red ironbark, warm sand, slate sky, olive
   Fonts: Zodiak (display) + General Sans (body)
   ============================================================ */

/* ── Type Scale ─────────────────────────────────────────── */
:root {
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    7rem);
}

/* ── Spacing ─────────────────────────────────────────────── */
:root {
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

/* ── Colour: Light Mode ──────────────────────────────────── */
:root, [data-theme="light"] {
  /* Surfaces — warm sandy earth */
  --color-bg:              #f5f2ed;
  --color-surface:         #f8f6f1;
  --color-surface-2:       #faf9f6;
  --color-surface-offset:  #ede9e2;
  --color-surface-dynamic: #e3ddd5;
  --color-divider:         #d8d2c8;
  --color-border:          #cec8bc;

  /* Text */
  --color-text:            #231e17;
  --color-text-muted:      #6b6459;
  --color-text-faint:      #b5afa6;
  --color-text-inverse:    #f8f6f1;

  /* Primary — Red Ironbark (deep rust-red bark) */
  --color-primary:         #8b3a2a;
  --color-primary-hover:   #6e2c1e;
  --color-primary-active:  #521f14;
  --color-primary-highlight: #e8d5d0;

  /* Accent — Olive Scrub */
  --color-accent:          #5a6b3c;
  --color-accent-hover:    #465430;
  --color-accent-highlight: #d6ddc8;

  /* Neutral dark — used for headings on light bg */
  --color-ink:             #1c1712;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px oklch(0.15 0.02 50 / 0.07);
  --shadow-md: 0 4px 12px oklch(0.15 0.02 50 / 0.10);
  --shadow-lg: 0 12px 32px oklch(0.15 0.02 50 / 0.14);

  /* Layout */
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:   1200px;

  /* Fonts */
  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body:    'General Sans', 'Helvetica Neue', sans-serif;
}

/* ── Colour: Dark Mode ───────────────────────────────────── */
[data-theme="dark"] {
  --color-bg:              #18140f;
  --color-surface:         #1e1a14;
  --color-surface-2:       #221d17;
  --color-surface-offset:  #1b1712;
  --color-surface-dynamic: #2a2520;
  --color-divider:         #2e2822;
  --color-border:          #3a342d;
  --color-text:            #d4cec6;
  --color-text-muted:      #837d74;
  --color-text-faint:      #564f47;
  --color-text-inverse:    #231e17;
  --color-primary:         #d4735e;
  --color-primary-hover:   #bf5a44;
  --color-primary-active:  #a8432e;
  --color-primary-highlight: #3d2820;
  --color-accent:          #8fa36a;
  --color-accent-hover:    #748b52;
  --color-accent-highlight: #2c3422;
  --color-ink:             #e8e2d9;
  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.25);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.45);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:              #18140f;
    --color-surface:         #1e1a14;
    --color-surface-2:       #221d17;
    --color-surface-offset:  #1b1712;
    --color-surface-dynamic: #2a2520;
    --color-divider:         #2e2822;
    --color-border:          #3a342d;
    --color-text:            #d4cec6;
    --color-text-muted:      #837d74;
    --color-text-faint:      #564f47;
    --color-text-inverse:    #231e17;
    --color-primary:         #d4735e;
    --color-primary-hover:   #bf5a44;
    --color-primary-active:  #a8432e;
    --color-primary-highlight: #3d2820;
    --color-accent:          #8fa36a;
    --color-accent-hover:    #748b52;
    --color-accent-highlight: #2c3422;
    --color-ink:             #e8e2d9;
  }
}

/* ============================================================
   GLOBAL COMPONENTS
   ============================================================ */

/* ── Header / Nav ────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition);
}
.site-header--scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav-logo { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; color: var(--color-text); }
.nav-logo-text { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; letter-spacing: -0.01em; }
.nav-logo-text span { color: var(--color-primary); }

.nav-links { display: flex; align-items: center; gap: var(--space-8); list-style: none; }
.nav-links a { text-decoration: none; font-size: var(--text-sm); font-weight: 500; color: var(--color-text-muted); letter-spacing: 0.01em; }
.nav-links a:hover { color: var(--color-primary); }

.nav-cta {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--color-primary); color: var(--color-text-inverse);
  padding: var(--space-3) var(--space-5); border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 600; text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-cta:hover { background: var(--color-primary-hover); }

.nav-theme-toggle {
  background: none; border: 1px solid var(--color-border);
  border-radius: var(--radius-full); padding: var(--space-2);
  color: var(--color-text-muted); display: flex; align-items: center;
  cursor: pointer;
}
.nav-theme-toggle:hover { color: var(--color-text); border-color: var(--color-text-muted); }

.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: var(--space-2); }
.nav-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--color-text); border-radius: 2px; transition: all 0.3s; }

/* ── Mobile Nav ──────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: var(--color-bg);
  flex-direction: column;
  padding: var(--space-24) var(--space-8) var(--space-8);
  gap: var(--space-6);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a { font-family: var(--font-display); font-size: var(--text-xl); color: var(--color-text); text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--color-divider); padding-bottom: var(--space-4); }
.mobile-nav a:hover { color: var(--color-primary); }
.mobile-nav .mobile-cta { background: var(--color-primary); color: var(--color-text-inverse) !important; text-align: center; border-radius: var(--radius-lg); border: none; padding: var(--space-4); margin-top: var(--space-4); }

/* ── Section wrapper ─────────────────────────────────────── */
.section { padding-block: clamp(var(--space-16), 8vw, var(--space-32)); }
.section--alt { background: var(--color-surface); }
.section--dark { background: var(--color-ink); color: var(--color-text-inverse); }

.container {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-inline: var(--space-6);
}
.container--narrow { max-width: var(--content-narrow); }
.container--default { max-width: var(--content-default); }

/* ── Section labels ──────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--color-primary); border-radius: 2px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-4) var(--space-8); border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 600; text-decoration: none;
  cursor: pointer; border: 2px solid transparent; letter-spacing: 0.02em;
  transition: all var(--transition);
}
.btn-primary { background: var(--color-primary); color: var(--color-text-inverse); border-color: var(--color-primary); }
.btn-primary:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); }
.btn-outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary-highlight); }
.btn-ghost { background: transparent; color: var(--color-text-muted); border-color: var(--color-border); }
.btn-ghost:hover { border-color: var(--color-text-muted); color: var(--color-text); }
.btn-white { background: white; color: var(--color-ink); }
.btn-white:hover { background: var(--color-surface-offset); }

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--color-ink);
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('./assets/hero-bg.jpg');
  background-size: cover; background-position: center 30%;
  opacity: 0.35;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,
    oklch(0.12 0.04 40 / 0.9) 0%,
    oklch(0.12 0.04 40 / 0.6) 60%,
    oklch(0.25 0.06 120 / 0.4) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-16) var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  width: 100%;
}

.hero-left { display: flex; flex-direction: column; gap: var(--space-8); }

.hero-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: oklch(from var(--color-primary) l c h / 0.2);
  border: 1px solid oklch(from var(--color-primary) l c h / 0.4);
  color: #e8a898; padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full); font-size: var(--text-xs);
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  width: fit-content;
}
.hero-badge .dot { width: 6px; height: 6px; background: #e8a898; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #fff8f0;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero-headline em { font-style: normal; color: #f09070; }

.hero-sub {
  font-size: var(--text-lg);
  color: #ddd5c8;
  line-height: 1.6;
  max-width: 52ch;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; }
.hero-actions .btn { padding: var(--space-5) var(--space-8); font-size: var(--text-base); }

.hero-trust { display: flex; align-items: center; gap: var(--space-3); }
.hero-trust-stars { color: #d4a853; font-size: var(--text-base); letter-spacing: 1px; }
.hero-trust p { font-size: var(--text-sm); color: #9b9488; }
.hero-trust p strong { color: #c8c0b4; }

/* Hero Form Card */
.hero-form-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}
[data-theme="dark"] .hero-form-card,
@media (prefers-color-scheme: dark) { :root:not([data-theme]) .hero-form-card {
  background: #221d17;
}}

.form-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.form-card-sub { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-6); }

.form-group { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-5); }
.form-group label { font-size: var(--text-sm); font-weight: 600; color: var(--color-text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: var(--text-sm);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-highlight);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%236b6459' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right var(--space-4) center;
  padding-right: var(--space-10);
}

.form-submit {
  width: 100%;
  padding: var(--space-4) var(--space-6);
  background: var(--color-primary);
  color: white; border: none; border-radius: var(--radius-full);
  font-size: var(--text-base); font-weight: 700;
  cursor: pointer; letter-spacing: 0.02em;
  display: flex; align-items: center; justify-content: center; gap: var(--space-2);
}
.form-submit:hover { background: var(--color-primary-hover); }
.form-submit:active { background: var(--color-primary-active); transform: translateY(1px); }

.form-privacy { font-size: var(--text-xs); color: var(--color-text-faint); text-align: center; margin-top: var(--space-3); }

/* ── Stat Strip ──────────────────────────────────────────── */
.stat-strip {
  background: var(--color-primary);
  padding: var(--space-6) 0;
}
.stat-grid {
  max-width: var(--content-wide); margin: 0 auto; padding-inline: var(--space-6);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display); font-size: var(--text-2xl);
  font-weight: 700; color: white; line-height: 1;
}
.stat-label { font-size: var(--text-xs); color: oklch(from white l c h / 0.75); letter-spacing: 0.06em; text-transform: uppercase; margin-top: var(--space-1); }

/* ── Problem / Pain Points ───────────────────────────────── */
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6); margin-top: var(--space-12);
}
.problem-card {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.problem-icon { font-size: 2rem; margin-bottom: var(--space-4); }
.problem-card h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--color-text); margin-bottom: var(--space-3); }
.problem-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.65; }

/* ── How It Works ────────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8); margin-top: var(--space-12);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 28px; left: calc(16.67% + 28px); right: calc(16.67% + 28px);
  height: 2px; background: var(--color-divider);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  background: var(--color-primary); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700;
  margin: 0 auto var(--space-6);
}
.step h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--color-text); margin-bottom: var(--space-3); }
.step p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: 30ch; margin: 0 auto; line-height: 1.65; }

/* ── Services / Packages ─────────────────────────────────── */
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6); margin-top: var(--space-12); align-items: start;
}
.package-card {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  background: var(--color-surface);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.package-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.package-card.featured {
  border-color: var(--color-primary);
  background: var(--color-surface-2);
}
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--color-primary); color: white;
  padding: var(--space-1) var(--space-4); border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
}
.package-name { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-muted); margin-bottom: var(--space-3); }
.package-price { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--color-text); line-height: 1; margin-bottom: var(--space-2); }
.package-price span { font-size: var(--text-sm); font-weight: 400; color: var(--color-text-muted); font-family: var(--font-body); }
.package-desc { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-6); line-height: 1.65; }
.package-divider { height: 1px; background: var(--color-divider); margin-bottom: var(--space-6); }
.package-features { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-8); }
.package-features li { display: flex; align-items: flex-start; gap: var(--space-3); font-size: var(--text-sm); color: var(--color-text); }
.package-features li::before { content: '✓'; color: var(--color-accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.package-cta { width: 100%; display: block; text-align: center; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6); margin-top: var(--space-12);
}
.testimonial-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
.testimonial-stars { color: #d4a853; font-size: var(--text-sm); margin-bottom: var(--space-4); letter-spacing: 2px; }
.testimonial-quote { font-size: var(--text-base); color: var(--color-text); line-height: 1.65; font-style: italic; margin-bottom: var(--space-6); max-width: none; }
.testimonial-author { display: flex; align-items: center; gap: var(--space-3); }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-primary-highlight);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm);
  color: var(--color-primary);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: var(--text-sm); color: var(--color-text); }
.testimonial-role { font-size: var(--text-xs); color: var(--color-text-muted); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-12); max-width: 760px; margin-inline: auto; }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-5) var(--space-6); background: var(--color-surface);
  font-size: var(--text-base); font-weight: 600; color: var(--color-text);
  cursor: pointer; text-align: left; gap: var(--space-4);
}
.faq-question:hover { background: var(--color-surface-offset); }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; background: var(--color-primary-highlight); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-primary); font-size: 1.2rem; font-weight: 700; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 var(--space-6) var(--space-5); font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--color-ink);
  position: relative; overflow: hidden;
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background-image: url('./assets/cta-bg.jpg');
  background-size: cover; background-position: center;
  opacity: 0.15;
}
.cta-banner-content {
  position: relative; z-index: 1;
  max-width: var(--content-default); margin: 0 auto;
  padding-inline: var(--space-6); text-align: center;
}
.cta-banner h2 { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: #f5f0e8; margin-bottom: var(--space-5); letter-spacing: -0.02em; }
.cta-banner p { font-size: var(--text-lg); color: #9b9488; margin-bottom: var(--space-10); max-width: 52ch; margin-inline: auto; }
.cta-banner .btn { padding: var(--space-5) var(--space-10); font-size: var(--text-base); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--color-ink);
  border-top: 1px solid oklch(from white l c h / 0.08);
  padding: var(--space-16) 0 var(--space-8);
}
.footer-grid {
  max-width: var(--content-wide); margin: 0 auto; padding-inline: var(--space-6);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12); margin-bottom: var(--space-12);
}
.footer-brand p { font-size: var(--text-sm); color: #837d74; margin-top: var(--space-4); max-width: 36ch; line-height: 1.65; }
.footer-col h4 { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #6e6860; margin-bottom: var(--space-4); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { font-size: var(--text-sm); color: #837d74; text-decoration: none; }
.footer-col a:hover { color: #d4735e; }
.footer-bottom {
  max-width: var(--content-wide); margin: 0 auto; padding-inline: var(--space-6);
  border-top: 1px solid oklch(from white l c h / 0.07);
  padding-top: var(--space-6);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-4);
}
.footer-bottom p { font-size: var(--text-xs); color: #564f47; }
.footer-bottom a { color: #6e6860; text-decoration: none; }
.footer-bottom a:hover { color: #d4735e; }

/* ── Scroll animations ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.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; }

/* ── Utility ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.section-heading { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--color-text); letter-spacing: -0.02em; line-height: 1.12; }
.section-sub { font-size: var(--text-lg); color: var(--color-text-muted); margin-top: var(--space-4); max-width: 58ch; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: var(--space-12); }
  .hero-form-card { max-width: 560px; }
  .problem-grid, .steps-grid, .packages-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .nav-links, .nav-cta, .nav-theme-toggle { display: none; }
  .nav-mobile-toggle { display: flex; }
}
@media (max-width: 600px) {
  .problem-grid, .steps-grid, .packages-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Success State ───────────────────────────────────────── */
.form-success {
  display: none; text-align: center;
  padding: var(--space-8);
}
.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: var(--space-4); }
.form-success h3 { font-family: var(--font-display); font-size: var(--text-xl); color: var(--color-text); margin-bottom: var(--space-3); }
.form-success p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ── Form loading / error states ─────────────────────────── */
.form-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}
.form-submit svg {
  animation: none;
}
.form-submit:disabled svg {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
