:root {
  --bg: #06070f;
  --bg-2: #0b0d1a;
  --surface: rgba(255, 255, 255, 0.035);
  --border: rgba(255, 255, 255, 0.09);
  --text: #f3f5fb;
  --muted: #9aa0bd;
  --muted-2: #676d8c;
  --violet: #a855f7;
  --indigo: #5566f6;
  --cyan: #3ecfff;
  --grad: linear-gradient(120deg, #3ecfff 0%, #5566f6 46%, #a855f7 100%);
  --grad-soft: linear-gradient(120deg, rgba(85,102,246,.18), rgba(168,85,247,.18));
  --radius: 18px;
  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

/* ---------- Ambient moving background ---------- */
.bg-fx {
  position: fixed; inset: 0; z-index: -3; overflow: hidden;
  background:
    radial-gradient(1200px 800px at 50% -12%, rgba(85,102,246,.16), transparent 60%),
    radial-gradient(900px 700px at 10% 18%, rgba(62,207,255,.09), transparent 60%),
    var(--bg);
}
.bg-fx::before, .bg-fx::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(90px); will-change: transform;
}
.bg-fx::before {
  width: 65vw; height: 65vw; left: -12vw; top: -22vh;
  background: radial-gradient(circle, rgba(62,207,255,.42), transparent 62%);
  animation: aurora1 26s ease-in-out infinite alternate;
}
.bg-fx::after {
  width: 60vw; height: 60vw; right: -10vw; top: 2vh;
  background: radial-gradient(circle, rgba(168,85,247,.40), transparent 62%);
  animation: aurora2 32s ease-in-out infinite alternate; animation-delay: -9s;
}
@keyframes aurora1 { 0% { transform: translate3d(0,0,0) scale(1); } 100% { transform: translate3d(14vw,12vh,0) scale(1.35); } }
@keyframes aurora2 { 0% { transform: translate3d(0,0,0) scale(1.15); } 100% { transform: translate3d(-13vw,9vh,0) scale(1); } }

.bg-grid {
  position: fixed; inset: -2px; z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 100% 60% at 50% 0%, #000 40%, transparent 80%);
  animation: gridpan 32s linear infinite;
}
@keyframes gridpan { to { background-position: 56px 56px; } }

.orb { position: fixed; border-radius: 50%; filter: blur(90px); opacity: .5; z-index: -2; will-change: transform;
  animation: float 20s var(--ease) infinite alternate; }
.orb-1 { width: 480px; height: 480px; background: #3b4ff0; top: -140px; left: -60px; }
.orb-2 { width: 440px; height: 440px; background: #7c3aed; bottom: -170px; right: -100px; animation-delay: -7s; }
@keyframes float { to { transform: translate3d(50px, 70px, 0) scale(1.15); } }

/* drifting mist band */
.fog {
  position: fixed; left: -10%; right: -10%; bottom: -6%; height: 46vh; z-index: -2; pointer-events: none;
  background: radial-gradient(60% 100% at 50% 100%, rgba(120,140,220,.14), transparent 72%);
  filter: blur(34px); will-change: transform; animation: fogdrift 34s ease-in-out infinite alternate;
}
@keyframes fogdrift { 0% { transform: translateX(-4%) translateY(0); } 100% { transform: translateX(5%) translateY(-2%); } }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ---------- Floating pill nav ---------- */
header {
  position: sticky; top: 0; z-index: 50; padding-top: 14px; background: transparent;
}
nav {
  display: flex; align-items: center; justify-content: space-between; height: 62px;
  padding: 0 10px 0 18px; border-radius: 999px;
  background: rgba(12,14,26,.55); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 40px rgba(0,0,0,.38);
  transition: background .3s, box-shadow .3s;
}
header.scrolled nav { background: rgba(12,14,26,.74); box-shadow: 0 14px 46px rgba(0,0,0,.5); }
.brand { display: flex; align-items: center; gap: 11px; font-family: 'Sora'; font-weight: 800;
  font-size: 1.15rem; letter-spacing: .02em; text-decoration: none; color: var(--text); }
.brand-logo { height: 40px; width: auto; display: block; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .92rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  padding: 10px 20px; border-radius: 999px; background: var(--grad); color: #06070f !important;
  font-weight: 700 !important; font-size: .9rem; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(85,102,246,.35);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(85,102,246,.5); }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 4px 0; border-radius: 2px; transition: .3s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 15px 30px; border-radius: 999px;
  font-weight: 600; font-size: .98rem; text-decoration: none; cursor: pointer; border: 0;
  transition: transform .2s var(--ease), box-shadow .3s; white-space: nowrap; font-family: inherit;
}
.btn-primary { background: var(--grad); color: #06070f; box-shadow: 0 8px 26px rgba(85,102,246,.42); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(85,102,246,.58); }
.btn-ghost { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.06); }

/* Click ripple on primary CTAs */
.btn-primary, .nav-cta { position: relative; overflow: hidden; }
.ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,.45);
  transform: scale(0); pointer-events: none; animation: ripple .6s ease-out forwards; }
