/* ----- Axis Marketing Group Onboarding — Design Tokens ----- */
:root {
  --navy: #0B1B2B;
  --navy-2: #0F2438;
  --navy-3: #14304A;
  --gold: #C9A24B;
  --gold-2: #D9B562;
  --gold-d: #8E6F26;
  --cream: #FBF8F1;
  --cream-2: #F5F0E2;
  --ink: #1A1F2A;
  --ink-2: #2A2F3A;
  --muted: #6B6F76;
  --muted-2: #9AA0A8;
  --line: #E4DFD2;
  --line-dark: #1E3550;
  --white: #FFFFFF;

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;

  --shadow-sm: 0 1px 2px rgba(11,27,43,.06), 0 1px 3px rgba(11,27,43,.05);
  --shadow-md: 0 4px 20px rgba(11,27,43,.08), 0 2px 6px rgba(11,27,43,.05);
  --shadow-lg: 0 24px 60px rgba(11,27,43,.18), 0 10px 20px rgba(11,27,43,.08);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); line-height: 1.12; }
h3 { font-size: 1.25rem; line-height: 1.3; }
p { margin: 0 0 1em; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 880px; }

/* ----- Nav ----- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 27, 43, .92);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid rgba(201, 162, 75, .18);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-line1 { font-weight: 700; font-size: 15px; letter-spacing: 0.08em; color: #fff; }
.brand-line2 { font-size: 8.5px; letter-spacing: 0.22em; color: var(--gold-2); margin-top: 2px; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.75);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold-2); }
.nav-cta {
  padding: 9px 18px;
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform .2s, background .2s;
}
.nav-cta:hover { background: var(--gold-2); transform: translateY(-1px); }

@media (max-width: 800px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .35;
}
.glow-a {
  top: -100px; left: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,162,75,.5) 0%, transparent 65%);
}
.glow-b {
  bottom: -200px; right: -150px; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(20,48,74,.9) 0%, transparent 65%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,75,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,75,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-inner { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(201,162,75,.35);
  background: rgba(201,162,75,.08);
  color: var(--gold-2);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero-title {
  margin: 28px 0 24px;
  color: #fff;
  max-width: 900px;
}
.hi-gold { color: var(--gold-2); font-style: italic; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.72);
  max-width: 620px;
  margin: 0 0 40px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 64px;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  border: none; cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(201,162,75,.35);
}
.btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,162,75,.45);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 780px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--gold-2);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
  letter-spacing: 0.04em;
}
@media (max-width: 700px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

.tagline {
  margin-top: 56px;
  text-align: center;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.3em;
  font-size: 12px;
}

/* ----- Sections ----- */
.section { padding: 100px 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--gold-d);
  padding-bottom: 8px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--gold);
}
.gold-eyebrow { color: var(--gold-2); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 640px; margin: 20px 0 32px; }
.light-sub { color: rgba(255,255,255,.7); }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}

.promise-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.promise-card::before {
  content: '';
  position: absolute; top: 0; left: 36px; right: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 3px;
}
.promise-title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.24em;
  color: var(--gold-d); margin-bottom: 20px;
}
.promise-list {
  list-style: none; padding: 0; margin: 0;
}
.promise-list li {
  padding: 14px 0 14px 32px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.55;
}
.promise-list li:last-child { border-bottom: none; padding-bottom: 0; }
.promise-list li::before {
  content: '';
  position: absolute; left: 0; top: 20px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 4px, transparent 5px),
    var(--gold);
}
.promise-list strong { color: var(--ink); font-weight: 600; }

/* ----- Timeline ----- */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.timeline-line {
  position: absolute; top: 24px; left: 5%; right: 5%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: .5;
}
.stage {
  position: relative;
  padding: 60px 20px 20px;
  text-align: center;
}
.stage-num {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy-2);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-weight: 700; font-size: 15px;
}
.stage-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.stage-days {
  font-size: 11px;
  color: var(--gold-2);
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}
.stage-desc {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}
@media (max-width: 800px) {
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline-line { display: none; }
}
@media (max-width: 480px) {
  .timeline { grid-template-columns: 1fr; }
}

