/* ─────────────────────────────────────────────────────────────
   The Automated Explorer - Main Stylesheet
   ───────────────────────────────────────────────────────────── */

/* ─── BRAND FONTS (self-hosted) ─── */
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/space-grotesk-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/space-grotesk-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/space-grotesk-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/space-grotesk-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/space-grotesk-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/inter-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/inter-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/jetbrains-mono-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/jetbrains-mono-latin-500-normal.woff2') format('woff2'); }

/* ─── DESIGN TOKENS ─── */
:root {
  --purple:        #8B5CF6;
  --purple-deep:   #6D3FE6;
  --purple-soft:   #B89AFF;
  --purple-100:    #ECE2FF;
  --purple-700:    #4F2DB8;
  --purple-900:    #2A1A66;

  --gold:          #D4A84A;
  --gold-deep:     #B68A2F;
  --gold-soft:     #E8C77A;

  --teal:          #3DD9C8;
  --teal-deep:     #1FB8A8;
  --teal-soft:     #7FE8DC;

  --navy:          #0B0D1E;
  --navy-mid:      #14172E;
  --navy-card:     #1B1F3A;

  --grey-900:      #2A2D45;
  --grey-700:      #5C617A;
  --grey-500:      #8B91A8;
  --grey-300:      #C4C7D4;
  --grey-100:      #E8EAF0;
  --grey-50:       #F4F5F9;
  --paper:         #FAFAFC;
  --white:         #FFFFFF;

  --bg:            var(--paper);
  --fg:            var(--navy);
  --fg-subtle:     var(--grey-700);
  --fg-muted:      var(--grey-500);
  --border:        var(--grey-100);
  --border-strong: var(--grey-300);
  --accent:        var(--purple);

  --font-display:  'Space Grotesk', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --font-mono:     'JetBrains Mono', ui-monospace, monospace;

  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:      150ms;
  --dur:           250ms;

  --radius-sm:     2px;
  --radius:        4px;
  --radius-md:     6px;
  --radius-lg:     12px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--navy);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ─── NAVIGATION ─── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,252,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo img { width: 44px; height: 44px; }
.nav-logo-text .wm-the {
  font-family: var(--font-display); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); line-height: 1; margin-bottom: 2px;
}
.nav-logo-text .wm-name {
  font-family: var(--font-display); font-size: 15px;
  font-weight: 600; letter-spacing: -0.01em;
  color: var(--navy); line-height: 1.15;
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  font-family: var(--font-body); font-size: 13px;
  font-weight: 500; color: var(--grey-700);
  transition: color var(--dur-fast) var(--ease);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--purple); }
.nav-cta {
  font-family: var(--font-display); font-size: 13px;
  font-weight: 500; background: var(--navy); color: #fff;
  padding: 8px 16px; border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: 6px;
  transition: background var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--grey-900); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy);
  transition: all var(--dur) var(--ease);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 0 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-body); font-size: 15px;
  font-weight: 500; color: var(--grey-700);
  padding: 10px 0;
  transition: color var(--dur-fast) var(--ease);
}
.nav-mobile a:hover { color: var(--navy); }
.nav-mobile .nav-cta {
  margin-top: 8px; justify-content: center; width: 100%;
}

