﻿:root {
  --bg: #06080d;
  --bg-soft: #0a0f1a;
  --bg-card: rgba(12, 18, 31, 0.76);
  --text: #f5f7ff;
  --muted: #b3bdd4;
  --muted-strong: #9aa7c2;
  --blue: var(--accent-1);
  --blue-bright: var(--accent-2);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 22px 55px rgba(5, 8, 16, 0.45);
  --radius-lg: 22px;
  --radius-md: 16px;
  --nav-height: 72px;
  --announcement-height: 0px;
  --marquee-overshoot: 0vw;
  --fs-xxs: clamp(0.62rem, 0.55rem + 0.3vw, 0.78rem);
  --fs-xs: clamp(0.7rem, 0.62rem + 0.4vw, 0.88rem);
  --fs-sm: clamp(0.82rem, 0.74rem + 0.5vw, 1rem);
  --fs-md: clamp(0.95rem, 0.82rem + 0.6vw, 1.1rem);
  --fs-lg: clamp(1.1rem, 0.95rem + 0.9vw, 1.4rem);
  --fs-xl: clamp(1.35rem, 1.05rem + 1.6vw, 1.9rem);
  --fs-2xl: clamp(1.7rem, 1.2rem + 2.4vw, 2.6rem);
  --fs-3xl: clamp(2.2rem, 1.45rem + 3.4vw, 3.6rem);
  --lh-tight: 1.05;
  --lh-snug: 1.25;
  --lh-normal: 1.5;
  --lh-relaxed: 1.65;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top, var(--bg-radial-1), transparent 45%),
    radial-gradient(circle at 20% 20%, var(--bg-radial-2), transparent 40%),
    linear-gradient(160deg, var(--bg-linear-1) 0%, var(--bg-linear-2) 48%, var(--bg-linear-3) 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: var(--lh-normal);
  font-size: var(--fs-md);
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: var(--lh-snug);
}

h1 {
  font-size: var(--fs-3xl);
}

h2 {
  font-size: var(--fs-2xl);
}

h3 {
  font-size: var(--fs-xl);
}

h4 {
  font-size: var(--fs-lg);
}

h5 {
  font-size: var(--fs-md);
}

h6 {
  font-size: var(--fs-sm);
}

p,
li {
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
}

span {
  font-size: inherit;
}

a,
button,
input,
select,
textarea {
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(91, 210, 255, 0.6);
  outline-offset: 2px;
}

main {
  padding-top: calc(var(--nav-height) + var(--announcement-height));
}

.nav {
  position: fixed;
  top: var(--announcement-height);
  left: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(7, 10, 18, 0.72);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.announcement-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  background: linear-gradient(120deg, rgba(63, 124, 255, 0.32), rgba(91, 210, 255, 0.2));
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: "Sora", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  --announcement-speed: 28s;
}

.announcement-banner.hidden {
  display: none;
}

.banner-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.banner-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: announcement-right var(--announcement-speed, 28s) linear infinite;
}

.announcement-banner[data-direction="left"] .banner-inner {
  animation-name: announcement-left;
}

.announcement-banner[data-motion="2"] {
  --announcement-speed: 40s;
}

.announcement-banner[data-motion="3"] {
  --announcement-speed: 18s;
}

.banner-track {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
  flex: 0 0 auto;
}

.banner-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: #eaf2ff;
  white-space: nowrap;
}

.banner-item strong {
  font-weight: 700;
}

.banner-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #d7e7ff;
  flex: 0 0 auto;
}

.banner-item .icon svg,
.banner-item .icon img {
  width: 16px;
  height: 16px;
  display: block;
}

.banner-item .icon img {
  object-fit: contain;
}

.banner-divider {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--fs-xs);
  margin: 0 4px;
}

.whatsapp-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(6, 12, 20, 0.7);
  border: 1px solid rgba(91, 210, 255, 0.4);
  color: #e8f5ff;
  font-weight: 600;
  font-size: var(--fs-xs);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-quick-btn.hidden {
  display: none;
}

.whatsapp-quick-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(63, 124, 255, 0.25);
}

