/* =====================================================================
   Peace Websites — styles
   Design tokens live under :root. Dark "night sky" base with aurora
   accents; light sections for contrast. Fonts: Sora (display) + Inter.
   ===================================================================== */
:root {
  --bg: #061024;
  --bg-2: #08162f;
  --surface: #0d1d3a;
  --surface-2: #132648;
  --border: rgba(255, 255, 255, .09);
  --text: #eef1f8;
  --muted: #a3acc4;
  --light-bg: #f3f7f8;
  --light-surface: #ffffff;
  --light-text: #0b1020;
  --light-muted: #59627a;
  --light-border: rgba(11, 16, 32, .1);
  --brand-teal: #01605e;
  --brand-navy: #02234d;
  --teal: #14c9b4;
  --cyan: #2fb7e8;
  --violet: #3b82f6;
  --pink: #60a5fa;
  --grad: linear-gradient(115deg, var(--teal) 0%, var(--cyan) 45%, var(--violet) 100%);
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --nav-h: 72px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --shadow: 0 30px 80px -20px rgba(0, 0, 0, .6);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:has(.mobile-menu.is-open), html:has(.lightbox.is-open) { overflow: hidden; }
html:has(.mobile-menu.is-open) .promo { display: none; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -.02em; margin: 0; }
h2 { font-size: clamp(30px, 4.6vw, 52px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.2vw, 24px); font-weight: 600; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--violet); color: #fff; }
[hidden] { display: none !important; }
[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }
.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.container--narrow { max-width: 820px; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow {
  font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--teal); margin: 0 0 14px; display: inline-flex; align-items: center; gap: 10px;
}
.section--light .eyebrow { color: var(--brand-teal); }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(20, 201, 180, .2); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(20, 201, 180, .2); } 50% { box-shadow: 0 0 0 9px rgba(20, 201, 180, 0); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px; font-family: var(--font-display); font-weight: 600; font-size: 15px;
  border: 1px solid transparent; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, border-color .3s;
  position: relative; overflow: hidden; white-space: nowrap; min-height: 48px;
}
.btn--sm { padding: 10px 18px; font-size: 14px; min-height: 40px; }
.btn--lg { padding: 17px 30px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--grad); color: #06101a; box-shadow: 0 10px 30px -10px rgba(47, 183, 232, .55); }
.btn--primary::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .45) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s var(--ease);
}
.btn--primary:hover::after { transform: translateX(120%); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(47, 183, 232, .7); }
.btn--ghost { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .18); color: var(--text); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .35); transform: translateY(-2px); }
.section--light .btn--ghost { background: transparent; border-color: rgba(11, 16, 32, .18); color: var(--light-text); }
.section--light .btn--ghost:hover { background: rgba(11, 16, 32, .05); border-color: rgba(11, 16, 32, .35); }

/* ---------- Scroll progress ---------- */
.progress { position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 1000; pointer-events: none; }
.progress span { display: block; height: 100%; width: 0; background: var(--grad); transition: width .1s linear; }
@supports (animation-timeline: scroll()) {
  .progress span { width: 100%; transform-origin: left; transform: scaleX(0); animation: grow linear both; animation-timeline: scroll(root); transition: none; }
  @keyframes grow { to { transform: scaleX(1); } }
}

