/* =========================================================
   LA Assistência Eletrônica & Segurança — v2.0
   Direção autoral: a página assume a linguagem visual do
   próprio produto — monitoramento, detecção, perímetro —
   em vez de um layout genérico de cards. Grafite + verde da
   marca (extraídos do logotipo), tipografia editorial em
   contraste com uma fonte monoespaçada de "leitura técnica"
   (status, coordenadas, índices), composição assimétrica,
   cortes diagonais e o motivo de retícula do próprio selo.
   ========================================================= */

:root {
  --green-50:  #f2f7ea;
  --green-100: #e1efce;
  --green-300: #a3d374;
  --green-400: #86bd49;
  --green-500: #71a83c;
  --green-600: #548a29;
  --green-700: #3b6a1c;

  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5d;

  /* Grafite extraído do próprio logotipo (RGB 68,68,67) */
  --graphite:      #444443;
  --graphite-2:    #71716f;
  --graphite-3:    #a3a3a0;
  --graphite-deep: #1c2417;   /* grafite + verde da marca, aprofundado — tom autoral, substitui o preto */
  --graphite-deep-2:#2b3823;
  --graphite-deep-3:#3a4a30;

  --paper: #ffffff;
  --paper-tint: #f6f5f1;
  --line: #e4e2da;
  --star: #d69a1f;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(28, 36, 23, 0.05), 0 6px 16px rgba(28, 36, 23, 0.06);
  --shadow-md: 0 16px 38px rgba(28, 36, 23, 0.22);
  --shadow-green: 0 12px 24px rgba(84, 138, 41, 0.24);

  --container: 1180px;
  --container-wide: 1520px;
  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--graphite); margin: 0 0 .55em; line-height: 1.12; letter-spacing: -.015em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }
b, strong { color: var(--graphite); }
svg { display: block; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.container--wide { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 22px; }
.section { padding: 88px 0; position: relative; }
.section--tight { padding: 40px 0; }
.section--alt { background: var(--paper-tint); }
.section--deep { background: var(--graphite-deep); color: #d7ddc9; }
.section--deep h1, .section--deep h2, .section--deep h3, .section--deep p { color: var(--paper); }
.section--deep b, .section--deep strong { color: #ffffff; }

/* Corte diagonal entre seções — assinatura gráfica, usada com moderação */
.diag-top { position: relative; }
.diag-top::before {
  content: "";
  position: absolute; top: 0; left: 0; width: 100%; height: 64px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  transform: translateY(-63px);
  z-index: 0;
}

/* Textura de pontos — referência direta à trama do selo do logotipo (uso pontual, não difuso) */
.dot-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.dot-field::before {
  content: "";
  position: absolute; inset: -20px;
  background-image: radial-gradient(currentColor 1.6px, transparent 1.7px);
  background-size: 16px 16px;
}
.dot-field--soft::before { opacity: .10; }
.dot-field--faint::before { opacity: .06; }
.dot-field--signature::before { background-size: 34px 34px; opacity: .16; }

/* ===== Rótulo de status (substitui o "eyebrow" genérico por leitura técnica) ===== */
.status-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 1.1em;
}
.status-tag__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-500);
  flex: none;
  animation: statusPulse 2.2s infinite;
}
.section--deep .status-tag { color: var(--green-300); }
.section--deep .status-tag__dot { background: var(--green-400); }
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(113,168,60,.55); }
  50% { box-shadow: 0 0 0 5px rgba(113,168,60,0); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 1em;
}
.eyebrow::before { content: ""; width: 16px; height: 2px; background: var(--green-500); display: inline-block; }
.section--deep .eyebrow { color: var(--green-300); }
.section--deep .eyebrow::before { background: var(--green-300); }

.h1 { font-size: clamp(2.05rem, 4.2vw, 3.2rem); font-weight: 800; }
.h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; }
.h2--center { text-align: center; }
.h3 { font-size: 1.15rem; font-weight: 800; }
.lead { font-size: 1.06rem; color: var(--graphite-2); }
.section-head { max-width: 620px; margin: 0 auto 46px; text-align: center; position: relative; z-index: 1; }

