/* ===========================================================
   VAPOR ELITE — Landing styles
   Palette: deep black, electric blue, white
   Mobile-first responsive · fluid type & spacing
   =========================================================== */

:root {
  --bg: #05060a;
  --bg-1: #0a0d15;
  --bg-2: #0f131c;
  --surface: rgba(255,255,255,0.03);
  --surface-2: rgba(255,255,255,0.05);
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);

  --ink: #f5f7fb;
  --ink-2: #c5cbd8;
  --muted: #8892a8;
  --mute-2: #5a6378;

  --blue: #2b8eff;
  --blue-2: #5fb8ff;
  --blue-glow: rgba(43, 142, 255, 0.45);
  --blue-soft: rgba(43, 142, 255, 0.12);

  --wa: #25d366;
  --wa-2: #1ebd5a;

  --radius: 16px;
  --radius-lg: 22px;

  --shadow-lg: 0 30px 80px -40px rgba(43, 142, 255, .55),
               0 12px 30px -12px rgba(0,0,0,.7);

  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Fluid spacing & sizing */
  --gutter: clamp(16px, 4vw, 32px);
  --section-pad-y: clamp(64px, 9vw, 120px);
  --container: 1280px;
}

/* ============== RESET ============== */
* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  min-width: 320px;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}
img { border: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }

::selection { background: var(--blue); color: white; }

/* ============== BACKDROP ============== */
.backdrop {
  position: fixed; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  pointer-events: none;
}
.orb--a {
  width: clamp(280px, 50vw, 620px);
  aspect-ratio: 1;
  top: -10%; left: -10%;
  background: radial-gradient(circle, rgba(43,142,255,.55), transparent 70%);
  animation: orb 22s ease-in-out infinite alternate;
}
.orb--b {
  width: clamp(260px, 45vw, 540px);
  aspect-ratio: 1;
  top: 30%; right: -15%;
  background: radial-gradient(circle, rgba(95,184,255,.4), transparent 70%);
  animation: orb 28s ease-in-out infinite alternate-reverse;
}
.orb--c {
  width: clamp(220px, 40vw, 460px);
  aspect-ratio: 1;
  bottom: -10%; left: 25%;
  background: radial-gradient(circle, rgba(43,142,255,.35), transparent 70%);
  animation: orb 32s ease-in-out infinite alternate;
}
@keyframes orb {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px, 60px) scale(1.08); }
}
.noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: .04;
  mix-blend-mode: overlay;
}

/* ============== LAYOUT ============== */
.section {
  position: relative; z-index: 1;
  padding: var(--section-pad-y) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.section__head {
  max-width: 720px;
  margin: 0 auto clamp(36px, 6vw, 64px);
  text-align: center;
}
.section__head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 14px 0 16px;
}
.section__head p {
  color: var(--ink-2);
  font-size: clamp(15px, 1.5vw, 17px);
  max-width: 560px;
  margin: 0 auto;
}
.kicker {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.1vw, 12px);
  letter-spacing: 0.16em;
  color: var(--blue-2);
  text-transform: uppercase;
}
.grad {
  background: linear-gradient(90deg, var(--blue-2), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============== NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center;
  gap: clamp(12px, 2vw, 24px);
  padding: 12px clamp(14px, 3vw, 28px);
  background: linear-gradient(to bottom, rgba(5,6,10,.92), rgba(5,6,10,.6));
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo { display: inline-flex; align-items: center; gap: 10px; }
/* NAV logo as image */
.nav .logo__mark, .footer .logo__mark {
  width: 36px;
  height: auto;
  /* Force aspect ratio so layout reserves space before the image loads */
  aspect-ratio: 480 / 512;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 10px var(--blue-glow));
  flex-shrink: 0;
  transition: filter .3s, transform .3s;
  /* Crisp rendering on retina */
  image-rendering: -webkit-optimize-contrast;
}
.nav__brand:hover .logo__mark {
  filter: drop-shadow(0 0 18px var(--blue-glow));
  transform: translateY(-1px);
}

/* Hero logo image — explicit sizing for proper aspect + sharp render */
.hero__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}
.logo__wm { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: clamp(13px, 1.4vw, 15px);
}
.logo__name span { color: var(--blue-2); }
.logo__tag {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.18em;
  margin-top: 4px;
}