@keyframes announcement-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes announcement-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.nav.scrolled {
  background: rgba(7, 10, 18, 0.48);
  border-color: rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.logo {
  font-family: "Sora", sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #ffffff, #6dd6ff);
  -webkit-background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(235, 242, 255, 0.86);
}

.nav-links a {
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(91, 210, 255, 0.35);
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-content h1 {
  font-family: "Space Grotesk", "Sora", sans-serif;
  font-size: var(--fs-3xl);
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
  background: linear-gradient(
    120deg,
    var(--highlight-1) 0%,
    var(--highlight-2) 45%,
    var(--highlight-3) 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  animation: hero-gradient 8s linear infinite;
}

@keyframes hero-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes highlight-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes highlight-shimmer {
  0% {
    background-position: -200% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes highlight-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes highlight-glow {
  0%,
  100% {
    text-shadow: var(--hl-shadow);
  }
  50% {
    text-shadow: 0 0 22px var(--hl-underline-color);
  }
}

@keyframes highlight-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes highlight-flicker {
  0%,
  100% {
    opacity: 1;
  }
  40% {
    opacity: 0.9;
  }
  60% {
    opacity: 0.6;
  }
  70% {
    opacity: 0.95;
  }
}

@keyframes highlight-pop {
  0%,
  100% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.06);
  }
  60% {
    transform: scale(0.98);
  }
}

@keyframes highlight-slide {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 130% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes highlight-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.hero-content h2 {
  font-family: "Sora", sans-serif;
  font-size: var(--fs-2xl);
  color: var(--text);
  margin-bottom: 10px;
  line-height: var(--lh-snug);
}

.eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  font-size: var(--fs-xxs);
  letter-spacing: 0.3em;
  margin-bottom: 16px;
}

.subhead {
  font-size: var(--fs-lg);
  color: #e6f0ff;
  font-weight: 700;
  letter-spacing: 0.01em;
  max-width: 520px;
  line-height: var(--lh-relaxed);
}

.highlight-pill {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0 2px 2px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  --hl-gradient: linear-gradient(
    120deg,
    var(--highlight-1) 0%,
    var(--highlight-2) 45%,
    var(--highlight-3) 100%
  );
  --hl-underline-color: rgba(109, 214, 255, 0.95);
  --hl-underline-style: wavy;
  --hl-underline-thickness: 1.6px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 10px rgba(109, 214, 255, 0.35);
  --hl-speed: 5s;
  background: var(--hl-gradient);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: var(--hl-shadow);
  text-decoration-line: underline;
  text-decoration-style: var(--hl-underline-style);
  text-decoration-color: var(--hl-underline-color);
  text-decoration-thickness: var(--hl-underline-thickness);
  text-underline-offset: var(--hl-underline-offset);
  animation: highlight-flow var(--hl-speed) linear infinite;
}

.hl-01 {
  --hl-gradient: linear-gradient(120deg, #c8ffea 0%, #77d7ff 45%, #7aa1ff 100%);
  --hl-underline-style: wavy;
  --hl-underline-color: rgba(119, 215, 255, 0.85);
  --hl-underline-thickness: 1.6px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(119, 215, 255, 0.35);
  --hl-speed: 5.0s;
}
.hl-02 {
  --hl-gradient: linear-gradient(132deg, #b7fffe 0%, #6b9cff 45%, #e9b7ff 100%);
  --hl-underline-style: wavy;
  --hl-underline-color: rgba(107, 156, 255, 0.85);
  --hl-underline-thickness: 1.6px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(107, 156, 255, 0.35);
  --hl-speed: 5.0s;
}
.hl-03 {
  --hl-gradient: linear-gradient(144deg, #ffe29f 0%, #ffa99f 45%, #ff719a 100%);
  --hl-underline-style: wavy;
  --hl-underline-color: rgba(255, 169, 159, 0.85);
  --hl-underline-thickness: 1.6px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(255, 169, 159, 0.35);
  --hl-speed: 5.0s;
}
.hl-04 {
  --hl-gradient: linear-gradient(120deg, #8af3ff 0%, #6f8dff 45%, #a36bff 100%);
  --hl-underline-style: wavy;
  --hl-underline-color: rgba(111, 141, 255, 0.85);
  --hl-underline-thickness: 1.6px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(111, 141, 255, 0.35);
  --hl-speed: 5.0s;
}
.hl-05 {
  --hl-gradient: linear-gradient(132deg, #b9ff9c 0%, #52ffb8 45%, #3fd0ff 100%);
  --hl-underline-style: wavy;
  --hl-underline-color: rgba(82, 255, 184, 0.85);
  --hl-underline-thickness: 1.6px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(82, 255, 184, 0.35);
  --hl-speed: 5.0s;
}
.hl-06 {
  --hl-gradient: linear-gradient(144deg, #ffd1dc 0%, #ff7ad9 45%, #8a6bff 100%);
  --hl-underline-style: wavy;
  --hl-underline-color: rgba(255, 122, 217, 0.85);
  --hl-underline-thickness: 1.6px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(255, 122, 217, 0.35);
  --hl-speed: 5.0s;
}
.hl-07 {
  --hl-gradient: linear-gradient(120deg, #fff1a8 0%, #ffd166 45%, #ff8fab 100%);
  --hl-underline-style: wavy;
  --hl-underline-color: rgba(255, 209, 102, 0.85);
  --hl-underline-thickness: 1.6px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(255, 209, 102, 0.35);
  --hl-speed: 5.0s;
}
.hl-08 {
  --hl-gradient: linear-gradient(132deg, #a0ffe6 0%, #5ed0ff 45%, #4f7cff 100%);
  --hl-underline-style: wavy;
  --hl-underline-color: rgba(94, 208, 255, 0.85);
  --hl-underline-thickness: 1.6px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(94, 208, 255, 0.35);
  --hl-speed: 5.0s;
}
.hl-09 {
  --hl-gradient: linear-gradient(144deg, #fdf6b2 0%, #f9a8d4 45%, #a78bfa 100%);
  --hl-underline-style: wavy;
  --hl-underline-color: rgba(249, 168, 212, 0.85);
  --hl-underline-thickness: 1.6px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(249, 168, 212, 0.35);
  --hl-speed: 5.0s;
}
.hl-10 {
  --hl-gradient: linear-gradient(120deg, #ffffff 0%, #6dd6ff 45%, #ffffff 100%);
  --hl-underline-style: wavy;
  --hl-underline-color: rgba(109, 214, 255, 0.85);
  --hl-underline-thickness: 1.6px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(109, 214, 255, 0.35);
  --hl-speed: 5.0s;
}
.hl-11 {
  --hl-gradient: linear-gradient(120deg, #ffffff 0%, #6dd6ff 45%, #ffffff 100%);
  --hl-underline-style: solid;
  --hl-underline-color: rgba(109, 214, 255, 0.85);
  --hl-underline-thickness: 1.4px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(109, 214, 255, 0.35);
  --hl-speed: 4.6s;
}
.hl-12 {
  --hl-gradient: linear-gradient(132deg, #b7fffe 0%, #6b9cff 45%, #e9b7ff 100%);
  --hl-underline-style: solid;
  --hl-underline-color: rgba(107, 156, 255, 0.85);
  --hl-underline-thickness: 1.4px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(107, 156, 255, 0.35);
  --hl-speed: 4.6s;
}
.hl-13 {
  --hl-gradient: linear-gradient(144deg, #ffe29f 0%, #ffa99f 45%, #ff719a 100%);
  --hl-underline-style: solid;
  --hl-underline-color: rgba(255, 169, 159, 0.85);
  --hl-underline-thickness: 1.4px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(255, 169, 159, 0.35);
  --hl-speed: 4.6s;
}
.hl-14 {
  --hl-gradient: linear-gradient(120deg, #8af3ff 0%, #6f8dff 45%, #a36bff 100%);
  --hl-underline-style: solid;
  --hl-underline-color: rgba(111, 141, 255, 0.85);
  --hl-underline-thickness: 1.4px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(111, 141, 255, 0.35);
  --hl-speed: 4.6s;
}
.hl-15 {
  --hl-gradient: linear-gradient(132deg, #b9ff9c 0%, #52ffb8 45%, #3fd0ff 100%);
  --hl-underline-style: solid;
  --hl-underline-color: rgba(82, 255, 184, 0.85);
  --hl-underline-thickness: 1.4px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(82, 255, 184, 0.35);
  --hl-speed: 4.6s;
}
.hl-16 {
  --hl-gradient: linear-gradient(144deg, #ffd1dc 0%, #ff7ad9 45%, #8a6bff 100%);
  --hl-underline-style: solid;
  --hl-underline-color: rgba(255, 122, 217, 0.85);
  --hl-underline-thickness: 1.4px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(255, 122, 217, 0.35);
  --hl-speed: 4.6s;
}
.hl-17 {
  --hl-gradient: linear-gradient(120deg, #fff1a8 0%, #ffd166 45%, #ff8fab 100%);
  --hl-underline-style: solid;
  --hl-underline-color: rgba(255, 209, 102, 0.85);
  --hl-underline-thickness: 1.4px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(255, 209, 102, 0.35);
  --hl-speed: 4.6s;
}
.hl-18 {
  --hl-gradient: linear-gradient(132deg, #a0ffe6 0%, #5ed0ff 45%, #4f7cff 100%);
  --hl-underline-style: solid;
  --hl-underline-color: rgba(94, 208, 255, 0.85);
  --hl-underline-thickness: 1.4px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(94, 208, 255, 0.35);
  --hl-speed: 4.6s;
}
.hl-19 {
  --hl-gradient: linear-gradient(144deg, #fdf6b2 0%, #f9a8d4 45%, #a78bfa 100%);
  --hl-underline-style: solid;
  --hl-underline-color: rgba(249, 168, 212, 0.85);
  --hl-underline-thickness: 1.4px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(249, 168, 212, 0.35);
  --hl-speed: 4.6s;
}
.hl-20 {
  --hl-gradient: linear-gradient(120deg, #c8ffea 0%, #77d7ff 45%, #7aa1ff 100%);
  --hl-underline-style: solid;
  --hl-underline-color: rgba(119, 215, 255, 0.85);
  --hl-underline-thickness: 1.4px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(119, 215, 255, 0.35);
  --hl-speed: 4.6s;
}
.hl-21 {
  --hl-gradient: linear-gradient(120deg, #ffffff 0%, #6dd6ff 45%, #ffffff 100%);
  --hl-underline-style: double;
  --hl-underline-color: rgba(109, 214, 255, 0.85);
  --hl-underline-thickness: 2.0px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(109, 214, 255, 0.35);
  --hl-speed: 5.4s;
}
.hl-22 {
  --hl-gradient: linear-gradient(132deg, #b7fffe 0%, #6b9cff 45%, #e9b7ff 100%);
  --hl-underline-style: double;
  --hl-underline-color: rgba(107, 156, 255, 0.85);
  --hl-underline-thickness: 2.0px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(107, 156, 255, 0.35);
  --hl-speed: 5.4s;
}
.hl-23 {
  --hl-gradient: linear-gradient(144deg, #ffe29f 0%, #ffa99f 45%, #ff719a 100%);
  --hl-underline-style: double;
  --hl-underline-color: rgba(255, 169, 159, 0.85);
  --hl-underline-thickness: 2.0px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(255, 169, 159, 0.35);
  --hl-speed: 5.4s;
}
.hl-24 {
  --hl-gradient: linear-gradient(120deg, #8af3ff 0%, #6f8dff 45%, #a36bff 100%);
  --hl-underline-style: double;
  --hl-underline-color: rgba(111, 141, 255, 0.85);
  --hl-underline-thickness: 2.0px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(111, 141, 255, 0.35);
  --hl-speed: 5.4s;
}
.hl-25 {
  --hl-gradient: linear-gradient(132deg, #b9ff9c 0%, #52ffb8 45%, #3fd0ff 100%);
  --hl-underline-style: double;
  --hl-underline-color: rgba(82, 255, 184, 0.85);
  --hl-underline-thickness: 2.0px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(82, 255, 184, 0.35);
  --hl-speed: 5.4s;
}
.hl-26 {
  --hl-gradient: linear-gradient(144deg, #ffd1dc 0%, #ff7ad9 45%, #8a6bff 100%);
  --hl-underline-style: double;
  --hl-underline-color: rgba(255, 122, 217, 0.85);
  --hl-underline-thickness: 2.0px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(255, 122, 217, 0.35);
  --hl-speed: 5.4s;
}
.hl-27 {
  --hl-gradient: linear-gradient(120deg, #fff1a8 0%, #ffd166 45%, #ff8fab 100%);
  --hl-underline-style: double;
  --hl-underline-color: rgba(255, 209, 102, 0.85);
  --hl-underline-thickness: 2.0px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(255, 209, 102, 0.35);
  --hl-speed: 5.4s;
}
.hl-28 {
  --hl-gradient: linear-gradient(132deg, #a0ffe6 0%, #5ed0ff 45%, #4f7cff 100%);
  --hl-underline-style: double;
  --hl-underline-color: rgba(94, 208, 255, 0.85);
  --hl-underline-thickness: 2.0px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(94, 208, 255, 0.35);
  --hl-speed: 5.4s;
}
.hl-29 {
  --hl-gradient: linear-gradient(144deg, #fdf6b2 0%, #f9a8d4 45%, #a78bfa 100%);
  --hl-underline-style: double;
  --hl-underline-color: rgba(249, 168, 212, 0.85);
  --hl-underline-thickness: 2.0px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(249, 168, 212, 0.35);
  --hl-speed: 5.4s;
}
.hl-30 {
  --hl-gradient: linear-gradient(120deg, #c8ffea 0%, #77d7ff 45%, #7aa1ff 100%);
  --hl-underline-style: double;
  --hl-underline-color: rgba(119, 215, 255, 0.85);
  --hl-underline-thickness: 2.0px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(119, 215, 255, 0.35);
  --hl-speed: 5.4s;
}
.hl-31 {
  --hl-gradient: linear-gradient(120deg, #ffffff 0%, #6dd6ff 45%, #ffffff 100%);
  --hl-underline-style: dotted;
  --hl-underline-color: rgba(109, 214, 255, 0.85);
  --hl-underline-thickness: 2.2px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(109, 214, 255, 0.35);
  --hl-speed: 5.8s;
}
.hl-32 {
  --hl-gradient: linear-gradient(132deg, #b7fffe 0%, #6b9cff 45%, #e9b7ff 100%);
  --hl-underline-style: dotted;
  --hl-underline-color: rgba(107, 156, 255, 0.85);
  --hl-underline-thickness: 2.2px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(107, 156, 255, 0.35);
  --hl-speed: 5.8s;
}
.hl-33 {
  --hl-gradient: linear-gradient(144deg, #ffe29f 0%, #ffa99f 45%, #ff719a 100%);
  --hl-underline-style: dotted;
  --hl-underline-color: rgba(255, 169, 159, 0.85);
  --hl-underline-thickness: 2.2px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(255, 169, 159, 0.35);
  --hl-speed: 5.8s;
}
.hl-34 {
  --hl-gradient: linear-gradient(120deg, #8af3ff 0%, #6f8dff 45%, #a36bff 100%);
  --hl-underline-style: dotted;
  --hl-underline-color: rgba(111, 141, 255, 0.85);
  --hl-underline-thickness: 2.2px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(111, 141, 255, 0.35);
  --hl-speed: 5.8s;
}
.hl-35 {
  --hl-gradient: linear-gradient(132deg, #b9ff9c 0%, #52ffb8 45%, #3fd0ff 100%);
  --hl-underline-style: dotted;
  --hl-underline-color: rgba(82, 255, 184, 0.85);
  --hl-underline-thickness: 2.2px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(82, 255, 184, 0.35);
  --hl-speed: 5.8s;
}
.hl-36 {
  --hl-gradient: linear-gradient(144deg, #ffd1dc 0%, #ff7ad9 45%, #8a6bff 100%);
  --hl-underline-style: dotted;
  --hl-underline-color: rgba(255, 122, 217, 0.85);
  --hl-underline-thickness: 2.2px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(255, 122, 217, 0.35);
  --hl-speed: 5.8s;
}
.hl-37 {
  --hl-gradient: linear-gradient(120deg, #fff1a8 0%, #ffd166 45%, #ff8fab 100%);
  --hl-underline-style: dotted;
  --hl-underline-color: rgba(255, 209, 102, 0.85);
  --hl-underline-thickness: 2.2px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(255, 209, 102, 0.35);
  --hl-speed: 5.8s;
}
.hl-38 {
  --hl-gradient: linear-gradient(132deg, #a0ffe6 0%, #5ed0ff 45%, #4f7cff 100%);
  --hl-underline-style: dotted;
  --hl-underline-color: rgba(94, 208, 255, 0.85);
  --hl-underline-thickness: 2.2px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(94, 208, 255, 0.35);
  --hl-speed: 5.8s;
}
.hl-39 {
  --hl-gradient: linear-gradient(144deg, #fdf6b2 0%, #f9a8d4 45%, #a78bfa 100%);
  --hl-underline-style: dotted;
  --hl-underline-color: rgba(249, 168, 212, 0.85);
  --hl-underline-thickness: 2.2px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(249, 168, 212, 0.35);
  --hl-speed: 5.8s;
}
.hl-40 {
  --hl-gradient: linear-gradient(120deg, #c8ffea 0%, #77d7ff 45%, #7aa1ff 100%);
  --hl-underline-style: dotted;
  --hl-underline-color: rgba(119, 215, 255, 0.85);
  --hl-underline-thickness: 2.2px;
  --hl-underline-offset: 4px;
  --hl-shadow: 0 0 12px rgba(119, 215, 255, 0.35);
  --hl-speed: 5.8s;
}
.hl-41 {
  --hl-gradient: linear-gradient(120deg, #ffffff 0%, #6dd6ff 45%, #ffffff 100%);
  --hl-underline-style: dashed;
  --hl-underline-color: rgba(109, 214, 255, 0.85);
  --hl-underline-thickness: 1.8px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(109, 214, 255, 0.35);
  --hl-speed: 4.2s;
}
.hl-42 {
  --hl-gradient: linear-gradient(132deg, #b7fffe 0%, #6b9cff 45%, #e9b7ff 100%);
  --hl-underline-style: dashed;
  --hl-underline-color: rgba(107, 156, 255, 0.85);
  --hl-underline-thickness: 1.8px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(107, 156, 255, 0.35);
  --hl-speed: 4.2s;
}
.hl-43 {
  --hl-gradient: linear-gradient(144deg, #ffe29f 0%, #ffa99f 45%, #ff719a 100%);
  --hl-underline-style: dashed;
  --hl-underline-color: rgba(255, 169, 159, 0.85);
  --hl-underline-thickness: 1.8px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(255, 169, 159, 0.35);
  --hl-speed: 4.2s;
}
.hl-44 {
  --hl-gradient: linear-gradient(120deg, #8af3ff 0%, #6f8dff 45%, #a36bff 100%);
  --hl-underline-style: dashed;
  --hl-underline-color: rgba(111, 141, 255, 0.85);
  --hl-underline-thickness: 1.8px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(111, 141, 255, 0.35);
  --hl-speed: 4.2s;
}
.hl-45 {
  --hl-gradient: linear-gradient(132deg, #b9ff9c 0%, #52ffb8 45%, #3fd0ff 100%);
  --hl-underline-style: dashed;
  --hl-underline-color: rgba(82, 255, 184, 0.85);
  --hl-underline-thickness: 1.8px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(82, 255, 184, 0.35);
  --hl-speed: 4.2s;
}
.hl-46 {
  --hl-gradient: linear-gradient(144deg, #ffd1dc 0%, #ff7ad9 45%, #8a6bff 100%);
  --hl-underline-style: dashed;
  --hl-underline-color: rgba(255, 122, 217, 0.85);
  --hl-underline-thickness: 1.8px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(255, 122, 217, 0.35);
  --hl-speed: 4.2s;
}
.hl-47 {
  --hl-gradient: linear-gradient(120deg, #fff1a8 0%, #ffd166 45%, #ff8fab 100%);
  --hl-underline-style: dashed;
  --hl-underline-color: rgba(255, 209, 102, 0.85);
  --hl-underline-thickness: 1.8px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(255, 209, 102, 0.35);
  --hl-speed: 4.2s;
}
.hl-48 {
  --hl-gradient: linear-gradient(132deg, #a0ffe6 0%, #5ed0ff 45%, #4f7cff 100%);
  --hl-underline-style: dashed;
  --hl-underline-color: rgba(94, 208, 255, 0.85);
  --hl-underline-thickness: 1.8px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(94, 208, 255, 0.35);
  --hl-speed: 4.2s;
}
.hl-49 {
  --hl-gradient: linear-gradient(144deg, #fdf6b2 0%, #f9a8d4 45%, #a78bfa 100%);
  --hl-underline-style: dashed;
  --hl-underline-color: rgba(249, 168, 212, 0.85);
  --hl-underline-thickness: 1.8px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(249, 168, 212, 0.35);
  --hl-speed: 4.2s;
}
.hl-50 {
  --hl-gradient: linear-gradient(120deg, #c8ffea 0%, #77d7ff 45%, #7aa1ff 100%);
  --hl-underline-style: dashed;
  --hl-underline-color: rgba(119, 215, 255, 0.85);
  --hl-underline-thickness: 1.8px;
  --hl-underline-offset: 5px;
  --hl-shadow: 0 0 12px rgba(119, 215, 255, 0.35);
  --hl-speed: 4.2s;
}

.highlight-motion-1 {
  animation: highlight-flow var(--hl-speed) linear infinite;
}

.highlight-motion-2 {
  animation: highlight-shimmer 3.8s linear infinite;
}

.highlight-motion-3 {
  animation: highlight-pulse 2.8s ease-in-out infinite;
}

.highlight-motion-4 {
  animation: highlight-glow 2.6s ease-in-out infinite;
}

.highlight-motion-5 {
  animation: highlight-float 3.2s ease-in-out infinite;
}

.highlight-motion-6 {
  animation: highlight-flicker 4.8s linear infinite;
}

.highlight-motion-7 {
  animation: highlight-pop 2.8s ease-in-out infinite;
}

.highlight-motion-8 {
  animation: highlight-slide 6s linear infinite;
}

.highlight-motion-9 {
  animation: highlight-breathe 4.4s ease-in-out infinite;
}

.highlight-motion-10 {
  animation: none;
}

.highlight {
  display: inline-block;
  font-weight: 700;
  margin: 0 4px;
  background: linear-gradient(90deg, #cfe9ff 0%, #6fd9ff 45%, #3f7cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 8px 18px rgba(63, 124, 255, 0.28);
}

.brand-inline {
  font-weight: 600;
  color: #d7ecff;
}

.hero-cta {
  display: flex;
  gap: clamp(6px, 2vw, 16px);
  margin-top: 22px;
  margin-bottom: 22px;
  flex-wrap: nowrap;
  width: 100%;
}

.hero-cta a {
  white-space: nowrap;
  min-width: 0;
}

.hero-cta .primary-btn,
.hero-cta .ghost-btn {
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
  line-height: var(--lh-snug);
  justify-content: center;
}

.primary-btn,
.ghost-btn,
.view-all {
  border: none;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: clamp(0.78rem, 0.7rem + 0.45vw, 1rem);
  border-radius: 999px;
  padding: clamp(10px, 2.2vw, 16px) clamp(16px, 4.2vw, 32px);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: clamp(-0.02em, 0.05vw, 0.02em);
}

.primary-btn {
  background: linear-gradient(120deg, var(--blue), var(--blue-bright));
  color: #04101f;
  box-shadow: 0 16px 30px rgba(63, 124, 255, 0.35);
  justify-content: center;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(63, 124, 255, 0.45);
}

.ghost-btn {
  background: linear-gradient(120deg, rgba(63, 124, 255, 0.18), rgba(91, 210, 255, 0.08));
  color: #e8f2ff;
  border: 1px solid rgba(91, 210, 255, 0.3);
}

.btn-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.ghost-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-panel {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: min(100%, 420px);
  transform-style: preserve-3d;
}

.card-label {
  font-size: var(--fs-xxs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-strong);
  margin-bottom: 10px;
}

.card-title {
  font-size: var(--fs-xl);
  font-family: "Sora", sans-serif;
  margin-bottom: 22px;
  line-height: var(--lh-snug);
}

.card-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.metric {
  font-family: "Sora", sans-serif;
  font-size: var(--fs-lg);
  display: block;
}

.metric-label {
  font-size: var(--fs-xxs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-strong);
}

.card-alerts {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 14px;
  align-items: stretch;
  justify-content: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.alert-strip {
  max-width: 1200px;
  margin: 10px auto 12px;
  padding: 0 24px 6px;
  display: flex;
  justify-content: center;
}

.fomo {
  margin: 10px auto 12px;
  padding: 0 24px 6px;
  display: flex;
  justify-content: center;
}

.fomo-row {
  width: min(1200px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
}

.fomo-item {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  min-height: clamp(56px, 8vw, 72px);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(10, 16, 28, 0.92), rgba(6, 10, 18, 0.92));
  border: 1px solid rgba(91, 210, 255, 0.22);
  box-shadow: 0 10px 20px rgba(2, 6, 14, 0.22);
  font-family: "Sora", sans-serif;
  font-size: var(--fs-sm);
  color: #eaf2ff;
  text-align: center;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.fomo-item span {
  font-weight: 700;
  color: #f4f8ff;
  text-shadow: 0 4px 12px rgba(63, 124, 255, 0.25);
}

.card-alert {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  width: 100%;
  height: auto;
  min-height: clamp(72px, 9vw, 96px);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(10, 16, 28, 0.92), rgba(6, 10, 18, 0.92));
  border: 1px solid rgba(91, 210, 255, 0.22);
  box-shadow: 0 14px 28px rgba(2, 6, 14, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  animation: alert-pop 2.6s ease-in-out infinite;
}

.card-alerts {
  width: 100%;
}

.card-alert div {
  text-align: center;
}

.alert-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(63, 124, 255, 0.2);
  color: #eaf2ff;
  font-size: var(--fs-sm);
  flex: 0 0 auto;
}

.alert-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.alert-title {
  display: block;
  font-size: var(--fs-xxs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(214, 226, 245, 0.86);
  text-align: center;
}

.alert-value {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.55rem);
  color: #f4f8ff;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  text-shadow: 0 4px 12px rgba(63, 124, 255, 0.18);
  white-space: normal;
  line-height: 1.05;
}

#offerTimer {
  white-space: nowrap;
}

.hero-glow {
  position: absolute;
  inset: -20% 10% 10% 10%;
  background: radial-gradient(circle, var(--glow-color), transparent 60%);
  filter: blur(12px);
  z-index: -1;
}

.logo-strip {
  padding: 18px 0 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 12px;
  margin-bottom: 12px;
}

.marquee {
  display: flex;
  gap: 18px;
  overflow: hidden;
  mask-image: none;
  -webkit-mask-image: none;
  padding: 0;
  box-sizing: border-box;
}

.marquee-inner {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-left 26s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  flex: 0 0 auto;
}

.marquee[data-motion="1"] .marquee-inner {
  animation: marquee-left 26s linear infinite;
}

.marquee[data-motion="2"] .marquee-inner {
  animation: marquee-right 26s linear infinite;
}

.marquee[data-motion="3"] .marquee-inner {
  animation: marquee-left 40s linear infinite;
}

.marquee[data-motion="4"] .marquee-inner {
  animation: marquee-right 40s linear infinite;
}

.marquee[data-motion="5"] .marquee-inner {
  animation: marquee-left 18s linear infinite;
}

.marquee[data-motion="6"] .marquee-inner {
  animation: marquee-right 18s linear infinite;
}

.marquee[data-motion="7"] .marquee-inner {
  animation: marquee-left 30s ease-in-out infinite;
}

.marquee[data-motion="8"] .marquee-inner {
  animation: marquee-right 30s ease-in-out infinite;
}

.marquee[data-motion="9"] .marquee-inner {
  animation: marquee-left 36s linear infinite alternate;
}

.marquee[data-motion="10"] .marquee-inner {
  animation: marquee-right 36s linear infinite alternate-reverse;
}

.marquee-track {
  display: flex;
  gap: 18px;
  padding-right: 18px;
  flex: 0 0 auto;
}

.tool-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 22px 6px 10px;
  border-radius: 10px;
  background: rgba(11, 16, 28, 0.7);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.chip-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(120deg, var(--blue), var(--blue-bright));
  color: #03101f;
  font-weight: 700;
  font-size: var(--fs-sm);
  overflow: hidden;
}

.chip-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.section-head {
  max-width: 1200px;
  margin: 0 auto 32px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.section-head.center {
  justify-content: center;
  text-align: center;
}

.section-label {
  font-size: var(--fs-xxs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-strong);
  margin-bottom: 10px;
}

.section-head h3 {
  font-family: "Sora", sans-serif;
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
}

.view-all {
  background: linear-gradient(120deg, var(--accent-3, #8a6bff), rgba(91, 210, 255, 0.85));
  color: #f5f7ff;
  box-shadow: 0 16px 30px rgba(138, 107, 255, 0.35);
  padding: clamp(0.85rem, 1.1vw, 1.15rem) clamp(1.8rem, 2.8vw, 2.8rem);
  min-height: clamp(2.8rem, 4.6vw, 3.6rem);
  font-size: var(--fs-md);
  letter-spacing: 0.02em;
  border-radius: 14px;
  width: min(100%, calc((100% - 44px) / 3));
  justify-content: center;
  border: 1px solid rgba(138, 107, 255, 0.25);
}

.view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(138, 107, 255, 0.45);
}

.tools {
  padding: 32px 0 24px;
}

.text-reviews {
  padding: 12px 0 10px;
  position: relative;
  overflow: hidden;
}

.review-motion-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.review-motion-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0) 18%,
    rgba(0, 0, 0, 0) 82%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.review-column {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 8px;
  height: clamp(420px, 50vw, 560px);
  overflow: hidden;
  box-shadow: none;
}

.review-stack {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: 3px;
  width: 100%;
  will-change: transform;
}

.text-reviews::before,
.text-reviews::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(80px, 12vw, 180px);
  z-index: 2;
  pointer-events: none;
  display: none;
}

.text-reviews::before {
  left: 0;
  background: linear-gradient(90deg, rgba(6, 8, 13, 0.92), rgba(6, 8, 13, 0));
}

.text-reviews::after {
  right: 0;
  background: linear-gradient(270deg, rgba(6, 8, 13, 0.92), rgba(6, 8, 13, 0));
}

.text-reviews .section-head {
  position: relative;
  z-index: 3;
}

.review-motion-grid {
  position: relative;
  z-index: 1;
}

.column-up .review-stack {
  animation: review-down 30s linear infinite;
}

.column-down .review-stack {
  animation: review-up 30s linear infinite;
}

/* Down -> Up pattern (column 1 down, column 2 up, column 3 down) */
.review-motion-grid[data-motion="1"] .column-up .review-stack {
  animation: review-down 30s linear infinite;
}

.review-motion-grid[data-motion="1"] .column-down .review-stack {
  animation: review-up 30s linear infinite;
}

.review-motion-grid[data-motion="2"] .column-up .review-stack {
  animation: review-down 22s linear infinite;
}

.review-motion-grid[data-motion="2"] .column-down .review-stack {
  animation: review-up 22s linear infinite;
}

.review-motion-grid[data-motion="3"] .column-up .review-stack {
  animation: review-down 40s linear infinite;
}

.review-motion-grid[data-motion="3"] .column-down .review-stack {
  animation: review-up 40s linear infinite;
}

/* Up -> Down pattern (column 1 up, column 2 down, column 3 up) */
.review-motion-grid[data-motion="4"] .column-up .review-stack {
  animation: review-up 30s linear infinite;
}

.review-motion-grid[data-motion="4"] .column-down .review-stack {
  animation: review-down 30s linear infinite;
}

.review-motion-grid[data-motion="5"] .column-up .review-stack {
  animation: review-up 22s linear infinite;
}

.review-motion-grid[data-motion="5"] .column-down .review-stack {
  animation: review-down 22s linear infinite;
}

.review-motion-grid[data-motion="6"] .column-up .review-stack {
  animation: review-up 40s linear infinite;
}

.review-motion-grid[data-motion="6"] .column-down .review-stack {
  animation: review-down 40s linear infinite;
}

.review-motion-grid[data-motion="7"] .review-stack,
.review-motion-grid[data-motion="10"] .review-stack {
  animation: none;
  transform: none;
}

.review-card {
  background: linear-gradient(160deg, rgba(8, 12, 20, 0.92), rgba(6, 9, 16, 0.9));
  border: 1px solid rgba(91, 210, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  min-height: 180px;
  box-shadow: 0 16px 30px rgba(2, 6, 14, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card p {
  color: var(--muted);
  font-size: var(--fs-sm);
  margin-bottom: 16px;
  line-height: var(--lh-relaxed);
}

.tools-search {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 20;
  display: block;
}

.tools-search input {
  width: min(100%, 1200px);
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(9, 14, 24, 0.82);
  color: var(--text);
  font-size: var(--fs-sm);
  outline: none;
  display: block;
  margin: 0 auto;
}

.tools-modal .tools-search input {
  width: 100%;
  margin: 0;
  border-radius: 14px;
}

.tools-search-spacer {
  display: none;
  height: 0;
}

.tools-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tools-cta {
  max-width: 1200px;
  margin: 12px auto 0;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  width: min(100%, 1200px);
}

.tools-empty {
  padding: 20px;
  text-align: center;
  color: var(--muted);
  font-size: var(--fs-sm);
  grid-column: 1 / -1;
}

.tools-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(4, 6, 10, 0.86);
  z-index: 2000;
  padding: 16px;
}

.tools-modal.show {
  display: flex;
}

.tools-modal-inner {
  width: min(1280px, 98vw);
  max-height: 92vh;
  background: rgba(8, 12, 20, 0.96);
  border: 1px solid rgba(91, 210, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(4, 8, 16, 0.65);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tools-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tools-modal-header h3 {
  font-size: var(--fs-lg);
  font-family: "Sora", sans-serif;
}

.tools-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 16, 28, 0.9);
  color: #eaf2ff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.tools-modal-close:hover {
  transform: translateY(-1px);
  border-color: rgba(91, 210, 255, 0.4);
}

.tools-modal-body {
  padding: 0 6px 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tools-modal .tools-search {
  position: sticky;
  top: 0;
  background: rgba(8, 12, 20, 0.96);
  padding: 14px 0 10px;
  z-index: 2;
}

.modal-grid {
  max-width: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

.tools-modal .tool-card {
  padding: 28px;
  gap: 20px;
}

.tools-modal .tool-logo {
  width: 72px;
  height: 72px;
  font-size: var(--fs-sm);
}

.tools-modal .tool-info h4 {
  font-size: var(--fs-md);
}

body.modal-open {
  overflow: hidden;
}

body.modal-open .nav {
  opacity: 0;
  pointer-events: none;
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 20px 45px rgba(2, 6, 14, 0.4);
  transform-style: preserve-3d;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  --tool-index: 0;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 55px rgba(2, 6, 14, 0.5);
}

.tools-grid[data-motion="1"] .tool-card,
.tools-grid[data-motion="2"] .tool-card,
.tools-grid[data-motion="3"] .tool-card,
.tools-grid[data-motion="4"] .tool-card,
.tools-grid[data-motion="5"] .tool-card,
.tools-grid[data-motion="6"] .tool-card {
  animation-fill-mode: both;
  animation-delay: calc(var(--tool-index) * 60ms);
}

.tools-grid[data-motion="1"] .tool-card {
  animation: tool-up 0.6s ease both;
}

.tools-grid[data-motion="2"] .tool-card {
  animation: tool-up 0.35s ease both;
}

.tools-grid[data-motion="3"] .tool-card {
  animation: tool-up 0.9s ease both;
}

.tools-grid[data-motion="4"] .tool-card {
  animation: tool-fade 0.6s ease both;
}

.tools-grid[data-motion="5"] .tool-card {
  animation: tool-fade 0.35s ease both;
}

.tools-grid[data-motion="6"] .tool-card {
  animation: tool-fade 0.9s ease both;
}

.tools-grid[data-motion="7"] .tool-card {
  animation: none;
  transform: none;
}

.tool-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tool-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(63, 124, 255, 0.18);
  color: var(--text);
  font-weight: 700;
  font-size: var(--fs-sm);
  overflow: hidden;
}

.tool-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.tool-info h4 {
  font-size: var(--fs-md);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}

.duration-static {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(91, 210, 255, 0.28);
  background: rgba(9, 14, 24, 0.7);
  color: #eaf2ff;
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-top: 6px;
  width: fit-content;
}

.duration-select {
  position: relative;
}

.duration-trigger {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  padding: 10px 38px 10px 12px;
  border: 1px solid rgba(91, 210, 255, 0.28);
  background: linear-gradient(135deg, rgba(12, 18, 32, 0.96), rgba(8, 12, 20, 0.88));
  color: #f2f7ff;
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 10px 22px rgba(5, 10, 18, 0.45);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease,
    background 0.2s ease;
}

.duration-trigger:hover {
  border-color: rgba(91, 210, 255, 0.55);
  box-shadow: 0 14px 28px rgba(63, 124, 255, 0.22);
  transform: translateY(-1px);
}

.duration-trigger:focus-visible {
  outline: none;
  border-color: rgba(91, 210, 255, 0.65);
  box-shadow: 0 0 0 2px rgba(63, 124, 255, 0.25), 0 16px 30px rgba(5, 10, 18, 0.5);
}

.duration-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-strong);
  font-size: 14px;
}

.duration-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(10, 14, 24, 0.98);
  border: 1px solid rgba(91, 210, 255, 0.25);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 18px 36px rgba(3, 7, 14, 0.55);
  display: none;
  z-index: 30;
  max-height: 220px;
  overflow-y: auto;
}

.duration-select.open .duration-menu {
  display: block;
}

.duration-option {
  width: 100%;
  border: none;
  background: transparent;
  color: #eaf2ff;
  text-align: left;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: clamp(12px, 1.5vw, 14px);
  transition: background 0.2s ease, color 0.2s ease;
}

.duration-option[aria-selected="true"] {
  background: rgba(63, 124, 255, 0.18);
  color: #ffffff;
}

.duration-option:hover,
.duration-option:focus-visible {
  background: rgba(91, 210, 255, 0.16);
  outline: none;
}

.tool-price {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.price-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-label {
  font-size: var(--fs-xxs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-strong);
}

.price-value {
  font-family: "Sora", sans-serif;
  font-size: var(--fs-md);
  color: #f4f8ff;
}

.price-block.original .price-value {
  color: var(--muted-strong);
  text-decoration: line-through;
  font-size: var(--fs-sm);
}

.tool-card .primary-btn {
  width: 100%;
  border-radius: 12px;
  padding: 12px 0;
}

.proofs {
  padding: 24px 0 64px;
}

.proofs-box {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.proofs-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.proofs-inner {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-left 30s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  flex: 0 0 auto;
}

.proofs-marquee[data-motion="1"] .proofs-inner {
  animation: marquee-left 30s linear infinite !important;
}

.proofs-marquee[data-motion="2"] .proofs-inner {
  animation: marquee-right 30s linear infinite !important;
}

.proofs-marquee[data-motion="3"] .proofs-inner {
  animation: marquee-left 44s linear infinite !important;
}

.proofs-marquee[data-motion="4"] .proofs-inner {
  animation: marquee-right 44s linear infinite !important;
}

.proofs-marquee[data-motion="5"] .proofs-inner {
  animation: marquee-left 20s linear infinite !important;
}

.proofs-marquee[data-motion="6"] .proofs-inner {
  animation: marquee-right 20s linear infinite !important;
}

.proofs-marquee[data-motion="7"] .proofs-inner {
  animation: marquee-left 34s ease-in-out infinite !important;
}

.proofs-marquee[data-motion="8"] .proofs-inner {
  animation: marquee-right 34s ease-in-out infinite !important;
}

.proofs-marquee[data-motion="9"] .proofs-inner {
  animation: marquee-left 38s linear infinite alternate !important;
}

.proofs-marquee[data-motion="10"] .proofs-inner {
  animation: marquee-right 38s linear infinite alternate-reverse !important;
}

.proofs-marquee.reverse .proofs-inner {
  animation: marquee-right 30s linear infinite;
}

.proofs-track {
  display: flex;
  gap: 16px;
  padding-right: 16px;
  flex: 0 0 auto;
}

.proof-card {
  background: rgba(7, 11, 19, 0.78);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 16px 30px rgba(2, 6, 14, 0.35);
}

.proof-image {
  width: 220px;
  height: 130px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(63, 124, 255, 0.2), rgba(8, 14, 24, 0.8));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: var(--fs-xxs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.proof-image.has-image {
  color: transparent;
}

.proofs-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: var(--fs-xs);
  text-align: center;
}

.faq {
  padding: 36px 0 20px;
}

.faq-intro {
  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 16px);
  margin-top: 8px;
}

.faq-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 14px;
}

.faq-grid details {
  background: linear-gradient(160deg, rgba(8, 12, 20, 0.92), rgba(6, 9, 16, 0.9));
  border: 1px solid rgba(91, 210, 255, 0.12);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 14px 28px rgba(2, 6, 14, 0.25);
}

.faq-grid summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 17px);
  color: #f0f6ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-summary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(63, 124, 255, 0.2), rgba(91, 210, 255, 0.08));
  border: 1px solid rgba(91, 210, 255, 0.25);
  flex: 0 0 auto;
}

.faq-icon svg {
  width: 18px;
  height: 18px;
  stroke: #5bd2ff;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "+";
  font-weight: 600;
  color: var(--blue-bright);
}

.faq-grid details[open] summary::after {
  content: "–";
}

.faq-grid p {
  color: var(--muted);
  font-size: clamp(13px, 1.6vw, 15px);
  margin-top: 10px;
  line-height: 1.6;
}

.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 10, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2000;
}

.exit-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.exit-popup-content {
  width: min(90vw, 460px);
  max-height: min(82vh, 680px);
  background: linear-gradient(160deg, rgba(10, 15, 26, 0.98), rgba(7, 11, 20, 0.98));
  border: 1px solid rgba(91, 210, 255, 0.3);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 30px 70px rgba(2, 6, 14, 0.55), 0 0 0 1px rgba(63, 124, 255, 0.08);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

.exit-popup-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  position: relative;
  z-index: 0;
  background: transparent;
  border: 2px solid rgba(255, 85, 85, 0.75);
  box-shadow: none;
}

.exit-popup-icon svg {
  width: 40px;
  height: 40px;
}

.exit-popup-title {
  font-family: "Sora", sans-serif;
  font-size: var(--fs-lg);
  margin-bottom: 6px;
  color: #eaf2ff;
}

.exit-popup-subtitle {
  color: var(--muted);
  font-size: var(--fs-sm);
  margin-bottom: 12px;
}

.exit-popup-offer {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  animation: none;
}

.offer-badge {
  display: inline-block;
  font-size: var(--fs-xxs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #03101f;
  background: linear-gradient(120deg, var(--blue), var(--blue-bright));
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  box-shadow: 0 10px 22px rgba(63, 124, 255, 0.35);
}

.offer-discount {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
}

.discount-number {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 2.2vw, 2.2rem);
  color: #f7fbff;
  line-height: 1;
  text-shadow: 0 0 16px rgba(91, 210, 255, 0.45);
}

.discount-text {
  font-size: var(--fs-xs);
  color: var(--muted-strong);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

.offer-description {
  font-size: var(--fs-sm);
  color: var(--muted);
}

.exit-popup-code {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px dashed rgba(91, 210, 255, 0.5);
  padding: 6px 14px;
  margin-bottom: 12px;
}

.code-label {
  color: var(--muted);
  font-size: var(--fs-xxs);
}

.code-value {
  font-family: "Sora", sans-serif;
  color: #dff1ff;
  font-size: var(--fs-sm);
}

.exit-popup-benefits {
  display: grid;
  gap: 6px;
  text-align: left;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: var(--fs-xs);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefit-tick {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(63, 124, 255, 0.2);
  border: 1px solid rgba(91, 210, 255, 0.4);
  color: #dff1ff;
  font-size: var(--fs-xxs);
  flex: 0 0 auto;
}

.exit-popup-actions {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.claim-button {
  background: linear-gradient(120deg, var(--blue), var(--blue-bright));
  color: #04101f;
  font-weight: 700;
  border: none;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(63, 124, 255, 0.4);
}

.decline-button {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
}

.exit-popup-urgency {
  color: #ffe4e4;
  font-size: var(--fs-xxs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 85, 85, 0.8);
  background: rgba(140, 16, 16, 0.7);
  box-shadow: 0 10px 22px rgba(255, 85, 85, 0.18);
}

.client {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.client-name {
  font-weight: 600;
  font-size: var(--fs-sm);
}

.client-role {
  font-size: var(--fs-xxs);
  color: var(--muted-strong);
}

.contact {
  padding: 40px 0 80px;
}

.contact-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 40px;
  background: linear-gradient(140deg, rgba(10, 16, 28, 0.96), rgba(6, 9, 16, 0.92));
  border: 1px solid rgba(91, 210, 255, 0.18);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: center;
  gap: 28px;
  box-shadow: 0 28px 60px rgba(3, 7, 14, 0.55);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: -30% -10%;
  background: radial-gradient(circle at 10% 20%, rgba(63, 124, 255, 0.2), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(91, 210, 255, 0.15), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.contact-content {
  max-width: none;
  position: relative;
  z-index: 1;
}

.contact-card h3 {
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.contact-card .subhead {
  font-size: clamp(15px, 2vw, 18px);
  color: #e6f0ff;
  margin-bottom: 14px;
}

.contact-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-xs);
}

.contact-points li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(63, 124, 255, 0.12);
  border: 1px solid rgba(91, 210, 255, 0.18);
  color: #d7e6ff;
}

.contact-points li::before {
  content: none;
  display: none;
}

#contactCta {
  justify-self: end;
  width: min(100%, 260px);
  justify-content: center;
  padding: 14px 22px;
  font-size: clamp(0.88rem, 0.82rem + 0.4vw, 1.05rem);
  position: relative;
  z-index: 1;
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 1024px) {
:root {
  --accent-1: #3f7cff;
  --accent-2: #5bd2ff;
  --accent-3: #8a6bff;
  --highlight-1: #ffffff;
  --highlight-2: #6dd6ff;
  --highlight-3: #ffffff;
  --bg-radial-1: rgba(63, 124, 255, 0.18);
  --bg-radial-2: rgba(91, 210, 255, 0.18);
  --bg-linear-1: #05070b;
  --bg-linear-2: #0b1220;
  --bg-linear-3: #04060a;
  --glow-color: rgba(91, 210, 255, 0.25);
    --marquee-overshoot: 0vw;
  }

  .card-alert {
    padding: 12px 18px;
  }

  .alert-icon {
    width: 42px;
    height: 42px;
    font-size: var(--fs-md);
  }

  .alert-title {
    font-size: var(--fs-xs);
  }

  .alert-value {
    font-size: var(--fs-lg);
  }
}

@media (min-width: 1200px) {
  .nav-inner {
    padding: 24px 40px;
  }

  .logo {
    font-size: var(--fs-md);
    letter-spacing: 0.08em;
  }

  .nav-links {
    font-size: var(--fs-sm);
    gap: 32px;
  }

  .hero-card {
    transform: scale(1.2);
    transform-origin: center;
  }
}

@media (min-width: 1400px) {
  .nav-inner {
    max-width: 1320px;
  }

  .hero,
  .section-head,
  .tools-grid,
  .alert-strip,
  .review-motion-grid,
  .proofs-box,
  .contact-card {
    max-width: 1320px;
  }
}

@keyframes review-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes review-down {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes review-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes review-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes tool-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tool-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes popup-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(91, 210, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 26px rgba(91, 210, 255, 0.35);
  }
}

@keyframes alert-glow {
  0%,
  100% {
    box-shadow: 0 0 18px rgba(255, 60, 60, 0.25), inset 0 0 12px rgba(255, 85, 85, 0.2);
  }
  50% {
    box-shadow: 0 0 34px rgba(255, 60, 60, 0.45), inset 0 0 16px rgba(255, 85, 85, 0.3);
  }
}

@keyframes alert-pop {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 14px 28px rgba(2, 6, 14, 0.25);
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(2, 6, 14, 0.35);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .review-motion-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 28px;
    align-items: flex-start;
  }

  .hero-panel {
    width: 100%;
  }

  .hero-card {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .alert-title {
    font-size: var(--fs-xxs);
    letter-spacing: 0.12em;
    font-weight: 600;
  }

  .alert-value {
    font-size: clamp(1.2rem, 4.6vw, 1.6rem);
    font-weight: 800;
    line-height: 1.05;
  }

  .card-alerts .card-alert:last-child .alert-value {
    white-space: nowrap;
    font-size: clamp(1.05rem, 3.8vw, 1.35rem);
    letter-spacing: 0.01em;
  }

  #contactCta {
    width: 100%;
    justify-self: stretch;
  }

  .fomo-row {
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px;
  }

  .fomo-item {
    width: 100%;
    min-height: clamp(38px, 5.5vw, 48px);
    padding: 6px 10px;
    font-size: var(--fs-xs);
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  :root {
    --nav-height: 64px;
  }

  .nav-inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 16px 12px;
  }

  .logo {
    margin: 0 auto;
    text-align: center;
    font-size: calc(var(--fs-sm) * 1.5);
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 18px;
    font-size: var(--fs-xs);
    justify-content: center;
    text-align: center;
    white-space: normal;
    letter-spacing: 0.04em;
  }

  .nav-links a {
    flex: 0 0 auto;
    text-align: center;
    line-height: 1;
  }

  .announcement-banner {
    gap: 0;
    padding: 12px 0;
    min-height: 60px;
    position: fixed;
    overflow: hidden;
  }

  .banner-marquee {
    flex: 1 1 auto;
    width: 100%;
    padding: 0;
    position: relative;
    inset: auto;
    overflow: hidden;
    pointer-events: auto;
  }

  .banner-track {
    gap: 14px;
    padding-right: 18px;
  }

  .banner-item {
    font-size: clamp(0.98rem, 0.86rem + 1.4vw, 1.2rem);
    line-height: 1.35;
  }

  .banner-item .icon {
    width: 22px;
    height: 22px;
  }

  .banner-item .icon svg,
  .banner-item .icon img {
    width: 20px;
    height: 20px;
  }

  .whatsapp-quick-btn {
    padding: 10px 16px;
    font-size: var(--fs-sm);
    line-height: 1;
    align-self: center;
    flex: 0 0 auto;
    margin-left: auto;
    position: relative;
    z-index: 2;
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 32px;
    gap: 9px;
  }

  .hero-content {
    align-items: flex-start;
    text-align: left;
  }

  .subhead {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(34px, 8vw, 44px);
  }

  .hero-content h2 {
    font-size: clamp(22px, 6vw, 30px);
  }

  .subhead {
  font-size: var(--fs-sm);
}

  .highlight-pill {
    padding: 0 1px 2px;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head.center {
    align-items: center;
  }

  .hero-cta {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
  }

  .hero-cta .primary-btn,
  .hero-cta .ghost-btn {
    flex: 1 1 0;
    justify-content: center;
    min-width: 0;
    white-space: nowrap;
    line-height: var(--lh-snug);
    font-size: clamp(0.78rem, 0.7rem + 0.6vw, 0.95rem);
    padding: clamp(10px, 2vw, 14px) clamp(14px, 3.6vw, 24px);
  }

  .hero-card {
    padding: 22px;
    max-width: none;
    width: 100%;
    margin: 0 auto;
  }

  .card-alerts {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: left;
    align-items: stretch;
  }

  .card-alert {
    width: 100%;
    min-height: 86px;
    justify-content: flex-start;
    border-radius: 22px;
    height: 100%;
  }

  .alert-strip {
    justify-content: flex-start;
  }

  .card-alert div {
    text-align: left;
  }

  .alert-title,
  .alert-value {
    text-align: left;
  }

  .alert-value {
    font-size: clamp(1.2rem, 4.6vw, 1.6rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: normal;
    line-height: 1.05;
  }

  .alert-title {
    font-size: var(--fs-xxs);
    letter-spacing: 0.12em;
    font-weight: 600;
  }

  .review-motion-grid {
    gap: 6px;
    padding: 0 16px 16px;
  }


  .review-column {
    height: 200px;
    padding: 0;
  }

  .review-stack {
    flex-direction: row;
    gap: 3px;
    padding-right: 3px;
    width: max-content;
  }

  .column-up .review-stack {
    animation: review-right 26s linear infinite;
  }

  .column-down .review-stack {
    animation: review-left 26s linear infinite;
  }

  .review-motion-grid[data-motion="1"] .column-up .review-stack {
    animation: review-right 26s linear infinite;
  }

  .review-motion-grid[data-motion="1"] .column-down .review-stack {
    animation: review-left 26s linear infinite;
  }

  .review-motion-grid[data-motion="2"] .column-up .review-stack {
    animation: review-right 18s linear infinite;
  }

  .review-motion-grid[data-motion="2"] .column-down .review-stack {
    animation: review-left 18s linear infinite;
  }

  .review-motion-grid[data-motion="3"] .column-up .review-stack {
    animation: review-right 34s linear infinite;
  }

  .review-motion-grid[data-motion="3"] .column-down .review-stack {
    animation: review-left 34s linear infinite;
  }

  .review-motion-grid[data-motion="4"] .column-up .review-stack {
    animation: review-left 26s linear infinite;
  }

  .review-motion-grid[data-motion="4"] .column-down .review-stack {
    animation: review-right 26s linear infinite;
  }

  .review-motion-grid[data-motion="5"] .column-up .review-stack {
    animation: review-left 18s linear infinite;
  }

  .review-motion-grid[data-motion="5"] .column-down .review-stack {
    animation: review-right 18s linear infinite;
  }

  .review-motion-grid[data-motion="6"] .column-up .review-stack {
    animation: review-left 34s linear infinite;
  }

  .review-motion-grid[data-motion="6"] .column-down .review-stack {
    animation: review-right 34s linear infinite;
  }

  .review-motion-grid[data-motion="7"] .review-stack,
  .review-motion-grid[data-motion="10"] .review-stack {
    animation: none;
    transform: none;
  }

  .review-card {
    width: min(82vw, 320px);
    min-width: min(82vw, 320px);
    min-height: 180px;
    padding: 14px;
    overflow: hidden;
  }

  .review-card p,
  .review-card .client-name,
  .review-card .client-role {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .proofs-box {
    padding: 18px;
  }

  .proof-card {
    padding: 10px;
  }

  .proof-image {
    width: min(78vw, 260px);
    height: min(48vw, 160px);
    aspect-ratio: 4 / 3;
  }

  .logo-strip {
    padding: 14px 0 30px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .marquee {
    gap: 10px;
  }

  .marquee-track {
    gap: 10px;
    padding-right: 10px;
  }

  .tool-chip {
    padding: 6px 18px 6px 8px;
  }

  .text-reviews {
    padding: 10px 0 6px;
  }

  .text-reviews::before,
  .text-reviews::after {
    width: clamp(48px, 16vw, 90px);
    background: linear-gradient(90deg, rgba(6, 8, 13, 0.9), rgba(6, 8, 13, 0));
  }

  .text-reviews::after {
    background: linear-gradient(270deg, rgba(6, 8, 13, 0.9), rgba(6, 8, 13, 0));
  }

  .tools {
    padding: 20px 0 28px;
  }

  .proofs {
    padding: 20px 0 40px;
  }

  .contact {
    padding: 24px 0 50px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .exit-popup-content {
    width: min(90vw, 360px);
    padding: 14px;
  }

  .exit-popup-title {
    font-size: var(--fs-md);
  }

  .exit-popup-subtitle {
    font-size: var(--fs-xs);
  }

  .offer-discount {
    flex-direction: row;
    gap: 6px;
  }

  .discount-number {
    font-size: clamp(1.4rem, 1.1rem + 2vw, 2rem);
  }

  .exit-popup-actions {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .alert-title {
    font-size: var(--fs-xxs);
    letter-spacing: 0.12em;
  }

  .alert-value {
    font-size: clamp(1.25rem, 5.2vw, 1.7rem);
    font-weight: 800;
    white-space: normal;
    line-height: 1.05;
  }

  .card-alerts .card-alert:last-child .alert-value {
    white-space: nowrap;
    font-size: clamp(1rem, 4.4vw, 1.25rem);
    letter-spacing: 0;
  }
  .section-head {
    align-items: center;
    text-align: center;
  }

  .hero-cta {
    gap: 8px;
  }

  .hero-cta .primary-btn,
  .hero-cta .ghost-btn {
    flex: 1 1 0;
    padding: 10px 10px;
    font-size: clamp(0.72rem, 0.6rem + 1.2vw, 0.9rem);
    letter-spacing: clamp(-0.02em, 0.08vw, 0.02em);
  }

  .hero-card,
  .tool-card,
  .review-card,
  .proof-card,
  .contact-card,
  .tools-modal-inner {
    border-radius: 20px;
  }

  .review-motion-grid {
    padding: 0 14px 14px;
  }

  .review-card {
    width: min(82vw, 320px);
    min-width: min(82vw, 320px);
  }

  .contact-card {
    padding: 22px;
    gap: 16px;
  }

  .contact-card h3 {
    font-size: clamp(20px, 6vw, 26px);
  }

  .text-reviews::before,
  .text-reviews::after {
    width: clamp(40px, 20vw, 80px);
  }

  .proofs-box {
    padding: 0 16px;
  }

  .proof-card {
    padding: 8px;
  }

  .proof-image {
    width: min(82vw, 280px);
    height: min(52vw, 180px);
    aspect-ratio: 4 / 3;
  }

  .card-alerts {
    width: 100%;
  }

  .card-alert {
    padding: 10px 12px;
    min-height: 84px;
  }

  .alert-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .alert-title {
    font-size: var(--fs-xxs);
    letter-spacing: 0.12em;
  }

  .alert-value {
    font-size: clamp(1.25rem, 5.2vw, 1.7rem);
    font-weight: 800;
    white-space: normal;
    line-height: 1.05;
  }
  .exit-popup-content {
    width: 94vw;
    max-height: 82vh;
    padding: 16px;
  }

  .exit-popup-icon {
    width: 52px;
    height: 52px;
  }

  .exit-popup-icon svg {
    width: 32px;
    height: 32px;
  }

  .discount-number {
    font-size: clamp(1.25rem, 1rem + 1.8vw, 1.8rem);
  }

  .benefit-item {
    font-size: var(--fs-xxs);
  }
}

@media (max-width: 560px) {
  :root {
    --marquee-overshoot: 0vw;
  }

  .marquee {
    gap: 8px;
  }

  .marquee-track {
    gap: 8px;
    padding-right: 8px;
  }

  .tool-chip {
    padding: 6px 16px 6px 8px;
  }

  .hero {
    padding: 28px 16px 24px;
    gap: 12px;
  }

  .hero-cta {
    margin-top: 16px;
    margin-bottom: 16px;
    gap: 10px;
  }

  .hero-cta .primary-btn,
  .hero-cta .ghost-btn {
    font-size: clamp(0.72rem, 0.62rem + 1vw, 0.92rem);
    padding: clamp(10px, 2.4vw, 14px) clamp(12px, 3.2vw, 18px);
  }

  .hero-card {
    width: 100%;
    padding: 24px;
  }

  .card-title {
    font-size: var(--fs-lg);
    margin-bottom: 16px;
  }

  .card-metrics {
    gap: 14px 16px;
  }

  .metric {
    font-size: var(--fs-lg);
  }

  .metric-label {
    font-size: var(--fs-xxs);
  }

  .alert-strip {
    padding: 0 16px 6px;
    margin: 8px auto 8px;
    justify-content: flex-start;
  }

  .card-alerts {
    width: 100%;
    margin: 0;
    align-items: stretch;
  }

  .card-alert {
    padding: 10px 12px;
    height: clamp(78px, 16vw, 104px);
    border-radius: 22px;
  }

  .alert-value {
    letter-spacing: 0.03em;
  }

  .section-head,
  .tools-grid,
  .proofs-box {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-head {
    align-items: center;
    text-align: center;
  }

  .review-motion-grid {
    padding: 0 16px 16px;
  }

  .review-card {
    width: calc(100vw - 32px);
    min-width: calc(100vw - 32px);
  }

  .tools-cta {
    padding: 0 16px 10px;
    margin-top: 22px;
  }

  .view-all {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
  }

  .tools-modal {
    padding: 14px;
  }

  .tools-modal-inner {
    width: 100%;
    border-radius: 18px;
  }

  .tools-modal-header {
    padding: 16px 16px 10px;
  }

  .tools-modal-body {
    padding: 0 6px 16px;
  }
} 
