/* =========================================================
   GW Solutions — v3 Stylesheet (next-level)
   Themeable (dark/light), aurora + film-grain background,
   magnetic buttons, spotlight cards, 3D tilt,
   word-by-word reveals. Mobile-first, no frameworks.
   ========================================================= */

/* ---------- Theme tokens ---------- */
:root {
  --c1: #6366f1;   /* indigo */
  --c2: #22d3ee;   /* cyan   */
  --c3: #f472b6;   /* pink   */
  --accent: #f5a524;
  --accent-2: #fb923c;

  --grad:      linear-gradient(120deg, #6366f1, #22d3ee);
  --grad-warm: linear-gradient(120deg, #f5a524, #fb923c);
  --grad-text: linear-gradient(120deg, #818cf8 0%, #22d3ee 50%, #f472b6 100%);

  --radius: 18px; --radius-lg: 26px; --radius-xl: 34px;
  --container: 1200px; --header-h: 78px;
  --ease: cubic-bezier(.22,.68,.26,1);
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-head: "Sora", var(--font-body);
}

/* Dark theme (default) */
:root[data-theme="dark"] {
  --bg: #05070f;
  --bg-2: #0a0f20;
  --surface: rgba(255,255,255,.04);
  --surface-solid: #0d1426;
  --card-border: rgba(255,255,255,.10);
  --ink: #eef1f8;
  --ink-soft: #9aa3bd;
  --line: rgba(255,255,255,.10);
  --shadow-lg: 0 30px 80px rgba(0,0,0,.5);
  --shadow-md: 0 18px 50px rgba(0,0,0,.4);
  --spot: rgba(99,102,241,.18);
  --grain-opacity: .045;
}

/* Light theme */
:root[data-theme="light"] {
  --bg: #f4f6fc;
  --bg-2: #eaeefb;
  --surface: #ffffff;
  --surface-solid: #ffffff;
  --card-border: #e4e9f5;
  --ink: #141a2e;
  --ink-soft: #5b647d;
  --line: #e4e9f5;
  --shadow-lg: 0 30px 70px rgba(20,30,70,.14);
  --shadow-md: 0 16px 44px rgba(20,30,70,.10);
  --spot: rgba(99,102,241,.14);
  --grain-opacity: .025;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation: none !important; transition: none !important; } }

body { margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--bg); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; transition: background .4s var(--ease), color .4s var(--ease); }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.1; color: var(--ink); margin: 0 0 .4em; letter-spacing: -.025em; }
p { margin: 0 0 1rem; }
img, svg { max-width: 100%; display: block; }
a { color: var(--c2); text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.skip-link { position: absolute; left: 10px; top: -60px; background: var(--surface-solid); color: var(--ink); padding: 10px 16px; border-radius: 10px; z-index: 1300; transition: top .25s var(--ease); }
.skip-link:focus { top: 10px; }
.grad-text, .hero__title em { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: normal; background-size: 200% auto; animation: shimmer 6s linear infinite; }
@keyframes shimmer { to { background-position: 200% center; } }

/* ---------- Background FX (aurora + grain) ---------- */
.bg-fx { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.aurora { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.aurora--1 { width: 50vw; height: 50vw; background: var(--c1); top: -15%; left: -10%; animation: drift1 22s ease-in-out infinite; }
.aurora--2 { width: 45vw; height: 45vw; background: var(--c2); top: 20%; right: -15%; animation: drift2 26s ease-in-out infinite; }
.aurora--3 { width: 40vw; height: 40vw; background: var(--c3); bottom: -20%; left: 30%; opacity: .35; animation: drift1 30s ease-in-out infinite reverse; }
:root[data-theme="light"] .aurora { opacity: .28; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(6vw,5vh) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-7vw,4vh) scale(1.08); } }
/* Film grain via SVG noise data-URI */
.grain { position: absolute; inset: -200%; width: 500%; height: 500%; opacity: var(--grain-opacity); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); animation: grain 8s steps(6) infinite; }
@keyframes grain { 0%{transform:translate(0,0)} 20%{transform:translate(-5%,5%)} 40%{transform:translate(5%,-5%)} 60%{transform:translate(-3%,-3%)} 80%{transform:translate(3%,3%)} 100%{transform:translate(0,0)} }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.container--narrow { max-width: 820px; }
.section { position: relative; padding: 96px 0; }
.section--tight { padding: 48px 0; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 58px; }
.section__eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; font-size: .76rem; color: var(--c2); margin: 0 0 .9rem; }
.section__eyebrow--light { color: var(--c2); }
.section__title { font-size: clamp(2rem, 4.6vw, 3.1rem); font-weight: 700; }
.section__title--light { color: #fff; }
.section__lead { color: var(--ink-soft); font-size: 1.08rem; }
.section__lead--light { color: rgba(255,255,255,.72); }

/* ---------- Buttons + magnetic ---------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .55rem; font-family: var(--font-head); font-weight: 600; font-size: 1rem; padding: 15px 28px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer; transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease); white-space: nowrap; }
.btn--sm { padding: 10px 18px; font-size: .92rem; }
.btn--primary { background: var(--grad-warm); color: #1a1206; box-shadow: 0 10px 30px rgba(245,165,36,.32); }
.btn--primary:hover { box-shadow: 0 18px 46px rgba(245,165,36,.45); }
.btn--glass { background: rgba(255,255,255,.06); color: var(--ink); border-color: var(--card-border); backdrop-filter: blur(8px); }
.btn--glass:hover { background: rgba(255,255,255,.12); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--c1); color: var(--c1); }
.btn--block { width: 100%; }
.btn__arrow { transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }
[data-magnetic] { will-change: transform; }

/* ---------- Loader ---------- */
.loader { position: fixed; inset: 0; z-index: 2000; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; background: var(--bg); transition: opacity .6s var(--ease), visibility .6s var(--ease); }
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__brand { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.loader__track { width: 200px; height: 4px; border-radius: 999px; background: var(--line); overflow: hidden; }
.loader__fill { display: block; height: 100%; width: 0; background: var(--grad); transition: width .2s var(--ease); }
.loader__pct { font-family: var(--font-head); font-size: .82rem; color: var(--ink-soft); font-variant-numeric: tabular-nums; }

.progress-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad); z-index: 1500; transition: width .1s linear; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 1000; background: color-mix(in srgb, var(--bg) 70%, transparent); backdrop-filter: blur(16px) saturate(140%); border-bottom: 1px solid var(--line); transition: background .3s var(--ease); }
.header.is-scrolled { background: color-mix(in srgb, var(--bg) 92%, transparent); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.brand--light { color: #fff; }
.brand__mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(99,102,241,.4); }
.brand__name { font-size: 1.16rem; }
.brand--light .brand__name { color: #fff; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link { display: inline-block; padding: 9px 14px; border-radius: 10px; color: var(--ink-soft); font-weight: 500; font-size: .96rem; transition: color .2s, background .2s; }
.nav__link:hover { color: var(--ink); background: var(--surface); }
.header__actions { display: flex; align-items: center; gap: 10px; }

/* Theme toggle */
.theme-toggle { position: relative; width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--surface); cursor: pointer; overflow: hidden; }
.theme-toggle__icon { position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.1rem; transition: transform .4s var(--ease), opacity .4s var(--ease); }
.theme-toggle__icon--sun { color: var(--accent); }
.theme-toggle__icon--moon { color: var(--c2); }
:root[data-theme="dark"] .theme-toggle__icon--sun { transform: translateY(0); opacity: 1; }
:root[data-theme="dark"] .theme-toggle__icon--moon { transform: translateY(150%); opacity: 0; }
:root[data-theme="light"] .theme-toggle__icon--sun { transform: translateY(-150%); opacity: 0; }
:root[data-theme="light"] .theme-toggle__icon--moon { transform: translateY(0); opacity: 1; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px; background: transparent; border: 0; cursor: pointer; padding: 12px; border-radius: 12px; }
.nav-toggle span { height: 2.5px; width: 100%; background: var(--ink); border-radius: 3px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 90px 0 120px; }
.hero__inner { display: grid; gap: 50px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 9px; background: var(--surface); border: 1px solid var(--card-border); color: var(--ink-soft); font-weight: 600; padding: 7px 15px; border-radius: 999px; font-size: .84rem; margin: 0 0 1.3rem; backdrop-filter: blur(6px); }
.pill__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--c2); box-shadow: 0 0 0 4px color-mix(in srgb, var(--c2) 30%, transparent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--c2) 30%, transparent); } 50% { box-shadow: 0 0 0 9px transparent; } }
.hero__title { font-size: clamp(2.5rem, 6.6vw, 4.4rem); font-weight: 800; line-height: 1.04; }
.hero__subtitle { font-size: clamp(1.05rem, 2.4vw, 1.26rem); color: var(--ink-soft); max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 28px; }
.hero__trust { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; color: var(--ink-soft); font-weight: 600; font-size: .9rem; }
.hero__trust i { width: 5px; height: 5px; border-radius: 50%; background: var(--ink-soft); opacity: .5; }