/* ----- Phases ----- */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 800px) { .phase-grid { grid-template-columns: 1fr; } }

.phase-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: pointer;
}
.phase-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.phase-card.open {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.phase-head {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 24px;
}
.phase-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--gold-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.phase-meta { flex: 1; min-width: 0; }
.phase-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.2;
}
.phase-blurb {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}
.phase-toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s, background .2s;
  color: var(--gold-d);
}
.phase-card.open .phase-toggle {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--navy);
}
.phase-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.phase-card.open .phase-body { max-height: 1200px; }
.phase-body-inner {
  padding: 4px 24px 24px 86px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.phase-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.phase-body li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  border-bottom: 1px dashed var(--line);
}
.phase-body li:last-child { border-bottom: none; }
.phase-body li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 12px; height: 12px;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  background: #fff;
}

/* ----- What we need ----- */
.need-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) { .need-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .need-grid { grid-template-columns: 1fr; } }

.need-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}
.need-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.need-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.need-card h3 {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.need-card ul {
  list-style: none; padding: 0; margin: 0;
}
.need-card li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.need-card li::before {
  content: '';
  position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}

/* ----- Deliverables ----- */
.deliv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .deliv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .deliv-grid { grid-template-columns: 1fr; } }
.deliv {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border-top: 3px solid var(--gold);
}
.deliv-cadence {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-d);
  margin-bottom: 12px;
}
.deliv h3 { color: var(--ink); margin-bottom: 8px; }
.deliv p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }

/* ----- Next steps list ----- */
.next-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 60px;
  display: grid;
  gap: 18px;
}
.next-list li {
  display: flex; gap: 24px;
  padding: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,162,75,.18);
  border-radius: var(--radius-md);
  transition: border-color .2s, background .2s;
}
.next-list li:hover {
  border-color: var(--gold);
  background: rgba(201,162,75,.06);
}
.next-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}
.next-list h3 { color: #fff; margin-bottom: 6px; }
.next-list p { color: rgba(255,255,255,.7); margin: 0; font-size: 15px; }

/* ----- CTA card ----- */
.cta-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(201,162,75,.14), rgba(201,162,75,.04));
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.cta-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; color: var(--gold-2);
  margin-bottom: 8px;
}
.cta-card h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.cta-card p { color: rgba(255,255,255,.7); margin: 0; }