/* ===== Ícones ===== */
.ico-svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background-color .2s ease, transform .15s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn img { width: 20px; height: 20px; flex: none; }
.btn--whatsapp { background-color: var(--whatsapp); color: #fff; box-shadow: var(--shadow-green); }
.btn--whatsapp:hover { background-color: var(--whatsapp-dark); transform: translateY(-2px); }
.btn-wrap { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; position: relative; z-index: 1; }
.btn-wrap--left { justify-content: flex-start; }

/* ===== Selo da marca sobre fundo branco ===== */
.brand-plate {
  display: inline-flex;
  align-items: center;
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
}
.brand-plate img { width: 118px; height: auto; }
.brand-plate--sm img { width: 86px; }

/* ===== Local chip ===== */
.locale-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--graphite-2);
  margin-top: 18px;
}
.locale-chip .ico-svg { width: 16px; height: 16px; color: var(--green-600); }

/* =========================================================
   HERO — painel + mídia em corte diagonal, sem caixa
   arredondada ao lado do texto. A fotografia sangra até a
   borda da viewport; o próprio HUD de câmera é o ornamento.
   ========================================================= */
.hero-hud {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
.hero-hud__media {
  position: relative;
  order: 2;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.hero-hud__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.15) contrast(1.08);
}
.hero-hud__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(195deg, rgba(28,36,23,.55) 0%, rgba(84,138,41,.22) 55%, rgba(28,36,23,.05) 100%);
  mix-blend-mode: multiply;
}
.hero-hud__panel { position: relative; z-index: 2; order: 1; }
.hero-hud__panel-inner { padding: 44px 22px 56px; position: relative; z-index: 1; }

/* ---- HUD de câmera: cantos, tags técnicas ---- */
.hud-frame { position: absolute; inset: 14px; z-index: 1; pointer-events: none; }
.hud-corner { position: absolute; width: 22px; height: 22px; }
.hud-corner::before, .hud-corner::after { content: ""; position: absolute; background: rgba(255,255,255,.85); }
.hud-corner--tl { top: 0; left: 0; }
.hud-corner--tl::before { top: 0; left: 0; width: 2px; height: 100%; }
.hud-corner--tl::after { top: 0; left: 0; width: 100%; height: 2px; }
.hud-corner--tr { top: 0; right: 0; }
.hud-corner--tr::before { top: 0; right: 0; width: 2px; height: 100%; }
.hud-corner--tr::after { top: 0; right: 0; width: 100%; height: 2px; }
.hud-corner--bl { bottom: 0; left: 0; }
.hud-corner--bl::before { bottom: 0; left: 0; width: 2px; height: 100%; }
.hud-corner--bl::after { bottom: 0; left: 0; width: 100%; height: 2px; }
.hud-corner--br { bottom: 0; right: 0; }
.hud-corner--br::before { bottom: 0; right: 0; width: 2px; height: 100%; }
.hud-corner--br::after { bottom: 0; right: 0; width: 100%; height: 2px; }

.hud-tag {
  position: absolute;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(20,25,15,.62);
  color: #fff;
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-left: 2px solid var(--green-400);
  pointer-events: auto;
}
.hud-tag--top { top: 16px; left: 16px; }
.hud-tag--bottom { bottom: 16px; left: 16px; right: 16px; }
.hud-tag--bottom .hud-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-400); flex: none; animation: statusPulse 1.6s infinite; }

.hero-hud__eyebrow { margin-top: 0; }
.h1-display {
  font-size: clamp(1.55rem, 6.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.18;
  max-width: 30ch;
}
.h1-display b { color: var(--green-700); }

.hero-hud__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 26px 0 30px;
  max-width: 560px;
}
.hero-hud__lists li {
  position: relative;
  padding-left: 22px;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 4px;
  font-size: .95rem;
}
.hero-hud__lists li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  background: var(--green-500);
}
.hero-hud__cta { margin-top: 10px; }
.rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
  flex-wrap: wrap;
}
.rating__stars { color: var(--star); font-size: 1rem; letter-spacing: 1px; }
.rating__score { font-weight: 800; font-size: 1rem; color: var(--graphite); }
.rating__label { color: var(--graphite-2); font-size: .88rem; }

/* ===== Trust strip ===== */
.trust { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.trust li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .98rem;
  font-weight: 700;
  color: var(--graphite);
  background: var(--paper);
  padding: 18px 20px;
}
.trust li .ico-svg { color: var(--green-600); }

/* =========================================================
   Diferenciais — lista-índice editorial, não cards com ícone
   ========================================================= */
.index-list { position: relative; z-index: 1; border-top: 1px solid var(--line); }
.index-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.index-row__num { display: block; }
.index-row__num {
  font-family: var(--font-mono);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--green-500);
  letter-spacing: -.02em;
}
.index-row h3 { margin-bottom: 4px; font-size: 1.1rem; }
.index-row p { margin: 0; color: var(--graphite-2); font-size: .95rem; max-width: 46ch; }

