/* ===================================================================
   Omniqal — landing page styles
   Theme tokens live in :root so the brand is editable in one place.
=================================================================== */

:root {
  --bg:            #05060a;
  --bg-soft:       #0a0d16;
  --bg-card:       #0e1320;
  --bg-card-2:     #11182a;
  --line:          rgba(255,255,255,0.08);
  --line-strong:   rgba(255,255,255,0.16);

  --text:          #eef2fb;
  --muted:         #98a2b8;
  --muted-2:       #6b7488;

  --blue-1:        #0a63ff;
  --blue-2:        #1f86ff;
  --blue-3:        #5cc6ff;
  --cyan:          #6fd2ff;
  --danger:        #ff5a7a;

  --grad:          linear-gradient(120deg, var(--blue-1), var(--blue-2) 55%, var(--cyan));
  --glow:          0 0 60px rgba(31,134,255,0.35);

  --radius:        18px;
  --radius-sm:     12px;
  --maxw:          1140px;

  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-wordmark: "Montserrat", "Space Grotesk", system-ui, sans-serif;
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 5vw, 24px); }

h1,h2,h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ===================================================================
   Ambient background
=================================================================== */
.bg-orbs { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.orb--1 { width: 520px; height: 520px; background: radial-gradient(circle, #1f86ff, transparent 70%); top: -160px; right: -120px; animation: float 18s ease-in-out infinite; }
.orb--2 { width: 460px; height: 460px; background: radial-gradient(circle, #0a63ff, transparent 70%); top: 40%; left: -180px; animation: float 22s ease-in-out infinite reverse; }
.orb--3 { width: 380px; height: 380px; background: radial-gradient(circle, #6fd2ff, transparent 70%); bottom: -120px; right: 20%; opacity: 0.25; animation: float 26s ease-in-out infinite; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  opacity: 0.5;
}
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-40px); } }

/* ===================================================================
   Buttons
=================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: .7em 1.3em; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .2s;
  white-space: nowrap;
}
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 30px rgba(31,134,255,0.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(31,134,255,0.5); }
.btn--ghost { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }
.btn--lg { font-size: 1.02rem; padding: .85em 1.6em; }
.btn--sm { font-size: .85rem; padding: .55em 1.05em; }
.btn--block { display: flex; width: 100%; }

/* ===================================================================
   Header
=================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 24px; max-width: var(--maxw); margin-inline: auto;
  backdrop-filter: blur(8px);
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(5,6,10,0.6); border-bottom: 1px solid var(--line);
  opacity: 0; transition: opacity .3s;
}
.site-header.scrolled::before { opacity: 1; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { filter: drop-shadow(0 0 12px rgba(31,134,255,0.45)); }
.brand__name { font-family: var(--font-wordmark); font-weight: 300; font-size: 1.15rem; letter-spacing: .32em; text-transform: uppercase; padding-left: .32em; }

.nav { display: flex; gap: 30px; margin-left: 34px; margin-right: auto; }
.nav a { color: var(--muted); font-size: .92rem; font-weight: 500; transition: color .2s; position: relative; }
.nav a:hover, .nav a.is-active { color: var(--text); }
.nav a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background: var(--grad); transition: width .25s; }
.nav a:hover::after, .nav a.is-active::after { width: 100%; }
.mobile-menu a.is-active { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 68px; left: 12px; right: 12px; z-index: 60;
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px; border-radius: var(--radius);
  background: rgba(14,19,32,0.92); backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  animation: menuIn .22s ease;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 13px 14px; border-radius: 12px; color: var(--text); font-weight: 500; font-family: var(--font-head); }
.mobile-menu a:active, .mobile-menu a:hover { background: rgba(255,255,255,0.06); }
.mobile-menu .btn { margin-top: 8px; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ===================================================================
   Sections / shared
=================================================================== */
.section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(10,13,22,0.7) 12%, rgba(10,13,22,0.7) 88%, transparent); }

.section-head { max-width: 720px; margin: 0 auto clamp(36px, 6vw, 56px); text-align: center; }
.kicker { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; color: var(--blue-3); margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 16px; }
.section-lead { color: var(--muted); font-size: 1.08rem; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: .85rem; color: var(--muted); padding: 7px 16px; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(255,255,255,0.03); margin-bottom: 28px; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-3); box-shadow: 0 0 10px var(--blue-3); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* ===================================================================
   Hero
=================================================================== */
.hero { padding: clamp(48px, 8vw, 90px) 0 clamp(40px, 6vw, 60px); text-align: center; }
.hero__inner { display: flex; flex-direction: column; align-items: center; }
.hero__title { font-size: clamp(1.85rem, 5.4vw, 4rem); max-width: 18ch; margin-bottom: 24px; text-wrap: balance; }
.hero__sub { color: var(--muted); font-size: clamp(1.02rem, 1.6vw, 1.22rem); max-width: 60ch; margin-bottom: 36px; }
.hero__sub em { color: var(--text); font-style: italic; }
.hero__sub strong { color: var(--text); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: clamp(44px, 7vw, 64px); width: 100%; }

.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; width: 100%; max-width: 860px;
}
.trust-strip li {
  display: flex; flex-direction: column; gap: 6px; padding: 22px 16px;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .25s, transform .25s;
}
.trust-strip li:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.trust__num { font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.trust__label { color: var(--muted); font-size: .86rem; }

/* ===================================================================
   Problem
=================================================================== */
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }
.card {
  padding: 28px 24px; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 18px 50px rgba(0,0,0,0.4); }
