:root {
  --bg: #03050d;
  --bg-2: #061126;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-2: rgba(255, 255, 255, 0.12);
  --text: #f7fbff;
  --muted: #aab8ce;
  --soft: #dce9ff;
  --cyan: #17d7ff;
  --blue: #2368ff;
  --pink: #ff3fa4;
  --orange: #ff9f31;
  --green: #25d366;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.28);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 44px));
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button, a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

.container { width: var(--container); margin: 0 auto; }

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    radial-gradient(circle at 14% 14%, rgba(23, 215, 255, 0.22), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(255, 63, 164, 0.18), transparent 30%),
    radial-gradient(circle at 76% 76%, rgba(255, 159, 49, 0.14), transparent 34%),
    linear-gradient(140deg, #03050d 0%, #061126 52%, #03050d 100%);
  background-size: 64px 64px, 64px 64px, auto, auto, auto, auto;
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.22) 62%, rgba(0, 0, 0, 0.7) 100%);
}

.orb {
  position: absolute;
  width: 36vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(54px);
  opacity: 0.36;
  animation: orbMove 16s ease-in-out infinite;
}

.orb-a { left: -10vw; top: 8vh; background: var(--cyan); }
.orb-b { right: -12vw; top: 22vh; background: var(--pink); animation-delay: -6s; }
.orb-c { left: 42vw; bottom: -18vw; background: var(--orange); animation-delay: -10s; }

.cursor-glow {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 40%);
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 215, 255, 0.12), transparent 62%);
  transition: left 0.18s ease, top 0.18s ease;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(23, 215, 255, 0.18), transparent 32%),
    linear-gradient(140deg, #02040a, #061126 48%, #02040a);
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.preloader.hide { opacity: 0; visibility: hidden; }

.preloader img {
  width: clamp(116px, 18vw, 190px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  z-index: 2;
  box-shadow: 0 0 90px rgba(23, 215, 255, 0.44), 0 0 130px rgba(255, 63, 164, 0.22);
  animation: logoReveal 1.4s ease both;
}

.preloader p {
  position: absolute;
  bottom: 11vh;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.preloader-orbit {
  position: absolute;
  width: clamp(178px, 26vw, 260px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, var(--cyan), var(--pink), var(--orange), transparent 72%);
  filter: drop-shadow(0 0 24px rgba(23, 215, 255, 0.42));
  animation: spin 1.15s linear infinite;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: rgba(3, 5, 13, 0.72);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand { display: inline-flex; align-items: center; gap: 13px; min-width: 0; }

.brand-mark {
  position: relative;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 50%;
  isolation: isolate;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  background: conic-gradient(from 130deg, var(--cyan), var(--pink), var(--orange), var(--cyan));
  filter: blur(6px);
  opacity: 0.72;
  z-index: -1;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.28);
}

.brand-copy { min-width: 0; }
.brand-copy strong { display: block; font-size: 16px; line-height: 1.1; white-space: nowrap; }
.brand-copy small { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 26px; color: #dbe7fa; font-size: 14px; font-weight: 800; }
.nav-links a { opacity: 0.86; transition: color .22s ease, opacity .22s ease, transform .22s ease; }
.nav-links a:hover { color: var(--cyan); opacity: 1; transform: translateY(-2px); }

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.phone-pill {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.055));
  color: #fff;
  font-weight: 1000;
  white-space: nowrap;
  box-shadow: 0 14px 36px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.13);
  overflow: hidden;
  isolation: isolate;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.phone-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(23,215,255,.32), transparent 38%), radial-gradient(circle at 92% 70%, rgba(255,159,49,.2), transparent 42%);
  opacity: .9;
  z-index: -1;
}
.phone-pill::after {
  content: "☎";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--cyan);
  font-size: 13px;
  order: -1;
}
.phone-pill span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.phone-pill strong {
  font-size: 14px;
  letter-spacing: .2px;
}
.phone-pill:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 22px 48px rgba(0,0,0,.3); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; border-radius: 999px; background: currentColor; transition: transform .28s ease, opacity .28s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: translateX(-120%);
  transition: transform .6s ease;
  z-index: -1;
}
.btn:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 22px 48px rgba(0,0,0,0.3); }
.btn:hover::before { transform: translateX(120%); }
.btn-primary { border: 0; background: linear-gradient(135deg, var(--cyan), var(--pink) 55%, var(--orange)); }
.btn-whatsapp { border: 0; background: linear-gradient(135deg, #12a852, var(--green)); }
.btn-ghost { background: rgba(255,255,255,0.06); }

.section-pad { padding: clamp(62px, 8vw, 112px) 0; }

.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  display: grid;
  align-items: center;
  padding-top: clamp(36px, 5vw, 78px);
}

.hero-grid { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr); align-items: center; gap: clamp(34px, 6vw, 78px); }