/* =========================================================
   Serviços — mosaico assimétrico, sem molduras de card
   ========================================================= */
.mosaic { display: grid; grid-template-columns: 1fr; gap: 2px; background: var(--line); position: relative; z-index: 1; }
.mosaic-tile {
  position: relative;
  background: var(--paper);
  padding: 30px 18px 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
}
.mosaic-tile__imgs { display: flex; align-items: center; justify-content: center; gap: 14px; height: 100px; }
.mosaic-tile__imgs img { max-height: 100px; width: auto; object-fit: contain; }
.mosaic--pair .mosaic-tile { min-height: 240px; padding: 46px 24px 78px; }
.mosaic--pair .mosaic-tile__imgs { height: 150px; }
.mosaic--pair .mosaic-tile__imgs img { max-height: 150px; }
.mosaic--pair .mosaic-tile__cap { padding: 16px 20px; }
.mosaic--pair .mosaic-tile__cap p { font-size: 1rem; }
.mosaic-tile__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: var(--graphite-deep);
  color: #fff;
  padding: 12px 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.mosaic-tile__cap .idx { font-family: var(--font-mono); font-size: .72rem; color: var(--green-300); letter-spacing: .05em; }
.mosaic-tile__cap p { margin: 0; font-weight: 800; font-size: .92rem; }
.mosaic-tile__smart {
  position: absolute; top: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--green-500);
  color: #fff;
  font-family: var(--font-mono);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .07em;
  padding: 4px 9px;
  border-radius: 999px;
}

/* ---- Destaque de tecnologia SMART — o principal diferencial desta seção ---- */
.smart-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
  background: var(--graphite-deep);
  color: #fff;
  padding: 18px 26px;
  border-radius: var(--radius);
  margin: -6px 0 30px;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}
.smart-banner__badge {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  background: var(--green-400);
  color: var(--graphite-deep);
  padding: 6px 12px;
  border-radius: 999px;
  flex: none;
}

.service-tag {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--graphite);
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: .8rem;
  letter-spacing: .05em;
  font-weight: 700;
}
.service-tag img { width: 16px; height: 16px; }
.smart-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  font-weight: 700;
  text-align: center;
  color: var(--graphite);
}
.smart-note img { width: 20px; height: 20px; }

/* =========================================================
   Como funciona — linha de perímetro conectando os passos
   ========================================================= */
.timeline { position: relative; z-index: 1; }
.timeline__track { display: none; }
.timeline__step { position: relative; display: flex; gap: 20px; align-items: flex-start; padding: 8px 0; }
.timeline__node {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1;
  flex: none;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--green-400);
  color: var(--green-300);
  display: flex; align-items: center; justify-content: center;
  background: var(--graphite-deep);
}
.timeline__step h3 { margin-bottom: 6px; }
.timeline__step p { margin: 0; font-size: .95rem; color: #cfd6c4; }

/* ===== Quem atendemos ===== */
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line); position: relative; z-index: 1; }
.audience-card {
  background: var(--paper);
  padding: 30px 14px;
  text-align: center;
}
.audience-card .ico-circle {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
}
.audience-card .ico-circle img { width: 36px; height: 36px; }
.audience-card h3 { font-size: .98rem; margin: 0; }

/* ===== Video ===== */
.video-block { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; position: relative; z-index: 1; }
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--graphite-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.benefits-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--graphite);
}
.benefits-list li::before {
  content: "";
  position: absolute; left: 0; top: .35em;
  width: 14px; height: 14px;
  border: 2px solid var(--green-500);
  border-radius: 50%;
}

/* =========================================================
   Formas de proteger o perímetro — mesmo HUD do herói,
   reaplicado às fotos reais de demonstração
   ========================================================= */
.perimeter-grid { display: grid; grid-template-columns: 1fr; gap: 3px; position: relative; z-index: 1; background: var(--graphite-deep); }
.perimeter-card { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.perimeter-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.3) contrast(1.08); transition: transform .4s ease; }
.perimeter-card:hover img { transform: scale(1.06); }
.perimeter-card .hud-frame { inset: 10px; }
.perimeter-card .hud-tag { font-size: .62rem; padding: 5px 8px; white-space: nowrap; }
.perimeter-card .hud-tag--bottom { bottom: 10px; left: 10px; right: 10px; }
@media (max-width: 699px) {
  .perimeter-card { aspect-ratio: 16/10; }
  .perimeter-card .hud-tag { font-size: .8rem; padding: 7px 11px; }
}

