:root {
  --bg: #07070d;
  --bg-soft: #0f1017;
  --panel: rgba(18, 19, 29, 0.72);
  --panel-strong: rgba(14, 15, 23, 0.92);
  --panel-light: rgba(255, 255, 255, 0.84);
  --text: #f6f1eb;
  --muted: #b7b1a7;
  --line: rgba(255, 255, 255, 0.09);
  --primary: #77f1d2;
  --secondary: #4aa3ff;
  --accent: #ffe1a8;
  --danger: #ff8f8f;
  --ink: #0e1117;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: min(1240px, calc(100% - 2rem));
  --transition: 260ms ease;
}

body.light-mode {
  --bg: #f6efe7;
  --bg-soft: #fff9f2;
  --panel: rgba(255, 249, 242, 0.78);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --panel-light: rgba(255, 255, 255, 0.94);
  --text: #171717;
  --muted: #615d58;
  --line: rgba(23, 23, 23, 0.1);
  --primary: #0f9f82;
  --secondary: #276ec9;
  --accent: #d8a85a;
  --danger: #d65b5b;
  --ink: #ffffff;
  --shadow: 0 24px 60px rgba(41, 34, 23, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(74, 163, 255, 0.16), transparent 24%),
    radial-gradient(circle at 90% 18%, rgba(119, 241, 210, 0.12), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, #040409 100%);
  overflow-x: hidden;
}

body.light-mode {
  background:
    radial-gradient(circle at 10% 10%, rgba(39, 110, 201, 0.12), transparent 24%),
    radial-gradient(circle at 90% 18%, rgba(15, 159, 130, 0.1), transparent 24%),
    linear-gradient(180deg, #fffaf4 0%, var(--bg) 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.ambient,
.scan-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient {
  z-index: -3;
  filter: blur(30px);
}

.ambient--one {
  background: radial-gradient(circle at 20% 24%, rgba(119, 241, 210, 0.13), transparent 24%);
}

.ambient--two {
  background: radial-gradient(circle at 82% 10%, rgba(74, 163, 255, 0.12), transparent 20%);
}

.scan-noise {
  z-index: -2;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 180px 180px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 92%);
}

.glass-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 100%), var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.logo-asset.is-missing {
  opacity: 0;
  visibility: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(74, 163, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #05050b 0%, #090b13 100%);
  z-index: 9999;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__mesh,
.preloader__orbits,
.preloader__panel {
  position: absolute;
}

.preloader__mesh {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 25%, transparent 80%);
}

.preloader__orbits::before,
.preloader__orbits::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(119, 241, 210, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.preloader__orbits::before {
  width: 520px;
  height: 520px;
  animation: spin 14s linear infinite;
}

.preloader__orbits::after {
  width: 360px;
  height: 360px;
  animation: spinReverse 10s linear infinite;
}

.preloader__panel {
  width: min(92vw, 560px);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  text-align: center;
  background: rgba(12, 13, 20, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 40px 100px rgba(0, 0, 0, 0.4);
}

.preloader__brand-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(119, 241, 210, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.02);
}

.preloader__logo {
  position: relative;
  z-index: 2;
  width: min(390px, 76vw);
  filter: drop-shadow(0 0 40px rgba(74, 163, 255, 0.28));
  animation: floatLogo 4s ease-in-out infinite;
}

.preloader__beam {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(119, 241, 210, 0.9), transparent);
  box-shadow: 0 0 24px rgba(119, 241, 210, 0.45);
}

.preloader__beam--horizontal {
  left: 5%;
  right: 5%;
  top: 50%;
  height: 2px;
  animation: beamX 2.4s ease-in-out infinite;
}

.preloader__beam--vertical {
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(74, 163, 255, 0.9), transparent);
  box-shadow: 0 0 24px rgba(74, 163, 255, 0.4);
  animation: beamY 2.8s ease-in-out infinite;
}

.preloader__name {
  margin: 1.4rem 0 0.35rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
}

.preloader__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.preloader__progress {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.preloader__progress span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(74, 163, 255, 0.2), rgba(119, 241, 210, 0.9), rgba(255, 225, 168, 0.2));
  background-size: 180% 100%;
  animation: progressSweep 1.3s ease-in-out infinite;
}