.card__icon { font-size: 1.8rem; margin-bottom: 14px; }
.card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .94rem; }

.cost-chart {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; overflow: hidden;
}
.cost-chart svg { width: 100%; height: auto; display: block; }
.chart-rent-line, .chart-rent-fill, .chart-own-line { stroke-dasharray: 1200; stroke-dashoffset: 1200; }
.reveal.in-view .chart-rent-line { animation: draw 2s ease forwards; }
.reveal.in-view .chart-rent-fill { animation: fade 2.4s ease forwards; }
.reveal.in-view .chart-own-line { animation: draw 1.4s ease .3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.cost-chart figcaption { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 16px; font-size: .85rem; }
.legend { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); }
.legend::before { content:""; width: 14px; height: 3px; border-radius: 2px; }
.legend--rent::before { background: var(--danger); }
.legend--own::before { background: var(--blue-3); }

/* ===================================================================
   Pillars + AI ribbon
=================================================================== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.pillar {
  position: relative; padding: clamp(26px, 4vw, 34px) clamp(22px, 3.5vw, 28px); border-radius: var(--radius);
  background: linear-gradient(160deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid var(--line); overflow: hidden; transition: transform .25s, border-color .25s;
}
.pillar::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background: var(--grad); opacity:.7; }
.pillar:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.pillar__badge { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--blue-3); margin-bottom: 18px; letter-spacing: .1em; }
.pillar h3 { font-size: 1.35rem; margin-bottom: 12px; }
.pillar p { color: var(--muted); }

.ai-ribbon {
  position: relative; display: flex; align-items: center; gap: 24px;
  padding: clamp(24px, 4vw, 40px); border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(120deg, rgba(10,99,255,0.14), rgba(111,210,255,0.08));
  border: 1px solid rgba(92,198,255,0.25);
}
.ai-ribbon__glow { position: absolute; width: 360px; height: 360px; background: radial-gradient(circle, rgba(31,134,255,0.4), transparent 70%); right: -80px; top: -120px; filter: blur(20px); }
.ai-ribbon__text { position: relative; }
.ai-ribbon h3 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 12px; }
.ai-ribbon p:last-child { color: var(--muted); max-width: 70ch; }

/* ===================================================================
   Calculator
=================================================================== */
.calc {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--bg-card);
}
.calc__controls { padding: clamp(22px, 4vw, 40px); border-right: 1px solid var(--line); background: var(--bg-soft); }
.calc__field { margin-bottom: 34px; }
.calc__field label { display: block; font-size: .9rem; color: var(--muted); margin-bottom: 6px; }
.calc__value { font-family: var(--font-head); font-weight: 700; font-size: 2rem; margin-bottom: 14px; }
.calc__note { font-size: .82rem; color: var(--muted-2); margin-top: 4px; }

input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: rgba(255,255,255,0.1); outline: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--grad); cursor: pointer; box-shadow: 0 0 0 4px rgba(31,134,255,0.2), 0 4px 12px rgba(0,0,0,.4); transition: transform .15s; }
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border: 0; border-radius: 50%; background: var(--blue-2); cursor: pointer; }
.calc__range-labels { display: flex; justify-content: space-between; font-size: .76rem; color: var(--muted-2); margin-top: 8px; }