@keyframes ripple { from { transform: scale(0); opacity: .55; } to { transform: scale(2.4); opacity: 0; } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; min-height: calc(100vh - 76px); display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 40px 0 72px; text-align: center; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  transform: scale(1.06); animation: heroKen 34s ease-in-out infinite alternate; will-change: transform; }
@keyframes heroKen { 0% { transform: scale(1.06) translate3d(0,0,0); } 100% { transform: scale(1.2) translate3d(0,-2.5%,0); } }
.hero-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(75% 65% at 50% 48%, rgba(6,7,15,.60), rgba(6,7,15,.26) 68%, rgba(6,7,15,.12)),
    linear-gradient(180deg, rgba(6,7,15,.40) 0%, rgba(6,7,15,.24) 34%, rgba(6,7,15,.72) 88%, var(--bg) 100%); }
.hero > .wrap { position: relative; z-index: 2; }
.brand-logo--foot { height: 48px; }

.pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border); font-size: .82rem; color: var(--muted);
  margin-bottom: 26px; backdrop-filter: blur(8px);
}
.pill .live { width: 7px; height: 7px; border-radius: 50%; background: #34d399; animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(52,211,153,.6)} 70%{box-shadow:0 0 0 8px rgba(52,211,153,0)} 100%{box-shadow:0 0 0 0 rgba(52,211,153,0)} }

.hero h1 {
  font-family: 'Sora'; font-weight: 800; letter-spacing: -.035em; line-height: 1.05;
  font-size: clamp(2.5rem, 6vw, 4.7rem); margin-bottom: 24px;
}
.hero h1 .g { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.sub { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--muted); max-width: 660px; margin: 0 auto 38px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: .85rem; color: var(--muted-2); }

/* ---------- Trust ---------- */
.trust { padding: 44px 0 10px; }
.trust .wrap { display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: center; align-items: center; }
.trust span { color: var(--muted-2); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; }
.trust .logos { display: flex; gap: 38px; flex-wrap: wrap; justify-content: center; }
.trust .logos b { font-family: 'Sora'; font-weight: 700; color: var(--muted); font-size: 1.05rem; opacity: .85; }

/* ---------- Section heading ---------- */
.sec { padding: 96px 0; }
.eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: .78rem; font-weight: 600;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 16px; }
.sec h2 { font-family: 'Sora'; font-weight: 800; letter-spacing: -.03em; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin-bottom: 18px; }
.sec .lead { color: var(--muted); font-size: 1.12rem; max-width: 640px; }
.head-center { text-align: center; }
.head-center .lead { margin: 0 auto; }

/* ---------- Comparison ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 52px; }
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 32px; position: relative; }
.panel--win { background: linear-gradient(160deg, rgba(85,102,246,.12), rgba(168,85,247,.06)); }
.panel--win::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.panel .plabel { display: block; font-family: 'Sora'; font-weight: 700; font-size: .98rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-bottom: 24px; }
.panel--win .plabel { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.clist { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.clist li { display: flex; align-items: flex-start; gap: 12px; font-size: .98rem; color: var(--muted); }
.panel--win .clist li { color: var(--text); }
.ic { flex: none; width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; font-size: .8rem; font-weight: 700; margin-top: 1px; }
.ic.cross { background: rgba(255,90,110,.12); color: #ff7085; }
.ic.check { background: var(--grad-soft); color: #a7f3d0; }
.panel--win .ic.check { background: rgba(52,211,153,.16); color: #6ee7b7; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 20px; margin-top: 52px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: transform .35s var(--ease), border-color .35s, background .35s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: var(--grad); opacity: 0;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; transition: opacity .35s;
}
.card:hover { transform: translateY(-6px); background: rgba(255,255,255,.05); }
.card:hover::before { opacity: .65; }
.card .ico {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; font-size: 1.45rem;
  background: var(--grad-soft); border: 1px solid var(--border); margin-bottom: 20px;
}
.card h3 { font-family: 'Sora'; font-weight: 600; font-size: 1.24rem; margin-bottom: 10px; letter-spacing: -.01em; }
.card p { color: var(--muted); font-size: .97rem; }
.card .ktag { display: inline-block; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--cyan); font-weight: 600; margin-bottom: 12px; }
.card .mini { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.card .mini li { position: relative; padding-left: 18px; color: var(--muted); font-size: .9rem; }
.card .mini li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 2px; background: var(--grad); }

/* ---------- Business engine band ---------- */
.engine { position: relative; }
.engine::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(85,102,246,.06) 40%, rgba(168,85,247,.05) 60%, transparent);
  border-block: 1px solid var(--border);
}
.statement { text-align: center; max-width: 860px; margin: 0 auto; }
.statement .big {
  font-family: 'Sora'; font-weight: 800; letter-spacing: -.03em; line-height: 1.12;
  font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 22px;
}
.statement .big .g { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.statement p { color: var(--muted); font-size: 1.14rem; }
.statement p + p { margin-top: 18px; }

/* ---------- Note / caveat ---------- */
.note { display: inline-flex; gap: 9px; align-items: flex-start; margin-top: 22px; padding: 11px 15px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--border); color: var(--muted-2); font-size: .82rem; max-width: 660px; text-align: left; }