/* ===== Testimonials — depoimento em destaque + lista compacta ===== */
.pull-quote { max-width: 780px; margin: 0 auto 56px; text-align: center; position: relative; z-index: 1; }
.pull-quote__mark { font-family: var(--font-heading); font-size: 3.6rem; font-weight: 800; color: var(--green-400); line-height: 1; display: block; margin-bottom: 2px; }
.pull-quote p { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 700; color: var(--graphite); line-height: 1.4; }
.pull-quote cite { display: block; margin-top: 14px; font-style: normal; font-family: var(--font-mono); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--green-700); }

.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 0; position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.testimonial {
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.testimonial__stars { color: var(--star); letter-spacing: 2px; margin-bottom: 8px; display: block; font-size: .8rem; }
.testimonial p { font-size: .95rem; }
.testimonial cite { display: block; font-style: normal; font-weight: 800; margin-top: 8px; color: var(--graphite); font-size: .9rem; }

/* ===== Final CTA ===== */
.final-cta { text-align: center; }
.final-cta .brand-plate { margin: 0 auto 22px; }
.final-cta__statement { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; max-width: 46ch; margin: 0 auto 22px; }
.final-cta p.lead { max-width: 520px; margin: 0 auto 24px; color: #d7ddcd; }
.final-cta__phone { margin-top: 18px; font-family: var(--font-mono); font-weight: 600; font-size: 1.2rem; letter-spacing: .03em; color: var(--green-300); position: relative; z-index: 1; }

/* ===== Floating buttons ===== */
.pulsozap { animation: pulsozap 2s infinite; }
@keyframes pulsozap {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, .7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float-btn {
  position: fixed; bottom: 20px; right: 20px;
  width: 60px; height: 60px;
  background-color: #25D366; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  z-index: 999999 !important;
  text-decoration: none;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease, transform .2s ease;
}
.whatsapp-float-btn.visible { opacity: 1; visibility: visible; }
.whatsapp-float-btn img { width: 34px; height: 34px; filter: brightness(0) invert(1); }

/* ===== Tag Stamina (componente fixo da agência — mantido conforme especificação) ===== */
.last-section { position: relative; padding-bottom: 104px; }
.stamina-footer-container {
  position: absolute; bottom: 0; left: 0; width: 100%;
  display: flex; justify-content: center; align-items: flex-end;
  background-color: transparent; padding: 0; margin: 0;
  z-index: 10; pointer-events: none;
}
.stamina-badge-link {
  pointer-events: auto;
  width: fit-content; max-width: 90%;
  background-color: #252525;
  border-radius: 14px 14px 0 0;
  border: none;
  padding: 10px 28px;
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Manrope', sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: 0.03em;
  box-shadow: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.stamina-badge-logo { height: 11px; width: auto; display: block; transform: translateY(-2px); transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1); }
.stamina-badge-link:hover { background-color: #2e2e2e; color: #ffffff; }
.stamina-badge-link:hover .stamina-badge-logo { transform: translateY(-2px) scale(1.05); }

/* ===== Reveal on scroll (progressive enhancement) ===== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (min-width: 700px) {
  .trust { grid-template-columns: repeat(3, 1fr); }
  .audience-grid { grid-template-columns: repeat(4, 1fr); }
  .perimeter-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); column-gap: 28px; }
  .mosaic--services { grid-template-columns: repeat(4, 1fr); }
  .mosaic--pair { grid-template-columns: repeat(2, 1fr); }
  .index-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: none; gap: 0 28px; }
  .index-row {
    display: block;
    grid-template-columns: none;
    border-bottom: none;
    border-top: 1px solid var(--line);
    padding: 22px 0 0;
  }
  .index-row__num { margin-bottom: 16px; }
}
@media (min-width: 960px) {
  .video-block { grid-template-columns: 1.6fr 1fr; }
  .hero-hud { grid-template-columns: 1.65fr 1fr; min-height: 78vh; }
  .hero-hud__media {
    order: 2;
    aspect-ratio: auto;
    height: 100%;
    clip-path: polygon(7% 0, 100% 0, 100% 100%, 0% 100%);
  }
  .hero-hud__panel { order: 1; display: flex; align-items: center; }
  .hero-hud__panel-inner { padding: 0 40px 0 clamp(24px, 5vw, 64px); max-width: 720px; }
  .timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .timeline__step { flex-direction: column; gap: 14px; }
  .timeline__track {
    display: block;
    position: absolute; top: 26px; left: 16%; right: 16%;
    height: 1px; background: rgba(163, 211, 116, .3);
    z-index: 0;
  }
}