/* Word-split reveal */
[data-split] .word { display: inline-block; overflow: hidden; vertical-align: top; }
[data-split] .word > span { display: inline-block; transform: translateY(110%); transition: transform .7s var(--ease); }
[data-split].is-revealed .word > span { transform: translateY(0); }

/* Hero visual + tilt */
.hero__visual { position: relative; display: flex; justify-content: center; perspective: 1200px; }
.tilt { transform-style: preserve-3d; transition: transform .2s var(--ease); will-change: transform; }
.glass-card { background: var(--surface); border: 1px solid var(--card-border); border-radius: var(--radius-xl); padding: 22px; backdrop-filter: blur(16px); box-shadow: var(--shadow-lg); width: 100%; max-width: 420px; }
.glass-card__head { display: flex; align-items: center; gap: 7px; margin-bottom: 18px; transform: translateZ(30px); }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot--g { background: #34d399; } .dot--y { background: #fbbf24; } .dot--r { background: #f87171; }
.glass-card__label { margin-left: auto; font-size: .8rem; color: var(--ink-soft); font-weight: 600; }
.glass-card__row { display: flex; align-items: center; gap: 13px; padding: 13px; border-radius: 14px; background: color-mix(in srgb, var(--ink) 6%, transparent); margin-bottom: 10px; }
.glass-card__row strong { display: block; color: var(--ink); font-size: .94rem; }
.glass-card__row small { color: var(--ink-soft); font-size: .8rem; }
.check { width: 30px; height: 30px; flex: none; display: grid; place-items: center; border-radius: 9px; background: rgba(52,211,153,.18); color: #34d399; font-weight: 700; }
.check--live { background: rgba(34,211,238,.18); color: #22d3ee; animation: pulse 1.6s infinite; }
.tag { margin-left: auto; font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.tag--ok { background: rgba(52,211,153,.16); color: #34d399; }
.tag--live { background: rgba(34,211,238,.16); color: #22d3ee; }
.glass-card__chart { display: flex; align-items: flex-end; gap: 8px; height: 80px; margin: 18px 6px 8px; }
.glass-card__chart span { flex: 1; border-radius: 6px 6px 3px 3px; background: var(--grad); opacity: .9; animation: grow 1.1s var(--ease) both; transform-origin: bottom; }
.glass-card__chart span:nth-child(6) { background: var(--grad-warm); }
@keyframes grow { from { transform: scaleY(0); } }
.glass-card__cap { margin: 0; font-size: .8rem; color: var(--ink-soft); text-align: center; }
.float-badge { position: absolute; bottom: -56px; left: -6px; display: flex; align-items: center; gap: 11px; background: var(--surface-solid); color: var(--ink); padding: 12px 16px; border-radius: 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--card-border); animation: bob 4s ease-in-out infinite; }
.float-badge__icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: var(--grad-warm); font-size: 1.1rem; }
.float-badge strong { display: block; font-size: .9rem; }
.float-badge small { color: var(--ink-soft); font-size: .78rem; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* Scroll cue */
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid var(--ink-soft); border-radius: 14px; display: grid; justify-items: center; padding-top: 7px; opacity: .6; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 3px; background: var(--ink-soft); animation: cue 1.6s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: .2; } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 18px 0; background: var(--surface); -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: flex; align-items: center; width: max-content; white-space: nowrap; animation: scroll-x 64s linear infinite; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.marquee__group { display: flex; align-items: center; gap: 26px; padding-right: 26px; flex-shrink: 0; }
.marquee__track i { color: var(--accent); font-style: normal; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.stat { text-align: center; padding: 26px 16px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--card-border); backdrop-filter: blur(6px); }
.stat__num { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem, 5vw, 2.8rem); background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { color: var(--ink-soft); font-size: .86rem; font-weight: 500; }

/* ---------- Spotlight cards (shared) ---------- */
[data-spotlight] { position: relative; }
[data-spotlight]::after { content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0; transition: opacity .3s var(--ease); background: radial-gradient(380px circle at var(--mx,50%) var(--my,50%), var(--spot), transparent 60%); pointer-events: none; }
[data-spotlight]:hover::after { opacity: 1; }

/* ---------- Services bento ---------- */
.bento { display: grid; grid-template-columns: 1fr; gap: 18px; }
.tile { position: relative; background: var(--surface); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 28px; overflow: hidden; backdrop-filter: blur(6px); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.tile:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--c1) 50%, transparent); }
.tile__icon { width: 58px; height: 58px; display: grid; place-items: center; font-size: 1.7rem; border-radius: 16px; background: color-mix(in srgb, var(--c1) 16%, transparent); margin-bottom: 18px; position: relative; z-index: 1; }
.tile__title, .tile__text, .tile__link { position: relative; z-index: 1; }
.tile__title { font-size: 1.22rem; }
.tile__text { color: var(--ink-soft); font-size: .96rem; }
.tile__link { font-weight: 600; color: var(--c2); font-size: .94rem; }
.tile--feature { background: var(--grad); border-color: transparent; color: #fff; }
.tile--feature .tile__title { color: #fff; }
.tile--feature .tile__text { color: rgba(255,255,255,.85); }
.tile--feature .tile__icon { background: rgba(255,255,255,.18); }
.tile--feature .tile__link { color: #fff; }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.why { position: relative; background: var(--surface); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 28px; overflow: hidden; backdrop-filter: blur(6px); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.why:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why > * { position: relative; z-index: 1; }
.why__icon { width: 54px; height: 54px; display: grid; place-items: center; font-size: 1.5rem; border-radius: 50%; background: var(--grad); margin-bottom: 16px; box-shadow: 0 10px 26px rgba(99,102,241,.35); }
.why h3 { font-size: 1.12rem; }
.why p { color: var(--ink-soft); font-size: .94rem; margin: 0; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: stretch; }
.plan { position: relative; background: var(--surface); border: 1px solid var(--card-border); border-radius: var(--radius-xl); padding: 36px 30px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; backdrop-filter: blur(6px); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.plan:hover { transform: translateY(-7px); }
.plan--featured { border-color: transparent; background: var(--grad); color: #fff; }
.plan--featured .plan__name { color: #fff; }
.plan__badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--grad-warm); color: #1a1206; font-family: var(--font-head); font-weight: 700; font-size: .78rem; padding: 6px 18px; border-radius: 999px; box-shadow: 0 8px 22px rgba(245,165,36,.4); white-space: nowrap; }
.plan__name { font-size: 1.4rem; }
.plan__tag { color: var(--ink-soft); margin-bottom: 22px; }
.plan--featured .plan__tag { color: rgba(255,255,255,.8); }
.plan__list { display: grid; gap: 13px; margin: 0 0 28px; flex: 1; }
.plan__list li { position: relative; padding-left: 32px; }
.plan--featured .plan__list li { color: rgba(255,255,255,.95); }
.plan__list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; display: grid; place-items: center; background: color-mix(in srgb, var(--c2) 30%, transparent); color: var(--ink); border-radius: 50%; font-size: .72rem; font-weight: 700; }
.plan--featured .plan__list li::before { background: rgba(255,255,255,.22); color: #fff; }

/* ---------- Timeline ---------- */
.timeline { display: grid; grid-template-columns: 1fr; gap: 20px; list-style: none; margin: 0; padding: 0; }
.tl { position: relative; background: var(--surface); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 30px 26px; backdrop-filter: blur(6px); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.tl:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tl__num { display: inline-grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; width: 52px; height: 52px; border-radius: 15px; background: var(--grad); color: #fff; margin-bottom: 16px; box-shadow: 0 10px 26px rgba(99,102,241,.35); }
.tl h3 { font-size: 1.1rem; } .tl p { color: var(--ink-soft); font-size: .94rem; margin: 0; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: 1fr; gap: 22px; }
.review { position: relative; background: var(--surface); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 30px; margin: 0; overflow: hidden; backdrop-filter: blur(6px); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review > * { position: relative; z-index: 1; }
.review__stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 14px; }
.review blockquote { margin: 0 0 22px; font-size: 1.04rem; color: var(--ink); }
.review figcaption { display: flex; align-items: center; gap: 14px; }
.avatar { width: 48px; height: 48px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--grad); color: #fff; font-weight: 700; font-family: var(--font-head); }
.review figcaption small { display: block; color: var(--ink-soft); }

/* ---------- Accordion ---------- */
.accordion { display: grid; gap: 14px; }
.ac-item { background: var(--surface); border: 1px solid var(--card-border); border-radius: var(--radius); overflow: hidden; backdrop-filter: blur(6px); transition: border-color .25s var(--ease); }
.ac-item:has(.ac-trigger[aria-expanded="true"]) { border-color: color-mix(in srgb, var(--c1) 50%, transparent); }
.ac-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; background: transparent; border: 0; cursor: pointer; padding: 22px 24px; text-align: left; font-family: var(--font-head); font-weight: 600; font-size: 1.04rem; color: var(--ink); }
.ac-icon { position: relative; width: 20px; height: 20px; flex: none; }
.ac-icon::before, .ac-icon::after { content: ""; position: absolute; background: var(--c2); border-radius: 2px; transition: transform .3s var(--ease); }
.ac-icon::before { top: 9px; left: 0; width: 20px; height: 2.5px; }
.ac-icon::after { top: 0; left: 9px; width: 2.5px; height: 20px; }
.ac-trigger[aria-expanded="true"] .ac-icon::after { transform: scaleY(0); }
.ac-panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.ac-panel p { padding: 0 24px 22px; color: var(--ink-soft); margin: 0; }

/* ---------- Contact ---------- */
.contact-card { display: grid; grid-template-columns: 1fr; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--card-border); }
.contact-card__info { position: relative; background: var(--grad); color: #fff; padding: 44px 36px; }
.contact-list { display: grid; gap: 16px; margin: 26px 0 0; }
.contact-list li { display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.92); }
.contact-list a { color: #fff; } .contact-list a:hover { text-decoration: underline; }
.contact-card__form { background: var(--surface-solid); padding: 44px 36px; display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 600; color: var(--ink); font-size: .94rem; }
.field input, .field textarea { font: inherit; color: var(--ink); padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--surface); transition: border-color .2s, box-shadow .2s; width: 100%; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--c1); box-shadow: 0 0 0 4px color-mix(in srgb, var(--c1) 20%, transparent); }
.field.is-invalid input, .field.is-invalid textarea { border-color: #ef4444; }
.field__error { color: #ef4444; font-size: .82rem; min-height: 1em; }
.form-status { font-weight: 600; margin: 0; min-height: 1.2em; }
.form-status.is-success { color: #22c55e; } .form-status.is-error { color: #ef4444; }

/* ---------- Footer ---------- */
.footer { position: relative; background: var(--bg-2); color: var(--ink-soft); padding-top: 64px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; gap: 36px; grid-template-columns: 1fr; padding-bottom: 44px; }
.footer__about { margin-top: 16px; font-size: .94rem; }
.footer__title { color: var(--ink); font-size: 1.04rem; margin-bottom: 16px; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { color: var(--ink-soft); transition: color .2s; }
.footer__links a:hover { color: var(--c2); }
.footer__bar { border-top: 1px solid var(--line); padding: 22px 0; font-size: .88rem; }
.footer__bar p { margin: 0; }
.footer .brand { color: var(--ink); }
.footer .brand__name { color: var(--ink); }

/* ---------- FABs ---------- */
.fab { position: fixed; z-index: 900; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; border: 0; cursor: pointer; box-shadow: var(--shadow-lg); transition: transform .25s var(--ease), opacity .25s var(--ease); }
.fab--whatsapp { right: 24px; bottom: 24px; background: #25d366; color: #fff; }
.fab--whatsapp::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: ring 2.4s infinite; }
@keyframes ring { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70%,100% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } }
.fab--top { right: 24px; bottom: 92px; background: var(--grad); color: #fff; font-size: 1.3rem; opacity: 0; visibility: hidden; transform: translateY(12px); }
.fab--top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 620px) {
  .stats__grid { grid-template-columns: repeat(4,1fr); }
  .bento { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .reviews { grid-template-columns: repeat(2,1fr); }
  .timeline { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 940px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; }
  .bento { grid-template-columns: repeat(4,1fr); }
  .tile--wide { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(3,1fr); }
  .why:nth-child(4) { grid-column: 1 / 2; }
  .pricing { grid-template-columns: repeat(3,1fr); }
  .pricing .plan--featured { transform: translateY(-14px); }
  .pricing .plan--featured:hover { transform: translateY(-20px); }
  .timeline { grid-template-columns: repeat(4,1fr); }
  .tl:not(:last-child)::after { content: ""; position: absolute; top: 56px; left: 100%; width: 20px; height: 2px; background: linear-gradient(90deg, var(--c1), transparent); }
  .reviews { grid-template-columns: repeat(3,1fr); }
  .contact-card { grid-template-columns: .92fr 1.08fr; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
}
@media (max-width: 939px) {
  .nav-toggle { display: flex; }
  .header__cta { display: none; }
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; background: color-mix(in srgb, var(--bg) 96%, transparent); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
  .nav.is-open { max-height: 80vh; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; padding: 16px 22px 26px; }
  .nav__link { padding: 14px 16px; font-size: 1.02rem; }
}