/* ---------- Cost breakdown ---------- */
.costbar { display: flex; width: 100%; height: 62px; border-radius: 14px; overflow: hidden; gap: 2px; margin-top: 44px;
  background: var(--bg-2); border: 1px solid var(--border); }
.costseg { min-width: 0; border-radius: 3px; transition: filter .25s; cursor: default; }
.costseg:hover { filter: brightness(1.18); }
.cost-legend { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 44px; margin-top: 34px; text-align: left; }
.cost-item { display: flex; gap: 14px; align-items: flex-start; }
.cost-item .sw { flex: none; width: 14px; height: 14px; border-radius: 5px; margin-top: 6px; }
.cost-item .ci-h { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.cost-item h4 { font-family: 'Sora'; font-weight: 600; font-size: 1.04rem; }
.cost-item .rng { font-family: 'Sora'; font-weight: 700; font-size: .9rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cost-item p { color: var(--muted); font-size: .92rem; margin-top: 3px; }
.cost-foot { margin: 36px auto 0; color: var(--muted); font-size: 1.04rem; max-width: 780px; }
.cost-foot strong { color: var(--text); }

/* ---------- Flow / pipeline ---------- */
.flow { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin: 44px 0 10px; }
.flow .node { padding: 11px 16px; border-radius: 11px; background: var(--surface); border: 1px solid var(--border);
  font-family: 'Sora'; font-weight: 600; font-size: .9rem; white-space: nowrap; }
.flow .node.start { border-color: rgba(62,207,255,.5); color: var(--text); }
.flow .node.win { background: var(--grad); color: #06070f; border: 0; box-shadow: 0 6px 20px rgba(85,102,246,.4); }
.flow .sep { color: var(--muted-2); font-weight: 800; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.step { position: relative; padding: 28px 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.step .num { font-family: 'Sora'; font-weight: 800; font-size: 2.3rem; line-height: 1;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 14px; }
.step h4 { font-family: 'Sora'; font-weight: 600; font-size: 1.06rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .9rem; }

/* ---------- Portfolio ---------- */
.work { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 52px; }
.proj { border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; text-decoration: none;
  color: var(--text); background: var(--bg-2); transition: transform .35s var(--ease), border-color .35s;
  display: flex; flex-direction: column; }
.proj:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.2); }
.proj .thumb { height: 180px; position: relative; overflow: hidden; display: grid; place-items: center; }
.proj .thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(6,7,15,.85)); }
.thumb-migra { background: radial-gradient(120% 120% at 20% 10%, #1e3a8a, #0b1220); }
.thumb-switch { background: radial-gradient(120% 120% at 80% 10%, #0d9488, #06140f); }
.proj .thumb .glyph { font-size: 3.4rem; z-index: 1; filter: drop-shadow(0 8px 20px rgba(0,0,0,.4)); }
.proj .body { padding: 24px 26px 28px; }
.proj .tag { font-size: .74rem; text-transform: uppercase; letter-spacing: .16em; color: var(--cyan); font-weight: 600; }
.proj h3 { font-family: 'Sora'; font-weight: 700; font-size: 1.4rem; margin: 10px 0 8px; }
.proj p { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }
.proj .link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--text); }
.proj .link .arw { transition: transform .25s; }
.proj:hover .link .arw { transform: translateX(5px); }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 46px; align-items: start; margin-top: 50px; }
.contact-copy h2 { font-family: 'Sora'; font-weight: 800; letter-spacing: -.03em; font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.1; margin-bottom: 18px; }
.contact-copy p { color: var(--muted); font-size: 1.08rem; margin-bottom: 26px; }
.contact-points { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-points li { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .97rem; }
.contact-points .ic { background: var(--grad-soft); color: #a7f3d0; }
.contact-mail { display: inline-flex; align-items: center; gap: 9px; color: var(--text); text-decoration: none; font-weight: 600; }
.contact-mail:hover { color: var(--cyan); }

.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 32px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .84rem; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.field label .req { color: var(--violet); }
.field input, .field textarea {
  width: 100%; background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 12px;
  color: var(--text); padding: 13px 15px; font-family: inherit; font-size: .95rem; transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field textarea { resize: vertical; min-height: 108px; }
.field input:focus, .field textarea:focus { outline: none; border-color: rgba(85,102,246,.65); box-shadow: 0 0 0 3px rgba(85,102,246,.16); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
.form-ok { display: none; margin-top: 16px; padding: 13px 16px; border-radius: 12px;
  background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.32); color: #6ee7b7; font-size: .9rem; }
.form-note { margin-top: 14px; font-size: .8rem; color: var(--muted-2); text-align: center; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--border); padding: 60px 0 40px; }
.foot { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.foot .about { max-width: 340px; color: var(--muted); font-size: .94rem; }
.foot .about .brand { margin-bottom: 16px; }
.foot h5 { font-family: 'Sora'; font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted-2); margin-bottom: 18px; }
.foot a { display: block; color: var(--muted); text-decoration: none; font-size: .94rem; margin-bottom: 12px; transition: color .2s; }
.foot a:hover { color: var(--text); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: .86rem; }
.foot-bottom .socials { display: flex; gap: 16px; }
.foot-bottom .socials a { color: var(--muted); text-decoration: none; }
.foot-bottom .socials a:hover { color: var(--text); }

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

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 100; display: none; }
.cookie-banner.show { display: block; }
@keyframes cookieUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.cookie-inner { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px;
  background: rgba(12,14,26,.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 20px 22px; box-shadow: 0 20px 60px rgba(0,0,0,.55);
  animation: cookieUp .5s var(--ease); }
.cookie-text { font-size: .9rem; color: var(--muted); }
.cookie-text a { color: var(--cyan); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; }
.cookie-btn { padding: 10px 22px; border-radius: 999px; font-family: inherit; font-weight: 600; font-size: .88rem;
  cursor: pointer; border: 0; transition: transform .2s, background .2s; }
.cookie-btn.cookie-accept { background: var(--grad); color: #06070f; box-shadow: 0 6px 18px rgba(85,102,246,.35); }
.cookie-btn.cookie-accept:hover { transform: translateY(-2px); }
.cookie-btn.cookie-decline { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.cookie-btn.cookie-decline:hover { background: rgba(255,255,255,.06); }

/* ---------- Footer legal links ---------- */
.foot-bottom .foot-legal { display: flex; gap: 16px; }
.foot-bottom .foot-legal a { color: var(--muted); text-decoration: none; }
.foot-bottom .foot-legal a:hover { color: var(--text); }

/* ---------- Legal pages ---------- */
.legal { padding: 24px 0 90px; }
.legal .wrap { max-width: 820px; }
.legal-head { text-align: center; padding: 40px 0 26px; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.legal-head h1 { font-family: 'Sora'; font-weight: 800; letter-spacing: -.02em; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 10px; }
.legal-head .updated { color: var(--muted-2); font-size: .9rem; }
.legal .prose > p { color: var(--muted); margin-bottom: 15px; }
.legal .prose .intro { font-size: 1.06rem; }
.legal .prose h2 { font-family: 'Sora'; font-weight: 700; font-size: 1.28rem; letter-spacing: -.01em; margin: 36px 0 12px; }
.legal .prose ul { list-style: none; margin: 0 0 15px; display: flex; flex-direction: column; gap: 9px; }
.legal .prose ul li { position: relative; padding-left: 20px; color: var(--muted); }
.legal .prose ul li::before { content: ''; position: absolute; left: 2px; top: 10px; width: 6px; height: 6px; border-radius: 2px; background: var(--grad); }
.legal .prose a { color: var(--cyan); text-decoration: none; word-break: break-word; }
.legal .prose a:hover { text-decoration: underline; }
.legal .prose strong { color: var(--text); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .g-2, .g-3, .g-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .compare, .work, .foot, .contact-grid, .cost-legend { grid-template-columns: 1fr; }
  .foot { gap: 30px; }
}
@media (max-width: 620px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-links.open {
    display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column;
    background: rgba(8,9,18,.98); backdrop-filter: blur(14px); padding: 22px 24px; gap: 20px; border-bottom: 1px solid var(--border);
  }
  .g-2, .g-3, .g-4, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sec { padding: 66px 0; }
  .hero { padding: 52px 0 40px; }
  .brand-logo { height: 32px; }
  .costbar { height: 50px; }
}
@media (prefers-reduced-motion: reduce) {
  *, .reveal { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-video { display: none; }
}