.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.08);
  color: #dff4ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .2px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.13);
}
.section-kicker { color: var(--cyan); text-transform: uppercase; letter-spacing: 1.4px; font-size: 12px; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(37,211,102,.8); animation: pulse 1.75s infinite; }

h1, h2, h3 { letter-spacing: -0.045em; }

h1 {
  max-width: 830px;
  margin-top: 22px;
  font-size: clamp(44px, 7.3vw, 96px);
  line-height: .94;
}

.gradient-text {
  background: linear-gradient(120deg, var(--cyan), #fff 35%, var(--pink) 68%, var(--orange));
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 5.8s ease infinite;
}

.hero-text {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.78;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 34px; }

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 38px;
}
.hero-badges div {
  min-height: 108px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.044));
  backdrop-filter: blur(12px);
}
.hero-badges strong { display: block; font-size: 28px; line-height: 1; }
.hero-badges span { display: block; margin-top: 10px; color: var(--muted); font-size: 13px; line-height: 1.45; font-weight: 700; }

.hero-visual { min-height: 610px; display: grid; place-items: center; }
.halo-stage { position: relative; width: min(510px, 86vw); aspect-ratio: 1; display: grid; place-items: center; perspective: 900px; }
.logo-ring {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  background: conic-gradient(from 90deg, var(--cyan), var(--pink), var(--orange), var(--cyan));
  opacity: .72;
  filter: blur(2px);
  animation: spin 16s linear infinite;
}
.logo-ring::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: inherit;
  background: rgba(3,5,13,.9);
}
.logo-card {
  position: relative;
  z-index: 2;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 7px;
  background: linear-gradient(145deg, rgba(255,255,255,.28), rgba(255,255,255,.02));
  box-shadow: var(--shadow), 0 0 120px rgba(23,215,255,.18), 0 0 140px rgba(255,63,164,.14);
  animation: float 6s ease-in-out infinite;
  transform-style: preserve-3d;
}
.logo-card img { width: 100%; height: 100%; border-radius: inherit; object-fit: cover; }
.light-beam {
  position: absolute;
  width: 16%;
  height: 150%;
  top: -22%;
  border-radius: 999px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.5), transparent);
  filter: blur(12px);
  opacity: .26;
  mix-blend-mode: screen;
  animation: beamSweep 5s ease-in-out infinite;
}
.beam-one { left: 24%; transform: rotate(26deg); }
.beam-two { right: 20%; transform: rotate(-32deg); animation-delay: -2.3s; }
.mini-card {
  position: absolute;
  z-index: 4;
  width: 190px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(7,16,35,.78);
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 48px rgba(0,0,0,.34);
  animation: drift 6.5s ease-in-out infinite;
}
.mini-card::before { content: ""; position: absolute; width: 12px; height: 12px; border-radius: 50%; top: 17px; right: 17px; background: var(--green); box-shadow: 0 0 18px rgba(37,211,102,.55); }
.mini-card b { display: block; font-size: 15px; }
.mini-card span { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.mini-card-left { left: -8px; top: 19%; }
.mini-card-right { right: -14px; bottom: 20%; animation-delay: -2.5s; }

.trust-strip { margin-top: clamp(28px, 5vw, 58px); overflow: hidden; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.06); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.trust-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.trust-track span { display: inline-flex; align-items: center; min-height: 52px; padding: 0 30px; color: #e3edff; font-size: 13px; font-weight: 1000; letter-spacing: 1.5px; text-transform: uppercase; border-right: 1px solid rgba(255,255,255,.13); }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 36px; }
.section-head.vertical { display: block; margin-bottom: 0; }
.section-head h2 { max-width: 760px; margin-top: 14px; font-size: clamp(33px, 5.2vw, 62px); line-height: 1; }
.section-head p { max-width: 470px; color: var(--muted); font-size: 16px; line-height: 1.72; }
.section-head.vertical p { margin-top: 18px; max-width: 540px; }
.section-head.vertical .btn { margin-top: 28px; }

.services-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.service-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 20% 12%, rgba(23,215,255,.24), transparent 30%), radial-gradient(circle at 86% 86%, rgba(255,63,164,.22), transparent 30%);
  opacity: 0;
  transition: opacity .28s ease;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { transform: translateY(-10px); border-color: var(--line-strong); background: rgba(255,255,255,.105); }
.service-card:hover::before, .service-card.featured::before { opacity: 1; }
.service-card.featured { border-color: rgba(23,215,255,.45); box-shadow: 0 0 0 1px rgba(23,215,255,.15), 0 22px 58px rgba(23,215,255,.1); }
.service-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 18px; color: #04101d; background: linear-gradient(135deg, var(--cyan), var(--pink) 60%, var(--orange)); font-size: 24px; font-weight: 1000; }
.service-tag { color: var(--soft); padding: 7px 9px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; background: rgba(255,255,255,.075); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .8px; }
.service-card h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.03; }
.service-card p { margin-top: 16px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.price { margin-top: auto; padding-top: 24px; font-size: clamp(25px, 2.7vw, 32px); line-height: 1; font-weight: 1000; letter-spacing: -0.04em; }
.price small { color: var(--muted); font-size: 13px; font-weight: 900; letter-spacing: 0; }
.card-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 22px; color: #fff; font-size: 14px; font-weight: 1000; }
.card-link::after { content: "→"; transition: transform .22s ease; }
.card-link:hover::after { transform: translateX(6px); }

.results-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(28px, 5vw, 58px); align-items: center; }
.bento { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.bento-card {
  min-height: 210px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
  box-shadow: 0 16px 42px rgba(0,0,0,.18);
}
.bento-card.large { min-height: 320px; grid-row: span 2; background: radial-gradient(circle at 18% 16%, rgba(23,215,255,.24), transparent 32%), linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.045)); }
.bento-card.wide { grid-column: span 2; min-height: 190px; background: radial-gradient(circle at 80% 20%, rgba(255,159,49,.2), transparent 32%), linear-gradient(160deg, rgba(255,255,255,.11), rgba(255,255,255,.045)); }
.bento-card span { color: var(--orange); font-size: 12px; font-weight: 1000; text-transform: uppercase; letter-spacing: 1.1px; }
.bento-card h3 { margin-top: 14px; font-size: clamp(24px, 2.8vw, 36px); line-height: 1.02; }
.bento-card p { margin-top: 12px; color: var(--muted); font-size: 15px; line-height: 1.65; }