/* ---------- Promo bar ---------- */
.promo { background: linear-gradient(90deg, #061024, #0b2b5c 50%, #061024); border-bottom: 1px solid var(--border); font-size: 14px; position: relative; z-index: 60; }
.promo__inner { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 9px 0; flex-wrap: wrap; text-align: center; }
.promo__tag { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); }
.promo__text s { color: var(--muted); }
.promo__text strong { color: #fff; font-size: 15px; }
.promo__cta { font-weight: 600; color: var(--cyan); }
.promo__cta:hover { text-decoration: underline; }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; transition: background .4s, border-color .4s, backdrop-filter .4s; border-bottom: 1px solid transparent; }
.nav.is-scrolled { background: rgba(7, 10, 18, .72); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%); border-color: var(--border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--nav-h); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -.02em; }
.brand__mark { width: 32px; height: 34px; flex: none; }
.brand__mark svg { width: 100%; height: 100%; }
.brand__text { white-space: nowrap; }
.brand__text em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav__links { display: flex; gap: 4px; }
.nav__links a { padding: 8px 13px; border-radius: 999px; font-size: 14.5px; font-weight: 500; color: var(--muted); transition: color .25s, background .25s; }
.nav__links a:hover, .nav__links a.is-active { color: #fff; background: rgba(255, 255, 255, .07); }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone { font-weight: 600; font-size: 14.5px; color: var(--muted); }
.nav__phone:hover { color: #fff; }
.burger { display: none; width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 12px; background: rgba(255, 255, 255, .04); flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.burger span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 45; background: var(--bg); padding: calc(var(--nav-h) + 16px) var(--gutter) calc(20px + env(safe-area-inset-bottom, 0px));
  display: flex; flex-direction: column; justify-content: space-between; gap: 20px; overflow-y: auto; opacity: 0; visibility: hidden;
  transform: translateY(-2%); transition: opacity .35s var(--ease), transform .45s var(--ease), visibility 0s .45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.mobile-menu__links a { display: flex; align-items: baseline; gap: 16px; padding: 10px 0; font-family: var(--font-display); font-size: clamp(22px, 6vw, 32px); font-weight: 700; border-bottom: 1px solid var(--border); transform: translateX(-16px); opacity: 0; transition: transform .5s var(--ease), opacity .4s; }
.mobile-menu.is-open .mobile-menu__links a { transform: none; opacity: 1; }
.mobile-menu__links a:nth-child(n) { transition-delay: calc(.05s * var(--i, 1)); }
.mobile-menu__links a span { font-size: 12px; color: var(--teal); letter-spacing: .15em; }
.mobile-menu__foot { display: grid; gap: 10px; }
.mobile-menu__contact { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); flex-wrap: wrap; gap: 8px; margin-top: 8px; }

/* ---------- Aurora background ---------- */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.aurora i {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; mix-blend-mode: screen;
  animation: drift 18s ease-in-out infinite alternate;
}
.aurora i:nth-child(1) { width: 60vw; height: 60vw; left: -15vw; top: -25vw; background: radial-gradient(circle, var(--teal), transparent 60%); }
.aurora i:nth-child(2) { width: 55vw; height: 55vw; right: -15vw; top: -10vw; background: radial-gradient(circle, var(--violet), transparent 60%); animation-delay: -6s; animation-duration: 22s; }
.aurora i:nth-child(3) { width: 45vw; height: 45vw; left: 30vw; bottom: -25vw; background: radial-gradient(circle, var(--cyan), transparent 60%); animation-delay: -12s; animation-duration: 26s; }
.aurora i:nth-child(4) { width: 30vw; height: 30vw; right: 20vw; bottom: -5vw; background: radial-gradient(circle, var(--pink), transparent 60%); opacity: .3; animation-delay: -3s; }
.aurora--soft i { opacity: .25; }
.aurora--soft i:nth-child(1) { left: -20vw; top: -10vw; }
.aurora--soft i:nth-child(2) { right: -20vw; bottom: -20vw; top: auto; }
@keyframes drift { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(8vw, 6vw, 0) scale(1.15); } }
.grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 70%);
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 8vw, 96px) 0 clamp(60px, 8vw, 110px); min-height: calc(100svh - var(--nav-h)); display: flex; align-items: center; }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero__eyebrow { opacity: 0; animation: fadeUp .8s var(--ease) .1s forwards; }
.hero__title { font-size: clamp(38px, 6vw, 72px); font-weight: 800; letter-spacing: -.035em; line-height: 1.02; margin-bottom: 24px; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line span { display: inline-block; transform: translateY(110%); animation: rise .9s var(--ease) forwards; }
.hero__title .line:nth-child(1) span { animation-delay: .15s; }
.hero__title .line:nth-child(2) span { animation-delay: .25s; }
.hero__title .line:nth-child(3) span { animation-delay: .35s; }
.hero__title .line:nth-child(4) span { animation-delay: .45s; }
@keyframes rise { to { transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero__lead { font-size: clamp(16px, 1.4vw, 19px); color: var(--muted); max-width: 58ch; opacity: 0; animation: fadeUp .8s var(--ease) .6s forwards; }
.hero__lead strong { color: #fff; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 36px; opacity: 0; animation: fadeUp .8s var(--ease) .75s forwards; }
.hero__stats { display: grid; grid-template-columns: repeat(4, auto); gap: 8px 28px; opacity: 0; animation: fadeUp .8s var(--ease) .9s forwards; }
.hero__stats li { display: grid; gap: 2px; }
.hero__stats strong { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.hero__stats strong small { font-size: .55em; font-weight: 600; color: var(--muted); }
.hero__stats li > span { font-size: 12.5px; color: var(--muted); letter-spacing: .02em; }

/* Hero devices */
.hero__visual { position: relative; height: clamp(360px, 40vw, 560px); opacity: 0; animation: fadeUp 1.1s var(--ease) .5s forwards; perspective: 1400px; }
.laptop { position: absolute; left: 0; right: 12%; top: 6%; transform: rotateY(-8deg) rotateX(4deg); transform-style: preserve-3d; transition: transform .6s var(--ease); }
.laptop__screen { position: relative; aspect-ratio: 16 / 10; background: #05070c; border-radius: 16px 16px 6px 6px; border: 2px solid #232a3c; padding: 10px 10px 0; box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, .06), inset 0 0 0 1px rgba(255, 255, 255, .04); overflow: hidden; }
.laptop__cam { position: absolute; top: 3px; left: 50%; width: 6px; height: 6px; border-radius: 50%; background: #1f2937; transform: translateX(-50%); z-index: 2; }
.laptop__base { height: 14px; margin: 0 -4%; background: linear-gradient(#2a3247, #151a28); border-radius: 0 0 14px 14px; box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .7); }
.laptop__base::before { content: ""; display: block; width: 18%; height: 4px; margin: 0 auto; background: #0b0f1a; border-radius: 0 0 6px 6px; }
.rotator { position: absolute; inset: 10px 10px 0; border-radius: 8px 8px 0 0; overflow: hidden; background: #0f1424; }
.rotator img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; opacity: 0; transition: opacity 1s var(--ease), transform 6s linear; transform: scale(1.02); }
.rotator img.is-active { opacity: 1; transform: scale(1); }
.phone { position: absolute; right: 0; bottom: 0; width: clamp(120px, 22%, 170px); aspect-ratio: 9 / 19.2; background: #05070c; border-radius: 26px; border: 2px solid #2a3247; padding: 8px; box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, .06); transform: rotateY(10deg) rotateX(-2deg); transition: transform .6s var(--ease); z-index: 2; }
.phone__notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 36%; height: 12px; background: #05070c; border-radius: 8px; z-index: 3; }
.phone .rotator { inset: 8px; border-radius: 18px; }
.phone .rotator img { object-position: top; }
.chip { position: absolute; display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; background: rgba(16, 22, 42, .85); border: 1px solid var(--border); backdrop-filter: blur(10px); font-size: 13px; font-weight: 500; box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .8); animation: float 6s ease-in-out infinite; z-index: 3; white-space: nowrap; }
.chip__ico { font-size: 15px; }
.chip--a { left: -4%; top: -2%; animation-delay: -1s; }
.chip--b { left: 6%; bottom: 4%; animation-delay: -3s; }
.chip--c { right: -3%; top: 34%; animation-delay: -5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.scroll-hint { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, .25); border-radius: 14px; display: none; }
.scroll-hint span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--teal); animation: hint 1.8s infinite; }
@keyframes hint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }
@media (min-width: 1024px) { .scroll-hint { display: block; } }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); overflow: hidden; padding: 16px 0; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; gap: 48px; width: max-content; animation: marquee 60s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); white-space: nowrap; display: inline-flex; align-items: center; gap: 48px; }
.marquee__track span::after { content: "✦"; color: var(--teal); font-size: 10px; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- Sections ---------- */
.section { position: relative; padding: clamp(72px, 9vw, 128px) 0; }
.section--light { background: var(--light-bg); color: var(--light-text); }
.section--light h2, .section--light h3 { color: var(--light-text); }
.section__head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__lead { font-size: clamp(16px, 1.3vw, 18.5px); color: var(--muted); margin-top: 16px; }
.section--light .section__lead { color: var(--light-muted); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .08s; } .reveal:nth-child(3) { transition-delay: .16s; } .reveal:nth-child(4) { transition-delay: .24s; }

/* ---------- Work ---------- */
.section--work { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.work__controls { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip-btn { padding: 9px 15px; border-radius: 999px; border: 1px solid var(--border); background: rgba(255, 255, 255, .03); font-size: 13.5px; font-weight: 500; color: var(--muted); transition: all .3s var(--ease); }
.chip-btn:hover { color: #fff; border-color: rgba(255, 255, 255, .3); }
.chip-btn.is-active { background: #fff; color: #06101a; border-color: #fff; }
.device-toggle { display: inline-flex; padding: 4px; border-radius: 999px; border: 1px solid var(--border); background: rgba(255, 255, 255, .03); }
.device-toggle button { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 999px; border: 0; background: transparent; font-size: 13.5px; font-weight: 500; color: var(--muted); transition: all .3s var(--ease); }
.device-toggle button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.device-toggle button.is-active { background: var(--surface-2); color: #fff; box-shadow: 0 2px 10px rgba(0, 0, 0, .3); }

.work__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work__grid[data-device="mobile"] { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 18px; }
.site {
  position: relative; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border);
  overflow: hidden; cursor: pointer; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s, opacity .4s, scale .4s;
  --mx: 50%; --my: 50%; transform-style: preserve-3d;
}
.site::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px circle at var(--mx) var(--my), rgba(255, 255, 255, .09), transparent 45%); opacity: 0; transition: opacity .4s; pointer-events: none; z-index: 2; }
.site:hover::before, .site:focus-visible::before { opacity: 1; }
.site:hover, .site:focus-visible { border-color: rgba(255, 255, 255, .22); box-shadow: 0 30px 60px -25px rgba(0, 0, 0, .8); }
.site.is-hidden { display: none; }
.site--featured { grid-column: span 2; }
.browser { background: #08142b; }
.browser__bar { display: flex; align-items: center; gap: 6px; padding: 10px 12px; background: #122142; border-bottom: 1px solid var(--border); }
.browser__bar i { width: 9px; height: 9px; border-radius: 50%; background: #2c3550; }
.browser__bar i:nth-child(1) { background: #ff5f57; } .browser__bar i:nth-child(2) { background: #febc2e; } .browser__bar i:nth-child(3) { background: #28c840; }
.browser__bar span { margin-left: 8px; flex: 1; padding: 4px 10px; border-radius: 6px; background: #08142b; font-size: 11px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.browser__screen { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.browser__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: object-position 3.5s var(--ease), transform .8s var(--ease); }
.site:hover .browser__screen img { object-position: bottom; }
.site--featured .browser__screen { aspect-ratio: 16 / 8.2; }
.site__info { padding: 16px 18px 18px; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.site__ind { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: 4px; }
.site__name { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.site__place { font-size: 13px; color: var(--muted); margin-top: 2px; }
.site__open { flex: none; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; font-size: 16px; transition: all .3s var(--ease); }
.site:hover .site__open { background: #fff; color: #06101a; border-color: #fff; transform: rotate(45deg); }
/* mobile-device view */
.work__grid[data-device="mobile"] .site { background: transparent; border: 0; overflow: visible; }
.work__grid[data-device="mobile"] .site::before { display: none; }
.work__grid[data-device="mobile"] .site--featured { grid-column: auto; }
.work__grid[data-device="mobile"] .browser { display: none; }
.work__grid[data-device="mobile"] .site__info { padding: 12px 4px 0; flex-direction: column; gap: 4px; }
.work__grid[data-device="mobile"] .site__open { display: none; }
.work__grid[data-device="mobile"] .site__place { display: none; }
.phone-card { display: none; position: relative; aspect-ratio: 9 / 19.2; background: #05070c; border-radius: 22px; border: 2px solid #2a3247; padding: 6px; box-shadow: 0 25px 50px -20px rgba(0, 0, 0, .8); overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.phone-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 16px; transition: object-position 4s var(--ease); }
.phone-card::after { content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 34%; height: 10px; border-radius: 6px; background: #05070c; }
.work__grid[data-device="mobile"] .phone-card { display: block; }
.work__grid[data-device="mobile"] .site:hover .phone-card { transform: translateY(-6px); box-shadow: 0 35px 60px -20px rgba(0, 0, 0, .9); }
.work__grid[data-device="mobile"] .site:hover .phone-card img { object-position: bottom; }
.work__note { text-align: center; margin: 36px 0 0; color: var(--muted); }
.work__note a { color: var(--teal); font-weight: 600; }

/* ---------- Difference / compare ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split__copy p { color: var(--light-muted); font-size: 17px; }
.ticks li { position: relative; padding-left: 32px; margin-bottom: 14px; color: var(--light-muted); }
.ticks li strong { color: var(--light-text); }
.section:not(.section--light) .ticks li { color: var(--muted); }
.section:not(.section--light) .ticks li strong { color: #fff; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--grad); }
.ticks li::after { content: ""; position: absolute; left: 7px; top: 9px; width: 5px; height: 9px; border: solid #06101a; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.ticks--sm li { font-size: 14.5px; margin-bottom: 10px; padding-left: 28px; }
.ticks--sm li::before { width: 17px; height: 17px; top: 3px; } .ticks--sm li::after { left: 6px; top: 6px; width: 4px; height: 8px; }
.compare { background: var(--light-surface); border: 1px solid var(--light-border); border-radius: var(--radius); padding: clamp(22px, 3vw, 36px); box-shadow: 0 30px 60px -30px rgba(11, 16, 32, .25); }
.compare__row { display: grid; grid-template-columns: 1fr auto; gap: 6px 16px; align-items: center; }
.compare__label { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.compare__val { font-family: var(--font-display); font-weight: 700; font-size: 20px; text-align: right; letter-spacing: -.02em; }
.compare__val s { color: var(--light-muted); font-weight: 500; font-size: 15px; }
.compare__row--us .compare__val strong { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-size: 26px; }
.compare__bar { grid-column: 1 / -1; height: 12px; border-radius: 999px; background: #e9edf6; overflow: hidden; }
.compare__fill { display: block; height: 100%; width: 0; border-radius: inherit; transition: width 1.6s var(--ease); }
.compare__fill--avg { background: linear-gradient(90deg, #c7ccdb, #9aa3b8); }
.compare__fill--us { background: var(--grad); }
.compare__meta { grid-column: 1 / -1; font-size: 13.5px; color: var(--light-muted); margin: 0; }
.compare__vs { text-align: center; font-family: var(--font-display); font-weight: 700; color: var(--light-muted); margin: 18px 0; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; }
.compare__foot { margin-top: 22px; padding-top: 18px; border-top: 1px dashed var(--light-border); font-size: 15px; color: var(--light-muted); }
.compare__foot strong { color: var(--light-text); }

/* ---------- Packages ---------- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.pkg { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(24px, 3vw, 34px); transition: transform .5s var(--ease), border-color .4s, box-shadow .5s var(--ease); }
.pkg:hover { transform: translateY(-6px); border-color: rgba(255, 255, 255, .2); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .8); }
.pkg--featured { background: linear-gradient(180deg, #0f2245, #0d1d3a); border-color: rgba(47, 183, 232, .35); box-shadow: 0 0 0 1px rgba(47, 183, 232, .15), 0 40px 80px -40px rgba(47, 183, 232, .5); }
.pkg--featured::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .6; pointer-events: none; }
.pkg__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 6px 14px; border-radius: 999px; background: var(--grad); color: #06101a; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.pkg__head h3 { font-size: 22px; margin-bottom: 8px; }
.pkg__price { font-family: var(--font-display); font-size: clamp(40px, 4vw, 52px); font-weight: 800; letter-spacing: -.04em; line-height: 1; margin: 0 0 12px; display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; }
.pkg__price .cur { font-size: .5em; font-weight: 600; color: var(--muted); }
.pkg__price .plus { font-size: .5em; color: var(--muted); }
.pkg__was { font-size: .42em; color: var(--muted); text-decoration: line-through; margin-right: 6px; font-weight: 500; }
.pkg__desc { color: var(--muted); font-size: 15px; }
.pkg--featured .pkg__desc.promo-only { color: var(--teal); font-weight: 500; }
.pkg__list { margin: 12px 0 26px; flex: 1; display: grid; gap: 9px; }
.pkg__list li { position: relative; padding-left: 26px; font-size: 14.5px; color: #d7dcea; }
.pkg__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal); font-weight: 700; }
.fineprint { text-align: center; color: var(--muted); font-size: 14px; margin: 28px auto 0; max-width: 640px; }
.fineprint a { color: var(--cyan); }
.includes { margin-top: clamp(56px, 7vw, 88px); }
.includes__title { text-align: center; margin-bottom: 30px; font-size: clamp(22px, 2.6vw, 30px); }
.includes__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.includes__grid li { display: grid; gap: 6px; padding: 22px; border-radius: var(--radius-sm); background: rgba(255, 255, 255, .03); border: 1px solid var(--border); transition: background .3s, transform .4s var(--ease); }
.includes__grid li:hover { background: rgba(255, 255, 255, .06); transform: translateY(-4px); }
.includes__grid i { font-style: normal; font-size: 22px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.includes__grid strong { font-family: var(--font-display); font-size: 15.5px; }
.includes__grid span { font-size: 13.5px; color: var(--muted); }

/* ---------- Perks ---------- */
.section--perks { overflow: hidden; background: var(--bg-2); }
.section--perks .container { position: relative; }
.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.perk { position: relative; padding: clamp(24px, 3vw, 34px); border-radius: var(--radius); background: rgba(16, 22, 42, .7); border: 1px solid var(--border); backdrop-filter: blur(8px); transition: transform .5s var(--ease), border-color .4s; overflow: hidden; }
.perk::after { content: ""; position: absolute; inset: auto -30% -40% auto; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(20, 201, 180, .25), transparent 65%); filter: blur(20px); opacity: 0; transition: opacity .5s; }
.perk:hover { transform: translateY(-6px); border-color: rgba(20, 201, 180, .35); }
.perk:hover::after { opacity: 1; }
.perk__ico { width: 54px; height: 54px; border-radius: 14px; background: var(--grad); display: grid; place-items: center; margin-bottom: 20px; }
.perk__ico svg { width: 26px; height: 26px; fill: none; stroke: #06101a; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.perk h3 { margin-bottom: 10px; font-size: 20px; }
.perk p { color: var(--muted); font-size: 15px; }
.perk__rate { display: inline-block; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(20, 201, 180, .4); color: var(--teal); font-size: 12.5px; font-weight: 600; letter-spacing: .04em; }
.perks__cta { margin-top: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 28px; border-radius: var(--radius); background: rgba(255, 255, 255, .04); border: 1px solid var(--border); }
.perks__cta p { margin: 0; color: var(--muted); max-width: 60ch; }
.perks__cta strong { color: #fff; }

/* ---------- Support / bundles ---------- */
.bundles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bundle { display: flex; flex-direction: column; background: var(--light-surface); border: 1px solid var(--light-border); border-radius: var(--radius); padding: clamp(24px, 3vw, 32px); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.bundle:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(11, 16, 32, .3); }
.bundle--featured { border-color: transparent; box-shadow: 0 0 0 2px transparent, 0 30px 60px -30px rgba(59, 130, 246, .35); background: linear-gradient(var(--light-surface), var(--light-surface)) padding-box, var(--grad) border-box; border: 2px solid transparent; }
.bundle__tag { font-family: var(--font-display); font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-teal); margin-bottom: 10px; }
.bundle h3 { font-size: 22px; }
.bundle__price { font-family: var(--font-display); color: var(--light-muted); margin: 6px 0 14px; font-size: 15px; }
.bundle__price strong { font-size: 34px; color: var(--light-text); letter-spacing: -.03em; font-weight: 800; }
.bundle > p { color: var(--light-muted); font-size: 15px; }
.bundle .ticks { flex: 1; margin-bottom: 22px; }
.care { margin-top: 32px; display: flex; gap: 20px; align-items: flex-start; padding: 26px 30px; border-radius: var(--radius); background: var(--light-surface); border: 1px solid var(--light-border); }
.care__ico { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #06101a; display: grid; place-items: center; font-weight: 800; font-size: 20px; }
.care h3 { font-size: 19px; margin-bottom: 6px; }
.care p { margin: 0; color: var(--light-muted); font-size: 15px; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: 240px 1fr; gap: clamp(32px, 6vw, 90px); }
.process__sticky { position: sticky; top: calc(var(--nav-h) + 40px); align-self: start; }
.process__num { font-family: var(--font-display); font-size: clamp(80px, 10vw, 140px); font-weight: 800; letter-spacing: -.06em; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; transition: opacity .3s; }
.process__bar { height: 4px; width: 100%; background: rgba(255, 255, 255, .08); border-radius: 999px; margin-top: 18px; overflow: hidden; }
.process__bar span { display: block; height: 100%; width: 20%; background: var(--grad); border-radius: inherit; transition: width .6s var(--ease); }
.process__steps { display: grid; gap: 16px; }
.step { position: relative; padding: clamp(22px, 3vw, 32px) clamp(22px, 3vw, 32px) clamp(22px, 3vw, 32px) clamp(64px, 7vw, 92px); border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); transition: border-color .4s, background .4s, transform .9s var(--ease), opacity .9s var(--ease); }
.step::before { content: attr(data-step); position: absolute; left: clamp(20px, 2.6vw, 30px); top: clamp(22px, 3vw, 32px); font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--muted); letter-spacing: .1em; }
.step.is-current { border-color: rgba(20, 201, 180, .45); background: linear-gradient(180deg, #0f2245, var(--surface)); }
.step.is-current::before { color: var(--teal); }
.step h3 { margin-bottom: 8px; }
.step p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ---------- Build standard ---------- */
.section--standard { background: var(--bg-2); }
.standard { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.standard__copy p { color: var(--muted); font-size: 17px; }
.standard__list { display: grid; gap: 10px; margin-top: 20px; }
.standard__list li { padding-left: 24px; position: relative; color: #d7dcea; font-size: 15px; }
.standard__list li::before { content: "→"; position: absolute; left: 0; color: var(--teal); }
.gauges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: clamp(20px, 3vw, 32px); border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.gauge { position: relative; text-align: center; }
.gauge__ring { position: relative; width: 100%; max-width: 110px; margin: 0 auto; }
.gauge svg { width: 100%; transform: rotate(-90deg); display: block; }
.gauge__track { fill: none; stroke: rgba(255, 255, 255, .08); stroke-width: 8; }
.gauge__fill { fill: none; stroke: url(#gm); stroke: var(--teal); stroke-width: 8; stroke-linecap: round; stroke-dasharray: 327; stroke-dashoffset: 327; transition: stroke-dashoffset 1.8s var(--ease); }
.gauge strong { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 28px); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.gauge span { display: block; margin-top: 8px; font-size: 12px; color: var(--muted); font-weight: 500; }
.gauges__note { grid-column: 1 / -1; margin: 14px 0 0; font-size: 13.5px; color: var(--muted); text-align: center; }

/* ---------- Testimonials carousel ---------- */
.carousel { position: relative; }
.carousel__track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; padding: 4px; margin: -4px; }
.carousel__track::-webkit-scrollbar { display: none; }
.quote { flex: 0 0 min(100%, 560px); scroll-snap-align: start; margin: 0; padding: clamp(26px, 3vw, 38px); border-radius: var(--radius); background: var(--light-surface); border: 1px solid var(--light-border); display: flex; flex-direction: column; gap: 14px; box-shadow: 0 20px 50px -30px rgba(11, 16, 32, .25); }
.stars { color: #f5b301; letter-spacing: 2px; font-size: 15px; display: flex; align-items: center; gap: 10px; }
.stars__src { font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--light-muted); font-weight: 600; padding: 3px 8px; border: 1px solid var(--light-border); border-radius: 999px; }
.quote blockquote { margin: 0; font-size: 16.5px; line-height: 1.65; color: var(--light-text); flex: 1; }
.quote figcaption { display: grid; gap: 2px; padding-top: 14px; border-top: 1px solid var(--light-border); }
.quote figcaption strong { font-family: var(--font-display); }
.quote figcaption span { font-size: 13.5px; color: var(--light-muted); }
.carousel__nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 24px; }
.carousel__btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--light-border); background: var(--light-surface); font-size: 18px; transition: all .3s var(--ease); }
.carousel__btn:hover { background: var(--light-text); color: #fff; }
.carousel__dots { display: flex; gap: 8px; }
.carousel__dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: rgba(11, 16, 32, .2); padding: 0; transition: all .3s; }
.carousel__dots button.is-active { width: 24px; border-radius: 999px; background: var(--light-text); }
.lightbox .carousel__btn { border-color: var(--border); background: rgba(255, 255, 255, .05); color: #fff; }
.lightbox .carousel__btn:hover { background: #fff; color: #06101a; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; transition: border-color .3s; }
.faq details[open] { border-color: rgba(20, 201, 180, .4); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 56px 18px 22px; font-family: var(--font-display); font-weight: 600; font-size: 16.5px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; font-weight: 400; transition: transform .35s var(--ease), background .3s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); background: var(--teal); color: #06101a; border-color: var(--teal); }
.faq details p { margin: 0; padding: 0 22px 20px; color: var(--muted); font-size: 15.5px; }

/* ---------- Contact ---------- */
.section--contact { overflow: hidden; background: var(--bg-2); }
.section--contact .container { position: relative; }
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.contact__copy > p { color: var(--muted); font-size: 17px; }
.contact__ways { display: grid; gap: 10px; margin: 26px 0; }
.way { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: rgba(255, 255, 255, .03); transition: all .3s var(--ease); }
.way:hover { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .25); transform: translateX(4px); }
.way__ico { width: 42px; height: 42px; border-radius: 12px; background: var(--surface-2); display: grid; place-items: center; font-size: 18px; flex: none; }
.way strong { display: block; font-family: var(--font-display); font-size: 15px; }
.way small { color: var(--muted); font-size: 13px; }
.contact__note { font-size: 14px; color: var(--muted); border-left: 2px solid var(--teal); padding-left: 14px; }
.form { display: grid; gap: 14px; padding: clamp(22px, 3vw, 34px); border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: .02em; }
.form input, .form select, .form textarea { width: 100%; padding: 13px 14px; border-radius: 10px; border: 1px solid var(--border); background: #08142b; color: #fff; font: inherit; font-size: 15px; transition: border-color .3s, box-shadow .3s; }
.form input::placeholder, .form textarea::placeholder { color: #5b6480; }
.form input:focus, .form select:focus, .form textarea:focus { outline: 0; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(47, 183, 232, .2); }
.form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23a3acc4' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form textarea { resize: vertical; min-height: 120px; }
.form__fine { margin: 0; text-align: center; font-size: 13px; color: var(--muted); }
.hp { position: absolute; left: -9999px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg); padding: 56px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer__brand p { color: var(--muted); font-size: 14.5px; margin: 16px 0 8px; max-width: 40ch; }
.footer__parent a { color: var(--teal); }
.footer__col { display: grid; gap: 8px; align-content: start; }
.footer__col h4 { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.footer__col a { font-size: 14.5px; color: #d7dcea; transition: color .2s; }
.footer__col a:hover { color: var(--teal); }
.footer__bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); }
.footer__bottom a:hover { color: #fff; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 40; display: none; grid-template-columns: 1fr 2fr; gap: 8px; padding: 8px; border-radius: 999px; background: rgba(12, 16, 32, .85); border: 1px solid var(--border); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .7); transform: translateY(120%); transition: transform .5s var(--ease); padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px)); }
.sticky-cta.is-visible { transform: none; }
.sticky-cta .btn { min-height: 46px; padding: 10px 16px; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(4, 6, 12, .85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .35s, visibility 0s .35s; }
.lightbox.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.lightbox__panel { position: relative; width: min(1180px, 100%); max-height: calc(100vh - 40px); max-height: calc(100dvh - 40px); overflow: auto; border-radius: 22px; background: var(--surface); border: 1px solid var(--border); display: grid; grid-template-columns: 1.5fr 1fr; transform: translateY(20px) scale(.98); transition: transform .45s var(--ease); }
.lightbox.is-open .lightbox__panel { transform: none; }
.lightbox__close { position: absolute; top: 12px; right: 12px; z-index: 5; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: rgba(7, 10, 18, .7); color: #fff; font-size: 24px; line-height: 1; display: grid; place-items: center; }
.lightbox__close:hover { background: #fff; color: #06101a; }
.lightbox__media { position: relative; padding: clamp(20px, 3vw, 36px); background: radial-gradient(ellipse at 30% 20%, rgba(59, 130, 246, .25), transparent 60%), radial-gradient(ellipse at 80% 90%, rgba(20, 201, 180, .18), transparent 60%), #0b0f1a; display: grid; align-items: center; }
.lb-desktop .browser { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.lb-desktop .browser__screen { aspect-ratio: 16 / 10; overflow-y: auto; scrollbar-width: thin; }
.lb-desktop .browser__screen img { width: 100%; height: auto; object-fit: initial; }
.lb-phone { position: absolute; right: 6%; bottom: 6%; width: 22%; min-width: 110px; }
.phone--lb { position: static; width: 100%; transform: none; }
.phone--lb img { position: absolute; inset: 8px; width: calc(100% - 16px); height: calc(100% - 16px); object-fit: cover; object-position: top; border-radius: 18px; }
.lightbox__info { padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; }
.lightbox__info h3 { font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 4px; }
.lightbox__place { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.lightbox__info > p:not(.eyebrow):not(.lightbox__place) { color: #d7dcea; font-size: 15.5px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 24px; }
.tags span { padding: 6px 11px; border-radius: 999px; border: 1px solid var(--border); font-size: 12.5px; color: var(--muted); }
.lightbox__actions { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.lightbox__pager { display: flex; gap: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .nav__phone { display: none; }
}
@media (max-width: 1100px) {
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .includes__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1000px) {
  .nav__links, .nav__phone { display: none; }
  .burger { display: flex; }
  .hero { min-height: 0; padding-top: 40px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { height: auto; aspect-ratio: 16 / 11; max-width: 640px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 14px 20px; }
  .split, .standard, .contact { grid-template-columns: 1fr; }
  .packages, .perks, .bundles { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .pkg--featured { order: -1; }
  .process { grid-template-columns: 1fr; }
  .process__sticky { display: none; }
  .perks__cta { flex-direction: column; align-items: flex-start; }
  .lightbox__panel { grid-template-columns: 1fr; }
  .lb-phone { display: none; }
}
@media (max-width: 640px) {
  :root { --nav-h: 64px; --radius: 16px; }
  .nav__cta .btn { display: none; }
  .promo__inner { gap: 6px; font-size: 13px; }
  .hero__title { font-size: clamp(34px, 10vw, 44px); }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .chip { font-size: 12px; padding: 7px 11px; }
  .chip--a { left: 0; top: -6%; } .chip--b { left: 2%; bottom: -4%; } .chip--c { display: none; }
  .work__grid, .work__grid[data-device="mobile"] { grid-template-columns: 1fr 1fr; gap: 12px; }
  .work__grid { grid-template-columns: 1fr; }
  .site--featured { grid-column: auto; }
  .site--featured .browser__screen { aspect-ratio: 16 / 10; }
  .device-toggle { width: 100%; } .device-toggle button { flex: 1; justify-content: center; }
  .chips { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; margin: 0 calc(-1 * var(--gutter)); padding-inline: var(--gutter); scrollbar-width: none; }
  .chips::-webkit-scrollbar { display: none; }
  .chip-btn { flex: none; }
  .gauges { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr; }
  .care { flex-direction: column; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }
  .sticky-cta { display: grid; }
  body { padding-bottom: 72px; }
  .lightbox { padding: 10px; }
  .lightbox__panel { max-height: calc(100dvh - 20px); }
}

/* ---------- Section background photos ---------- */
.section--photo { overflow: hidden; }
.section--photo > .container { position: relative; z-index: 2; }
.section__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.section__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .16; filter: saturate(.7) contrast(1.05); }
.section__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg) 0%, rgba(6, 16, 36, .35) 25%, rgba(6, 16, 36, .35) 75%, var(--bg) 100%); }
.section--photo-right .section__bg img { object-position: right center; opacity: .2; }
.section--photo-right .section__bg::after { background: linear-gradient(90deg, var(--bg-2) 35%, rgba(8, 22, 47, .3) 70%, rgba(8, 22, 47, .15)), linear-gradient(180deg, var(--bg-2), transparent 20%, transparent 80%, var(--bg-2)); }
.section--perks .section__bg img { opacity: .22; }
.section--contact .section__bg img { opacity: .14; }
.section--photo .aurora { z-index: 1; }
@supports (animation-timeline: view()) {
  .section__bg img { animation: bgshift linear both; animation-timeline: view(); transform: scale(1.12) translateY(-4%); }
  @keyframes bgshift { to { transform: scale(1.12) translateY(4%); } }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__title .line span, .hero__eyebrow, .hero__lead, .hero__actions, .hero__stats, .hero__visual { transform: none; opacity: 1; }
  .marquee__track { animation: none; }
}