.calc__results { padding: clamp(22px, 4vw, 40px); display: flex; flex-direction: column; }
.calc__bars { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: end; height: 200px; margin-bottom: 28px; }
.bar-group { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; gap: 10px; }
.bar { width: 70px; height: 100%; display: flex; align-items: flex-end; border-radius: 12px 12px 0 0; background: rgba(255,255,255,0.03); }
.bar__fill { width: 100%; border-radius: 12px 12px 0 0; height: 0; transition: height .9s cubic-bezier(.2,.8,.2,1); }
.bar--rent .bar__fill { background: linear-gradient(180deg, #ff5a7a, #b81f44); }
.bar--own .bar__fill { background: var(--grad); }
.bar__cap { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.bar__lbl { font-size: .82rem; color: var(--muted); text-align: center; }

.calc__headline { display: grid; grid-template-columns: 1fr 1fr; padding: 24px 0; border-top: 1px solid var(--line); }
.calc__stat { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 24px; }
.calc__stat + .calc__stat { border-left: 1px solid var(--line); }
.calc__stat-num { font-family: var(--font-head); font-weight: 700; font-size: 2rem; }
.calc__stat-lbl { font-size: .84rem; color: var(--muted); }
.calc__cta { margin-top: auto; }

/* ===================================================================
   Steps
=================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); }
.step__num {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: #fff;
  background: var(--grad); margin-bottom: 18px; box-shadow: var(--glow);
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .92rem; }

/* ===================================================================
   Pricing
=================================================================== */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 860px; margin: 0 auto 48px; }
.plan {
  position: relative; display: flex; flex-direction: column; padding: clamp(28px, 4vw, 38px) clamp(24px, 3.5vw, 32px); border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--line); transition: transform .25s, border-color .25s;
}
.plan .btn { margin-top: auto; }
.plan:hover { transform: translateY(-4px); }
.plan--featured { background: linear-gradient(165deg, rgba(10,99,255,0.16), var(--bg-card)); border-color: rgba(92,198,255,0.35); box-shadow: 0 20px 60px rgba(10,99,255,0.18); }
.plan__ribbon { position: absolute; top: 18px; right: 18px; font-family: var(--font-head); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; background: var(--grad); color: #fff; }
.plan__name { font-size: 1.5rem; margin-bottom: 6px; }
.plan__tag { color: var(--muted); margin-bottom: 24px; }
.plan__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plan__list li { position: relative; padding-left: 28px; color: var(--text); font-size: .95rem; }
.plan__list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-3); font-weight: 700; }
.plan__list strong { color: var(--blue-3); }

.guarantee {
  display: flex; align-items: center; gap: 28px; max-width: 860px; margin: 0 auto;
  padding: clamp(24px, 4vw, 32px) clamp(24px, 4vw, 36px); border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(111,210,255,0.08), rgba(10,99,255,0.06));
  border: 1px solid rgba(92,198,255,0.25);
}
.guarantee__seal {
  flex: none; width: 92px; height: 92px; display: grid; place-items: center;
  border-radius: 50%; font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: #fff;
  background: var(--grad); box-shadow: var(--glow);
}
.guarantee h3 { font-size: 1.3rem; margin-bottom: 8px; }
.guarantee p { color: var(--muted); }

/* ===================================================================
   Contact
=================================================================== */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.contact__points { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; color: var(--text); }
.contact__mail { color: var(--muted); margin-top: 20px; }
.contact__mail a { color: var(--blue-3); font-weight: 600; }

.contact__form { padding: clamp(22px, 4vw, 34px); border-radius: var(--radius); background: var(--bg-card); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .86rem; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  background: var(--bg-soft); border: 1px solid var(--line-strong); color: var(--text);
  font-family: var(--font-body); font-size: .95rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-2); box-shadow: 0 0 0 3px rgba(31,134,255,0.18); }