.stack-section { padding-top: 34px; }
.stack-flow { display: grid; grid-template-columns: 1fr 70px 1fr 70px 1fr 70px 1fr; align-items: center; gap: 14px; }
.flow-step { min-height: 160px; display: grid; place-items: center; text-align: center; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.07); }
.flow-step span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #03101d; background: linear-gradient(135deg, var(--cyan), var(--pink)); font-weight: 1000; }
.flow-step b { margin-top: 14px; font-size: 24px; letter-spacing: -0.03em; }
.flow-step small { margin-top: 6px; color: var(--muted); font-weight: 800; }
.flow-line { height: 2px; background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent); animation: lineGlow 2.4s ease-in-out infinite; }

.review-shell { position: relative; }
.reviews { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding: 2px 2px 18px; }
.reviews::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 calc((100% - 32px) / 3); scroll-snap-align: start; min-height: 292px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.045)); box-shadow: 0 16px 42px rgba(0,0,0,.16); }
.stars { color: #ffd166; font-size: 20px; letter-spacing: 2px; text-shadow: 0 0 22px rgba(255,209,102,.24); }
.review-card p { margin-top: 18px; color: #dbe6f6; line-height: 1.74; }
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.avatar { width: 46px; height: 46px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: #04101d; background: linear-gradient(135deg, var(--cyan), var(--pink) 60%, var(--orange)); font-weight: 1000; }
.reviewer b { display: block; }
.reviewer small { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; font-weight: 800; }
.review-controls { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 14px; }
.review-dots { display: flex; align-items: center; gap: 8px; }
.review-dot { width: 9px; height: 9px; border: 0; border-radius: 999px; background: rgba(255,255,255,.32); cursor: pointer; transition: width .22s ease, background .22s ease; }
.review-dot.active { width: 30px; background: linear-gradient(135deg, var(--cyan), var(--pink)); }
.review-arrows { display: flex; gap: 10px; }
.review-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.08); color: #fff; font-size: 28px; line-height: 1; cursor: pointer; transition: transform .22s ease, border-color .22s ease; }
.review-btn:hover { transform: translateY(-3px); border-color: var(--line-strong); }

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.process-card { position: relative; min-height: 218px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.042)); overflow: hidden; }
.process-card::after { content: ""; position: absolute; width: 160px; height: 160px; right: -78px; top: -86px; border-radius: 50%; border: 28px solid rgba(255,255,255,.055); }
.process-card span { color: var(--cyan); font-size: 13px; font-weight: 1000; letter-spacing: 1.2px; }
.process-card h3 { margin-top: 32px; font-size: 28px; }
.process-card p { margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 1.68; }

