/* ============================================================
   RBH Digital — shared styles v2 */

/* ── Floating CTA Button ─────────────────────────────────── */
.float-cta-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff; font-family: var(--sans); font-weight: 700; font-size: 14px;
  padding: 13px 20px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 8px 32px rgba(108,43,217,0.45);
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .35s, transform .35s, box-shadow .35s;
}
.float-cta-btn.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.float-cta-btn:hover { box-shadow: 0 14px 48px rgba(108,43,217,0.65); transform: translateY(-3px); }
@media (max-width: 600px) { .float-cta-btn span { display: none; } .float-cta-btn { padding: 14px; border-radius: 50%; } }

/* ── Facts ticker ────────────────────────────────────────── */
.facts-ticker { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.fact-track { display: flex; align-items: center; white-space: nowrap; animation: tickerSlide 40s linear infinite; width: max-content; }
.facts-ticker:hover .fact-track { animation-play-state: paused; }
@keyframes tickerSlide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.fact-item { display: inline-flex; align-items: center; gap: 10px; padding: 13px 32px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); border-right: 1px solid var(--line); flex-shrink: 0; }
.fact-item b { color: var(--brand); }
.fact-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-2); flex-shrink: 0; }

/* ── Promo coaching card ─────────────────────────────────── */
.promo-banner { background: linear-gradient(90deg, #FF2D87, #ff6b3d); color: #fff; font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 8px 18px; margin: -28px -28px 20px; border-radius: var(--radius) var(--radius) 0 0; text-align: center; }
.price-old { font-size: 16px; font-weight: 600; color: var(--ink-3); text-decoration: line-through; display: block; margin-bottom: 2px; }
.savings-tag { display: inline-block; background: rgba(255,45,135,0.12); color: #FF2D87; font-size: 12px; font-weight: 700; border-radius: 6px; padding: 3px 9px; margin-top: 4px; }

/* ── Intake hero grid (marques page) ────────────────────── */
.intake-hero-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 60px; align-items: center; }
.intake-hero-visual { display: flex; align-items: center; justify-content: center; }
.phone-illo { width: 100%; max-width: 380px; filter: drop-shadow(0 24px 60px rgba(108,43,217,.22)); animation: phoneFloat 6s ease-in-out infinite; }
@keyframes phoneFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.mini-stats-row { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.mini-stat { display: flex; flex-direction: column; }
.mini-stat .ms-val { font-family: var(--serif); font-weight: 800; font-size: 28px; color: var(--brand); line-height: 1; }
.mini-stat .ms-label { font-size: 12px; color: var(--ink-3); font-weight: 600; margin-top: 3px; }
@media (max-width: 900px) {
  .intake-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .intake-hero-visual { order: -1; }
  .phone-illo { max-width: 280px; margin: 0 auto; display: block; }
}

/* ============================================================
   Original shared styles
   Palette: electric violet / hot pink / lime · Bricolage + Manrope
   ============================================================ */
:root {
  --ink: #130d24;
  --ink-2: #5b5470;
  --ink-3: #8e87a2;
  --bg: #ffffff;
  --bg-soft: #f4f1ff;
  --bg-soft-2: #efeaff;
  --line: #e7e1fa;
  --brand: #5b2eff;
  --brand-dark: #4a1fe0;
  --brand-2: #ff2d87;
  --brand-soft: #eee8ff;
  --pink-soft: #ffe4f0;
  --lime: #d6ff3d;
  --lime-deep: #b6e400;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(19,13,36,.06), 0 4px 14px rgba(19,13,36,.06);
  --shadow-md: 0 14px 36px -14px rgba(91,46,255,.28);
  --shadow-lg: 0 34px 64px -26px rgba(19,13,36,.4);
  --maxw: 1200px;
  --serif: 'Bricolage Grotesque', sans-serif;
  --sans: 'Manrope', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ── Site-wide enhancements ──────────────────────────────────────── */
/* Scroll progress indicator */
.scroll-prog { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: linear-gradient(90deg, var(--brand), var(--brand-2)); box-shadow: 0 0 12px rgba(91,46,255,.5); transition: width .08s linear; }
/* Accessible keyboard focus */
a:focus-visible, button:focus-visible, .btn:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 4px; }
.btn:active { transform: translateY(0) scale(.985); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { transition: none; } }

body { font-family: var(--sans); color: var(--ink); background: var(--bg); line-height: 1.6; font-size: 17px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--brand); display: inline-flex; align-items: center; gap: 9px; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brand-2); border-radius: 2px; }
.section { padding: 108px 0; }
.pink { color: var(--brand-2); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; font-family: var(--sans); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; padding: 15px 26px; border-radius: 999px; border: 2px solid transparent; transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease; white-space: nowrap; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px -10px rgba(91,46,255,.8); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--lime-deep); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* Header */
header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.82); backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease; }
header.scrolled { border-color: var(--line); box-shadow: 0 4px 24px -16px rgba(19,13,36,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-weight: 800; font-size: 19px; letter-spacing: -0.02em; white-space: nowrap; }
.brand .mark { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 800; transform: rotate(-4deg); box-shadow: 0 6px 14px -6px rgba(91,46,255,.9); letter-spacing: 0; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--ink-2); transition: color .18s ease; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--ink); padding: 6px; }
.menu-toggle svg { width: 28px; height: 28px; }