.field textarea { resize: vertical; }
.field input.invalid, .field select.invalid { border-color: var(--danger); }
.form-status { font-size: .9rem; min-height: 1.2em; }
.form-status.ok { color: #5ce0a0; }
.form-status.err { color: var(--danger); }

/* ===================================================================
   Footer
=================================================================== */
.site-footer { border-top: 1px solid var(--line); padding-top: 56px; margin-top: 40px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer__brand p { color: var(--muted); margin-top: 14px; font-size: .92rem; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a, .footer__contact a { color: var(--muted); font-size: .92rem; transition: color .2s; }
.footer__nav a:hover, .footer__contact a:hover { color: var(--text); }
.footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__base { display: flex; justify-content: space-between; padding: 22px 24px; border-top: 1px solid var(--line); font-size: .84rem; color: var(--muted-2); }

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

/* ===================================================================
   Responsive
=================================================================== */
/* tablet / small laptop */
@media (max-width: 980px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .problem-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .calc { grid-template-columns: 1fr; }
  .calc__controls { border-right: 0; border-bottom: 1px solid var(--line); }
  .contact { grid-template-columns: 1fr; gap: 32px; }
  .ai-ribbon { flex-direction: column; align-items: flex-start; }
  .ai-ribbon__glow { right: -120px; top: -160px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

/* large phone */
@media (max-width: 760px) {
  .header-actions .btn--sm { display: none; }
  .plans { grid-template-columns: 1fr; }
  .problem-grid, .steps { grid-template-columns: 1fr; }
  .guarantee { flex-direction: column; text-align: center; gap: 18px; }
  .calc__headline { gap: 22px; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer__base { flex-direction: column; gap: 8px; text-align: center; }
}

/* small phone */
@media (max-width: 520px) {
  .site-header { padding: 12px 16px; }
  .brand__name { font-size: 1.1rem; }
  .trust-strip { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-strip li { padding: 16px 14px; }
  .trust__num { font-size: 1.55rem; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .calc__headline { grid-template-columns: 1fr; gap: 16px; }
  .calc__stat + .calc__stat { border-left: 0; border-top: 1px solid var(--line); padding-top: 16px; }
  .calc__bars { gap: 18px; }
  .bar { width: 56px; }
  .section-head h2 { font-size: clamp(1.6rem, 7vw, 2rem); }
}

/* tighten hover-lift on touch devices (avoids sticky hover states) */
@media (hover: none) {
  .card:hover, .pillar:hover, .plan:hover, .trust-strip li:hover, .btn:hover { transform: none; }
}

/* ===================================================================
   Reduced motion
=================================================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .orb { animation: none; }
}

/* ===================================================================
   Multi-page additions (revision per spec)
=================================================================== */
.container--narrow { max-width: 820px; }

/* form: two fields side by side */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field__opt { color: var(--muted-2); font-weight: 400; }

/* section-level CTA row (sub-pages) */
.section-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 48px; }

/* calculator: "5-year total cost" caption above the bars */
.calc__results-cap { font-family: var(--font-head); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; text-align: center; }

/* "Why this matters" callout under the calculator */
.why-box {
  display: flex; align-items: flex-start; gap: 18px; margin-top: 24px;
  padding: 22px 26px; border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(111,210,255,0.06), rgba(10,99,255,0.05));
  border: 1px solid var(--line);
}
.why-box__icon { font-size: 1.4rem; line-height: 1; }
.why-box h3 { font-size: 1.05rem; margin-bottom: 6px; }
.why-box p { color: var(--muted); font-size: .94rem; }
.why-box__src { flex: none; align-self: center; color: var(--blue-3); font-weight: 600; font-size: .86rem; white-space: nowrap; }
.why-box__src:hover { text-decoration: underline; }

/* pricing: "from" price line */
.plan__from { font-size: .95rem; color: var(--muted); margin: -10px 0 22px; }
.plan__from strong { color: var(--text); font-family: var(--font-head); }
.plan__from span { color: var(--muted-2); }

/* ===================================================================
   FAQ accordion
=================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-card); overflow: hidden; transition: border-color .2s; }
.faq-item.is-open { border-color: var(--line-strong); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-head); font-weight: 500; font-size: 1.05rem; color: var(--text);
}
.faq-q:hover { color: #fff; }
.faq-ic { flex: none; position: relative; width: 16px; height: 16px; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; background: var(--blue-3); border-radius: 2px; transition: transform .25s, opacity .25s; }
.faq-ic::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-ic::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-item.is-open .faq-ic::after { transform: scaleY(0); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.is-open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 22px 22px; color: var(--muted); }

@media (max-width: 620px) {
  .field-row { grid-template-columns: 1fr; }
  .why-box { flex-direction: column; gap: 12px; }
  .why-box__src { align-self: flex-start; }
  .section-cta { flex-direction: column; }
  .section-cta .btn { width: 100%; }
}