.contact-section { padding-top: 36px; }
.cta-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 16% 12%, rgba(23,215,255,.24), transparent 32%),
    radial-gradient(circle at 84% 88%, rgba(255,63,164,.2), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.052));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cta-card::before { content: ""; position: absolute; width: 320px; height: 320px; right: -120px; top: -150px; border-radius: 50%; border: 46px solid rgba(255,255,255,.06); }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { max-width: 760px; margin-top: 14px; font-size: clamp(34px, 5.4vw, 64px); line-height: 1; }
.cta-card p { max-width: 680px; margin-top: 16px; color: #d7e4f5; line-height: 1.7; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.footer { padding: 34px 0 42px; border-top: 1px solid var(--line); color: var(--muted); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 22px; font-size: 14px; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.footer-brand img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.footer-brand strong { display: block; }
.footer-brand small { display: block; margin-top: 4px; color: var(--muted); max-width: 460px; }

.whatsapp-float, .top-float {
  position: fixed;
  z-index: 150;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  border: 0;
  box-shadow: 0 16px 38px rgba(0,0,0,.32);
}
.whatsapp-float { right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); width: 60px; height: 60px; background: var(--green); font-size: 24px; animation: whatsappBounce 3.2s ease-in-out infinite; }
.top-float { right: max(18px, env(safe-area-inset-right)); bottom: calc(max(18px, env(safe-area-inset-bottom)) + 74px); width: 46px; height: 46px; background: rgba(255,255,255,.12); border: 1px solid var(--line); backdrop-filter: blur(12px); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .22s ease, visibility .22s ease, transform .22s ease; }
.top-float.show { opacity: 1; visibility: visible; transform: translateY(0); }

