/* ===========================================================================
   NobleRise Digital Marketing — website styles
   Brand: navy #0a1526 / #0e2a4f  +  gold #c9992e / #e3c574
   Easy to edit: change the CSS variables below and the whole site updates.
   =========================================================================== */
:root {
  --navy: #0a1526;
  --navy-2: #0e2a4f;
  --navy-soft: #16233d;
  --gold: #c9992e;
  --gold-2: #e3c574;
  --gold-3: #f2dfa6;
  /* Dark luxe palette */
  --bg: #060b16;
  --bg-2: #0a1120;
  --panel: rgba(255,255,255,.035);
  --panel-2: rgba(255,255,255,.055);
  --ink: #e9eef7;
  --head: #f4f7fc;
  --muted: #97a4bb;
  --line: rgba(227,197,116,.14);
  --line-soft: rgba(255,255,255,.08);
  --radius: 18px;
  --maxw: 1160px;
  --shadow: 0 30px 70px rgba(0, 0, 0, .5);
  --glow: 0 0 40px rgba(227,197,116,.18);
  --grad-gold: linear-gradient(120deg, var(--gold) 0%, var(--gold-2) 55%, var(--gold-3) 100%);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; position: relative; }
/* Luxe fixed backdrop: deep navy with faint gold + sapphire glows */
body::before { content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 600px at 12% 0%, rgba(201,153,46,.10), transparent 55%),
    radial-gradient(1000px 700px at 100% 20%, rgba(30,80,160,.14), transparent 55%),
    radial-gradient(800px 800px at 50% 120%, rgba(201,153,46,.07), transparent 55%),
    var(--bg); }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.1; color: var(--head); letter-spacing: 0; }
.section-head h2 { font-weight: 600; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; padding: 13px 26px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn-gold { position: relative; overflow: hidden; background: var(--grad-gold); color: var(--navy); box-shadow: 0 10px 26px rgba(201,153,46,.32); }
.btn-gold::after { content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.7), transparent); transform: skewX(-18deg); animation: shine 3.6s ease-in-out infinite; }
@keyframes shine { 0%, 55% { left: -60%; } 80%, 100% { left: 130%; } }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(201,153,46,.42); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: var(--gold-2); color: var(--gold-2); }
.btn-navy { background: rgba(255,255,255,.04); color: var(--gold-2); border-color: rgba(227,197,116,.45); }
.btn-navy:hover { transform: translateY(-2px); background: rgba(227,197,116,.10); border-color: var(--gold-2); box-shadow: var(--glow); }

/* ---- Floating "Book a Consultation" button (persists as you scroll) ---- */
.book-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 70;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 24px; border-radius: 999px;
  font-family: var(--sans); font-weight: 700; font-size: 15px; letter-spacing: .01em;
  color: var(--navy); background: var(--grad-gold);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 16px 38px rgba(201,153,46,.42), 0 3px 10px rgba(0,0,0,.35);
  cursor: pointer; white-space: nowrap;
  opacity: 0; transform: translateY(26px) scale(.96); pointer-events: none;
  transition: opacity .45s ease, transform .45s cubic-bezier(.2,.85,.25,1), box-shadow .2s ease;
}
.book-fab.show { opacity: 1; transform: none; pointer-events: auto; }
.book-fab:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(201,153,46,.55), 0 4px 12px rgba(0,0,0,.4); }
.book-fab:focus-visible { outline: 2px solid var(--gold-3); outline-offset: 3px; }
.book-fab svg { width: 18px; height: 18px; flex: none; }
/* soft attention pulse ring (respects reduced-motion below) */
.book-fab::before { content: ""; position: absolute; inset: 0; border-radius: 999px; z-index: -1;
  box-shadow: 0 0 0 0 rgba(227,197,116,.5); animation: bookpulse 3s ease-out infinite; }
