/* ============================================================
   NEXTY POWER WASH — design system
   Brand: blue #146eeb / gold #ffc117 on deep navy, Archivo type
   ============================================================ */

:root {
  --bg: #060a14;
  --bg-2: #0a1020;
  --panel: #0c1426;
  --panel-2: #101a30;
  --line: rgba(148, 178, 255, 0.10);
  --line-strong: rgba(148, 178, 255, 0.18);

  --text: #eaf0fa;
  --muted: #9fb0c9;

  --blue: #146eeb;
  --blue-2: #2e8bff;
  --blue-deep: #0a3da0;
  --gold: #ffc117;
  --gold-2: #f0a800;
  --wa: #25d366;
  --wa-deep: #128c4b;

  --grad-blue: linear-gradient(135deg, #2e8bff 0%, #146eeb 55%, #0a3da0 100%);
  --grad-gold: linear-gradient(135deg, #ffd75e 0%, #ffc117 45%, #e89b00 100%);

  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 18px 50px rgba(2, 6, 18, 0.55);
  --glow-blue: 0 0 42px rgba(46, 139, 255, 0.30);
  --glow-gold: 0 0 42px rgba(255, 193, 23, 0.22);

  --font: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --nav-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 14px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(1100px 520px at 85% -8%, rgba(20, 110, 235, 0.16), transparent 60%),
    radial-gradient(900px 500px at -10% 22%, rgba(240, 168, 0, 0.07), transparent 55%),
    var(--bg);
  overflow-x: hidden;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { padding: 0; list-style: none; }

::selection { background: rgba(20, 110, 235, 0.55); color: #fff; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  padding: 10px 18px;
  background: var(--blue); color: #fff;
  border-radius: 0 0 12px 12px;
  font-weight: 700;
  transition: top 0.25s ease;
}
.skip-link:focus { top: 0; }

/* film grain overlay for depth */
.bg-grain {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, .nav, .footer, .fab, .marquee { position: relative; z-index: 2; }

.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}
.container--narrow { width: min(880px, 100% - 48px); }

.icon {
  width: 1.25em; height: 1.25em;
  flex: 0 0 auto;
}
.icon--flip { transform: scaleX(-1); }

/* ---------- Type helpers ---------- */
.grad-blue {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.shimmer { position: relative; }
@keyframes shimmer-sweep {
  0%, 55% { background-position: 130% 0; }
  100% { background-position: -30% 0; }
}
.shimmer {
  background-image: linear-gradient(115deg, #e89b00 0%, #ffc117 38%, #fff6d8 50%, #ffc117 62%, #e89b00 100%);
  background-size: 220% 100%;
  animation: shimmer-sweep 4.5s ease-in-out infinite;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(20, 110, 235, 0.10);
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow .icon { width: 1.1em; height: 1.1em; color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

.btn--whatsapp {
  background: linear-gradient(135deg, #2fe077 0%, #25d366 45%, #14a04e 100%);
  color: #04200f;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.32);
}
.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.45);
}

.btn--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: rgba(46, 139, 255, 0.6);
  background: rgba(20, 110, 235, 0.12);
  transform: translateY(-2px);
  box-shadow: var(--glow-blue);
}

.btn--lg { padding: 16px 30px; font-size: 16.5px; }
.btn--xl { padding: 18px 36px; font-size: 18px; }

/* ---------- Glass ---------- */
.glass {
  background: rgba(13, 21, 38, 0.62);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(6, 10, 20, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(2, 6, 18, 0.45);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--nav-h);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  user-select: none;
}
.brand__word {
  font-size: 27px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #ffffff 30%, #b9c6dd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand__x {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand__sub {
  font-size: 11.5px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.34em;
  color: var(--gold);
  margin-top: 3px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__link {
  position: relative;
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  transition: color 0.2s ease;
  padding: 6px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__link:hover, .nav__link.is-active { color: var(--text); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__cta { margin-left: 6px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 110;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2.5px;
  border-radius: 3px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 56px) 0 70px;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}
.hero__glow--blue {
  width: 640px; height: 640px;
  right: -140px; top: -180px;
  background: rgba(20, 110, 235, 0.22);
}
.hero__glow--gold {
  width: 520px; height: 520px;
  left: -200px; bottom: -220px;
  background: rgba(240, 168, 0, 0.12);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 56px;
}

.hero__title {
  margin: 22px 0 18px;
  font-size: clamp(38px, 5.2vw, 64px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.hero__sub {
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 26px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__trust .icon { color: var(--gold); width: 1.05em; height: 1.05em; }

/* hero visual */
.hero__visual {
  position: relative;
  justify-self: end;
  width: min(420px, 100%);
}

.hero__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), var(--glow-blue);
  transform: rotate(2.2deg);
}
.hero__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(200deg, rgba(46, 139, 255, 0.16), transparent 40%);
  pointer-events: none;
}
.hero__photo img {
  width: 100%;
  aspect-ratio: 920 / 1382;
  height: auto;
  object-fit: cover;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.hero__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  animation: float-y 5.2s ease-in-out infinite;
}
.hero__chip .icon { color: var(--gold); }
.hero__chip--1 { top: 7%; left: -17%; animation-delay: 0.3s; }
.hero__chip--2 { bottom: 18%; left: -23%; animation-delay: 1.4s; }
.hero__chip--3 { top: 38%; right: -11%; animation-delay: 2.3s; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--line-strong);
  border-radius: 14px;
  display: flex;
  justify-content: center;
}
.hero__scroll span {
  width: 4px; height: 9px;
  margin-top: 7px;
  border-radius: 3px;
  background: var(--gold);
  animation: scroll-hint 1.8s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0.2; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(20, 110, 235, 0.09), rgba(240, 168, 0, 0.06), rgba(20, 110, 235, 0.09));
  padding: 15px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee__item {
  font-size: 14.5px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  white-space: nowrap;
}
.marquee__dot { color: var(--gold); font-size: 11px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 96px 0; }
.section--alt {
  background:
    radial-gradient(900px 400px at 110% 0%, rgba(20, 110, 235, 0.10), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border-block: 1px solid var(--line);
}

.section__head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 54px;
}
.section__head--left {
  text-align: left;
  margin: 0 0 26px;
}

.section__title {
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

.section__lead {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

/* ============================================================
   TABS + SERVICE CARDS
   ============================================================ */
.tabs {
  position: relative;
  display: flex;
  gap: 6px;
  width: max-content;
  margin: 0 auto 38px;
  padding: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(13, 21, 38, 0.6);
}
.tabs__btn {
  position: relative;
  z-index: 1;
  padding: 11px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}
.tabs__btn.is-active { color: #051127; }
.tabs__pill {
  position: absolute;
  top: 6px; bottom: 6px;
  border-radius: 999px;
  background: var(--grad-gold);
  box-shadow: var(--glow-gold);
  transition: left 0.3s cubic-bezier(0.6, 0, 0.2, 1.2), width 0.3s cubic-bezier(0.6, 0, 0.2, 1.2);
}

.tabpanel { display: none; }
.tabpanel.is-active { display: block; animation: panel-in 0.45s ease both; }
@keyframes panel-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.tabpanel__headline {
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 8px;
}
.tabpanel__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: max-content;
  max-width: 100%;
  margin: 14px auto 0;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 193, 23, 0.35);
  background: rgba(255, 193, 23, 0.08);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.card {
  position: relative;
  padding: 30px 26px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(155deg, rgba(46, 139, 255, 0.55), transparent 38%, transparent 68%, rgba(255, 193, 23, 0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }

.card__icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(20, 110, 235, 0.14);
  border: 1px solid rgba(46, 139, 255, 0.35);
  color: var(--blue-2);
  box-shadow: inset 0 0 18px rgba(46, 139, 255, 0.12);
}
.card__icon .icon { width: 27px; height: 27px; }

.card__title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 9px;
}
.card__desc {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 14.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.card__link .icon { transition: transform 0.25s ease; width: 1.1em; height: 1.1em; }
.card__link:hover .icon { transform: translateX(5px); }

/* ============================================================
   RESULTS — COMPARE SLIDER
   ============================================================ */
.results {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.compare {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
}
.compare img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.compare__after { position: relative; }
.compare__beforeWrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.compare__beforeWrap img { position: absolute; inset: 0; }

.compare__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 3px;
  margin-left: -1.5px;
  background: linear-gradient(180deg, var(--gold), #fff, var(--gold));
  box-shadow: 0 0 18px rgba(255, 193, 23, 0.55);
  cursor: ew-resize;
}
.compare__grip {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 2px;
  width: 52px; height: 52px;
  justify-content: center;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #2a1c00;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), var(--glow-gold);
}
.compare__grip .icon { width: 17px; height: 17px; }

.compare__tag {
  position: absolute;
  top: 18px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
}
.compare__tag--before {
  left: 18px;
  background: rgba(6, 10, 20, 0.72);
  color: #ffb1a1;
  border: 1px solid rgba(255, 120, 90, 0.35);
}
.compare__tag--after {
  right: 18px;
  background: rgba(6, 10, 20, 0.72);
  color: #8fe3ae;
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.results__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}
.shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.shot:hover img { transform: scale(1.045); }
.shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 34px 20px 14px;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(180deg, transparent, rgba(4, 8, 18, 0.85));
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
}
.step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.step:last-child::after { display: none; }

.step__num {
  display: inline-block;
  font-size: 42px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.step__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.step__desc {
  color: var(--muted);
  font-size: 14.5px;
}
.steps__cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   SPLIT (SOFTWASH) + WHY US
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  align-items: start;
}

.split__media {
  position: relative;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.split__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 50px rgba(20, 110, 235, 0.16);
  transform: rotate(-2deg);
}
.split__photo img {
  width: 100%;
  aspect-ratio: 980 / 1307;
  height: auto;
  object-fit: cover;
}
.split__chip--1 { top: 6%; right: -7%; animation-delay: 0.6s; }
.split__chip--2 { bottom: 9%; left: -8%; animation-delay: 1.8s; }

.split__text {
  color: var(--muted);
  font-size: 16.5px;
  margin-bottom: 18px;
  max-width: 62ch;
}
.split__text--small { font-size: 14.5px; }

.ticks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  gap: 12px 22px;
  margin: 22px 0 24px;
}
.ticks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15.5px;
}
.ticks .icon {
  width: 24px; height: 24px;
  padding: 4px;
  border-radius: 8px;
  color: #051127;
  background: var(--grad-gold);
}

.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 26px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.why__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why__icon {
  width: 40px; height: 40px;
  flex: 0 0 auto;
  padding: 8px;
  border-radius: 12px;
  color: var(--blue-2);
  background: rgba(20, 110, 235, 0.13);
  border: 1px solid rgba(46, 139, 255, 0.3);
}
.why__title {
  font-size: 15.5px;
  font-weight: 800;
}
.why__desc {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 3px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  columns: 3 300px;
  column-gap: 20px;
}
.gallery__item {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 0;
  position: relative;
  break-inside: avoid;
  cursor: zoom-in;
}
.gallery__item::after {
  content: "+";
  position: absolute;
  right: 14px; top: 12px;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 600;
  color: #051127;
  background: var(--grad-gold);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gallery__item:hover::after { opacity: 1; transform: scale(1); }
.gallery__item img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.04); }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(3, 6, 14, 0.92);
  backdrop-filter: blur(10px);
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  width: auto;
  border-radius: 14px;
  box-shadow: var(--shadow);
  animation: panel-in 0.3s ease both;
}
.lightbox__close {
  position: absolute;
  top: 22px; right: 26px;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-strong);
  color: var(--text);
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox__close:hover { background: rgba(255, 80, 60, 0.25); transform: rotate(90deg); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}
.pricing__subtitle {
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.pricing__subtitle::before {
  content: "";
  display: inline-block;
  width: 26px; height: 3px;
  border-radius: 3px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--grad-gold);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(13, 21, 38, 0.7);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.chip:hover {
  border-color: rgba(46, 139, 255, 0.5);
  color: var(--text);
  transform: translateY(-2px);
}
.chip .icon { width: 1em; height: 1em; color: var(--gold); }

.pricing__notes {
  display: grid;
  gap: 18px;
}
.note {
  padding: 24px;
  border-radius: var(--radius);
}
.note__icon {
  width: 38px; height: 38px;
  padding: 8px;
  border-radius: 11px;
  color: var(--blue-2);
  background: rgba(20, 110, 235, 0.14);
  border: 1px solid rgba(46, 139, 255, 0.3);
  margin-bottom: 13px;
}
.note__title {
  font-size: 16.5px;
  font-weight: 800;
  margin-bottom: 7px;
}
.note__desc {
  font-size: 14px;
  color: var(--muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: grid;
  gap: 14px;
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq__item[open] { border-color: rgba(46, 139, 255, 0.45); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  font-weight: 800;
  font-size: 16.5px;
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__chev {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  color: var(--gold);
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.faq__item[open] .faq__chev { transform: rotate(-90deg); }
.faq__a {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 75ch;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.section--cta { padding-bottom: 110px; }
.cta {
  position: relative;
  text-align: center;
  padding: 72px 38px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(620px 280px at 50% -40%, rgba(20, 110, 235, 0.35), transparent 70%),
    radial-gradient(500px 260px at 85% 120%, rgba(240, 168, 0, 0.16), transparent 70%),
    linear-gradient(165deg, var(--panel-2), var(--bg-2));
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--cta-angle, 0deg), rgba(46,139,255,0.0), rgba(46,139,255,0.8), rgba(255,193,23,0.8), rgba(46,139,255,0.0) 32%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: cta-spin 7s linear infinite;
  pointer-events: none;
}
@property --cta-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes cta-spin {
  to { --cta-angle: 360deg; }
}
.cta__title {
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.06;
  text-wrap: balance;
}
.cta__sub {
  margin: 18px auto 30px;
  color: var(--muted);
  font-size: 16.5px;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.cta__tagline {
  margin-top: 30px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-2), #04070f);
  padding: 64px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
}
.footer__brand img {
  width: 250px;
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 6px 22px rgba(20, 110, 235, 0.25));
}
.footer__blurb {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 36ch;
}
.footer__motto {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__title {
  font-size: 13.5px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
  margin-bottom: 6px;
}
.footer__link {
  color: var(--muted);
  font-size: 14.5px;
  width: max-content;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer__link:hover { color: var(--gold); transform: translateX(3px); }
.footer__link--icon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.footer__link--icon .icon { color: var(--blue-2); width: 1.15em; height: 1.15em; }
.footer__area { cursor: default; }
.footer__col .btn { margin-top: 10px; width: max-content; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.footer__legal { opacity: 0.7; }

/* ============================================================
   FLOATING WHATSAPP FAB
   ============================================================ */
.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2fe077, #14a04e);
  color: #04200f;
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.4);
  transition: padding 0.3s ease, transform 0.25s ease;
}
.fab .icon { width: 28px; height: 28px; }
.fab:hover { transform: translateY(-3px); }
.fab__label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 800;
  font-size: 15px;
  transition: max-width 0.35s ease;
}
.fab:hover .fab__label { max-width: 140px; }
.fab__ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.7);
  animation: fab-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes fab-pulse {
  0% { transform: scale(1); opacity: 0.9; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal[data-reveal-delay="1"] { transition-delay: 0.12s; }
.reveal[data-reveal-delay="2"] { transition-delay: 0.24s; }
.reveal[data-reveal-delay="3"] { transition-delay: 0.36s; }
.reveal[data-reveal-delay="4"] { transition-delay: 0.48s; }
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* tilt cards get GPU hint */
.tilt { transform-style: preserve-3d; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero__inner { gap: 40px; }
  .hero__chip--1 { left: -6%; }
  .hero__chip--2 { left: -10%; }
  .hero__chip--3 { right: -4%; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split__media { position: relative; top: 0; max-width: 460px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .section { padding: 72px 0; }

  /* .nav has backdrop-filter when scrolled, which turns it into the containing
     block for fixed descendants — so the overlay uses absolute + viewport height. */
  .nav__links {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    z-index: 105;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: rgba(5, 8, 17, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav__links.is-open { opacity: 1; pointer-events: auto; }
  .nav__link { font-size: 21px; font-weight: 700; }
  .nav__cta { margin: 10px 0 0; }
  .nav__burger { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + 34px); min-height: 0; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { justify-self: center; width: min(380px, 92%); margin-top: 26px; }
  .hero__chip--1 { left: -4%; }
  .hero__chip--2 { left: -7%; bottom: 12%; }
  .hero__chip--3 { right: -5%; }
  .hero__scroll { display: none; }

  .results { grid-template-columns: 1fr; }
  .results__side { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .shot img { aspect-ratio: 3 / 2; }

  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }

  .pricing { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .container { width: min(1180px, 100% - 36px); }

  .cards { grid-template-columns: 1fr; }
  .results__side { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .tabs__btn { padding: 10px 22px; font-size: 13.5px; }

  .hero__cta .btn { width: 100%; }
  .cta { padding: 54px 22px; }
  .cta__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }

  .fab { right: 16px; bottom: 16px; }
  .fab__label { display: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__canvas { display: none; }
}