/* ─── HERO (dark) ─── */
.hero {
  background: var(--navy);
  color: #F4F3F8;
  padding: 110px 0 96px;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-glow::before {
  content: ''; position: absolute;
  top: -260px; right: -200px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 62%);
}
.hero-glow::after {
  content: ''; position: absolute;
  bottom: -300px; left: -200px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(61,217,200,0.08) 0%, transparent 62%);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--purple-soft); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; width: 24px; height: 1px;
  background: var(--purple-soft); flex-shrink: 0;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(44px, 6vw, 72px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.0;
  color: #F7F6FB; margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--purple-soft); }
.hero-sub {
  font-size: 19px; line-height: 1.55;
  color: rgba(244,243,248,0.70); margin-bottom: 36px;
  max-width: 580px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── HERO (light variant) ─── */
.hero-light {
  background: var(--paper);
  color: var(--navy);
  padding: 80px 0 72px;
  position: relative; overflow: hidden;
}
.hero-light::before {
  content: ''; position: absolute;
  top: -200px; right: -200px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(139,92,246,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-light-content { position: relative; z-index: 1; max-width: 680px; }
.hero-light .hero-eyebrow { color: var(--purple); }
.hero-light .hero-eyebrow::before { background: var(--purple); }
.hero-light h1 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.05;
  color: var(--navy); margin-bottom: 20px;
}
.hero-light h1 em { font-style: normal; color: var(--purple); }
.hero-light .hero-sub {
  font-size: 18px; line-height: 1.6;
  color: var(--grey-700); margin-bottom: 32px;
}

/* ─── BUTTONS ─── */
.btn {
  font-family: var(--font-display); font-size: 14px;
  font-weight: 500; padding: 12px 22px;
  border-radius: var(--radius); border: 1px solid transparent;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--purple); color: #fff;
  border-color: var(--purple);
}
.btn-primary:hover { background: var(--purple-deep); border-color: var(--purple-deep); }
.btn-secondary {
  background: transparent; color: var(--navy);
  border-color: var(--border-strong);
}
.btn-secondary:hover { border-color: var(--navy); }
.btn-secondary-dark {
  background: transparent; color: #F4F3F8;
  border-color: rgba(255,255,255,0.22);
}
.btn-secondary-dark:hover { border-color: rgba(255,255,255,0.5); }
.btn-ghost {
  background: transparent; color: var(--purple);
  border-color: transparent; padding-left: 0; padding-right: 0;
}
.btn-ghost:hover { color: var(--purple-deep); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── SECTION HEADER ─── */
.section-header { margin-bottom: 56px; }
.section-header .eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-header .eyebrow::before {
  content: ''; width: 20px; height: 1px; background: var(--purple);
}
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1.1;
  max-width: 600px; color: var(--navy);
}
.section-header h2 em { font-style: normal; color: var(--purple); }
.section-header p {
  margin-top: 16px; font-size: 17px; line-height: 1.65;
  color: var(--grey-700); max-width: 580px;
}
.section-header-dark h2 { color: #F4F3F8; }
.section-header-dark .eyebrow { color: var(--purple-soft); }
.section-header-dark .eyebrow::before { background: var(--purple-soft); }
.section-header-dark p { color: rgba(244,243,248,0.65); }

/* ─── CARDS ─── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: all var(--dur) var(--ease);
}
.card:hover {
  border-color: var(--purple);
  box-shadow: 0 8px 24px rgba(11,13,30,0.07);
  transform: translateY(-2px);
}
.card-dark {
  background: var(--navy-card); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 32px;
  transition: all var(--dur) var(--ease);
}
.card-dark:hover {
  border-color: var(--purple);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

/* ─── PRICING CARDS ─── */
.pricing-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.pricing-card:hover {
  border-color: var(--purple);
  box-shadow: 0 12px 36px rgba(11,13,30,0.08);
}
.pricing-card.featured {
  border-color: var(--purple);
  box-shadow: 0 0 0 2px var(--purple-100);
}
.pricing-card-header {
  padding: 28px 28px 24px; border-bottom: 1px solid var(--border);
}
.pricing-card.featured .pricing-card-header {
  background: var(--purple); color: #fff;
}
.pricing-tier {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 8px;
}
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.75); }
.pricing-card-header h3 {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 600; letter-spacing: -0.015em; margin-bottom: 6px;
}
.pricing-price {
  font-family: var(--font-display); font-size: 32px;
  font-weight: 600; color: var(--navy); letter-spacing: -0.02em;
}
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-price span {
  font-size: 14px; font-weight: 400; color: var(--grey-500);
  letter-spacing: 0;
}
.pricing-card.featured .pricing-price span { color: rgba(255,255,255,0.65); }
.pricing-card-body { padding: 24px 28px 28px; }
.pricing-card-body p {
  font-size: 14px; color: var(--grey-700); line-height: 1.55;
  margin-bottom: 20px;
}
.pricing-feature-list { margin-bottom: 24px; }
.pricing-feature-list li {
  font-size: 14px; color: var(--grey-700); line-height: 1.5;
  padding: 5px 0; display: flex; align-items: flex-start; gap: 10px;
}
.pricing-feature-list li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0; margin-top: 7px;
}
.pricing-best {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey-500); margin-bottom: 20px;
}