.nav__links {
  display: flex; gap: clamp(18px, 2.5vw, 28px);
  margin-left: auto; margin-right: auto;
  font-size: 14px;
}
.nav__links a {
  color: var(--ink-2);
  transition: color .2s;
  position: relative;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(43,142,255,.18), rgba(43,142,255,.06));
  font-size: 13px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__cta:hover {
  transform: translateY(-1px);
  border-color: var(--blue);
  box-shadow: 0 10px 30px -15px var(--blue-glow);
}
.nav__cta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 4px rgba(37,211,102,.18);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.nav__cta-num { color: var(--muted); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37,211,102,.18); }
  50%      { box-shadow: 0 0 0 8px rgba(37,211,102,.05); }
}

/* Burger (mobile only) */
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  flex-shrink: 0;
}
.nav__burger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile menu */
.mmenu {
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 49;
  padding: 24px var(--gutter) 32px;
  background: rgba(5,6,10,.97);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform .25s, opacity .25s;
  pointer-events: none;
}
.mmenu:not([hidden]) {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.mmenu a {
  padding: 14px 4px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.mmenu a:last-child { border-bottom: 0; }
.mmenu__cta {
  margin-top: 16px;
  padding: 16px !important;
  background: linear-gradient(180deg, var(--wa), var(--wa-2));
  color: white !important;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  border: 0 !important;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
  border: 1px solid transparent;
  white-space: nowrap;
  min-height: 48px;
}
.btn--primary {
  background: linear-gradient(180deg, #2eb45c, #1c9f47);
  color: white;
  box-shadow: 0 10px 30px -10px rgba(46,180,92,.55), inset 0 1px 0 rgba(255,255,255,.18);
  position: relative;
  overflow: hidden;
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .8s ease;
  pointer-events: none;
}
.btn--primary:hover::before { transform: translateX(130%); }
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px -15px rgba(46,180,92,.6), inset 0 1px 0 rgba(255,255,255,.2);
}

/* Premium WhatsApp button with blue accent ring */
.btn--glow {
  box-shadow:
    0 10px 30px -10px rgba(46,180,92,.55),
    0 0 0 1px rgba(43,142,255,.25),
    0 0 22px -4px rgba(43,142,255,.45),
    inset 0 1px 0 rgba(255,255,255,.18);
}
.btn--glow:hover {
  box-shadow:
    0 22px 60px -18px rgba(46,180,92,.7),
    0 0 0 1px rgba(95,184,255,.45),
    0 0 30px -2px rgba(43,142,255,.55),
    inset 0 1px 0 rgba(255,255,255,.22);
}
.btn--ghost {
  border-color: var(--line-2);
  background: rgba(255,255,255,0.04);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--blue);
  background: rgba(43,142,255,.08);
}
.btn--xl {
  font-size: clamp(15px, 1.7vw, 18px);
  padding: clamp(16px, 2.4vw, 20px) clamp(24px, 3.4vw, 32px);
  background: linear-gradient(180deg, #2eb45c, #1c9f47);
  color: white;
  box-shadow: 0 20px 60px -15px rgba(46,180,92,.55), inset 0 1px 0 rgba(255,255,255,.18);
  min-height: 56px;
}
.btn--xl:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 80px -20px rgba(46,180,92,.65), inset 0 1px 0 rgba(255,255,255,.2);
}

/* ============== HERO ============== */
.hero { position: relative; z-index: 1; }

.hero__center {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 100px) var(--gutter) clamp(60px, 9vw, 110px);
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}