.live-review-toast {
  position: fixed;
  left: max(18px, env(safe-area-inset-left));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 140;
  width: min(350px, calc(100% - 100px));
  pointer-events: none;
}
.toast-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(7,16,35,.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 58px rgba(0,0,0,.38);
  transform: translateY(16px);
  opacity: 0;
  animation: toastInOut 4.6s ease both;
}
.toast-card .avatar { width: 44px; height: 44px; }
.toast-card b { display: block; font-size: 13px; }
.toast-card p { margin-top: 3px; color: var(--muted); font-size: 12px; line-height: 1.35; }
.toast-card small { display: inline-flex; gap: 4px; margin-top: 6px; color: #ffd166; letter-spacing: 1px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .78s ease, transform .78s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@keyframes gradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); } 50% { transform: translateY(-18px) rotateX(2deg) rotateY(-2deg); } }
@keyframes drift { 0%,100% { transform: translateY(0); } 50% { transform: translateY(14px); } }
@keyframes beamSweep { 0%,100% { opacity: .12; transform: translateX(-30px) rotate(26deg); } 50% { opacity: .34; transform: translateX(34px) rotate(26deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes orbMove { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(4vw,-3vh,0) scale(1.16); } }
@keyframes lineGlow { 0%,100% { opacity: .45; } 50% { opacity: 1; } }
@keyframes whatsappBounce { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-7px) scale(1.045); } }
@keyframes logoReveal { from { transform: scale(.82); opacity: 0; filter: blur(10px); } to { transform: scale(1); opacity: 1; filter: blur(0); } }
@keyframes toastInOut { 0% { opacity: 0; transform: translateY(16px) scale(.96); } 12%, 86% { opacity: 1; transform: translateY(0) scale(1); } 100% { opacity: 0; transform: translateY(10px) scale(.98); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .preloader { display: none; }
}

@media (min-width: 1400px) {
  :root { --container: min(1260px, calc(100% - 72px)); }
  .services-grid { gap: 18px; }
}

@media (max-width: 1120px) {
  :root { --container: min(100% - 34px, 1180px); }
  .nav { gap: 14px; }
  .nav-links { gap: 14px; font-size: 13px; }
  .nav-actions { gap: 9px; }
  .phone-pill { min-height: 44px; padding: 0 13px; }
  .phone-pill strong { font-size: 13px; }
  .nav-cta { min-height: 44px; padding: 0 13px; font-size: 13px; }
  .hero-grid, .results-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; order: -1; }
  .hero-copy { text-align: left; }
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .service-card.featured { grid-column: span 2; min-height: 270px; }
  .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .review-card { flex-basis: calc((100% - 16px) / 2); }
  .stack-flow { grid-template-columns: repeat(4, 1fr); }
  .flow-line { display: none; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 26px, 1180px); --radius: 22px; --radius-sm: 16px; }
  .nav { min-height: 72px; }
  .brand-mark { width: 46px; height: 46px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { font-size: 11px; }
  .brand { order: 1; }
  .nav-actions { order: 2; margin-left: auto; }
  .menu-toggle { display: block; order: 3; margin-left: 0; }
  .phone-pill { min-height: 42px; padding: 0 12px; gap: 7px; }
  .phone-pill span { display: none; }
  .phone-pill::after { width: 24px; height: 24px; font-size: 12px; }
  .nav-links {
    position: fixed;
    left: 13px;
    right: 13px;
    top: calc(72px + env(safe-area-inset-top));
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(7,16,35,.95);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    transform: translateY(-18px) scale(.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s ease, visibility .24s ease, transform .24s ease;
  }
  .nav-links.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); }
  .nav-links a { padding: 15px 12px; border-radius: 14px; }
  .nav-links a:hover { background: rgba(255,255,255,.08); transform: none; }
  .nav-cta { display: none; }
  .hero { min-height: auto; }
  .hero-visual { min-height: 400px; }
  .halo-stage { width: min(390px, 88vw); }
  .mini-card { width: 158px; padding: 13px; border-radius: 18px; }
  .mini-card-left { left: -4px; top: 12%; }
  .mini-card-right { right: -6px; bottom: 13%; }
  .hero-badges { grid-template-columns: 1fr; }
  .hero-badges div { min-height: auto; }
  .section-head, .cta-card, .footer-grid { flex-direction: column; align-items: flex-start; }
  .section-head h2 { max-width: none; }
  .section-head p { max-width: none; }
  .review-card { flex-basis: 100%; }
  .bento { grid-template-columns: 1fr; }
  .bento-card.large, .bento-card.wide { grid-row: auto; grid-column: auto; min-height: 210px; }
  .stack-flow { grid-template-columns: repeat(2, 1fr); }
  .live-review-toast { width: min(330px, calc(100% - 94px)); }
}