/* ─── TESTIMONIAL ─── */
.testimonials { display: grid; gap: 20px; }
.testimonial {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.testimonial blockquote {
  font-family: var(--font-body); font-size: 16px;
  line-height: 1.6; color: var(--grey-900);
  margin-bottom: 16px;
}
.testimonial blockquote::before { content: '\201C'; }
.testimonial blockquote::after { content: '\201D'; }
.testimonial-meta {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey-500);
}
.proof-strip {
  background: var(--grey-50); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 40px 0;
}
.proof-strip-inner {
  display: flex; align-items: flex-start; gap: 40px;
}
.proof-badge {
  flex-shrink: 0; text-align: center; padding: 16px 24px;
  border-right: 1px solid var(--border);
}
.proof-badge .number {
  font-family: var(--font-display); font-size: 36px;
  font-weight: 700; color: var(--purple); letter-spacing: -0.02em;
  line-height: 1;
}
.proof-badge .label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--grey-500); margin-top: 4px;
}
.proof-quotes { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ─── DARK CTA SECTION ─── */
.cta-dark {
  background: var(--navy); color: #F4F3F8;
  padding: 96px 0; position: relative; overflow: hidden;
}
.cta-dark::before {
  content: ''; position: absolute;
  top: -150px; left: -150px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.20) 0%, transparent 60%);
  pointer-events: none;
}
.cta-dark::after {
  content: ''; position: absolute;
  bottom: -200px; right: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(61,217,200,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.cta-dark-inner { position: relative; z-index: 1; }
.cta-dark .eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.cta-dark h2 {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1.05;
  color: #F7F6FB; margin-bottom: 16px;
}
.cta-dark p {
  font-size: 17px; line-height: 1.6;
  color: rgba(244,243,248,0.70); max-width: 540px; margin-bottom: 32px;
}
.cta-dark .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── STEPS / ORDERED LIST ─── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-mono); font-size: 11px;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey-500); flex-shrink: 0; padding-top: 4px; width: 28px;
}
.step-content h4 {
  font-family: var(--font-display); font-size: 18px;
  font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px;
  color: var(--navy);
}
.step-content p { font-size: 14px; color: var(--grey-700); line-height: 1.6; }

/* ─── EXPLORE FRAMEWORK ─── */
.explore-grid {
  display: grid; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden;
}
.explore-step {
  display: grid; grid-template-columns: 72px 1fr;
  border-bottom: 1px solid var(--border);
  transition: background var(--dur-fast) var(--ease);
}
.explore-step:last-child { border-bottom: none; }
.explore-step:hover { background: var(--grey-50); }
.explore-letter {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 24px 16px;
  background: var(--navy); position: relative;
}
.explore-letter .letter {
  font-family: var(--font-display); font-size: 28px;
  font-weight: 700; color: var(--purple-soft); line-height: 1;
  letter-spacing: -0.02em;
}
.explore-connector {
  position: absolute; bottom: -1px; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 1px; background: var(--purple-700);
}
.explore-step:last-child .explore-connector { display: none; }
.explore-body {
  padding: 24px 28px; display: flex;
  align-items: flex-start; gap: 16px;
}
.explore-body h4 {
  font-family: var(--font-display); font-size: 16px;
  font-weight: 600; color: var(--navy); margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.explore-body p { font-size: 14px; color: var(--grey-700); line-height: 1.6; }
.explore-step-num {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey-500); padding-top: 2px;
  flex-shrink: 0; width: 20px;
}