/* Cinematic logo block */
.hero__logo {
  position: relative;
  width: clamp(180px, 30vw, 300px);
  aspect-ratio: 480 / 512;
  margin: clamp(20px, 3vw, 32px) auto clamp(14px, 2vw, 20px);
  display: grid; place-items: center;
}
.hero__logo-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  animation: heroLogo 8s ease-in-out infinite;
  /* drop-shadow gives a soft blue halo without over-blurring the logo */
  filter: drop-shadow(0 8px 30px rgba(43, 142, 255, .35));
}
@keyframes heroLogo {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero__logo-aura {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(43,142,255,.45), transparent 55%),
    radial-gradient(ellipse at 50% 80%, rgba(95,184,255,.35), transparent 60%);
  filter: blur(40px);
  z-index: 1;
  animation: heroAura 6s ease-in-out infinite alternate;
}
@keyframes heroAura {
  0%   { opacity: .6; transform: scale(1); }
  100% { opacity: 1;  transform: scale(1.08); }
}
.hero__logo-steam {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}
.hero__logo-steam span {
  position: absolute;
  bottom: 25%;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95,184,255,.25), transparent 60%);
  filter: blur(14px);
  animation: heroRise 10s linear infinite;
}
.hero__logo-steam span:nth-child(1) { left: 30%; animation-delay: 0s; }
.hero__logo-steam span:nth-child(2) { left: 42%; animation-delay: 2s; transform: scale(1.4); }
.hero__logo-steam span:nth-child(3) { left: 50%; animation-delay: 4s; transform: scale(.9); }
.hero__logo-steam span:nth-child(4) { left: 58%; animation-delay: 1.5s; transform: scale(1.15); }
.hero__logo-steam span:nth-child(5) { left: 65%; animation-delay: 3.5s; transform: scale(.85); }
.hero__logo-steam span:nth-child(6) { left: 38%; animation-delay: 6s; transform: scale(1); }
@keyframes heroRise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  15%  { opacity: .9; }
  100% { transform: translateY(-340px) scale(1.8); opacity: 0; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 13px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: clamp(10px, 1vw, 11px);
  letter-spacing: 0.14em;
  color: var(--ink-2);
  text-transform: uppercase;
  max-width: 100%;
}
.eyebrow span:not(.eyebrow__dot) {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 12px var(--blue-glow);
  flex-shrink: 0;
}

.hero__copy h1, .hero__center h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 14px 0 18px;
}
.hero__sub {
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--ink-2);
  max-width: 580px;
  margin: 0 auto 30px;
}
.hero__center .hero__ctas { justify-content: center; }
.hero__ctas {
  display: flex; gap: 12px;
  flex-wrap: wrap;
}
.hero__ctas .btn { flex: 1 1 auto; min-width: 0; }
@media (min-width: 480px) {
  .hero__ctas .btn { flex: 0 0 auto; }
}

.hero__trust {
  margin: clamp(36px, 5vw, 52px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  padding-top: clamp(22px, 3vw, 28px);
  border-top: 1px solid var(--line);
  max-width: 640px;
  width: 100%;
  text-align: center;
}
.trust { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.trust strong {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.trust span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Device card */
.hero__visual { position: relative; min-width: 0; }
.device {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(15,19,28,.9), rgba(10,13,21,.9));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
}
.device__chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.device__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.18); flex-shrink: 0; }
.device__dot:nth-child(2) { background: rgba(43,142,255,.45); }
.device__dot:nth-child(3) { background: rgba(95,184,255,.7); }
.device__label {
  margin-left: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.device__live {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink);
  letter-spacing: 0.18em;
  padding: 4px 8px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  flex-shrink: 0;
}
.device__live i {
  width: 6px; height: 6px; border-radius: 50%;
  background: #ff4a4a; box-shadow: 0 0 8px #ff4a4a;
  animation: blink 1.4s infinite;
}
@keyframes blink { 50% { opacity: .3; } }

.device__stage {
  position: relative;
  aspect-ratio: 4/3;
  padding: clamp(14px, 2.5vw, 22px);
}
.device__foot {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 16px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  flex-wrap: wrap;
}

