/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #05050A;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.55;
  position: relative;
}
/* Unified continuous background — single layer that scrolls with content */
.bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 25% at 50% 5%, rgba(0,165,255,.12), transparent 60%),
    radial-gradient(ellipse 40% 20% at 15% 18%, rgba(0,13,175,.08), transparent 60%),
    radial-gradient(ellipse 40% 20% at 85% 32%, rgba(58,186,255,.07), transparent 60%),
    radial-gradient(ellipse 50% 25% at 30% 50%, rgba(0,165,255,.06), transparent 60%),
    radial-gradient(ellipse 40% 22% at 75% 65%, rgba(0,13,175,.08), transparent 60%),
    radial-gradient(ellipse 50% 25% at 20% 80%, rgba(0,165,255,.07), transparent 60%),
    radial-gradient(ellipse 45% 22% at 80% 92%, rgba(58,186,255,.06), transparent 60%);
}
/* GLOBAL GRID OVERLAY — fixed so it stays consistent while scrolling */
body::before {
  content: ""; position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 80px 80px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

:root {
  --bg-0: #05050A;
  --bg-1: #0a0b14;
  --card: #17181A;
  --border: rgba(255,255,255,.08);
  --text: #FFFFFF;
  --muted: #CCCCCC;
  --muted-2: #C4C4C4;
  --blue-light: #00A5FF;
  --blue-mid: #3ABAFF;
  --blue-soft: #57A1FF;
  --blue-deep: #000DAF;
  --blue-glow: #085FB159;
  --grad: linear-gradient(180deg, #00A5FF 0%, #000DAF 100%);
  --grad-h: linear-gradient(90deg, #00A5FF 0%, #000DAF 100%);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ============ SECTION DIVIDERS — diagonal cuts ============ */
section { position: relative; }

/* diagonal cut top */
.cut-top::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom right, transparent 49.5%, #05050A 50%);
  z-index: 2; pointer-events: none;
}
/* diagonal cut bottom */
.cut-bottom::after {
  content: ""; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top left, transparent 49.5%, #05050A 50%);
  z-index: 2; pointer-events: none;
}

/* Subtle gradient line accent between sections */
.section-divider {
  position: relative; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,165,255,.3) 50%, transparent);
  margin: 0 auto; max-width: 1000px;
}
.section-divider::after {
  content: ""; position: absolute; left: 50%; top: -3px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 16px rgba(0,165,255,.8);
  transform: translateX(-50%);
}

/* Sections - transparent so body bg flows through continuously */
.split, .why-section, .feature-row, .cta-section, .big-headline {
  position: relative;
  background: transparent;
}
.split > .container, .why-section > .container,
.feature-row > .container, .cta-section > .container,
.big-headline > .container { position: relative; z-index: 1; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.15; margin: 0; color: #fff;
}
/* Subtle gradient fade on split section headings */
.split-text h2,
.section-head h2,
.big-headline h2 {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 55%, #aab4cf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}
h1 { font-size: clamp(1.6rem, 3.2vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 .9rem; color: var(--muted); font-size: .92rem; }
.lead { font-size: 1rem; color: #fff; font-weight: 500; }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .04em;
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  background:
    linear-gradient(#0f1322, #0f1322) padding-box,
    linear-gradient(135deg, rgba(0,165,255,.6), rgba(0,13,175,.2) 60%, rgba(255,255,255,.08)) border-box;
  border: 1px solid transparent;
  margin-bottom: 18px;
  text-transform: none;
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0,165,255,.08);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 10px rgba(0,165,255,.8);
  animation: pulseDot 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}
.eyebrow i { display: none; }
.section-head .eyebrow { margin-left: auto; margin-right: auto; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500; font-size: .88rem;
  padding: 10px 18px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  transition: all .25s ease;
  position: relative; overflow: hidden;
  white-space: nowrap; color: #fff;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--grad);
  box-shadow: 0 4px 14px rgba(0,165,255,.2);
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, #3ABAFF 0%, #000DAF 100%);
  opacity: 0; transition: opacity .3s;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,165,255,.45); }
.btn-primary:hover::before { opacity: 1; }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
}
.btn-outline:hover { background: rgba(255,255,255,.06); border-color: var(--blue-light); }
.btn-ghost {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-lg { padding: 11px 22px; font-size: .9rem; border-radius: 12px; }
.btn i { transition: transform .25s; font-size: .9em; }
.btn:hover i.fa-arrow-right { transform: translateX(4px); }

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 0;
  background: rgba(5,5,10,.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(5,5,10,.96);
  border-bottom-color: var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.logo img { height: 38px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a { color: #fff; font-weight: 500; font-size: .95rem; transition: color .2s; }
.main-nav a:hover { color: var(--blue-light); }
.main-nav a.nav-cta { color: #fff; padding: 11px 22px; }
.main-nav a.nav-cta:hover { color: #fff; }

/* ============ LANGUAGE SWITCHER ============ */
.lang-switcher {
  position: relative;
}
.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  color: #fff;
  font: inherit;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .25s;
}
.lang-trigger:hover {
  border-color: rgba(0,165,255,.45);
  background: rgba(0,165,255,.08);
}
.lang-trigger .fa-globe { color: var(--blue-light); font-size: .9rem; }
.lang-trigger .lang-chevron {
  font-size: .65rem;
  margin-left: 2px;
  transition: transform .25s;
}
.lang-switcher.open .lang-trigger { border-color: rgba(0,165,255,.55); background: rgba(0,165,255,.1); }
.lang-switcher.open .lang-chevron { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: rgba(15,16,24,.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(0,0,0,.5), 0 0 0 1px rgba(0,165,255,.06);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .22s ease;
  z-index: 9999;
}
.lang-switcher.open .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--muted);
  font-size: .88rem;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.lang-menu li:hover {
  background: rgba(255,255,255,.05);
  color: #fff;
}
.lang-menu li .lang-flag {
  font-size: 1.05rem;
  line-height: 1;
}
.lang-menu li .fa-check {
  margin-left: auto;
  font-size: .75rem;
  color: var(--blue-light);
  opacity: 0;
  transition: opacity .2s;
}
.lang-menu li.active {
  color: #fff;
  background: rgba(0,165,255,.1);
}
.lang-menu li.active .fa-check { opacity: 1; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 0;
  padding: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
  position: relative;
  z-index: 100;
  flex-shrink: 0;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 3px 0; transition: .25s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (max-width: 1024px) {
  .main-nav { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 140px 0 80px;
  background: transparent;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .7;
  animation: float 14s ease-in-out infinite;
}
.orb-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, #00A5FF 0%, transparent 70%);
  top: -140px; left: -120px;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #000DAF 0%, transparent 70%);
  top: 120px; right: -140px;
  animation-delay: -5s;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #3ABAFF 0%, transparent 70%);
  bottom: -120px; left: 35%;
  animation-delay: -9s;
  opacity: .45;
}
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.08); }
  66% { transform: translate(-30px,30px) scale(.95); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}
.hero-content { position: relative; text-align: center; max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 50px;
  background: rgba(0,165,255,.1);
  border: 1px solid rgba(0,165,255,.3);
  font-size: .82rem; color: #fff;
  margin-bottom: 28px;
}
.hero-badge i { color: var(--blue-light); }
.hero-title { margin-bottom: 24px; color: #fff; }
.hero-sub { font-size: 1.02rem; max-width: 620px; margin: 0 auto 30px; color: var(--muted); }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 70px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; max-width: 800px; margin: 0 auto;
  padding: 26px;
  background: #17181A;
  border: 1px solid var(--border);
  border-radius: 22px;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-size: 2rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-lbl { color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; }

/* ============ CARDS ROW ============ */
.feature-row { padding: 80px 0; position: relative; }
.cards {
  display: grid; gap: 22px;
  grid-template-columns: repeat(5, 1fr);
}
.card {
  position: relative;
  padding: 30px 24px;
  border-radius: 22px;
  background: #17181A;
  border: 1px solid var(--border);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,165,255,.5);
  box-shadow: 0 25px 60px rgba(0,165,255,.15);
}
.card:hover .card-icon svg {
  animation: bounce-icon .6s ease-in-out;
}
@keyframes bounce-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.card-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(0,165,255,.35);
  overflow: hidden;
}
.card-icon svg {
  width: 100%; height: 100%;
  display: block;
  animation: float-icon 3s ease-in-out infinite;
}
@keyframes float-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
.card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.card p { font-size: .92rem; margin: 0; color: var(--muted); }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue-light); font-weight: 600;
  font-size: .9rem; margin-top: 14px;
  transition: gap .25s;
}
.card-link:hover { gap: 10px; }
.card-featured {
  background: linear-gradient(180deg, rgba(0,165,255,.12) 0%, #17181A 100%);
  border-color: rgba(0,165,255,.35);
}

/* ============ SPLIT SECTIONS ============ */
.split { padding: 70px 0; position: relative; }
.split.alt::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,13,175,.18), transparent);
  z-index: -1;
}
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center;
}
.split-grid.reverse .split-text { order: 2; }
.split-text h2 { margin-bottom: 18px; }
.split-text .lead { margin-bottom: 16px; }
.split-text p { margin-bottom: 24px; }
.split-text .btn { margin-top: 6px; }

