:root {
  --bg: #050608;
  --bg-2: #090d12;
  --panel: #0e141b;
  --panel-2: #121923;
  --graphite: #1d252e;
  --muted: #9da8b4;
  --line: rgba(255, 255, 255, 0.12);
  --white: #f6f8fb;
  --blue: #18a8ff;
  --blue-strong: #0077ff;
  --orange: #ff7a1a;
  --orange-strong: #ff4d00;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section-dark,
.section-panel {
  position: relative;
  isolation: isolate;
}

.section-dark {
  background: linear-gradient(180deg, #050608 0%, #080c11 100%);
}

.section-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    var(--bg-2);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 4vw, 56px);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    padding 260ms ease,
    backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(5, 6, 8, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(24, 168, 255, 0.28), rgba(255, 122, 26, 0.18)),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.9rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(246, 248, 251, 0.74);
  font-size: 0.86rem;
}

.site-nav a {
  position: relative;
  padding: 10px 13px;
  border-radius: 999px;
  transition:
    color 200ms ease,
    background 200ms ease;
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.site-nav .nav-cta {
  margin-left: 8px;
  color: #071017;
  background: linear-gradient(135deg, var(--orange), #ffb15f);
  font-weight: 800;
}

.site-nav .nav-cta:hover {
  color: #071017;
  background: linear-gradient(135deg, #ff9a3c, var(--orange));
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 138px 0 72px;
}

.hero-media,
.hero-video,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.86), rgba(5, 6, 8, 0.28) 56%, rgba(5, 6, 8, 0.8)),
    url("assets/hero-laser-machine.png") center / cover no-repeat;
  transform: translate3d(0, 0, 0) scale(1.04);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.hero-overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.96) 0%, rgba(5, 6, 8, 0.72) 38%, rgba(5, 6, 8, 0.28) 68%, rgba(5, 6, 8, 0.92) 100%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.48), rgba(5, 6, 8, 0.92));
}

.hero-grid {
  z-index: -2;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(24, 168, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 168, 255, 0.1) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-content {
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-title,
.section-title {
  margin: 0;
  letter-spacing: 0;
}

.hero-title {
  max-width: 980px;
  font-size: clamp(3.5rem, 8vw, 8.7rem);
  line-height: 0.89;
  font-weight: 850;
  text-wrap: balance;
}

.hero-subtitle,
.section-lead {
  color: rgba(246, 248, 251, 0.73);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.62;
}

.hero-subtitle {
  max-width: 720px;
  margin: 28px 0 0;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: translateX(-120%);
  transition: transform 650ms var(--ease);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #071017;
  background: linear-gradient(135deg, var(--orange), #ffb15f);
  box-shadow: 0 16px 44px rgba(255, 122, 26, 0.25);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
}

.btn-ghost:hover {
  border-color: rgba(24, 168, 255, 0.45);
  background: rgba(24, 168, 255, 0.09);
}

.btn-whatsapp {
  min-height: 64px;
  padding-inline: 34px;
  color: #06100d;
  background: linear-gradient(135deg, #35f295, #11c968);
  box-shadow: 0 20px 58px rgba(17, 201, 104, 0.22);
  font-size: 1.12rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(246, 248, 251, 0.72);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.82rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: grid;
  width: 28px;
  height: 46px;
  place-items: start center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 4px;
  height: 8px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--orange);
  animation: cue 1.6s infinite;
}

@keyframes cue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  45% {
    transform: translateY(14px);
    opacity: 1;
  }
}

.about,
.services,
.process,
.gallery,
.future-assets,
.benefits,
.coverage {
  padding: clamp(84px, 11vw, 150px) 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.media-stack {
  position: relative;
}

.about-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  transform: scale(1.02);
}

.glass {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 16, 22, 0.68);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.floating-spec {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  max-width: min(360px, calc(100% - 48px));
  padding: 16px;
  border-radius: 8px;
}

.floating-spec strong {
  font-size: 0.95rem;
}

.floating-spec small {
  grid-column: 2;
  color: var(--muted);
  line-height: 1.4;
}

.spec-dot {
  grid-row: span 2;
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 22px rgba(255, 122, 26, 0.8);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.96;
  font-weight: 840;
  text-wrap: balance;
}

.section-lead {
  max-width: 710px;
  margin: 24px 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.stat-card {
  min-height: 136px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(24, 168, 255, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.035);
}

.stat-card strong {
  display: block;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.stat-card span:last-child {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.35;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 50px;
}

.section-heading.wide {
  max-width: 980px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 292px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 280ms var(--ease),
    border-color 280ms ease,
    background 280ms ease,
    box-shadow 280ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(24, 168, 255, 0.18), transparent 35%),
    linear-gradient(315deg, rgba(255, 122, 26, 0.16), transparent 42%);
  opacity: 0;
  transition: opacity 280ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(24, 168, 255, 0.42);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.icon-wrap {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(24, 168, 255, 0.25);
  border-radius: 8px;
  background: rgba(24, 168, 255, 0.08);
  color: var(--blue);
}

.icon-wrap svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 38px 0 12px;
  font-size: 1.12rem;
}

.service-card p,
.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24, 168, 255, 0.6), rgba(255, 122, 26, 0.62), transparent);
}