.imgwell {
  position: relative; height: 100%; width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0d15;
}
.imgwell img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.65) saturate(.8) hue-rotate(-10deg);
}
.imgwell::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(43,142,255,.45), transparent 70%),
    linear-gradient(180deg, rgba(5,6,10,.4) 0%, rgba(5,6,10,.1) 40%, rgba(43,142,255,.18) 100%);
  pointer-events: none;
}
.imgwell__stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,.025) 0 1px,
    transparent 1px 14px
  );
  pointer-events: none;
  z-index: 1;
}
.imgwell__glow {
  position: absolute;
  width: 70%; height: 70%;
  left: 15%; bottom: -25%;
  background: radial-gradient(ellipse, rgba(43,142,255,.5), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}
.imgwell__steam {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}
.imgwell__steam span {
  position: absolute;
  bottom: 15%;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.22), transparent 60%);
  filter: blur(10px);
  animation: rise 8s linear infinite;
}
.imgwell__steam span:nth-child(1) { left: 20%; animation-delay: 0s; }
.imgwell__steam span:nth-child(2) { left: 38%; animation-delay: 2s; transform: scale(1.3); }
.imgwell__steam span:nth-child(3) { left: 55%; animation-delay: 4s; transform: scale(.9); }
.imgwell__steam span:nth-child(4) { left: 70%; animation-delay: 1s; transform: scale(1.1); }
.imgwell__steam span:nth-child(5) { left: 85%; animation-delay: 3s; transform: scale(.8); }
@keyframes rise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  20%  { opacity: .8; }
  100% { transform: translateY(-220px) scale(1.6); opacity: 0; }
}

.chip {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: rgba(10,13,21,.88);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  box-shadow: 0 12px 30px -15px rgba(0,0,0,.6);
  min-width: 160px;
  animation: float 6s ease-in-out infinite;
}
.chip__k { color: var(--muted); }
.chip__v { color: var(--ink); font-weight: 500; justify-self: end; }
.chip__bar {
  grid-column: 1 / -1;
  height: 3px; width: 100%;
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  overflow: hidden;
}
.chip__bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 12px var(--blue-glow);
}
.chip__dot {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; color: var(--blue-2);
}
.chip__dot i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-2); box-shadow: 0 0 8px var(--blue-glow);
  animation: blink 1.6s infinite;
}
.chip--temp { top: 36px; left: 0; transform: translateX(-15%); animation-delay: 0s; }
.chip--pres { bottom: 60px; right: 0; transform: translateX(15%); animation-delay: 1.5s; }
.chip--san  { bottom: 18%; left: 6%; animation-delay: 3s; }
@keyframes float {
  0%, 100% { transform: translate(var(--tx, 0), 0); }
  50%      { transform: translate(var(--tx, 0), -6px); }
}
.chip--temp { --tx: -15%; }
.chip--pres { --tx: 15%; }

/* marquee */
.marquee {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 14px 0;
  background: rgba(255,255,255,.015);
}
.marquee__track {
  display: inline-flex; gap: clamp(16px, 2.5vw, 26px);
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(12px, 1.4vw, 14px);
  letter-spacing: 0.2em;
  color: var(--ink-2);
}
.marquee__track i { color: var(--blue-2); font-style: normal; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============== BENEFITS ============== */
.bgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(12px, 1.5vw, 16px);
}
.bcard {
  position: relative;
  padding: clamp(22px, 3vw, 28px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  transition: transform .25s, border-color .25s, background .25s;
  overflow: hidden;
}
.bcard::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,0%), rgba(43,142,255,.18), transparent 50%);
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.bcard:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
}
.bcard:hover::after { opacity: 1; }
.bcard__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: rgba(43,142,255,.08);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--blue-2);
}
.bcard__icon svg { width: 24px; height: 24px; }
.bcard h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(17px, 1.8vw, 19px);
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.bcard p { color: var(--muted); font-size: 14px; }

/* ============== SERVICES ============== */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  max-width: 720px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}
.tab {
  flex: 1 1 100px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: all .25s;
  font-family: var(--font-display);
  min-height: 44px;
}
.tab__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--mute-2);
}
.tab.is-active {
  background: linear-gradient(180deg, rgba(43,142,255,.22), rgba(43,142,255,.08));
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line-2), 0 10px 30px -15px var(--blue-glow);
}
.tab.is-active .tab__num { color: var(--blue-2); }
.tab:hover { color: var(--ink); }