.split-media {
  position: relative;
  border-radius: 30px;
  overflow: visible;
  isolation: isolate;
  perspective: 1400px;
  perspective-origin: 50% 50%;
  width: 100%;
  aspect-ratio: 16 / 11;
  display: flex; align-items: center; justify-content: center;
}
/* Ambient glow plate behind the image */
.split-media::before {
  content: "";
  position: absolute;
  inset: -10% -8%;
  background:
    radial-gradient(ellipse 60% 40% at 30% 30%, rgba(0,165,255, calc(var(--p, 0) * .35)), transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 70%, rgba(0,13,175, calc(var(--p, 0) * .3)), transparent 60%);
  filter: blur(40px);
  z-index: 0;
  transition: opacity .2s linear;
  pointer-events: none;
}
/* Reflection plate below the image */
.split-media::after {
  content: "";
  position: absolute;
  left: 8%; right: 8%;
  bottom: -20px;
  height: 30%;
  background: radial-gradient(ellipse 100% 100% at 50% 0%, rgba(0,165,255, calc(var(--p, 0) * .25)), transparent 70%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
  position: relative; z-index: 1;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  transition: transform .35s ease;
}
.split-media:hover img { transform: translateY(-4px); }

/* Hero entrance + idle animations only apply on mobile (defined in media query) */
/* Conic gradient border ring when fully settled */
.split-media img::after { display: none; }

.split-media:hover img {
  transform:
    perspective(1200px)
    rotateX(calc((1 - var(--p, 0)) * 42deg - 4deg))
    rotateY(calc((1 - var(--p, 0)) * -16deg + 4deg))
    rotateZ(calc((1 - var(--p, 0)) * -4deg + 1deg))
    scale(calc(0.62 + var(--p, 0) * 0.38 + 0.04))
    translateY(calc((1 - var(--p, 0)) * 110px - 6px))
    translateZ(calc((var(--p, 0) - 1) * 100px + 20px));
  filter:
    blur(calc((1 - var(--p, 0)) * 6px))
    brightness(calc(0.7 + var(--p, 0) * 0.35 + 0.05))
    saturate(calc(0.85 + var(--p, 0) * 0.25 + 0.1));
}

/* Light sweep shine effect */
.split-media .shine {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  opacity: var(--p, 0);
}
.split-media .shine::before {
  content: "";
  position: absolute;
  top: 0; left: -50%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.15) 50%, transparent 70%);
  animation: shineSweep 6s ease-in-out infinite;
}
@keyframes shineSweep {
  0%, 100% { left: -50%; }
  50% { left: 110%; }
}
.media-glow {
  position: absolute;
  width: 80%; height: 80%;
  top: 10%; left: 10%;
  background: radial-gradient(circle, #00A5FF 0%, transparent 70%);
  filter: blur(70px);
  opacity: .55;
  z-index: 0;
  animation: pulse 5s ease-in-out infinite;
}
.media-glow.purple { background: radial-gradient(circle, #000DAF 0%, transparent 70%); }
.media-glow.cyan { background: radial-gradient(circle, #3ABAFF 0%, transparent 70%); }
.media-glow.gold { background: radial-gradient(circle, #57A1FF 0%, transparent 70%); }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .55; }
  50% { transform: scale(1.15); opacity: .75; }
}

.phone-section .phone-media {
  background: linear-gradient(135deg, rgba(0,165,255,.08), rgba(0,13,175,.05));
  border: 1px solid var(--border);
}
.phone-section .phone-media img {
  object-fit: contain;
  padding: 20px;
  max-width: 100%;
  border: 0;
  background: transparent;
}

.check-list { list-style: none; padding: 0; margin: 0 0 26px; }
.check-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 0; color: #fff; font-size: .98rem;
}
.check-list i { color: var(--blue-light); font-size: 1.1rem; }

/* ============ BIG HEADLINE ============ */
.big-headline { padding: 80px 0; text-align: center; position: relative; }
.big-headline::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(0,165,255,.1), transparent);
  z-index: -1;
}
.big-headline h2 { max-width: 880px; margin: 0 auto 14px; }
.big-headline p { max-width: 600px; margin: 0 auto; font-size: 1rem; }

/* ============ WHY GRID ============ */
.why-section { padding: 80px 0; position: relative; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: .98rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  position: relative;
  padding: 22px;
  border-radius: 16px;
  background:
    linear-gradient(#17181A, #17181A) padding-box,
    linear-gradient(135deg, rgba(0,165,255,.35), rgba(255,255,255,.05) 50%, rgba(0,13,175,.2)) border-box;
  border: 1px solid transparent;
  transition: transform .35s, border-color .35s, box-shadow .35s, background .35s;
  overflow: hidden;
}
.why-card::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx,50%) var(--my,0%), rgba(0,165,255,.13), transparent 40%);
  opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,165,255,.5);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 0 1px rgba(0,165,255,.25);
}
.why-card:hover::after { opacity: 1; }
.why-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--grad);
  color: #fff;
  margin-bottom: 14px;
  transition: transform .35s;
  box-shadow: 0 6px 18px rgba(0,13,175,.3);
  overflow: hidden;
}
.why-icon svg {
  width: 100%; height: 100%;
  display: block;
  animation: rotate-icon 4s linear infinite;
}
@keyframes rotate-icon {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  75% { transform: rotate(-2deg); }
}
.why-card:hover .why-icon {
  animation: spin-icon .6s ease-in-out !important;
}
@keyframes spin-icon {
  0% { transform: rotate(-6deg) scale(1.06) rotateZ(0deg); }
  50% { transform: rotate(-6deg) scale(1.06) rotateZ(10deg); }
  100% { transform: rotate(-6deg) scale(1.06) rotateZ(0deg); }
}
.why-card h3 { margin-bottom: 6px; font-size: 1rem; }
.why-card .hl { color: #fff; font-weight: 500; margin-bottom: 8px; font-size: .88rem; }
.why-card p { font-size: .85rem; line-height: 1.5; }

/* ============ CTA SECTION ============ */
.cta-section {
  position: relative;
  padding: 90px 0;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; z-index: -1; }
.cta-bg::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(0,13,175,.35), transparent 70%);
}
.cta-bg .orb-1 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, #00A5FF 0%, transparent 70%);
  top: -160px; left: -160px;
  opacity: .55;
}
.cta-bg .orb-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #000DAF 0%, transparent 70%);
  bottom: -160px; right: -120px;
  opacity: .55;
}
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-inner h2 { margin-bottom: 14px; }
.cta-inner p { font-size: 1.05rem; color: #fff; margin-bottom: 8px; font-weight: 500; }
.cta-inner .cta-sub { color: var(--muted); font-size: .92rem; margin-bottom: 26px; font-weight: 400; }

/* ============ LEGAL PAGE ============ */
.legal-page {
  position: relative;
  padding: 160px 0 90px;
  z-index: 1;
}
.legal-head {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}
.legal-head .eyebrow { margin-bottom: 20px; }
.legal-head h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
  background: linear-gradient(180deg, #fff 0%, #b8c4d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.legal-meta {
  color: var(--muted);
  font-size: .9rem;
  margin: 0 0 18px;
  letter-spacing: .02em;
}
.legal-intro {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0;
}
.legal-intro strong { color: #fff; font-weight: 600; }
.legal-body {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
}
.legal-body::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: min(60%, 380px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,165,255,.55), transparent);
  pointer-events: none;
}
.legal-section {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.legal-section:first-child { padding-top: 0; }
.legal-section:last-child { border-bottom: 0; padding-bottom: 0; }
.legal-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -.005em;
}
.legal-section p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
  margin: 0 0 12px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.legal-section ul li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.8;
}
.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 8px rgba(0,165,255,.5);
}
.legal-section a {
  color: var(--blue-light);
  transition: color .2s;
}
.legal-section a:hover { color: var(--blue-mid); text-decoration: underline; }