.timeline-item {
  position: relative;
  padding: 84px 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.025);
}

.timeline-item span {
  position: absolute;
  top: 18px;
  left: 22px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 122, 26, 0.5);
  border-radius: 50%;
  background: rgba(255, 122, 26, 0.1);
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
}

.timeline-item h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reel-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel);
  cursor: pointer;
  text-align: left;
  color: inherit;
  font: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 50px rgba(0, 0, 0, 0.32);
  transition:
    transform 320ms var(--ease),
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.reel-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.82);
  transform: scale(1.04);
  transition:
    transform 520ms var(--ease),
    filter 520ms ease;
}

.reel-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.32) 0%, rgba(5, 6, 8, 0) 26%, rgba(5, 6, 8, 0) 42%, rgba(5, 6, 8, 0.92) 100%);
  transition: background 320ms ease;
}

.reel-card:hover,
.reel-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(24, 168, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 34px 80px rgba(0, 0, 0, 0.46);
  outline: none;
}

.reel-card:hover .reel-media,
.reel-card:focus-visible .reel-media {
  filter: saturate(1.05) contrast(1.08) brightness(0.98);
  transform: scale(1.1);
}

.reel-card:focus-visible {
  border-color: var(--blue);
}

.reel-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  max-width: calc(100% - 92px);
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 6, 8, 0.6);
  backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reel-tag-blue {
  border-color: rgba(24, 168, 255, 0.5);
  color: #bfe6ff;
}

.reel-tag-orange {
  border-color: rgba(255, 122, 26, 0.55);
  color: #ffd0a6;
}

.reel-card-special {
  border-color: rgba(255, 122, 26, 0.32);
}

.reel-card-special .reel-shade {
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.32) 0%, rgba(5, 6, 8, 0) 26%, rgba(5, 6, 8, 0) 42%, rgba(5, 6, 8, 0.92) 100%),
    linear-gradient(90deg, rgba(255, 122, 26, 0.16), transparent 45%);
}

.reel-time {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(5, 6, 8, 0.62);
  backdrop-filter: blur(12px);
  color: rgba(246, 248, 251, 0.9);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(5, 6, 8, 0.42);
  backdrop-filter: blur(14px);
  transform: translate(-50%, -50%);
  transition:
    transform 320ms var(--ease),
    background 320ms ease,
    border-color 320ms ease;
}

.reel-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-block: 10px solid transparent;
  border-left: 16px solid var(--white);
}

.reel-card:hover .reel-play,
.reel-card:focus-visible .reel-play {
  transform: translate(-50%, -50%) scale(1.08);
  border-color: rgba(24, 168, 255, 0.7);
  background: rgba(24, 168, 255, 0.24);
}

.reel-info {
  position: absolute;
  inset: auto 16px 16px;
  z-index: 2;
  display: block;
}

.reel-info strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.2;
}

.reel-info small {
  display: block;
  margin-top: 7px;
  color: rgba(246, 248, 251, 0.72);
  font-size: 0.78rem;
  line-height: 1.45;
}

.reel-note {
  max-width: 780px;
  margin: 34px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(255, 122, 26, 0.24);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.08), transparent 55%),
    rgba(255, 255, 255, 0.03);
  color: rgba(246, 248, 251, 0.82);
  line-height: 1.6;
  text-align: center;
}

.reel-note strong {
  color: var(--white);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
}

.video-modal[hidden] {
  display: none;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 6, 0.86);
  backdrop-filter: blur(10px);
  animation: modalFade 240ms var(--ease);
}

.video-modal__dialog {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(100%, 460px);
  animation: modalRise 300ms var(--ease);
}

.video-modal__player {
  width: auto;
  max-width: 100%;
  max-height: 82svh;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: #000;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.video-modal__title {
  order: -1;
  margin: 0;
  color: var(--white);
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.video-modal__close {
  position: absolute;
  top: -6px;
  right: -6px;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(5, 6, 8, 0.82);
  color: var(--white);
  cursor: pointer;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    transform 200ms ease;
}

.video-modal__close:hover {
  border-color: rgba(255, 122, 26, 0.6);
  background: rgba(255, 122, 26, 0.18);
  transform: scale(1.06);
}

.video-modal__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

@keyframes modalFade {
  from {
    opacity: 0;
  }
}

@keyframes modalRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
}

.future-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.future-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(24, 168, 255, 0.08), transparent 45%),
    rgba(255, 255, 255, 0.035);
}