.tabpanel { display: none; }
.tabpanel.is-active { display: block; animation: fadeIn .4s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.sgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(14px, 2vw, 18px);
}
.scard {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.005));
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.scard:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
  box-shadow: 0 30px 60px -30px rgba(43,142,255,.4);
}
.scard__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0a0d15;
}
.scard__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: brightness(.85) saturate(.9);
}
.scard:hover .scard__media img { transform: scale(1.06); }
.scard__media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(5,6,10,.55) 100%),
    linear-gradient(135deg, rgba(43,142,255,.18), transparent 70%);
  pointer-events: none;
}
.scard__body { padding: 20px 22px 24px; }
.scard__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--blue-2);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.scard h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(17px, 1.8vw, 19px);
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.scard p { color: var(--muted); font-size: 14px; }

.services__cta {
  margin-top: clamp(36px, 5vw, 56px);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: var(--muted);
  text-align: center;
}

/* ============== BEFORE / AFTER ============== */
.results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: clamp(16px, 2.5vw, 22px);
}
.ba {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.005));
  overflow: hidden;
  padding: clamp(14px, 2vw, 20px);
  transition: border-color .3s, box-shadow .3s;
}
.ba:hover {
  border-color: var(--line-2);
  box-shadow: 0 30px 60px -30px rgba(43,142,255,.4);
}
.ba__caption {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.6vw, 16px);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.ba__caption::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-2); box-shadow: 0 0 10px var(--blue-glow);
}
.ba__viewport {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: #0a0d15;
  touch-action: none;
}
.ba__after, .ba__before {
  position: absolute; inset: 0;
}
.ba__after img, .ba__before img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba__after img {
  filter: brightness(1.05) saturate(1.15) contrast(1.05);
}
.ba__before {
  clip-path: inset(0 50% 0 0);
}
.ba__before img {
  filter: brightness(.55) saturate(.35) sepia(.35) contrast(1.1);
}
.ba__range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize;
  -webkit-appearance: none; appearance: none;
  z-index: 4;
  margin: 0;
}
.ba__handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--blue-2), transparent);
  box-shadow: 0 0 18px var(--blue-glow);
  pointer-events: none;
  z-index: 3;
  transform: translateX(-50%);
}
.ba__handle span {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--blue-2);
  background: rgba(10,13,21,.88);
  display: grid; place-items: center;
  box-shadow: 0 0 20px var(--blue-glow), inset 0 0 0 4px rgba(43,142,255,.08);
}
.ba__handle span::before, .ba__handle span::after {
  content: ''; width: 0; height: 0;
  border-top: 5px solid transparent; border-bottom: 5px solid transparent;
}
.ba__handle span::before { border-right: 6px solid var(--blue-2); margin-right: 4px; }
.ba__handle span::after  { border-left: 6px solid var(--blue-2); margin-left: 4px; }

.ba__tagA, .ba__tagB {
  position: absolute; top: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 5px 9px;
  border-radius: 6px;
  border: 1px solid var(--line-2);
  background: rgba(5,6,10,.7);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  z-index: 2;
}
.ba__tagA { left: 12px; color: #c5cbd8; }
.ba__tagB { right: 12px; color: var(--blue-2); }

/* ============== PROCESS ============== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(12px, 1.5vw, 16px);
}
.step {
  position: relative;
  padding: clamp(24px, 3.2vw, 32px) clamp(22px, 3vw, 26px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.005));
  transition: transform .25s, border-color .25s;
}
.step:hover { transform: translateY(-4px); border-color: var(--line-2); }
.step__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blue-2);
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.step__num::before {
  content: ''; width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(17px, 1.8vw, 19px);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.step p { color: var(--muted); font-size: 14px; }

/* ============== TESTIMONIALS ============== */
.tgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(14px, 2vw, 18px);
}
.tcard {
  padding: clamp(22px, 3vw, 28px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.005));
  transition: border-color .25s, transform .25s;
}
.tcard:hover { border-color: var(--line-2); transform: translateY(-3px); }
.tcard__stars { color: #ffd86b; letter-spacing: 4px; margin-bottom: 12px; }
.tcard p {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 22px;
}
.tcard footer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600; font-size: 14px;
  flex-shrink: 0;
}
.tcard footer strong { display: block; font-size: 14px; }
.tcard footer small { color: var(--muted); font-size: 12px; }