@media (max-width: 768px) {
  .legal-page { padding: 110px 0 60px; }
  .legal-head { margin-bottom: 36px; }
  .legal-head h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .legal-body { padding: 28px 22px; border-radius: 18px; }
  .legal-section { padding: 20px 0; }
  .legal-section h2 { font-size: 1.05rem; }
  .legal-section p, .legal-section ul li { font-size: .9rem; }
}

/* ============ FOOTER ============ */
.site-footer {
  position: relative;
  padding: 90px 0 28px;
  background: #05050A;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: min(65%, 720px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,165,255,.6), transparent);
  pointer-events: none;
}
.site-footer::after {
  content: "";
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: min(70%, 760px);
  height: 220px;
  background: radial-gradient(ellipse at top, rgba(0,165,255,.10), transparent 70%);
  pointer-events: none;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 30px 70px;
}
.footer-brand { padding-right: 24px; }
.footer-brand p {
  color: var(--muted);
  font-size: .95rem;
  max-width: 340px;
  line-height: 1.65;
  margin: 0 0 22px;
}
.footer-logo { height: 38px; margin-bottom: 20px; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .9rem;
  transition: color .2s;
}
.footer-contact a i {
  width: 16px;
  text-align: center;
  color: var(--blue-light);
  font-size: .9rem;
}
.footer-contact a:hover { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: .9rem;
  transition: all .3s cubic-bezier(.2,.7,.2,1);
}
.socials a:hover {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,165,255,.35);
}
.footer-col h4 {
  position: relative;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #fff;
  margin: 0 0 24px;
  padding-bottom: 14px;
  font-weight: 700;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  border-radius: 2px;
  background: var(--grad-h);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 4px; }
