/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  color: #0a0a0a;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
h1, h2, h3, h4, h5 { margin: 0 0 .5em; line-height: 1.15; letter-spacing: -.02em; font-weight: 800; }
p { margin: 0 0 1em; }

/* ===== Tokens (Smatch Media palette) ===== */
:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f8;
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --ink: #0a0a0a;
  --ink-soft: #4a4a4a;
  --ink-muted: #8a8a8a;
  --line: #e7e7e9;
  --line-dark: #1f1f23;
  --teal: #2BB6A7;        /* Smatch primary accent (the dot) */
  --teal-700: #1f8e82;
  --teal-300: #6ed3c8;
  --violet: #7C5CFF;      /* secondary accent */
  --pink: #ff0c6c;        /* tertiary (Whale TV mock) */
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 8px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.18);
  --max: 1240px;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 110px 0; }
.section__head {
  max-width: 760px;
  margin: 0 0 56px;
}
.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: .4em;
}
.section__lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 640px;
}
.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--teal);
  margin-bottom: 18px;
}
.eyebrow--dark { color: var(--ink); }
.eyebrow--light { color: rgba(255,255,255,.7); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--teal); transform: translateY(-1px); box-shadow: 0 12px 30px rgba(43,182,167,.35); }
.btn--ghost { color: var(--ink); border-color: rgba(0,0,0,.15); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn--block { width: 100%; margin-top: 18px; }

/* ===== Smatch Logo ===== */
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.04em;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
}
.logo__text {
  font-weight: 800;
}
.logo__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  margin-left: 2px;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: 4px;
  box-shadow: 0 0 0 0 rgba(43,182,167,.5);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43,182,167,.4); }
  50% { box-shadow: 0 0 0 6px rgba(43,182,167,0); }
}
.logo--light { color: #fff; }

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
  backdrop-filter: blur(0);
}
.nav.is-scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  padding: 12px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 24px;
}
.nav__links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav__links a:hover { color: var(--ink); }
.nav__cta { padding: 10px 20px; font-size: .88rem; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 16px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.lang-switch a {
  color: var(--ink-muted);
  padding: 6px 10px;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.lang-switch a:hover { color: var(--ink); }
.lang-switch a.is-active {
  color: var(--ink);
  background: var(--bg-soft);
}
.lang-switch__sep {
  color: var(--ink-muted);
  opacity: .4;
}

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 160px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(43,182,167,.10) 0%, transparent 60%),
    radial-gradient(800px 500px at 0% 80%, rgba(124,92,255,.06) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(43,182,167,.06) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(124,92,255,.05) 0%, transparent 30%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.02;
  margin-bottom: 24px;
}
.grad-text {
  background: linear-gradient(135deg, var(--teal) 0%, #4dd6c8 50%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.hero__meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
}
.hero__meta span {
  font-size: .82rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
}

/* ===== Hero TV mock ===== */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tv {
  width: 100%;
  max-width: 540px;
  aspect-ratio: 16/10;
  position: relative;
}
.tv__screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a1d24 0%, #0a0c12 100%);
  border-radius: 14px;
  border: 4px solid #0a0a0a;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.05);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.tv__row { display: flex; gap: 10px; }
.tv__row--featured { flex: 1; }
.tile {
  flex: 1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.tile--feature {
  flex-direction: column;
  background: linear-gradient(135deg, var(--teal) 0%, #4dd6c8 60%, var(--violet) 100%);
  font-size: 1.4rem;
  letter-spacing: -.02em;
  position: relative;
}
.tile--feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.18) 0%, transparent 50%);
}
.tile__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
}
.tile--app { font-size: .7rem; min-height: 50px; }
.tile.netflix { background: #e50914; }
.tile.prime { background: #00a8e1; }
.tile.disney { background: #1f2960; }
.tile.youtube { background: #ff0000; }
.tile.whale { background: var(--pink); }

.tv__stand {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 14px;
  background: #0a0a0a;
  border-radius: 0 0 6px 6px;
}

/* ===== Stats ===== */
.stats {
  background: var(--bg-dark);
  color: #fff;
  padding: 50px 0;
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.stat__num {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.025em;
  background: linear-gradient(135deg, #fff 0%, #b0b0b0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 6px;
}

/* ===== About ===== */
.about { background: #fff; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 90px;
}
.about__copy p {
  font-size: 1.08rem;
  color: var(--ink-soft);
}
.about__copy p:last-child { margin-bottom: 0; }

.connectors {
  background: var(--bg-soft);
  padding: 60px;
  border-radius: var(--radius-lg);
}
.connectors__title {
  font-size: 1.4rem;
  margin-bottom: 36px;
  text-align: center;
}
.connectors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.connector {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius);
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease;
}
.connector:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.connector__icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.connector h4 { font-size: 1.05rem; margin-bottom: 6px; }
.connector p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ===== Services (light section) ===== */
.services { background: var(--bg-soft); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.services .card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 30px;
  border-radius: var(--radius);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.services .card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(43,182,167,.10);
}
.services .card__num {
  display: block;
  font-size: .8rem;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: .15em;
  margin-bottom: 14px;
}
.services .card h3 { color: var(--ink); font-size: 1.2rem; margin-bottom: 10px; }
.services .card p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ===== Why (dark with bullet list) ===== */
.why {
  background: var(--bg-dark);
  color: #fff;
}
.why .section__title { color: #fff; }
.why .section__lead { color: rgba(255,255,255,.65); }
.bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 60px;
}
.bullet {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.bullet__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(43,182,167,.18);
}
.bullet h4 { font-size: 1.1rem; margin-bottom: 4px; color: #fff; }
.bullet p { color: rgba(255,255,255,.6); font-size: .95rem; margin: 0; }

/* ===== Units ===== */
.units { background: #fff; }
.units__filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.chip {
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .2s ease;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip--active { background: var(--ink); color: #fff; border-color: var(--ink); }

.units__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.unit {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}
.unit:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-300);
}
.unit__brand {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.unit__visual {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1d24 0%, #0a0c12 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.unit__body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.unit__body h3 { font-size: 1.2rem; margin-bottom: 6px; }
.unit__desc { color: var(--ink-soft); font-size: .92rem; margin-bottom: 18px; }
.spec {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.spec li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: .85rem;
}
.spec li span { color: var(--ink-muted); }
.spec li b { color: var(--ink); font-weight: 600; text-align: right; }

/* Unit visuals */
.unit__visual--marquee {
  background: linear-gradient(135deg, #5b1a8b 0%, #2d0f4a 100%);
}
.marquee {
  width: 60%;
  aspect-ratio: 525/735;
  max-height: 80%;
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-700) 100%);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.marquee__label { font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; opacity: .85; }
.marquee__cta {
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.3);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .75rem;
  align-self: flex-start;
}

.unit__visual--whale-mast {
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  align-items: stretch;
  justify-content: stretch;
}
.zone {
  border-radius: 6px;
  padding: 10px 14px;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
}
.zone--upper { background: rgba(124,92,255,.6); }
.zone--marcom { background: rgba(43,182,167,.6); flex: 1; display: flex; align-items: center; }
.zone--menu { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); }

.unit__visual--whale-banner {
  flex-direction: column;
  padding: 18px;
  align-items: stretch;
  gap: 10px;
}
.banner-tile {
  flex: 1;
  background: linear-gradient(135deg, var(--pink) 0%, #c20057 100%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 6px;
}
.banner-tile__star { font-size: 1.6rem; }
.banner-tile__label { font-size: .7rem; opacity: .8; letter-spacing: .12em; }
.banner-row { display: flex; gap: 6px; }
.banner-app {
  flex: 1;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  padding: 8px 4px;
  font-size: .55rem;
  color: rgba(255,255,255,.7);
  text-align: center;
  font-weight: 600;
}

.unit__visual--video { background: linear-gradient(135deg, #1a1d24 0%, #050505 100%); }
.play {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 12px rgba(255,255,255,.06), 0 20px 40px rgba(0,0,0,.4);
}
.play__icon { font-size: 1.3rem; color: #0a0a0a; margin-left: 4px; }
.video-tag {
  position: absolute;
  bottom: 14px;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: .7rem;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: .08em;
}

.unit__visual--vidaa-prime {
  flex-direction: column;
  padding: 18px;
  align-items: stretch;
  gap: 8px;
  background: linear-gradient(135deg, #14121f 0%, #0a0a0a 100%);
}
.vidaa-banner {
  flex: 1;
  background: linear-gradient(120deg, rgba(43,182,167,.65) 0%, rgba(124,92,255,.55) 100%);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.vidaa-banner__title { font-weight: 700; font-size: .95rem; }
.vidaa-banner__cta { background: rgba(0,0,0,.3); padding: 6px 14px; border-radius: 999px; font-size: .75rem; }
.vidaa-row { display: flex; gap: 6px; }
.vidaa-row span {
  flex: 1;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  padding: 8px;
  font-size: .55rem;
  text-align: center;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}

.unit__visual--vidaa-flash {
  flex-direction: column;
  padding: 18px;
  align-items: stretch;
  gap: 8px;
  justify-content: flex-end;
  background: linear-gradient(135deg, #14121f 0%, #0a0a0a 100%);
}
.flash-row { color: rgba(255,255,255,.4); font-size: .65rem; text-align: right; }
.flash-banner {
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-700) 100%);
  color: #fff;
  padding: 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .85rem;
  text-align: center;
}

/* ===== Coverage ===== */
.coverage { background: var(--bg-soft); }
.coverage__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.region {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease;
}
.region:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
}
.region h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}
.region p { font-size: .9rem; color: var(--ink-soft); margin: 0; line-height: 1.7; }
.region--accent {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.region--accent h4 { color: var(--teal-300); }
.region--accent p { color: rgba(255,255,255,.7); }

/* ===== Partners ===== */
.partners { background: #fff; }
.partners__group { margin-bottom: 44px; }
.partners__group:last-child { margin-bottom: 0; }
.partners__group h4 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--ink-muted);
  margin-bottom: 22px;
  font-weight: 600;
}
.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.logos span {
  background: var(--bg-soft);
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  border: 1px solid var(--line);
  letter-spacing: -.01em;
  transition: all .2s ease;
}
.logos span:hover {
  border-color: var(--teal);
  background: rgba(43,182,167,.05);
  transform: translateY(-2px);
}
.logos--alt span {
  background: transparent;
  border-color: rgba(0,0,0,.08);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .88rem;
}

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, var(--bg-darker) 0%, #131316 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: -120px -120px auto auto;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(43,182,167,.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta::after {
  content: '';
  position: absolute;
  inset: auto auto -120px -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(124,92,255,.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.cta__copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 18px;
}
.cta__copy p {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0;
}
.cta__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(20px);
}
.cta__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  gap: 20px;
}
.cta__row:last-of-type { border-bottom: 0; }
.cta__label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  flex-shrink: 0;
}
.cta__value { color: #fff; font-weight: 600; font-size: .95rem; text-align: right; }
a.cta__value:hover { color: var(--teal-300); }
.cta__card .btn--primary { background: var(--teal); }
.cta__card .btn--primary:hover { background: var(--teal-700); }

/* ===== Footer ===== */
.footer {
  background: var(--bg-darker);
  color: rgba(255,255,255,.6);
  padding: 70px 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer__brand p {
  margin-top: 20px;
  font-size: .92rem;
  max-width: 360px;
}
.footer__addr {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
  font-size: .88rem;
  line-height: 1.6;
}
.footer__addr strong { color: #fff; font-weight: 700; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer__cols h5 {
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer__cols a {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .92rem;
  padding: 5px 0;
}
.footer__cols a:hover { color: var(--teal); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ===== Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .section { padding: 80px 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero__visual { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .stats__inner { grid-template-columns: repeat(3, 1fr); gap: 30px 20px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .units__grid { grid-template-columns: repeat(2, 1fr); }
  .coverage__grid { grid-template-columns: repeat(2, 1fr); }
  .connectors__grid { grid-template-columns: repeat(2, 1fr); }
  .bullets { grid-template-columns: 1fr; gap: 22px; }
  .two-col { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
  .cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .lang-switch { margin-left: auto; margin-right: 8px; }
  .lang-switch a { padding: 6px 8px; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    padding: 20px 24px;
    margin: 0;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    gap: 0;
  }
  .nav.is-open .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); }

  .hero { padding: 130px 0 60px; }
  .hero__title { font-size: 2.4rem; }
  .hero__lead { font-size: 1rem; }
  .hero__meta { gap: 24px; }
  .hero__meta strong { font-size: 1.3rem; }

  .section__title { font-size: 1.8rem; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(5) { grid-column: 1 / -1; }

  .why__grid { grid-template-columns: 1fr; }
  .units__grid { grid-template-columns: 1fr; }
  .coverage__grid { grid-template-columns: 1fr; }
  .connectors__grid { grid-template-columns: 1fr; }
  .connectors { padding: 36px 24px; }

  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}