/* ============== CTA ============== */
.cta { padding: clamp(60px, 8vw, 80px) var(--gutter) clamp(100px, 14vw, 140px); }
.cta__card {
  position: relative;
  text-align: center;
  border-radius: clamp(20px, 2.5vw, 28px);
  border: 1px solid var(--line-2);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(43,142,255,.25), transparent 60%),
    linear-gradient(180deg, #0a1020, #06080e);
  padding: clamp(50px, 7vw, 80px) clamp(22px, 4vw, 40px) clamp(48px, 6vw, 70px);
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  width: 600px; height: 600px;
  max-width: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,142,255,.4), transparent 60%);
  filter: blur(80px);
  top: -300px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.cta__card h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 14px auto 14px;
  max-width: 820px;
  position: relative;
}
.cta__card p {
  color: var(--ink-2);
  margin: 0 auto 32px;
  max-width: 520px;
  position: relative;
  font-size: clamp(14px, 1.4vw, 16px);
}
.cta__card .btn { position: relative; }
.cta__small {
  margin-top: 20px !important;
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.1vw, 11px);
  letter-spacing: 0.18em;
  color: var(--muted) !important;
  text-transform: uppercase;
}

/* ============== CTA STRIP ============== */
.ctastrip {
  position: relative; z-index: 1;
  padding: clamp(40px, 6vw, 70px) var(--gutter);
}
.ctastrip__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(28px, 4vw, 44px) clamp(26px, 4vw, 48px);
  border-radius: clamp(18px, 2vw, 24px);
  border: 1px solid var(--line-2);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(43,142,255,.22), transparent 60%),
    radial-gradient(ellipse at 90% 100%, rgba(37,211,102,.12), transparent 60%),
    linear-gradient(180deg, #0a1322, #06080e);
  box-shadow: 0 30px 80px -40px rgba(43,142,255,.4);
  overflow: hidden;
}
.ctastrip__copy h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 10px 0 0;
}

/* ============== CONTACT ============== */
.contact { padding-bottom: clamp(80px, 12vw, 140px); }
.contact__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(16px, 2.5vw, 22px);
  align-items: stretch;
}

/* PRIMARY — WhatsApp card */
.cprime {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(46,180,92,.4);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(37,211,102,.18), transparent 65%),
    linear-gradient(180deg, rgba(15,30,22,.85), rgba(8,14,12,.9));
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3.5vw, 40px);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-align: center;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px -40px rgba(37,211,102,.5), 0 12px 30px -12px rgba(0,0,0,.7);
}
.cprime__glow {
  position: absolute;
  width: 100%; height: 320px;
  top: -160px; left: 0;
  background: radial-gradient(ellipse at center, rgba(37,211,102,.45), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.cprime > * { position: relative; }

.cprime__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: clamp(24px, 4vw, 36px);
}
.cprime__live {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #b6f0c6;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid rgba(46,180,92,.45);
  border-radius: 999px;
  background: rgba(37,211,102,.08);
}
.cprime__live i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 8px var(--wa);
  animation: blink 1.6s infinite;
}
.cprime__badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--blue-2);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(43,142,255,.1);
  text-transform: uppercase;
}

.cprime__icon {
  width: 76px; height: 76px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--wa), var(--wa-2));
  color: white;
  box-shadow: 0 20px 50px -20px rgba(37,211,102,.7),
              inset 0 1px 0 rgba(255,255,255,.2);
  animation: bobble 4s ease-in-out infinite;
}
@keyframes bobble {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.cprime__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0 0 6px;
}
.cprime__num {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 clamp(22px, 3vw, 30px);
  color: var(--ink);
}