/* ─── PRODUCT CARDS (freelancers) ─── */
.product-section {
  padding: 56px 0; border-bottom: 1px solid var(--border);
}
.product-section:last-child { border-bottom: none; }
.product-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 24px;
  flex-wrap: wrap; margin-bottom: 24px;
}
.product-title-group {}
.product-label {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 6px;
}
.product-title-group h3 {
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px);
  font-weight: 600; letter-spacing: -0.02em; color: var(--navy);
}
.product-price {
  text-align: right; flex-shrink: 0;
}
.product-price .price-amount {
  font-family: var(--font-display); font-size: 28px;
  font-weight: 600; color: var(--navy); letter-spacing: -0.02em;
}
.product-price .price-note {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey-500); display: block; margin-top: 2px;
}
.product-desc {
  font-size: 16px; line-height: 1.65; color: var(--grey-700);
  max-width: 640px; margin-bottom: 20px;
}
.product-meta {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; color: var(--grey-500);
  text-transform: uppercase; margin-bottom: 20px;
}
.product-features { margin: 20px 0 28px; }
.product-features li {
  font-size: 14px; color: var(--grey-700); line-height: 1.5;
  padding: 5px 0; display: flex; align-items: flex-start; gap: 10px;
}
.product-features li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0; margin-top: 7px;
}
.product-sessions { display: grid; gap: 16px; margin: 20px 0 28px; }
.session-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 20px;
  transition: border-color var(--dur-fast) var(--ease);
}
.session-card:hover { border-color: var(--purple); }
.session-date {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--purple); flex-shrink: 0; padding-top: 3px;
  min-width: 120px;
}
.session-info h4 {
  font-family: var(--font-display); font-size: 16px;
  font-weight: 600; color: var(--navy); margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.session-info p { font-size: 13px; color: var(--grey-700); line-height: 1.5; }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── TABLE ─── */
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey-500); font-weight: 500;
  text-align: left; padding: 12px 16px;
  border-bottom: 2px solid var(--border);
}
.pricing-table td {
  font-size: 14px; color: var(--grey-700);
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.pricing-table td:first-child { font-weight: 500; color: var(--navy); }
.pricing-table td:nth-child(2) {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--navy); font-weight: 500; white-space: nowrap;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--grey-50); }

/* ─── ENQUIRY ─── */
.enquiry-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.enquiry-option {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 36px;
}
.enquiry-option h3 {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 600; letter-spacing: -0.015em; margin-bottom: 8px;
  color: var(--navy);
}
.enquiry-option p {
  font-size: 15px; color: var(--grey-700); line-height: 1.6;
  margin-bottom: 24px;
}

