/* =====================================================================
   AI Readiness Advisory — Warm Editorial Design System
   =====================================================================
   60% — Dominant Canvas:  #FDFBF7  Warm Cream / Alabaster
   30% — Structure/Text:   #1E1E24  Earthy Charcoal (primary)
                           #4A5D4E  Sage Green (secondary / borders)
   10% — Accent:           #C87A53  Terracotta / Burnt Orange (CTAs only)
   ===================================================================== */

:root {
  /* Palette */
  --cream:      #FDFBF7;
  --cream-dk:   #F5F1EB;
  --cream-dkr:  #EDE8DF;
  --charcoal:   #1E1E24;
  --charcoal-2: #2C2C35;
  --charcoal-3: #3D3D48;
  --sage:       #4A5D4E;
  --sage-lt:    #D4DDD5;
  --sage-ltr:   #EBF0EB;
  --terra:      #C87A53;
  --terra-dk:   #A8623E;
  --terra-lt:   #F5E6DC;

  /* Typography */
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Tokens */
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 6px rgba(30,30,36,0.06);
  --shadow:     0 4px 20px rgba(30,30,36,0.08);
  --shadow-lg:  0 12px 48px rgba(30,30,36,0.12);
  --border:     1px solid var(--cream-dkr);
  --border-sage:1px solid var(--sage-lt);
  --t:          0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--charcoal);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-body); }
p  { font-size: 1.0625rem; color: var(--charcoal-3); }

/* ── Layout ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 5.5rem 0; }
.section-alt { background: var(--cream-dk); }
.section-dark { background: var(--charcoal); }
.section-sage { background: var(--sage-ltr); }

/* ── Navigation ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(253,251,247,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1140px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.nav-logo img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal-3);
  transition: color var(--t);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a.active { color: var(--charcoal); font-weight: 600; }
.btn-nav {
  background: var(--terra);
  color: var(--cream) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.375rem;
  border-radius: var(--radius-sm);
  transition: background var(--t), transform var(--t) !important;
  font-size: 0.9rem !important;
}
.btn-nav:hover { background: var(--terra-dk) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--t);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.8125rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all var(--t);
  border: 2px solid transparent;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}
.btn-terra {
  background: var(--terra);
  color: var(--cream);
  border-color: var(--terra);
}
.btn-terra:hover { background: var(--terra-dk); border-color: var(--terra-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,122,83,0.3); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--cream); transform: translateY(-2px); }

.btn-outline-cream {
  background: transparent;
  border-color: rgba(253,251,247,0.5);
  color: var(--cream);
}
.btn-outline-cream:hover { background: rgba(253,251,247,0.12); border-color: var(--cream); }

.btn-charcoal {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.btn-charcoal:hover { background: var(--charcoal-2); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ── Section Labels ── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.eyebrow-terra {
  color: var(--terra);
}

.section-heading { margin-bottom: 1rem; }
.section-sub {
  font-size: 1.0625rem;
  color: var(--charcoal-3);
  max-width: 600px;
  margin-bottom: 3.5rem;
  line-height: 1.75;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Divider ── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--terra);
  border-radius: 2px;
  margin: 1.25rem 0 1.5rem;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* ── Hero ── */
.hero {
  background: var(--cream);
  padding: 3rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(200,122,83,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(74,93,78,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--terra-lt);
  color: var(--terra-dk);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(200,122,83,0.2);
}
.hero h1 {
  margin-bottom: 1.375rem;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--terra);
}
.hero-desc {
  font-size: 1.125rem;
  color: var(--charcoal-3);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(200,122,83,0.2) 0%, transparent 70%);
}
.hero-card-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 1.75rem;
  border: 3px solid rgba(253,251,247,0.15);
}
.hero-card h3 {
  color: var(--cream);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-head);
}
.hero-card p {
  color: rgba(253,251,247,0.7);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-stat {
  background: rgba(253,251,247,0.07);
  border-radius: var(--radius-sm);
  padding: 1rem;
  border: 1px solid rgba(253,251,247,0.08);
}
.hero-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--terra);
  font-family: var(--font-head);
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(253,251,247,0.55);
}