.footer-col a {
  display: inline-block;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.9;
  transition: color .25s, transform .25s;
}
.footer-col a:hover {
  color: var(--blue-light);
  transform: translateX(4px);
}
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .85rem;
}
.footer-bottom .footer-tagline { color: var(--muted-2); }
.footer-bottom .back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.02);
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .02em;
  transition: all .25s;
}
.footer-bottom .back-to-top i { transition: transform .25s; }
.footer-bottom .back-to-top:hover {
  color: #fff;
  border-color: rgba(0,165,255,.45);
  background: rgba(0,165,255,.08);
}
.footer-bottom .back-to-top:hover i { transform: translateY(-2px); }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1; transform: translateY(0);
}

/* ============ WORD-BY-WORD TEXT REVEAL ============ */
[data-split] { overflow: hidden; }
[data-split] .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotate(6deg);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i) * 60ms);
  will-change: transform, opacity;
}
[data-split].in .word {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* ============ SOFT REVEAL (gentle rise) ============ */
.reveal-soft {
  opacity: 0;
  transform: translateY(14px);
  animation: softRise 1.1s cubic-bezier(.22,.7,.18,1) .15s forwards;
}
@keyframes softRise {
  to { opacity: 1; transform: translateY(0); }
}

/* Header transition (no hide-on-scroll) */
.site-header { transition: padding .25s, background .25s, border-color .25s; }

/* ============ 3D CARD TILT ============ */
.card, .why-card {
  transform-style: preserve-3d;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .35s, box-shadow .35s;
  perspective: 1000px;
}
.card .card-icon, .why-card .why-icon,
.card h3, .why-card h3,
.card p, .why-card p {
  transform: translateZ(20px);
}

/* ============ SHIMMER on hover ============ */
.card::after, .why-card::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.06) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: -200% 0;
  pointer-events: none;
  transition: background-position .8s ease;
}
.card:hover::after, .why-card:hover::before { background-position: 200% 0; }