.future-card span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 122, 26, 0.45);
  border-radius: 50%;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.future-card h3 {
  margin: 42px 0 12px;
  font-size: 1.12rem;
}

.future-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.future-card strong {
  color: var(--white);
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(246, 248, 251, 0.9);
  font-weight: 750;
}

.benefit-card span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #08120f;
  background: linear-gradient(135deg, #35f295, var(--blue));
  font-weight: 950;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: center;
}

.argentina-map {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(24, 168, 255, 0.08), rgba(255, 122, 26, 0.06)),
    radial-gradient(circle at center, rgba(24, 168, 255, 0.09), transparent 55%),
    var(--panel);
}

.argentina-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}

.argentina-map svg {
  position: relative;
  width: min(82%, 360px);
  filter: drop-shadow(0 0 24px rgba(24, 168, 255, 0.22));
}

.map-shape {
  fill: rgba(24, 168, 255, 0.07);
  stroke: url("#mapGlow");
  stroke-width: 3;
  stroke-linejoin: round;
}

.map-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.32);
  stroke-width: 1.5;
  stroke-dasharray: 5 9;
  animation: dash 16s linear infinite;
}

.map-point {
  fill: var(--orange);
  filter: drop-shadow(0 0 12px rgba(255, 122, 26, 0.92));
  transform-origin: center;
  animation: pulse 2.6s ease-in-out infinite;
}

.point-b {
  animation-delay: 0.4s;
}

.point-c {
  animation-delay: 0.8s;
}

.point-d {
  animation-delay: 1.2s;
}

@keyframes dash {
  to {
    stroke-dashoffset: -120;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.45);
  }
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 78svh;
  align-items: center;
  overflow: hidden;
  padding: clamp(96px, 11vw, 160px) 0;
  isolation: isolate;
}

.cta-bg,
.cta-overlay {
  position: absolute;
  inset: 0;
}

.cta-bg {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.94), rgba(5, 6, 8, 0.56), rgba(5, 6, 8, 0.94)),
    url("assets/hero-laser-machine.png") center / cover no-repeat;
  transform: scale(1.06);
}

.cta-overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.22), rgba(5, 6, 8, 0.92)),
    linear-gradient(135deg, rgba(24, 168, 255, 0.18), transparent 48%, rgba(255, 122, 26, 0.18));
}

.cta-content {
  max-width: 900px;
  text-align: center;
}

.cta-content .section-lead,
.cta-actions {
  margin-inline: auto;
}

.cta-actions {
  justify-content: center;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #050608;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand small {
  max-width: 420px;
  text-transform: none;
  letter-spacing: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a,
.footer-links span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  transition:
    color 200ms ease,
    border-color 200ms ease;
}

.footer-links a:hover {
  color: var(--white);
  border-color: rgba(24, 168, 255, 0.42);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 39px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(24, 168, 255, 0.6), rgba(255, 122, 26, 0.62), transparent);
  }

  .timeline-item {
    padding: 24px 24px 24px 84px;
  }

  .timeline-item span {
    left: 22px;
    top: 24px;
  }

  .reel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, 680px);
  }

  .site-header {
    padding: 14px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: grid;
    height: 100svh;
    align-content: center;
    gap: 12px;
    padding: 86px 24px 32px;
    overflow: hidden;
    background: rgba(5, 6, 8, 0.96);
    backdrop-filter: blur(22px);
    transform: translateY(-100%);
    transition: transform 280ms var(--ease);
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    font-size: 1.2rem;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: 100svh;
    padding: 114px 0 70px;
  }

  .hero-title {
    font-size: clamp(2.65rem, 13.2vw, 4rem);
    line-height: 0.94;
  }

  .hero .eyebrow {
    max-width: 100%;
    font-size: 0.66rem;
    line-height: 1.65;
    letter-spacing: 0.15em;
  }

  .split-layout,
  .future-layout,
  .benefits-layout,
  .coverage-layout {
    grid-template-columns: 1fr;
  }

  .about-image img {
    aspect-ratio: 1.25;
  }

  .coverage-copy {
    order: 1;
  }

  .argentina-map {
    order: 2;
    min-height: 440px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .stats-grid,
  .service-grid,
  .future-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .reel-time {
    display: none;
  }

  .reel-tag {
    max-width: calc(100% - 24px);
    font-size: 0.54rem;
    letter-spacing: 0.07em;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.25;
  }

  .reel-info {
    inset: auto 13px 14px;
  }

  .reel-info strong {
    font-size: 0.92rem;
  }

  .reel-info small {
    display: -webkit-box;
    margin-top: 5px;
    font-size: 0.72rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .reel-play {
    width: 54px;
    height: 54px;
  }

  .service-card {
    min-height: 250px;
  }

  .floating-spec {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: -28px;
    margin-inline: 14px;
  }

  .argentina-map {
    min-height: 380px;
  }
}