/* ── Trusted By Strip ── */
.trust-strip {
  background: var(--cream-dk);
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 1.5rem 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--cream-dkr);
  flex-shrink: 0;
}
.trust-tags {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust-tag {
  font-size: 0.875rem;
  color: var(--charcoal-3);
  font-weight: 500;
}

/* ── Cards ── */
.card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.25rem;
  border: var(--border-sage);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--sage);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--sage-ltr);
  border: 1px solid var(--sage-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 1.375rem;
  flex-shrink: 0;
}
.card h3 { margin-bottom: 0.625rem; font-size: 1.1875rem; }
.card p { font-size: 0.9375rem; line-height: 1.7; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--terra);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 1.25rem;
  transition: gap var(--t);
}
.card-link:hover { gap: 0.625rem; }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); gap: 1.5rem; }

/* ── Audience Tabs ── */
.tabs {
  display: flex;
  gap: 0.5rem;
  background: var(--cream-dk);
  border-radius: var(--radius);
  padding: 0.375rem;
  width: fit-content;
  margin: 0 auto 3rem;
  border: var(--border);
}
.tab-btn {
  padding: 0.5625rem 1.5rem;
  border-radius: calc(var(--radius) - 3px);
  border: none;
  background: transparent;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--charcoal-3);
  font-family: var(--font-body);
  transition: all var(--t);
  white-space: nowrap;
}
.tab-btn.active {
  background: var(--cream);
  color: var(--charcoal);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.tab-btn:hover:not(.active) { color: var(--charcoal); }

/* ── Process Steps ── */
.process-list { counter-reset: steps; display: grid; gap: 1.5rem; }
.process-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 2rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: var(--border-sage);
}
.process-num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--terra-lt);
  border: 2px solid rgba(200,122,83,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--terra-dk);
  flex-shrink: 0;
}
.process-item h3 { margin-bottom: 0.375rem; font-size: 1.0625rem; }
.process-item p { font-size: 0.9375rem; }

/* ── YouTube Section ── */
.yt-section { background: var(--charcoal); }
.yt-embed {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(253,251,247,0.08);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.yt-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── Feature Row ── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-list { list-style: none; margin: 1.5rem 0 2rem; }
.feature-list li {
  display: flex;
  gap: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-dkr);
  font-size: 0.9375rem;
  color: var(--charcoal-3);
  align-items: flex-start;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--terra-lt);
  border: 1.5px solid rgba(200,122,83,0.3);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23C87A53' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.feature-visual {
  background: var(--charcoal-2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.feature-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(200,122,83,0.15) 0%, transparent 60%);
}

/* ── Values Grid ── */
.value-card {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: var(--border-sage);
  transition: border-color var(--t);
}
.value-card:hover { border-color: var(--sage); }
.value-icon {
  font-size: 1.625rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.pricing-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.25rem;
  border: var(--border-sage);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--terra);
  box-shadow: 0 0 0 1px var(--terra), var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terra);
  color: var(--cream);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 1.25rem; margin-bottom: 0.625rem; }
.pricing-card > p { font-size: 0.9375rem; margin-bottom: 1.75rem; }
.pricing-card ul { list-style: none; margin-bottom: 2rem; }
.pricing-card ul li {
  padding: 0.45rem 0;
  font-size: 0.9375rem;
  color: var(--charcoal-3);
  padding-left: 1.5rem;
  position: relative;
}
.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

/* ── Contact Form ── */
.form-group { margin-bottom: 1.375rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8125rem 1.125rem;
  border: 1.5px solid var(--cream-dkr);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74,93,78,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(30,30,36,0.35); }