.btn--wa {
  width: 100%;
  background: linear-gradient(180deg, var(--wa), var(--wa-2));
  color: white;
  font-size: clamp(16px, 1.8vw, 19px);
  padding: clamp(18px, 2.6vw, 22px) 32px;
  min-height: 60px;
  box-shadow:
    0 20px 50px -15px rgba(37,211,102,.7),
    inset 0 1px 0 rgba(255,255,255,.2),
    0 0 0 0 rgba(37,211,102,.45);
  font-weight: 600;
  letter-spacing: 0.005em;
  position: relative;
  overflow: hidden;
}
.btn--wa::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s;
}
.btn--wa:hover {
  transform: translateY(-3px);
  box-shadow:
    0 30px 70px -20px rgba(37,211,102,.85),
    inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--wa:hover::before { transform: translateX(100%); }

.cprime__hint {
  font-size: 13px;
  color: var(--muted);
  margin: 18px auto 0;
  max-width: 380px;
  line-height: 1.5;
}
.cprime__bullets {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px 24px;
  margin-top: clamp(22px, 3vw, 32px);
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid rgba(46,180,92,.18);
}
.cprime__bullets li {
  font-size: 13px;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.cprime__bullets span {
  color: var(--wa);
  font-weight: 700;
}

/* SECONDARY — Form */
.cform {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  padding: clamp(24px, 3.5vw, 36px) clamp(22px, 3vw, 32px);
  display: flex; flex-direction: column;
  gap: 14px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.cform__head { margin-bottom: 10px; }
.cform__head h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.01em;
  margin: 8px 0 6px;
}
.cform__head p { font-size: 13px; color: var(--muted); }

.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cfield { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.cfield > span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  padding-left: 2px;
}
.cfield input, .cfield select, .cfield textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: rgba(5,6,10,.55);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  min-height: 46px;
  -webkit-appearance: none;
  appearance: none;
}
.cfield select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='none' stroke='%235fb8ff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='m2.5 4.5 3.5 3.5 3.5-3.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}
.cfield textarea {
  resize: vertical;
  min-height: 90px;
  font-family: inherit;
}
.cfield input::placeholder, .cfield textarea::placeholder {
  color: var(--mute-2);
}
.cfield input:focus, .cfield select:focus, .cfield textarea:focus {
  border-color: var(--blue);
  background: rgba(5,6,10,.8);
  box-shadow: 0 0 0 3px rgba(43,142,255,.12);
}
.cfield input:invalid:not(:placeholder-shown),
.cfield select:invalid:not(:focus) {
  border-color: rgba(255,90,90,.35);
}
.cform__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.btn--form {
  width: 100%;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  color: white;
  min-height: 52px;
  margin-top: 6px;
  font-weight: 500;
  box-shadow: 0 14px 36px -12px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,.18);
  position: relative;
}
.btn--form:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px -16px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn--form[aria-busy="true"] .btn__label { opacity: 0; }
.btn--form[aria-busy="true"] .btn__spinner {
  opacity: 1;
}
.btn__spinner {
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: white;
  border-radius: 50%;
  opacity: 0;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.cform__status {
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  border: 1px solid var(--line-2);
}
.cform__status.is-ok {
  background: rgba(37,211,102,.08);
  border-color: rgba(37,211,102,.4);
  color: #b6f0c6;
}
.cform__status.is-err {
  background: rgba(255,90,90,.08);
  border-color: rgba(255,90,90,.35);
  color: #ffb5b5;
}
.cform__legal {
  margin-top: 4px;
  font-size: 11px;
  color: var(--mute-2);
  text-align: center;
}

/* Bottom info row */
.contact__info {
  margin-top: clamp(28px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.cinfo {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.005));
  transition: border-color .25s, transform .25s, background .25s;
}
.cinfo:hover {
  transform: translateY(-2px);
  border-color: var(--line-2);
  background: linear-gradient(180deg, rgba(43,142,255,.06), rgba(255,255,255,.005));
}
.cinfo svg {
  width: 22px; height: 22px;
  color: var(--blue-2);
  flex-shrink: 0;
}
.cinfo span { display: flex; flex-direction: column; min-width: 0; line-height: 1.2; }
.cinfo small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
}
.cinfo strong {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  word-break: break-word;
}

/* ============== FOOTER ============== */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  padding: clamp(40px, 6vw, 60px) var(--gutter) clamp(28px, 4vw, 40px);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
}
.footer__brand p {
  color: var(--muted);
  margin: 16px 0 0;
  max-width: 320px;
  font-size: 14px;
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--blue-2);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a, .footer__col li { color: var(--ink-2); font-size: 14px; }
.footer__col a { transition: color .2s; }
.footer__col a:hover { color: var(--ink); }