@media (max-width: 560px) {
  :root { --container: min(100% - 22px, 1180px); }
  .section-pad { padding: 58px 0; }
  .brand-copy { max-width: 132px; }
  .brand-copy strong { white-space: normal; font-size: 13px; }
  .brand-copy small { display: none; }
  .nav { gap: 9px; }
  .phone-pill { padding: 0 10px; min-height: 40px; }
  .phone-pill strong { font-size: 12.5px; }
  h1 { font-size: clamp(38px, 13vw, 58px); line-height: 1.01; }
  .hero-text { font-size: 15.5px; line-height: 1.68; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .hero-visual { min-height: 330px; }
  .halo-stage { width: min(300px, 82vw); }
  .logo-card { width: 80%; }
  .mini-card { width: min(138px, 44vw); }
  .mini-card b { font-size: 12px; }
  .mini-card span { font-size: 10.5px; }
  .mini-card::before { width: 9px; height: 9px; }
  .eyebrow { align-items: flex-start; min-height: auto; padding: 10px 13px; border-radius: 16px; line-height: 1.3; font-size: 12px; }
  .trust-strip { border-radius: 18px; }
  .trust-track span { min-height: 44px; padding: 0 22px; font-size: 11px; }
  .services-grid, .service-card.featured, .process-grid, .stack-flow { grid-template-columns: 1fr; grid-column: auto; }
  .service-card { min-height: auto; }
  .price { padding-top: 28px; }
  .review-controls { flex-direction: column; align-items: flex-start; }
  .review-arrows { width: 100%; justify-content: space-between; }
  .cta-card { border-radius: 26px; }
  .whatsapp-float { width: 56px; height: 56px; }
  .top-float { bottom: calc(max(18px, env(safe-area-inset-bottom)) + 68px); }
  .live-review-toast { display: none; }
}

@media (max-width: 430px) {
  .brand-copy { display: none; }
  .brand-mark { width: 42px; height: 42px; }
  .phone-pill { padding: 0 9px; }
  .phone-pill strong { font-size: 12px; letter-spacing: 0; }
  .phone-pill::after { display: none; }
}

@media (max-width: 380px) {
  .brand-mark { width: 42px; height: 42px; }
  .brand-copy { display: none; }
  .phone-pill { padding: 0 9px; }
  .phone-pill strong { font-size: 12px; letter-spacing: 0; }
  .phone-pill::after { display: none; }
  .menu-toggle { width: 42px; height: 42px; }
  h1 { font-size: 36px; }
  .halo-stage { width: min(270px, 82vw); }
}

@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: auto; }
  .nav { min-height: 66px; }
  .phone-pill { min-height: 38px; }
  .hero-grid { grid-template-columns: 1fr 0.82fr; gap: 24px; }
  .hero-visual { min-height: 300px; order: initial; }
  .halo-stage { width: min(270px, 42vw); }
  .hero-badges { grid-template-columns: repeat(3, 1fr); }
  .section-pad { padding: 46px 0; }
}