/* ─── FORM STYLES ─── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--grey-700); margin-bottom: 8px; font-weight: 500;
}
.form-input, .form-select, .form-textarea {
  width: 100%; font-family: var(--font-body); font-size: 14px;
  color: var(--navy); background: var(--paper);
  border: 1px solid var(--border-strong); border-radius: var(--radius);
  padding: 10px 14px; outline: none;
  transition: border-color var(--dur-fast) var(--ease);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-100);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-checkboxes { display: flex; flex-direction: column; gap: 8px; }
.form-checkbox {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--grey-700); cursor: pointer;
}
.form-checkbox input[type="checkbox"] { accent-color: var(--purple); width: 16px; height: 16px; cursor: pointer; }
/* Mailerlite embed placeholder */
.ml-embed-placeholder {
  background: var(--grey-50); border: 2px dashed var(--border-strong);
  border-radius: var(--radius-md); padding: 32px; text-align: center;
  color: var(--grey-500);
}
.ml-embed-placeholder p {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey-500); line-height: 1.5; margin-bottom: 0;
}

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start; }
.about-photo {
  background: var(--grey-50); border: 1px solid var(--border);
  border-radius: var(--radius); aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-placeholder {
  text-align: center; color: var(--grey-500); padding: 32px;
}
.about-photo-placeholder p {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-500);
}
.differentiator {
  padding: 24px 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 20px; align-items: flex-start;
}
.differentiator:first-child { border-top: 1px solid var(--border); }
.differentiator-icon {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--purple-100); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.differentiator-icon svg { width: 20px; height: 20px; color: var(--purple); }
.differentiator h4 {
  font-family: var(--font-display); font-size: 17px;
  font-weight: 600; color: var(--navy); margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.differentiator p { font-size: 14px; color: var(--grey-700); line-height: 1.6; }

/* ─── HOW IT STARTS ─── */
.how-start {
  background: var(--navy-card); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 40px; position: relative;
  overflow: hidden;
}
.how-start::before {
  content: ''; position: absolute;
  top: -100px; right: -80px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 62%);
}
.how-start-inner { position: relative; z-index: 1; }
.how-start h3 {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 600; color: #F4F3F8; margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.how-start p { font-size: 15px; color: rgba(244,243,248,0.7); line-height: 1.65; }
.how-start-prices {
  display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap;
}
.how-price-chip {
  background: rgba(139,92,246,0.15); border: 1px solid rgba(139,92,246,0.3);
  border-radius: var(--radius-pill); padding: 6px 14px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; color: var(--purple-soft);
  text-transform: uppercase;
}

/* ─── WEBINAR ─── */
.webinar-details {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.detail-item {
  padding: 24px; border-right: 1px solid var(--border);
  text-align: center;
}
.detail-item:last-child { border-right: none; }
.detail-label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--grey-500); margin-bottom: 6px;
}
.detail-value {
  font-family: var(--font-display); font-size: 17px;
  font-weight: 600; color: var(--navy); letter-spacing: -0.01em;
}
.what-youll-see { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.see-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.see-item-num {
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 10px;
}
.see-item h4 {
  font-family: var(--font-display); font-size: 17px;
  font-weight: 600; color: var(--navy); margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.see-item p { font-size: 14px; color: var(--grey-700); line-height: 1.6; }

/* ─── FOOTER ─── */
.footer {
  background: var(--navy); padding: 64px 0 32px;
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute;
  top: -200px; right: -150px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.footer-inner { position: relative; z-index: 1; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.footer-brand .footer-logo img { width: 40px; height: 40px; }
.footer-brand .wm-the {
  font-family: var(--font-display); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2px;
}
.footer-brand .wm-name {
  font-family: var(--font-display); font-size: 13px;
  font-weight: 600; color: #F4F3F8; line-height: 1.15;
}
.footer-tagline {
  font-size: 13px; color: rgba(244,243,248,0.55); line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(244,243,248,0.45); margin-bottom: 16px; font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(244,243,248,0.65);
  transition: color var(--dur-fast) var(--ease);
}
.footer-col ul li a:hover { color: #F4F3F8; }
.footer-newsletter p {
  font-size: 13px; color: rgba(244,243,248,0.6);
  line-height: 1.55; margin-bottom: 16px;
}
.footer-newsletter .ml-embed-placeholder {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.12);
  padding: 20px;
}
.footer-newsletter .ml-embed-placeholder p {
  color: rgba(244,243,248,0.4);
}
.footer-bottom {
  padding-top: 24px; display: flex;
  justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(244,243,248,0.35);
}

/* ─── INLINE PROSE ─── */
.prose { max-width: 660px; }
.prose h3 {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 600; color: var(--navy); margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.prose p {
  font-size: 16px; color: var(--grey-700); line-height: 1.7;
  margin-bottom: 16px;
}
.prose p:last-child { margin-bottom: 0; }

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.text-muted { color: var(--grey-500); }
.text-purple { color: var(--purple); }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.bg-paper { background: var(--paper); }
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy); }
.bg-subtle { background: var(--grey-50); }
.border-top { border-top: 1px solid var(--border); }
.border-bottom { border-bottom: 1px solid var(--border); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gap-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 72px 0 64px; }
  .hero h1 { font-size: clamp(36px, 8vw, 56px); }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .section { padding: 64px 0; }
  .section-header h2 { font-size: clamp(26px, 5vw, 38px); }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 320px; aspect-ratio: 1; }

  .enquiry-grid { grid-template-columns: 1fr; }

  .webinar-details { grid-template-columns: repeat(2, 1fr); }
  .webinar-details .detail-item:nth-child(2) { border-right: none; }
  .webinar-details .detail-item:nth-child(1),
  .webinar-details .detail-item:nth-child(2) { border-bottom: 1px solid var(--border); }

  .what-youll-see { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .gap-grid-3 { grid-template-columns: 1fr; }
  .gap-grid-2 { grid-template-columns: 1fr; }

  .proof-strip-inner { flex-direction: column; gap: 24px; }
  .proof-badge { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
  .proof-quotes { grid-template-columns: 1fr; }

  .product-header { flex-direction: column; }
  .product-price { text-align: left; }

  .how-start-prices { flex-direction: column; }

  .explore-step { grid-template-columns: 56px 1fr; }
  .explore-letter { padding: 20px 12px; }
  .explore-letter .letter { font-size: 22px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-table { font-size: 12px; }
  .pricing-table th, .pricing-table td { padding: 10px 12px; }
}