/* ============ MARQUEE ============ */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex; gap: 60px;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 1.6rem; font-weight: 700;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  transition: color .25s;
}
.marquee-item:hover { color: #fff; }
.marquee-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(0,165,255,.6);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ ANIMATED GRADIENT BORDER on featured ============ */
.card-featured {
  position: relative;
}
.card-featured::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--a, 0deg), #00A5FF, #000DAF, #3ABAFF, #00A5FF);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: rotateBorder 4s linear infinite;
  z-index: 0;
  pointer-events: none;
}
@property --a { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
@keyframes rotateBorder { to { --a: 360deg; } }

/* ============ GRADIENT TEXT for split title ============ */
.hero-title[data-split] .word:nth-child(n+5) {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ============ BUTTON shine sweep ============ */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left .7s ease;
  z-index: 2;
}
.btn-primary:hover::after { left: 130%; }

/* ============ SUBTLE NOISE TEXTURE ============ */
body::after {
  content: ""; position: fixed; inset: 0;
  pointer-events: none; z-index: 100;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .35;
  mix-blend-mode: overlay;
}

/* ============ Disable custom cursor on touch ============ */
@media (hover: none) {
  .cursor-glow { display: none; }
  body { cursor: auto; }
  .split-media:hover img { transform: none; filter: none; }
}

/* ============ Mobile performance: desliga tudo invisível ou pesado ============ */
@media (max-width: 768px) {
  /* Noise texture — invisível no mobile, mas renderiza em todo frame */
  body::after { display: none; }

  /* Glows atrás das imagens — cobertos pela imagem, desnecessários */
  .media-glow { display: none; }

  /* Shine sweep nas imagens — imperceptível em tela pequena */
  .split-media .shine { display: none; }

  /* Orbs do hero — estáticos, sem parallax JS */
  .hero .orb { animation: none; }

  /* Preservar 3D nos cards — desnecessário sem tilt no touch */
  .card, .why-card { transform-style: flat; }

  /* Shimmer nos cards — recalcula layer GPU a cada hover (não ocorre no touch, mas remove o layer) */
  .card::after, .why-card::before { display: none; }
}

/* ============ Marquee responsive ============ */
@media (max-width: 768px) {
  .marquee { padding: 30px 0; }
  .marquee-track { gap: 36px; }
  .marquee-item { font-size: 1.1rem; }
}

/* ============ ANIMATED CTA gradient flow ============ */
.cta-section h2 {
  background: linear-gradient(120deg, #fff 25%, #3ABAFF 50%, #fff 75%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: shineFlow 4s linear infinite;
}
@keyframes shineFlow {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.2rem; }
  /* Force visibility of language switcher on tablet/mobile */
  .header-tools {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .lang-trigger {
    padding: 7px 12px;
    font-size: .8rem;
  }
  .lang-trigger .lang-chevron { font-size: .6rem; }
  .lang-menu {
    min-width: 170px;
    background: #0F1018;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
@media (max-width: 480px) {
  .lang-trigger { padding: 6px 10px; gap: 6px; }
  .lang-trigger .lang-code { font-size: .78rem; }
  .lang-menu {
    right: -8px;
    min-width: 160px;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 40px; }
  /* Prevent body scroll when menu open */
  body.menu-open { overflow: hidden; }
  .site-header {
    padding: 14px 0;
    background: #05050A;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .logo img { height: 32px; }

  h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
  h2 { font-size: clamp(1.4rem, 4vw, 2.2rem); }
  h3 { font-size: 1.1rem; }
  p { font-size: .95rem; }
  .lead { font-size: 1rem; }

  .hero { padding: 100px 0 16px; }
  .split { padding: 24px 0; }
  .split:first-of-type { padding-top: 12px; }
  .hero-title { margin-bottom: 18px; }
  .hero-sub { font-size: 1rem; margin-bottom: 30px; }
  .hero-cta { gap: 10px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 18px; }
  .stat-num { font-size: 1.4rem; }
  .stat-lbl { font-size: .7rem; }

  .btn, .btn-lg { padding: 12px 20px; font-size: .9rem; border-radius: 20px; }
  .btn-lg { padding: 14px 24px; font-size: .95rem; }

  .feature-row { padding: 60px 0; }
  .cards { grid-template-columns: 1fr; gap: 16px; }
  .card { padding: 24px 18px; }
  .card h3 { font-size: 1.1rem; }
  .card p { font-size: .9rem; }
  .card-icon { width: 48px; height: 48px; margin-bottom: 16px; }

  .split { padding: 60px 0; }
  .split-grid, .split-grid.reverse { grid-template-columns: 1fr; gap: 22px; }
  .split-grid .split-text,
  .split-grid.reverse .split-text { order: 2; }
  .split-grid .split-media,
  .split-grid.reverse .split-media { order: 1; }

  /* Mobile: basic float animation on images */
  .split-media img {
    animation: imgIdleMobile 7s ease-in-out infinite;
    border-radius: 20px;
    height: auto;
    object-fit: contain;
    box-shadow: 0 20px 40px rgba(0,0,0,.4);
  }
  @keyframes imgIdleMobile {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -5px; }
  }
  .split:first-of-type .split-media img {
    animation:
      heroImgEntranceMobile 1.8s cubic-bezier(.22, 1, .36, 1) both,
      imgIdleMobile 6s ease-in-out 1.8s infinite;
  }
  @keyframes heroImgEntranceMobile {
    0% {
      opacity: 0;
      translate: 0 100px;
      scale: 0.78;
    }
    100% {
      opacity: 1;
      translate: 0 0;
      scale: 1;
    }
  }

  /* Fade-up reveal for text on mobile — avoids horizontal overflow bug */
  .split-grid .split-text.reveal,
  .split-grid.reverse .split-text.reveal {
    opacity: 0 !important;
    transform: translateY(32px) !important;
    transition:
      opacity 1.1s cubic-bezier(.22,.7,.2,1),
      transform 1.2s cubic-bezier(.22,.7,.2,1) !important;
  }
  .split-grid .split-text.reveal.in,
  .split-grid.reverse .split-text.reveal.in {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  /* No per-child stagger — everything moves together uniformly */
  .split-grid .split-text.reveal > *,
  .split-grid.reverse .split-text.reveal > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  /* Big headline reveal on mobile */
  .big-headline h2.reveal,
  .big-headline p.reveal {
    opacity: 0;
    transform: translateY(40px) scale(.94);
    filter: blur(8px);
    transition:
      opacity 1.4s cubic-bezier(.22,.7,.2,1),
      transform 1.6s cubic-bezier(.22,.7,.2,1),
      filter 1.2s cubic-bezier(.22,.7,.2,1);
  }
  .big-headline p.reveal { transition-delay: .25s; }
  .big-headline h2.reveal.in,
  .big-headline p.reveal.in {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  .split-text p { font-size: .93rem; }
  .split-text .btn { margin-bottom: 0; }
  .split-media { aspect-ratio: auto; margin-top: -60px; }
  .check-list li { font-size: .9rem; gap: 8px; }

  .phone-section .phone-media img { max-width: 300px; }

  .big-headline { padding: 70px 0; }
  .big-headline h2 { max-width: 100%; }
  .big-headline p { font-size: 1rem; }

  .why-section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head p { font-size: 1rem; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 24px 18px; }
  .why-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
  .why-card .hl { font-size: .93rem; margin-bottom: 8px; }
  .why-card p { font-size: .9rem; }
  .why-icon { width: 50px; height: 50px; margin-bottom: 16px; }

  .cta-section { padding: 80px 0; }
  .cta-inner { max-width: 100%; }
  .cta-inner h2 { margin-bottom: 12px; }
  .cta-inner p { font-size: 1rem; margin-bottom: 8px; }
  .cta-inner .cta-sub { font-size: .9rem; margin-bottom: 24px; }

  .site-footer { padding: 50px 0 24px; }
  .site-footer { padding: 50px 0 30px; }
  .site-footer .container.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "copy  copy"
      "nav   info";
    gap: 24px;
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
  }
  .footer-brand {
    grid-area: brand;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    text-align: left;
  }
  .footer-brand p {
    font-size: .95rem;
    margin: 0;
    line-height: 1.55;
    max-width: 100%;
    color: var(--muted);
  }
  .footer-logo { height: 32px; margin: 0; }

  .footer-col { text-align: left; }
  .footer-col:nth-of-type(1) { grid-area: nav; }
  .footer-col:nth-of-type(2) { display: none; }
  .footer-col:nth-of-type(3) { grid-area: info; }

  .footer-col h4 {
    font-size: 1.05rem;
    margin: 0 0 18px;
    padding-bottom: 0;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
  }
  .footer-col h4::after { display: none; }
  .footer-col ul { display: flex; flex-direction: column; gap: 2px; }
  .footer-col li { margin: 0; }
  .footer-col a { line-height: 1.7; }
  .footer-col a {
    font-size: .92rem;
    color: var(--muted);
    transition: color .2s;
  }
  .footer-col a:hover { color: var(--blue-light); }

  /* Two columns side by side container */
  .footer-grid::after { display: none; }

  .socials {
    display: flex;
    gap: 8px;
    margin: 0;
  }
  .socials a {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    color: var(--muted);
    transition: all .25s;
    box-shadow: none;
  }
  .socials a:hover {
    color: #fff;
    background: rgba(255,255,255,.08);
    border-color: rgba(0,165,255,.35);
    transform: none;
    box-shadow: none;
  }

  /* Copyright line — placed in grid between brand and columns */
  .footer-bottom {
    grid-area: copy;
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
    color: var(--muted);
    font-size: .88rem;
    text-align: center;
  }
  .footer-bottom .footer-tagline,
  .footer-bottom .back-to-top { display: none; }
  .footer-contact { display: none; }

  .eyebrow { font-size: .7rem; padding: 6px 12px; margin-bottom: 14px; }
}

@media (max-width: 480px) {
  .container { padding: 0 32px; }
  h1 { font-size: clamp(1.5rem, 4vw, 2.4rem); }
  h2 { font-size: clamp(1.2rem, 3.5vw, 1.9rem); }
  h3 { font-size: 1rem; }
  p { font-size: .9rem; }

  .site-header { padding: 12px 0; }
  .logo img { height: 28px; }

  .hero { padding: 90px 0 12px; margin-top: 0; }
  .split { padding: 20px 0; }
  .split:first-of-type { padding-top: 8px; }
  .hero-sub { font-size: .95rem; margin-bottom: 24px; }
  .hero-cta { flex-direction: column; gap: 10px; align-items: center; }
  .hero-cta .btn { width: auto; padding: 9px 18px; font-size: .82rem; }
  .split-text .btn { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px; }
  .stat-num { font-size: 1.2rem; }
  .stat-lbl { font-size: .65rem; }

  .btn { padding: 10px 16px; font-size: .85rem; }
  .btn-lg { padding: 12px 20px; font-size: .9rem; }

  .feature-row { padding: 50px 0; }
  .cards { gap: 12px; }
  .card { padding: 20px 14px; }
  .card h3 { font-size: 1rem; }
  .card p { font-size: .85rem; }
  .card-icon { width: 44px; height: 44px; margin-bottom: 12px; }

  .split { padding: 50px 0; }
  .split-grid { gap: 20px; }
  .split-text h2 { margin-bottom: 12px; }
  .split-text p { font-size: .88rem; margin-bottom: 16px; }
  .split-media { border-radius: 18px; margin-top: -50px; }
  .split-media img { border-radius: 18px; }
  .check-list { margin-bottom: 20px; }
  .check-list li { padding: 6px 0; font-size: .88rem; gap: 6px; }

  .phone-section .phone-media img { max-width: 280px; }

  .big-headline { padding: 50px 0; }
  .big-headline h2 { margin-bottom: 12px; }
  .big-headline p { font-size: .95rem; }

  .why-section { padding: 50px 0; }
  .section-head h2 { margin-bottom: 12px; }
  .section-head p { font-size: .95rem; }
  .why-grid { gap: 12px; }
  .why-card { padding: 20px 14px; }
  .why-card h3 { font-size: 1rem; }
  .why-card .hl { font-size: .9rem; }
  .why-card p { font-size: .85rem; }
  .why-icon { width: 46px; height: 46px; margin-bottom: 12px; }

  .cta-section { padding: 60px 0; }
  .cta-inner h2 { margin-bottom: 10px; font-size: 1.6rem; }
  .cta-inner p { font-size: .95rem; }
  .cta-inner .cta-sub { font-size: .88rem; margin-bottom: 20px; }

  .site-footer { padding: 40px 0 18px; }
  .footer-grid { gap: 28px 22px; }
  .footer-brand p { font-size: .85rem; }
  .footer-logo { height: 28px; margin: 0; }
  .socials { gap: 8px; }
  .socials a { width: 32px; height: 32px; font-size: .8rem; border-radius: 8px; }
  .footer-col h4 { font-size: .9rem; margin-bottom: 10px; }
  .footer-col li { margin-bottom: 0; }
  .footer-col ul { gap: 2px; }
  .footer-col a { line-height: 1.6; }
  .footer-col a { font-size: .85rem; }
  .footer-bottom { font-size: .8rem; margin-bottom: 28px; }

  .eyebrow { font-size: .65rem; padding: 5px 10px; margin-bottom: 12px; }
}