.form-group textarea { resize: vertical; min-height: 148px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── FAQ Accordion ── */
details {
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: var(--border-sage);
  overflow: hidden;
}
details + details { margin-top: 0.75rem; }
summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.375rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
  gap: 1rem;
  transition: color var(--t);
}
summary::-webkit-details-marker { display: none; }
summary:hover { color: var(--sage); }
.faq-icon {
  color: var(--terra);
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--t);
}
details[open] .faq-icon { transform: rotate(45deg); }
.faq-body {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--charcoal-3);
  line-height: 1.75;
  border-top: var(--border);
  padding-top: 1.25rem;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--charcoal);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,122,83,0.15) 0%, transparent 65%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74,93,78,0.2) 0%, transparent 65%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-banner p { color: rgba(253,251,247,0.7); max-width: 520px; margin: 0 auto 2.5rem; font-size: 1.0625rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
footer {
  background: var(--charcoal-2);
  color: rgba(253,251,247,0.65);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}
.footer-brand .nav-logo { color: var(--cream); margin-bottom: 1.125rem; }
.footer-brand p { font-size: 0.9375rem; line-height: 1.75; max-width: 300px; }
.footer-col h5 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.625rem; }
.footer-col ul a {
  font-size: 0.9375rem;
  color: rgba(253,251,247,0.6);
  transition: color var(--t);
}
.footer-col ul a:hover { color: var(--terra); }

.footer-bottom {
  border-top: 1px solid rgba(253,251,247,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
}

.yt-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(253,251,247,0.65);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(253,251,247,0.12);
  border-radius: var(--radius-sm);
  margin-top: 1.25rem;
  transition: all var(--t);
}
.yt-link:hover { color: var(--cream); border-color: var(--terra); background: rgba(200,122,83,0.1); }

/* ── About / Mission ── */
.page-hero {
  background: var(--cream);
  padding: 6rem 0 5rem;
  border-bottom: var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74,93,78,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }

/* ── Blockquote/Pull ── */
.pull-quote {
  border-left: 3px solid var(--terra);
  padding: 1.25rem 1.75rem;
  background: var(--terra-lt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
}

/* ── Info Box ── */
.info-box {
  background: var(--sage-ltr);
  border: var(--border-sage);
  border-radius: var(--radius);
  padding: 2rem;
}
.info-box h4 { color: var(--sage); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }

/* ── Dark card ── */
.dark-card {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.dark-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(200,122,83,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.dark-card > * { position: relative; z-index: 1; }
.dark-card h3 { color: var(--cream); margin-bottom: 0.75rem; }
.dark-card p { color: rgba(253,251,247,0.7); font-size: 0.9375rem; }

/* ── Service Audience Tags ── */
.audience-tags { display: flex; gap: 0.375rem; flex-wrap: wrap; margin: 1rem 0; }
.audience-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.625rem;
  border-radius: 100px;
  background: var(--sage-ltr);
  color: var(--sage);
  border: 1px solid var(--sage-lt);
  letter-spacing: 0.02em;
}

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ── Hero entrance ── */
@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1    { animation: heroFade 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s both; }
.hero .divider { animation: heroFade 0.7s cubic-bezier(0.16,1,0.3,1) 0.2s both; }
.hero .hero-desc { animation: heroFade 0.7s cubic-bezier(0.16,1,0.3,1) 0.3s both; }
.hero .hero-btns { animation: heroFade 0.7s cubic-bezier(0.16,1,0.3,1) 0.4s both; }
.hero-card { animation: heroFade 0.8s cubic-bezier(0.16,1,0.3,1) 0.35s both; }

/* Card hover lift already in .card — add subtle scale to icons */
.card:hover .card-icon { transform: scale(1.08); }
.card-icon { transition: transform var(--t); }

/* Button press feedback */
.btn:active { transform: translateY(0) scale(0.98) !important; }

/* Nav link underline effect */
.nav-links a:not(.btn-nav) {
  position: relative;
  padding-bottom: 2px;
}
.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terra);
  border-radius: 1px;
  transition: width var(--t);
}
.nav-links a:not(.btn-nav):hover::after,
.nav-links a.active::after { width: 100%; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row.reverse { direction: ltr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); border-bottom: var(--border); padding: 1.25rem 2rem 1.75rem; gap: 0.875rem; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .tabs { flex-wrap: wrap; width: 100%; }
  h1 { font-size: clamp(1.875rem, 8vw, 2.5rem); }
}