.preloader__progress span:nth-child(2) { animation-delay: 0.12s; }
.preloader__progress span:nth-child(3) { animation-delay: 0.24s; }
.preloader__progress span:nth-child(4) { animation-delay: 0.36s; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1rem 0 0;
}

.topbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-chip__logo-wrap,
.footer__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.brand-chip__logo {
  width: 144px;
  height: auto;
}

.brand-chip__copy strong,
.mobile-drawer__brand strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
}

.brand-chip__copy small,
.mobile-drawer__brand p {
  color: var(--muted);
}

.dock-nav {
  position: relative;
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: 999px;
}

.dock-nav__link,
.mobile-drawer__link {
  position: relative;
  z-index: 1;
  padding: 0.9rem 1rem;
  color: var(--muted);
  border-radius: 999px;
  transition: color var(--transition), transform var(--transition);
}

.dock-nav__link:hover,
.dock-nav__link.is-active,
.mobile-drawer__link:hover {
  color: var(--text);
}

.dock-nav__indicator {
  position: absolute;
  top: 0.35rem;
  left: 0.35rem;
  width: 100px;
  height: calc(100% - 0.7rem);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(119, 241, 210, 0.18), rgba(74, 163, 255, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: width 280ms ease, transform 280ms ease;
}

.topbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle {
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.theme-toggle__track {
  display: inline-flex;
  align-items: center;
  width: 3.3rem;
  height: 1.8rem;
  padding: 0.22rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.theme-toggle__dot {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 0 18px rgba(119, 241, 210, 0.35);
  transition: transform var(--transition);
}

body.light-mode .theme-toggle__dot {
  transform: translateX(1.4rem);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
}

.menu-toggle span {
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  width: var(--container);
  margin: 0.8rem auto 0;
  padding: 1rem;
  border-radius: 26px;
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.mobile-drawer.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-drawer__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.mobile-drawer__logo {
  width: 118px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 5rem 0 3rem;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(119, 241, 210, 0.1), transparent 24%),
    radial-gradient(circle at 88% 22%, rgba(74, 163, 255, 0.12), transparent 24%);
  pointer-events: none;
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.hero h1,
.section-heading h2,
.services__intro h2,
.vehicle-section__panel h2,
.about__story h2,
.contact__card h2 {
  margin: 1rem 0 1rem;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  max-width: 11ch;
}

.hero__lead,
.services__intro p,
.section-heading p,
.solution-panel p,
.vehicle-section__panel p,
.about__story p,
.advantage-card p,
.process-card p,
.contact__card p,
.contact-list dd,
.footer p,
.footer a,
.footer h4,
.mobile-drawer__brand p {
  color: var(--muted);
  line-height: 1.8;
}

.hero__actions,
.hero__metrics,
.process-rail,
.footer__grid,
.contact__layout,
.about__layout,
.vehicle-section__layout,
.solution-grid {
  display: grid;
}

.hero__actions {
  grid-template-columns: repeat(3, auto);
  gap: 0.9rem;
  justify-content: start;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  font-weight: 700;
}

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

.button--solid {
  color: #071014;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 18px 34px rgba(119, 241, 210, 0.22);
}

.button--outline,
.button--ghost {
  border: 1px solid var(--line);
  color: var(--text);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.04);
}

.hero__metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric {
  padding: 1.2rem;
  border-radius: 24px;
}

.metric strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 2.2rem;
}

.metric span {
  color: var(--muted);
}

.hero__visual {
  position: relative;
  min-height: 700px;
}

.hero-stage {
  position: absolute;
  inset: 1rem 0.2rem 4.2rem;
  padding: 1.4rem;
  border-radius: 38px;
  overflow: hidden;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(119, 241, 210, 0.12), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(74, 163, 255, 0.12), transparent 22%);
  pointer-events: none;
}

.hero-stage__header,
.hero-stage__footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.hero-stage__header {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-stage__poster {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 420px;
  margin: 1.4rem 0;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.hero-stage__pulse {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 280px;
  height: 280px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 241, 210, 0.16), transparent 65%);
  filter: blur(16px);
  animation: breathe 4s ease-in-out infinite;
}

.hero-stage__logo {
  position: relative;
  z-index: 1;
  width: min(470px, 94%);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  padding: 0.8rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.hero-stage__footer article {
  flex: 1;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero-stage__footer small,
.monitor__cards small {
  display: block;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.hero-note {
  position: absolute;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  max-width: 250px;
  animation: drift 6s ease-in-out infinite;
}

.hero-note span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-note--one {
  left: -0.2rem;
  bottom: 1rem;
}

.hero-note--two {
  right: -0.5rem;
  top: 1.5rem;
  animation-delay: -2s;
}

.trust-band {
  padding: 0 0 1rem;
}

.trust-band__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.trust-band__grid article {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.trust-band__grid strong,
.service-card h3,
.solution-panel h3,
.advantage-card h3,
.process-card h3 {
  display: block;
  margin-bottom: 0.45rem;
}

.services__layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.4rem;
  align-items: start;
}

.services__intro {
  position: sticky;
  top: 7rem;
}

.services__intro h2,
.section-heading h2,
.vehicle-section__panel h2,
.about__story h2,
.contact__card h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.filter-stack {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.filter-button {
  text-align: left;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  transition: transform var(--transition), border-color var(--transition), color var(--transition), background var(--transition);
}

.filter-button.is-active,
.filter-button:hover {
  transform: translateX(6px);
  color: var(--text);
  border-color: rgba(119, 241, 210, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.service-card {
  position: relative;
  grid-column: span 4;
  padding: 1.3rem;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    var(--panel);
  box-shadow: var(--shadow);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, opacity 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.18) 48%, transparent 74%);
  transform: translateX(-120%) rotate(8deg);
  transition: transform 650ms ease;
}

.service-card__glow {
  position: absolute;
  inset: auto auto -40px -20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 163, 255, 0.18), transparent 70%);
  filter: blur(10px);
  opacity: 0.7;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(119, 241, 210, 0.34);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(119, 241, 210, 0.12);
}

.service-card:hover::before {
  transform: translateX(120%) rotate(8deg);
}

.service-card:hover .service-card__icon {
  transform: scale(1.08);
  box-shadow: 0 0 0 8px rgba(119, 241, 210, 0.08);
}

.service-card.is-hidden {
  opacity: 0.16;
  transform: scale(0.97);
  pointer-events: none;
}

.service-card__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.service-card__icon {
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(119, 241, 210, 0.18), rgba(74, 163, 255, 0.18));
  border: 1px solid rgba(119, 241, 210, 0.28);
  font-family: "Syne", sans-serif;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card__meta {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.service-card h3,
.service-card p,
.service-card__action {
  position: relative;
  z-index: 1;
}

.service-card__action {
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 700;
}

.service-card__action::after {
  content: " ->";
  transition: transform var(--transition);
}

.service-card:hover .service-card__action::after {
  transform: translateX(4px);
}

.solution-grid {
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.solution-panel {
  padding: 1.7rem;
  border-radius: 28px;
  min-height: 250px;
}

.solution-panel span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.solution-panel--primary {
  grid-column: span 7;
}

.solution-panel--wide {
  grid-column: span 8;
}

.solution-grid > :not(.solution-panel--primary):not(.solution-panel--wide) {
  grid-column: span 5;
}

.vehicle-section__layout,
.about__layout,
.contact__layout {
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.vehicle-section__panel,
.contact__card {
  padding: 1.7rem;
  border-radius: 30px;
}

.feature-list {
  margin: 1.6rem 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

.disclaimer {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--accent);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.03);
}

.monitor {
  padding: 1.3rem;
  border-radius: 34px;
}

.monitor__radar {
  position: relative;
  min-height: 380px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(74, 163, 255, 0.14), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 100%);
}

.monitor__radar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(from 190deg, transparent 0deg, rgba(119, 241, 210, 0.22) 90deg, transparent 145deg);
  animation: spin 5s linear infinite;
}

.monitor__radar span {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(119, 241, 210, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.monitor__radar span:nth-child(1) { width: 120px; height: 120px; }
.monitor__radar span:nth-child(2) { width: 220px; height: 220px; }
.monitor__radar span:nth-child(3) { width: 320px; height: 320px; }

.monitor__cards {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.monitor__cards article,
.advantage-card,
.process-card {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.about__story {
  padding-right: 1rem;
}

.advantage-stack {
  display: grid;
  gap: 1rem;
}

.process-rail {
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.process-card span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--primary);
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 1.6rem 0 0;
}

.contact-list div {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.contact-list dt {
  margin-bottom: 0.35rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.contact-list dd {
  margin: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.7rem;
  border-radius: 30px;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form__full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(119, 241, 210, 0.45);
  box-shadow: 0 0 0 4px rgba(119, 241, 210, 0.12);
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(255, 143, 143, 0.14);
}

.footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer__grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1rem;
}

.footer__logo {
  width: 150px;
}

.footer__brand h3 {
  margin: 1rem 0 0.45rem;
  font-family: "Syne", sans-serif;
}

.footer a,
.footer p {
  display: block;
  margin: 0.45rem 0;
}

.floating-button {
  position: fixed;
  right: 1rem;
  display: inline-grid;
  place-items: center;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
  box-shadow: var(--shadow);
  z-index: 45;
}

.floating-button--whatsapp {
  bottom: 5.8rem;
  color: #08110f;
  background: linear-gradient(135deg, #84ffc6, #24d56c);
}

.floating-button--top {
  bottom: 1rem;
  color: #051014;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.floating-button--top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: grid;
  gap: 0.7rem;
  z-index: 60;
}

.toast {
  min-width: min(92vw, 380px);
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(119, 241, 210, 0.14), rgba(14, 15, 23, 0.92));
  color: var(--text);
  box-shadow: var(--shadow);
  animation: toastIn 280ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

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

@keyframes floatLogo {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.015); }
}

@keyframes beamX {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-16px); opacity: 1; }
}

@keyframes beamY {
  0%, 100% { transform: translateX(0); opacity: 0.26; }
  50% { transform: translateX(16px); opacity: 1; }
}

@keyframes progressSweep {
  0%, 100% { background-position: 100% 50%; transform: scaleX(0.92); }
  50% { background-position: 0% 50%; transform: scaleX(1); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.55; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.9; }
}

@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1180px) {
  .topbar__inner,
  .hero__layout,
  .vehicle-section__layout,
  .about__layout,
  .contact__layout,
  .services__layout {
    grid-template-columns: 1fr;
  }

  .dock-nav {
    display: none;
  }

  .menu-toggle,
  .mobile-drawer {
    display: flex;
  }

  .mobile-drawer {
    flex-direction: column;
  }

  .hero__visual,
  .services__intro {
    position: static;
  }

  .hero__visual {
    min-height: 620px;
  }

  .process-rail,
  .trust-band__grid,
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    grid-column: span 6;
  }

  .solution-grid > *,
  .solution-panel--primary,
  .solution-panel--wide {
    grid-column: span 12;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4.6rem 0;
  }

  .brand-chip__copy small,
  .button--ghost {
    display: none;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero__actions,
  .hero__metrics,
  .process-rail,
  .footer__grid,
  .contact-form,
  .trust-band__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 520px;
  }

  .hero-stage {
    inset: 0 0 3.8rem;
  }

  .hero-stage__footer {
    flex-direction: column;
  }

  .hero-note {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }

  .service-card {
    grid-column: span 12;
  }

  .contact-form__full {
    grid-column: auto;
  }

  .floating-button {
    right: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