/* Mobile menu */
.mobile-menu { display: none; position: fixed; inset: 76px 0 0 0; z-index: 99; background: var(--bg); flex-direction: column; padding: 24px; gap: 4px; animation: fadein .2s ease; overflow-y: auto; }
@keyframes fadein { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.mobile-menu a { padding: 16px 6px; font-family: var(--serif); font-weight: 600; font-size: 22px; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 20px; justify-content: center; }
.mobile-menu.open { display: flex; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Section heads */
.sec-head { max-width: 660px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 4vw, 46px); margin-top: 18px; }
.sec-head p { color: var(--ink-2); margin-top: 16px; font-size: 18px; }

/* Page hero (subpages) */
.page-hero { position: relative; padding: 70px 0 64px; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle, rgba(255,45,135,.16), transparent 65%); top: -200px; right: -120px; z-index: 0; }
.page-hero::after { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(91,46,255,.14), transparent 65%); bottom: -240px; left: -140px; z-index: 0; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; line-height: 1.08; max-width: 15em; }
.page-hero p.lead { font-size: 19px; color: var(--ink-2); margin-top: 22px; max-width: 38em; }
.page-hero .hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.breadcrumb { font-size: 13.5px; font-weight: 600; color: var(--ink-3); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--brand); }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.chip { font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; background: var(--bg-soft); color: var(--brand); border: 1px solid var(--line); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative; }
.step .n { counter-increment: step; font-family: var(--serif); font-weight: 800; font-size: 15px; width: 38px; height: 38px; border-radius: 11px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; }
.step .n::before { content: "0" counter(step); }
.step h3 { font-size: 19px; margin-top: 18px; }
.step p { color: var(--ink-2); font-size: 14.5px; margin-top: 9px; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 54px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.popular { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: var(--shadow-lg); position: relative; }
.price-card.popular h3, .price-card.popular .price b { color: #fff; }
.price-tag { display: inline-flex; align-items: center; gap: 7px; align-self: flex-start; font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); background: var(--lime); padding: 6px 12px; border-radius: 999px; margin-bottom: 18px; }
.price-card .kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-2); }
.price-card.popular .kicker { color: var(--lime); }
.price-card h3 { font-size: 24px; margin-top: 8px; }
.price-card .blurb { font-size: 14.5px; color: var(--ink-2); margin-top: 10px; min-height: 44px; }
.price-card.popular .blurb { color: #b3acc6; }
.price { display: flex; align-items: baseline; gap: 6px; margin: 22px 0 6px; }
.price b { font-family: var(--serif); font-size: 46px; font-weight: 800; line-height: 1; color: var(--ink); }
.price .per { font-size: 14px; color: var(--ink-3); font-weight: 600; }
.price-card.popular .price .per { color: #b3acc6; }
.price-note { font-size: 13px; color: var(--ink-3); }
.price-card.popular .price-note { color: #8e87a2; }
.feat-list { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.feat-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.price-card.popular .feat-list li { color: #ded8ee; }
.feat-list svg { width: 19px; height: 19px; color: var(--brand); flex-shrink: 0; margin-top: 1px; }
.price-card.popular .feat-list svg { color: var(--lime); }

/* FAQ */
.faq { max-width: 780px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 24px; box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 0; font-family: var(--serif); font-weight: 600; font-size: 18px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { width: 26px; height: 26px; flex-shrink: 0; position: relative; }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; background: var(--brand); border-radius: 2px; transition: transform .25s ease; }
.faq summary .plus::before { width: 14px; height: 2px; top: 12px; left: 6px; }
.faq summary .plus::after { width: 2px; height: 14px; top: 6px; left: 12px; }
.faq details[open] summary .plus::after { transform: rotate(90deg); opacity: 0; }
.faq details p { color: var(--ink-2); font-size: 15.5px; padding: 0 0 22px; }

/* Forms */
.intake { background: var(--bg-soft); }
.intake-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.intake-aside { position: sticky; top: 100px; }
.intake-aside h2 { font-size: clamp(28px, 3.6vw, 42px); margin-top: 16px; }
.intake-aside p { color: var(--ink-2); margin-top: 16px; font-size: 17px; }
.benefit-list { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.benefit-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 15px; }
.benefit-list .bic { width: 40px; height: 40px; border-radius: 11px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--brand); flex-shrink: 0; box-shadow: var(--shadow-sm); }
.benefit-list .bic svg { width: 20px; height: 20px; }
.benefit-list b { display: block; font-size: 15.5px; }
.benefit-list span { font-size: 13.5px; color: var(--ink-3); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 34px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 22px; }
.field > label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 9px; }
.field .req { color: var(--brand-2); }
.field input[type=text], .field input[type=email], .field input[type=url], .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff; font-family: var(--sans); font-size: 15px; color: var(--ink); transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(91,46,255,.12); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.opt-grid.three { grid-template-columns: repeat(3, 1fr); }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.opt label { display: flex; align-items: center; gap: 9px; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; font-size: 14px; font-weight: 600; cursor: pointer; transition: border-color .15s ease, background .15s ease, color .15s ease; }
.opt label .dot { width: 16px; height: 16px; border-radius: 5px; border: 2px solid var(--line); flex-shrink: 0; transition: all .15s ease; display: grid; place-items: center; }
.opt input[type=radio] + label .dot { border-radius: 50%; }
.opt input:checked + label { border-color: var(--brand); background: var(--brand-soft); color: var(--brand); }
.opt input:checked + label .dot { border-color: var(--brand); background: var(--brand); box-shadow: inset 0 0 0 3px #fff; }
.form-note { font-size: 13px; color: var(--ink-3); margin-top: 6px; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .sic { width: 64px; height: 64px; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .sic svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 26px; }
.form-success p { color: var(--ink-2); margin-top: 10px; font-size: 16px; }

/* CTA */
.cta-band { padding: 96px 0; }
.cta-box { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; border-radius: var(--radius-lg); padding: 72px 56px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before, .cta-box::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.1); }
.cta-box::before { width: 320px; height: 320px; top: -140px; right: -80px; }
.cta-box::after { width: 240px; height: 240px; bottom: -120px; left: -60px; }
.cta-box h2 { color: #fff; font-size: clamp(32px, 4.4vw, 52px); position: relative; }
.cta-box p { position: relative; margin: 18px auto 0; max-width: 36em; font-size: 18px; color: rgba(255,255,255,.94); }
.cta-box .btn-row { position: relative; margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
footer { background: var(--ink); color: #b3acc6; padding: 78px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.foot-brand .brand { color: #fff; margin-bottom: 16px; }
.foot-brand p { font-size: 14.5px; max-width: 26em; }
.foot-soc { display: flex; gap: 10px; margin-top: 22px; }
.foot-soc a { width: 40px; height: 40px; border-radius: 10px; background: #221a3a; display: grid; place-items: center; color: #d6d0e6; transition: background .2s ease, color .2s ease, transform .2s ease; }
.foot-soc a:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.foot-soc svg { width: 18px; height: 18px; }
.foot-col h4 { color: #fff; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-col a, .foot-col li { font-size: 14.5px; transition: color .18s ease; }
.foot-col a:hover { color: #fff; }
.foot-contact li { display: flex; gap: 10px; align-items: center; }
.foot-contact svg { width: 16px; height: 16px; color: var(--brand-2); flex-shrink: 0; }
.foot-bottom { margin-top: 54px; padding-top: 26px; border-top: 1px solid #2a2244; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 13.5px; }
.foot-bottom a:hover { color: #fff; }

@media (max-width: 980px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .intake-grid { grid-template-columns: 1fr; gap: 36px; }
  .intake-aside { position: static; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foot-brand, .foot-contact { grid-column: 1 / -1; }
}
/* Collapse the desktop nav to the mobile menu early enough that the full
   6-link nav + CTA never overflows the viewport (760–1040px band). */
@media (max-width: 1040px) {
  .nav-links, .nav-actions .btn { display: none; }
  .menu-toggle { display: block; }
}
@media (max-width: 760px) {
  .section { padding: 74px 0; }
  .cta-box { padding: 52px 26px; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
}
@media (max-width: 480px) {
  .steps, .opt-grid, .opt-grid.three { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
}