/* ----- FAQ ----- */
.faq-list {
  margin-top: 40px;
  display: grid;
  gap: 12px;
}
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: border-color .2s;
}
.faq-list details[open] { border-color: var(--gold); }
.faq-list summary {
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  color: var(--gold-d);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform .3s;
}
.faq-list details[open] summary::after {
  content: '−';
  transform: rotate(0);
}
.faq-list details p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ----- Footer ----- */
.footer {
  background: var(--navy);
  color: #fff;
  padding: 40px 0;
  border-top: 3px solid var(--gold);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-name { font-weight: 700; letter-spacing: 0.08em; font-size: 16px; }
.footer-sub { font-size: 9px; letter-spacing: 0.22em; color: var(--gold-2); margin-top: 2px; white-space: nowrap; }
.footer-tagline {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.3em;
  font-size: 12px;
}
.footer-meta {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 4px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.footer-meta a { color: var(--gold-2); }
.footer-meta a:hover { text-decoration: underline; }
@media (max-width: 700px) {
  .footer-meta { align-items: flex-start; }
}

/* ----- Reveal on scroll ----- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ----- Pricing ----- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 75, .35);
}
.price-featured {
  background: linear-gradient(180deg, #0F2438 0%, #0B1B2B 100%);
  border-color: rgba(201, 162, 75, .35);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(11,27,43,.28), 0 10px 20px rgba(11,27,43,.12);
}
.price-featured:hover {
  border-color: rgba(201, 162, 75, .55);
  box-shadow: 0 28px 70px rgba(11,27,43,.32), 0 12px 24px rgba(11,27,43,.16);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(201, 162, 75, .35);
}
.price-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--muted);
  padding-bottom: 10px;
  margin-bottom: 14px;
  display: inline-block;
  border-bottom: 2px solid var(--gold);
}
.price-featured .price-eyebrow { color: var(--gold-2); border-bottom-color: var(--gold); }
.price-name {
  font-size: 1.7rem;
  margin-bottom: 8px;
  color: inherit;
}
.price-tag {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0 0 22px;
  line-height: 1.5;
}
.price-featured .price-tag { color: rgba(255,255,255,.72); }
.price-tag strong { color: var(--ink); font-weight: 600; }
.price-featured .price-tag strong { color: var(--gold-2); }
.price-figure {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
  font-family: var(--font-display);
  color: var(--ink);
}
.price-featured .price-figure { color: var(--white); }
.price-currency {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--muted);
  align-self: flex-start;
  margin-top: 8px;
}
.price-featured .price-currency { color: var(--gold-2); }
.price-amount {
  font-size: 3.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-period {
  font-size: 15px;
  color: var(--muted);
  font-family: var(--font-body);
  margin-left: 6px;
}
.price-featured .price-period { color: rgba(255,255,255,.62); }
.price-custom {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.price-setup {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 26px;
}
.price-featured .price-setup { color: rgba(255,255,255,.58); }
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.price-featured .price-features { border-top-color: rgba(201, 162, 75, .18); }
.price-features li {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
  padding: 9px 0 9px 28px;
  position: relative;
}
.price-featured .price-features li { color: rgba(255,255,255,.86); }
.price-features li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 15px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.price-features li em { font-style: normal; color: var(--muted); font-size: 13.5px; }
.price-featured .price-features li em { color: rgba(255,255,255,.55); }
.price-cta { align-self: stretch; text-align: center; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  display: inline-block;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.price-featured .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.price-featured .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.price-note {
  margin-top: 40px;
  text-align: center;
  padding: 22px 32px;
  background: var(--cream-2);
  border: 1px dashed var(--gold);
  border-radius: var(--radius-md);
  color: var(--ink-2);
  font-size: 15px;
}
.price-note strong { color: var(--navy); }

@media (max-width: 960px) {
  .price-grid { grid-template-columns: 1fr; gap: 20px; }
  .price-card { padding: 32px 26px 30px; }
}

/* ----- Intake Form ----- */
.intake-form {
  max-width: 820px;
  margin: 40px auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 44px 36px;
  box-shadow: var(--shadow-md);
}
.form-group {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.form-group:last-of-type { margin-bottom: 24px; padding-bottom: 0; border-bottom: none; }
.form-group-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin: 0 0 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  letter-spacing: 0.18em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.field { display: block; margin-bottom: 18px; }
.field-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.005em;
}
.field-label em {
  color: var(--gold-d);
  font-style: normal;
  font-weight: 700;
  margin-left: 3px;
}
.intake-form input[type="text"],
.intake-form input[type="email"],
.intake-form input[type="tel"],
.intake-form input[type="url"],
.intake-form select,
.intake-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  line-height: 1.5;
}
.intake-form textarea { resize: vertical; min-height: 72px; }
.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, .18);
  background: var(--white);
}
.intake-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%236B6F76' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-top: 4px;
}
.check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
  padding: 10px 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color .18s, background .18s;
}
.check:hover { border-color: var(--gold); background: var(--white); }
.check input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1.6px solid var(--muted);
  border-radius: 4px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color .18s, background .18s;
}
.check input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg);
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.btn-lg { padding: 14px 28px; font-size: 15px; }
.form-privacy {
  font-size: 13px;
  color: var(--muted);
}
.form-success {
  text-align: center;
  padding: 40px 20px 12px;
}
.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  margin-bottom: 18px;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); margin-bottom: 22px; }

@media (max-width: 720px) {
  .intake-form { padding: 30px 22px 26px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .check-grid { grid-template-columns: 1fr; }
}

/* ----- Form error ----- */
.form-error {
  margin-top: 18px;
  padding: 14px 18px;
  background: #FCE9E4;
  border: 1px solid #B54B4B;
  border-radius: var(--radius-sm);
  color: #7A2A2A;
  font-size: 14px;
  line-height: 1.5;
}