/* ============== FLOATING WHATSAPP ============== */
.fab {
  position: fixed;
  bottom: clamp(16px, 3vw, 24px);
  right: clamp(16px, 3vw, 24px);
  z-index: 60;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--wa), var(--wa-2));
  color: white;
  box-shadow:
    0 14px 40px -10px rgba(37,211,102,.6),
    0 4px 14px -4px rgba(0,0,0,.5),
    0 0 0 2px rgba(43,142,255,.18),
    0 0 30px -4px rgba(43,142,255,.5);
  transition: transform .25s, box-shadow .25s;
}
.fab:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 60px -14px rgba(37,211,102,.75),
    0 4px 14px -4px rgba(0,0,0,.5),
    0 0 0 2px rgba(95,184,255,.4),
    0 0 36px -2px rgba(43,142,255,.7);
}
.fab__pulse {
  position: absolute; inset: 0;
  border-radius: inherit;
  border: 2px solid var(--blue-2);
  animation: fabPulse 2.4s ease-out infinite;
  pointer-events: none;
  opacity: 0;
}
@keyframes fabPulse {
  0%   { transform: scale(.92); opacity: .8; }
  100% { transform: scale(1.35); opacity: 0; }
}
.fab__text {
  font-family: var(--font-display);
  font-size: 12px; line-height: 1.15;
  letter-spacing: 0.04em;
}
.fab__text strong { font-weight: 600; font-size: 14px; }

/* ============== REVEAL ============== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s, transform .8s; }
.reveal.is-in { opacity: 1; transform: none; }

/* ============== RESPONSIVE BREAKPOINTS ============== */

/* TABLET (≤ 1024px) */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .cprime { max-width: 640px; width: 100%; margin: 0 auto; }
  .cform { max-width: 640px; width: 100%; margin: 0 auto; }
  .ctastrip__inner { grid-template-columns: 1fr; text-align: center; }
  .ctastrip__inner .btn { justify-self: center; }
}

/* MOBILE (≤ 768px) */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta-num { display: none; }
  .nav__cta-label { display: none; }
  .nav__cta {
    padding: 10px 12px;
  }
  .nav__cta::after {
    content: 'WhatsApp';
  }
  .nav__burger { display: inline-flex; }
  .logo__tag { display: none; }
  .nav__brand { margin-right: auto; }

  .hero__center { padding-top: clamp(28px, 6vw, 48px); }
  .hero__logo { width: clamp(160px, 50vw, 240px); margin-top: 12px; }
  .hero__trust { grid-template-columns: repeat(2, 1fr); gap: 18px 14px; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: 1 / -1; }

  .fab { padding: 14px; }
  .fab__text { display: none; }

  .ba__handle span { width: 48px; height: 48px; }

  .ctastrip__inner .btn { width: 100%; }
}

/* SMALL MOBILE (≤ 480px) */
@media (max-width: 480px) {
  body { font-size: 15px; }
  .footer__inner { grid-template-columns: 1fr; }
  .marquee { padding: 12px 0; }
  .ba__caption { font-size: 13px; }
  .ba__tagA, .ba__tagB { font-size: 9px; padding: 4px 7px; top: 10px; }
  .ba__tagA { left: 10px; }
  .ba__tagB { right: 10px; }
  .scard__body { padding: 18px 18px 22px; }
  .tcard p { font-size: 15px; }

  /* Contact mobile */
  .cform__row { grid-template-columns: 1fr; gap: 12px; }
  .cprime { border-radius: 18px; }
  .cform { border-radius: 18px; }
  .cprime__top { justify-content: center; }
  .cprime__badge { display: none; }
  .cinfo { padding: 14px 16px; gap: 12px; }
  .cinfo strong { font-size: 13px; }
}

/* TOUCH devices: disable hover effects */
@media (hover: none) {
  .bcard::after { display: none; }
  .scard:hover, .bcard:hover, .step:hover, .tcard:hover, .ba:hover { transform: none; }
  .scard:hover .scard__media img { transform: none; }
  .btn:hover, .btn--xl:hover, .fab:hover, .nav__cta:hover { transform: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001s !important;
    transition-duration: .001s !important;
  }
  html { scroll-behavior: auto; }
}

/* Print */
@media print {
  .backdrop, .fab, .mmenu, .nav__burger { display: none !important; }
  body { background: white; color: black; }
}