@keyframes bookpulse { 0% { box-shadow: 0 0 0 0 rgba(227,197,116,.45); } 70% { box-shadow: 0 0 0 16px rgba(227,197,116,0); } 100% { box-shadow: 0 0 0 0 rgba(227,197,116,0); } }
@media (max-width: 560px) {
  .book-fab { right: 14px; bottom: 14px; padding: 12px 18px; font-size: 14px; }
  .book-fab .fab-full { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .book-fab { transition: opacity .2s ease; transform: none; }
  .book-fab::before { animation: none; }
}

/* Featured pricing card — animated gold gradient border + lift */
.card.featured { border: 0; transform: translateY(-6px); }
.card.featured::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); padding: 1.5px; background: linear-gradient(130deg, var(--gold), #6ea8ff, var(--gold-3), var(--gold)); background-size: 300% 300%; -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: borderflow 6s linear infinite; }
@keyframes borderflow { to { background-position: 300% 0; } }
.card.featured:hover { transform: translateY(-10px); }

/* Hero glow orbs (decorative, floating) */
.orb { position: absolute; border-radius: 50%; filter: blur(50px); z-index: 0; pointer-events: none; opacity: .55; }
.orb-1 { width: 320px; height: 320px; background: rgba(201,153,46,.35); top: -60px; right: 8%; animation: float1 12s ease-in-out infinite alternate; }
.orb-2 { width: 260px; height: 260px; background: rgba(46,110,210,.4); bottom: -40px; left: 4%; animation: float2 15s ease-in-out infinite alternate; }
@keyframes float1 { to { transform: translate3d(-30px, 30px, 0); } }
@keyframes float2 { to { transform: translate3d(30px, -24px, 0); } }

/* Mouse-follow spotlight in the hero */
.spot { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0; transition: opacity .4s ease;
  background: radial-gradient(360px 360px at var(--mx, 50%) var(--my, 40%), rgba(227,197,116,.14), transparent 70%); }
.hero:hover .spot { opacity: 1; }

/* ---- Header / nav ---- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(6,11,22,.55); backdrop-filter: saturate(150%) blur(14px); border-bottom: 1px solid transparent; transition: box-shadow .25s ease, border-color .25s ease, background .25s; }
.nav.scrolled { background: rgba(6,11,22,.82); box-shadow: 0 10px 34px rgba(0,0,0,.4); border-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav .logo { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a.link { font-weight: 500; font-size: 15px; color: #cdd7e6; position: relative; letter-spacing: .01em; }
.nav-links a.link:hover { color: var(--gold-2); }
.nav-links a.link::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0; background: var(--grad-gold); transition: width .22s ease; }
.nav-links a.link:hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold-2); margin: 5px 0; transition: .25s; }

/* ---- Hero ---- */
.hero { position: relative; background: radial-gradient(1200px 600px at 75% -10%, #12305c 0%, var(--navy) 45%, #070f1c 100%); color: #eaf0f8; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><path d="M0 39h40M39 0v40" stroke="%23ffffff0d" stroke-width="1"/></svg>'); opacity: .5; pointer-events: none; }
/* Live animated aurora glow — slow, premium movement behind the hero */
.hero::before { content: ""; position: absolute; inset: -20% -10%; z-index: 0; pointer-events: none;
  background: radial-gradient(600px 380px at 20% 30%, rgba(201,153,46,.16), transparent 60%),
              radial-gradient(560px 360px at 80% 70%, rgba(46,120,220,.18), transparent 60%);
  filter: blur(6px); animation: aurora 14s ease-in-out infinite alternate; }
@keyframes aurora { 0% { transform: translate3d(-3%, -2%, 0) scale(1); } 100% { transform: translate3d(4%, 3%, 0) scale(1.08); } }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 92px 0 104px; }
.hero h1 { color: #fff; font-size: clamp(38px, 5vw, 62px); position: relative; z-index: 2; }
/* LIVE shimmer — a bright light-sweep continuously glides across the gold text */
.hero h1 .gold, .shimmer {
  background: linear-gradient(100deg, #c9992e 0%, #e3c574 30%, #fffaf0 48%, #ffffff 50%, #fffaf0 52%, #e3c574 70%, #c9992e 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 4s linear infinite;
  filter: drop-shadow(0 0 18px rgba(227,197,116,.35));
}
@keyframes shimmer { 0% { background-position: 180% center; } 100% { background-position: -80% center; } }
.hero p.lede { color: #b9c6da; font-size: 19px; max-width: 560px; margin: 20px 0 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 34px; display: flex; gap: 26px; flex-wrap: wrap; color: #91a2bd; font-size: 13.5px; }
.hero-trust b { color: var(--gold-2); font-family: var(--serif); font-size: 22px; display: block; }

/* ---- Live before/after reveal ---- */
.ba { position: relative; width: 100%; height: 100%; border-radius: 18px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.08); user-select: none; touch-action: none; --pos: 50%; cursor: ew-resize; }
.ba-panel { position: absolute; inset: 0; padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.ba-before { background: #141a24; filter: grayscale(1) brightness(.82); }
.ba-after { background: radial-gradient(500px 300px at 20% 10%, #163561, #0a1526); clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-tag { position: absolute; top: 16px; font-size: 12px; font-weight: 800; letter-spacing: .02em; padding: 5px 12px; border-radius: 999px; }
.ba-tag-before { right: 16px; background: #2b3444; color: #c7cfdb; }
.ba-tag-after { left: 16px; background: var(--grad-gold); color: var(--navy); box-shadow: 0 6px 18px rgba(201,153,46,.4); }
.mini { display: flex; flex-direction: column; gap: 12px; }
.mini-row { display: flex; align-items: baseline; justify-content: space-between; font-size: 15px; color: #aeb9cb; border-bottom: 1px dashed rgba(255,255,255,.08); padding-bottom: 8px; white-space: nowrap; }
.mini-row b { font-family: var(--serif); font-size: 26px; color: #e7edf6; }
.mini-lit .mini-row { color: #cdd8ea; }
.mini-lit .mini-row b.up { color: #7bd88f; }
.mini-lit .mini-row b.gold { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.mini-chart { width: 100%; height: 78px; margin-top: 4px; }
.ba-divider { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: linear-gradient(#e3c574, #c9992e); transform: translateX(-1px); box-shadow: 0 0 14px rgba(227,197,116,.6); }
.ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 42px; height: 42px; border-radius: 50%; background: var(--grad-gold); color: var(--navy); display: grid; place-items: center; font-size: 18px; font-weight: 800; box-shadow: 0 6px 18px rgba(0,0,0,.35); cursor: ew-resize; }

/* animated growth chart in hero (legacy — kept for reference) */
.hero-visual { position: relative; height: 380px; }
.chart { position: absolute; inset: 0; }
.chart .bar { fill: rgba(255,255,255,.10); transform-origin: bottom; animation: grow 1.1s cubic-bezier(.2,.8,.2,1) forwards; opacity: 0; }
.chart .bar:nth-child(1){ animation-delay:.15s } .chart .bar:nth-child(2){ animation-delay:.30s }
.chart .bar:nth-child(3){ animation-delay:.45s } .chart .bar:nth-child(4){ animation-delay:.60s }
.chart .bar:nth-child(5){ animation-delay:.75s }
@keyframes grow { from { transform: scaleY(0); opacity: 0 } to { transform: scaleY(1); opacity: 1 } }
.chart .rise { fill: none; stroke: url(#hgold); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 620; stroke-dashoffset: 620; animation: draw 1.6s ease .5s forwards; filter: drop-shadow(0 4px 16px rgba(227,197,116,.45)); }
.chart .head { fill: none; stroke: url(#hgold); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 60; stroke-dashoffset: 60; animation: draw 0.5s ease 1.9s forwards; }
@keyframes draw { to { stroke-dashoffset: 0 } }
.chart .dot { fill: var(--gold-2); opacity: 0; animation: pop .4s ease 2.1s forwards; }
@keyframes pop { to { opacity: 1 } }

/* ---- Section scaffolding ---- */
section { padding: 92px 0; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 54px; }
.section-head .eyebrow { display: block; }
.section-head h2 { font-size: clamp(32px, 4.4vw, 48px); }
/* gold ornament rule under section titles */
.section-head h2::after { content: ""; display: block; width: 66px; height: 2px; margin: 18px auto 0; background: var(--grad-gold); border-radius: 2px; box-shadow: 0 0 14px rgba(227,197,116,.4); }
.section-head p { color: var(--muted); font-size: 18px; margin-top: 18px; }
.bg-soft { position: relative; background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.008)); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

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

/* ---- Services ---- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { position: relative; background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px; backdrop-filter: blur(8px); transition: transform .25s ease, box-shadow .25s ease, border-color .25s, background .25s; overflow: hidden; }
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(227,197,116,.5), transparent); opacity: 0; transition: opacity .25s; }
.card:hover { transform: translateY(-6px); background: var(--panel-2); box-shadow: var(--shadow), var(--glow); border-color: rgba(227,197,116,.4); }
.card:hover::before { opacity: 1; }
.card .ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-size: 24px; background: radial-gradient(circle at 30% 25%, rgba(227,197,116,.28), rgba(201,153,46,.10)); border: 1px solid rgba(227,197,116,.28); margin-bottom: 18px; box-shadow: inset 0 0 20px rgba(227,197,116,.12); }
.card h3 { font-size: 24px; margin-bottom: 8px; font-weight: 600; }
.card p { color: var(--muted); font-size: 15px; }

/* ---- Stats ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; }
.stat .num { font-family: var(--serif); font-weight: 800; font-size: clamp(38px, 5vw, 56px); background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: var(--muted); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

/* ---- Process ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 14px; }
.step .n { font-family: var(--serif); font-weight: 800; font-size: 44px; color: var(--gold-2); line-height: 1; }
.step h3 { font-size: 19px; margin: 8px 0; }
.step p { color: var(--muted); font-size: 15px; }

/* ---- CTA band ---- */
.cta { background: radial-gradient(900px 500px at 80% 0%, #12305c, var(--navy)); color: #fff; text-align: center; border-radius: 26px; padding: 64px 30px; box-shadow: var(--shadow); }
.cta h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); }
.cta p { color: #b9c6da; margin: 14px auto 26px; max-width: 560px; font-size: 18px; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: #c9d3e6; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 15px; border: 1px solid var(--line-soft); border-radius: 12px; font: inherit; font-size: 15px; background: rgba(255,255,255,.04); color: var(--ink); transition: border-color .15s, box-shadow .15s, background .15s; }
.field input::placeholder, .field textarea::placeholder { color: #6f7c93; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.06); box-shadow: 0 0 0 3px rgba(201,153,46,.18); }
.contact-info li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; list-style: none; }
.contact-info .ic { color: var(--gold); font-size: 20px; }

/* ---- Footer ---- */
.footer { background: var(--navy); color: #a9b6cc; padding: 60px 0 28px; }
.footer .logo { height: 42px; margin-bottom: 16px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.footer a { display: block; padding: 5px 0; font-size: 15px; color: #a9b6cc; }
.footer a:hover { color: var(--gold-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13.5px; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 64px 0 72px; }
  .hero-visual { height: 260px; order: -1; }
  .grid-3, .grid-4, .stats, .steps, .contact-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: rgba(8,13,24,.96); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); padding: 8px 24px 18px; transform: translateY(-140%); transition: transform .28s ease; box-shadow: var(--shadow); }
  .nav-links.open { transform: none; }
  .nav-links a.link { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .nav-links .btn { margin-top: 12px; justify-content: center; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .stats, .steps, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  section { padding: 66px 0; }
}
@media (prefers-reduced-motion: reduce) { *, .chart * { animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }

/* ===== Wow-factor additions ================================================ */
/* Scroll-progress bar */
.scroll-progress{position:fixed;top:0;left:0;height:3px;width:100%;transform:scaleX(0);transform-origin:0 50%;
  background:var(--grad-gold);z-index:1000;box-shadow:0 0 12px rgba(227,197,116,.6);will-change:transform;transition:transform .05s linear}
/* Smooth magnetic buttons + card tilt */
.btn{transition:transform .18s cubic-bezier(.2,.8,.2,1),box-shadow .2s,background .2s,color .2s}
.card{transition:transform .2s cubic-bezier(.2,.8,.2,1),border-color .2s,box-shadow .3s;transform-style:preserve-3d;will-change:transform}
/* Keyword→answer AEO demo widget */
.aeo-demo{display:flex;flex-direction:column;gap:12px;max-width:560px;margin:22px auto 0}
.aeo-q{display:flex;align-items:center;gap:10px;background:var(--panel);border:1px solid var(--line);border-radius:999px;padding:12px 18px;font-size:15px;color:var(--ink)}
.aeo-q .dot{width:8px;height:8px;border-radius:50%;background:var(--gold-2);flex:0 0 auto;box-shadow:0 0 10px var(--gold-2)}
.aeo-a{background:var(--panel-2);border:1px solid var(--line);border-radius:14px;padding:16px 18px;font-size:15px;line-height:1.55;color:var(--ink);min-height:46px}
.aeo-a .name{color:var(--gold-2);font-weight:700}
.aeo-cursor{display:inline-block;width:2px;height:1.05em;background:var(--gold-2);margin-left:2px;vertical-align:-2px;animation:aeoBlink 1s steps(2) infinite}
@keyframes aeoBlink{50%{opacity:0}}
/* Trust marquee */
.marquee{overflow:hidden;position:relative;-webkit-mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent);mask-image:linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent)}
.marquee-track{display:inline-flex;gap:46px;white-space:nowrap;animation:marquee 26s linear infinite;padding:6px 23px}
.marquee-track span{color:var(--muted);font-weight:600;font-size:15px;letter-spacing:.02em}
@keyframes marquee{to{transform:translateX(-50%)}}
@media (prefers-reduced-motion:reduce){.marquee-track{animation:none}.scroll-progress{transition:none}}

/* Instant-audit plan preview */
.plan-result{margin-top:18px;border-top:1px solid var(--line);padding-top:16px;animation:planIn .4s ease}
@keyframes planIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}
.plan-loading{display:flex;align-items:center;gap:10px;color:var(--muted);font-size:14px}
.plan-spin{width:16px;height:16px;border-radius:50%;border:2px solid var(--line);border-top-color:var(--gold-2);animation:spin .8s linear infinite;flex:0 0 auto}
@keyframes spin{to{transform:rotate(360deg)}}
.plan-head{font-family:var(--serif);font-size:20px;font-weight:700;color:var(--gold-2)}
.plan-sum{font-size:14.5px;line-height:1.55;color:var(--ink);margin:8px 0 4px}
.plan-label{font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);margin:12px 0 4px}
.plan-list{margin:0;padding-left:18px;font-size:14px;line-height:1.5;color:var(--ink)}
.plan-list li{margin:3px 0}
.plan-list.win li{color:var(--gold-3)}
.plan-foot{font-size:12px;color:var(--muted);margin-top:12px}

/* Feature dropdowns (services page) */
details.card{cursor:pointer}
details.card summary{list-style:none;font-size:16px;color:var(--head);display:flex;align-items:center;justify-content:space-between;gap:10px}
details.card summary::-webkit-details-marker{display:none}
details.card summary::after{content:"+";color:var(--gold-2);font-size:22px;line-height:1;transition:transform .2s;flex:0 0 auto}
details.card[open] summary::after{transform:rotate(45deg)}
details.card[open]{border-color:var(--line)}
ul.feat{list-style:none;margin:14px 0 2px;padding:0;display:grid;gap:9px}
ul.feat li{font-size:14.5px;line-height:1.5;color:var(--muted);padding-left:20px;position:relative}
ul.feat li::before{content:"✦";position:absolute;left:0;color:var(--gold-2)}
ul.feat li b{color:var(--ink);font-weight:600}
