/* Bermot — Industrial Tech Design System */
:root {
  --blue-900: #061428;
  --blue-800: #0a2340;
  --blue-700: #0e3a66;
  --blue-600: #1565a8;
  --blue-500: #1e7fd4;
  --yellow-500: #f0b429;
  --yellow-400: #ffc94a;
  --steel-100: #f2f5f8;
  --steel-200: #e2e8ef;
  --steel-300: #c5d0dc;
  --steel-500: #6b7c8f;
  --steel-700: #3a4a5c;
  --steel-900: #1a2330;
  --white: #ffffff;
  --text: #1a2330;
  --text-muted: #4a5a6c;
  --radius: 4px;
  --radius-img: 14px;
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--steel-100);
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Subtle scanline overlay */
.scanline {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.03;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.4) 2px,
    rgba(0, 0, 0, 0.4) 3px
  );
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
}

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

.btn-primary {
  background: var(--yellow-500);
  color: var(--blue-900);
  border-color: var(--yellow-500);
}

.btn-primary:hover {
  background: var(--yellow-400);
  border-color: var(--yellow-400);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
  background: var(--yellow-500);
  color: var(--blue-900);
  border-color: var(--yellow-500);
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: #00b09d;
  transition: background 0.35s, box-shadow 0.35s;
}

.site-header.scrolled {
  background: #00b09d;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--white);
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue-500), var(--blue-700));
  border: 2px solid var(--yellow-500);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(6, 20, 40, 0.88);
  transition: color 0.2s;
}

.nav a:hover,
.nav a.nav-accent {
  color: var(--blue-900);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-900);
  transition: transform 0.3s, opacity 0.3s;
}

/* Hero — full-bleed composition */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 0 4.5rem;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--blue-900);
}

.hero-videos {
  position: absolute;
  inset: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
  pointer-events: none;
}

.hero-video.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 20, 40, 0.55) 0%, rgba(6, 20, 40, 0.45) 45%, rgba(6, 20, 40, 0.75) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 127, 212, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 127, 212, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 1s var(--ease) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  width: min(320px, 72vw);
  height: auto;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.35));
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 0.9;
  margin: 0 0 1rem;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.hero-title {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  max-width: 28ch;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.hero-telemetry {
  position: absolute;
  bottom: 1.5rem;
  right: max(calc((100% - 1140px) / 2), 1.25rem);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--yellow-400);
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(240, 180, 41, 0.35);
  background: rgba(6, 20, 40, 0.55);
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.hero-telemetry:hover {
  background: rgba(6, 20, 40, 0.85);
  border-color: var(--yellow-500);
  transform: translateY(-2px);
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(61, 220, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); }
}

/* Sections common */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin: 0 0 0.75rem;
}

.eyebrow-light {
  color: var(--yellow-400);
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Services intro */
.services-intro {
  background: var(--white);
  border-bottom: 1px solid var(--steel-200);
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.service-chip {
  padding: 0.65rem 1.15rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-800);
  background: var(--steel-100);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.service-chip:hover {
  border-color: var(--blue-500);
  color: var(--blue-600);
}

.service-chip-hot {
  background: var(--blue-800);
  color: var(--yellow-400);
  border-color: var(--blue-800);
}

.service-chip-hot:hover {
  background: var(--blue-700);
  color: var(--yellow-400);
  border-color: var(--blue-700);
}

/* GPS — featured monitoring room */
.gps-section {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.9);
  padding: 6rem 0;
  overflow: hidden;
}

.gps-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}

.gps-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
}

.gps-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(30, 127, 212, 0.2), transparent),
    linear-gradient(180deg, var(--blue-900) 0%, rgba(6, 20, 40, 0.82) 50%, var(--blue-900) 100%);
  z-index: 0;
}

.gps-section .container {
  position: relative;
  z-index: 1;
}

.gps-header {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.gps-header h2 {
  color: var(--white);
}

.gps-lema {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--yellow-400);
  border-left: 3px solid var(--yellow-500);
  padding-left: 1rem;
  margin: 1.25rem 0 0;
  line-height: 1.4;
}

.gps-dashboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(30, 127, 212, 0.35);
  border: 1px solid rgba(30, 127, 212, 0.4);
  margin-bottom: 3rem;
}

.dash-panel {
  background: rgba(10, 35, 64, 0.85);
  padding: 1.25rem 1.35rem;
  backdrop-filter: blur(8px);
}

.dash-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.35rem;
}

.dash-value {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ddc84;
  animation: pulse 2s infinite;
}

.gps-body {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.gps-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.gps-closing {
  color: var(--white) !important;
  font-weight: 600;
  font-size: 1.08rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

.gps-aside {
  background: rgba(14, 58, 102, 0.45);
  border: 1px solid rgba(30, 127, 212, 0.35);
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.gps-aside h3 {
  color: var(--yellow-400);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.capability-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 1.75rem;
}

.capability-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-left: 1rem;
  border-left: 2px solid var(--yellow-500);
}

.capability-list strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--white);
}

.capability-list span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Service blocks */
.service-block {
  background: var(--white);
}

.service-block-alt {
  background: var(--steel-100);
}

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

.service-grid-reverse .service-visual {
  order: 2;
}

.service-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-img);
}

.service-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.05);
  border-radius: var(--radius-img);
}

.service-visual::after {
  content: none;
}

/* Service image sliders */
.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--steel-200);
  overflow: hidden;
  border-radius: var(--radius-img);
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.slider-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(6, 20, 40, 0.55);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s, border-color 0.2s;
}

.slider-btn:hover {
  background: rgba(6, 20, 40, 0.85);
  border-color: var(--yellow-500);
}

.slider-prev {
  left: 0.75rem;
}

.slider-next {
  right: 0.75rem;
}

.slider-prev::before,
.slider-next::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.slider-prev::before {
  transform: rotate(-135deg);
  margin-left: 14px;
}

.slider-next::before {
  transform: rotate(45deg);
  margin-left: 10px;
}

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.85rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.slider-dot.is-active {
  background: var(--yellow-500);
  transform: scale(1.2);
}

.service-tagline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--blue-600);
  font-weight: 500;
}

.check-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--yellow-500);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* Fatiga */
.fatiga-section {
  background:
    linear-gradient(180deg, var(--steel-100) 0%, var(--white) 100%);
}

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

.fatiga-item {
  padding: 1.5rem 0 0;
  border-top: 2px solid var(--blue-600);
}

.fatiga-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--yellow-500);
  display: block;
  margin-bottom: 0.65rem;
}

.fatiga-item h3 {
  margin-bottom: 0.5rem;
}

.fatiga-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* About */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--steel-200);
}

.mission-vision h3 {
  color: var(--blue-600);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mission-vision p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--blue-800);
  color: var(--white);
  padding: 2rem;
}

.stat {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat:first-child {
  padding-top: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--yellow-400);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--yellow-400);
}

.stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}

/* Promise */
.promise-section {
  background:
    linear-gradient(120deg, rgba(6, 20, 40, 0.88), rgba(14, 58, 102, 0.75)),
    url("../img/taller-bermot.png") center / cover;
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}

.promise-inner {
  max-width: 640px;
}

.promise-section .eyebrow {
  color: var(--yellow-400);
}

.promise-section h2 {
  color: var(--white);
}

.promise-section p:last-child {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* Contact */
.contact-section {
  background: var(--steel-100);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-details strong {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.contact-details a {
  color: var(--blue-600);
  font-weight: 600;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--steel-200);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-700);
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--steel-300);
  border-radius: var(--radius);
  background: var(--steel-100);
  color: var(--text);
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(30, 127, 212, 0.15);
}

.form-note {
  margin: 0;
  color: var(--blue-600);
  font-weight: 600;
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.footer-logo {
  height: 56px;
  width: auto;
  flex-shrink: 0;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.95rem;
  max-width: 36ch;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-nav a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--yellow-400);
}

.footer-copy {
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Responsive */
@media (max-width: 960px) {
  .gps-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }

  .gps-body,
  .service-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid-reverse .service-visual {
    order: 0;
  }

  .fatiga-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }

  .stat {
    flex: 1 1 40%;
    padding: 1rem;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .gps-aside {
    position: static;
  }
}

  @media (max-width: 720px) {
  .logo-img {
    height: 42px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #00b09d;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }

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

  .nav a {
    padding: 0.9rem 0.5rem;
    border-bottom: 1px solid rgba(6, 20, 40, 0.12);
  }

  .nav .btn-sm {
    margin-top: 0.75rem;
    text-align: center;
  }

  .hero-telemetry {
    left: 50%;
    right: auto;
    bottom: 1rem;
    transform: translateX(-50%);
  }

  .hero-telemetry:hover {
    transform: translateX(-50%) translateY(-2px);
  }

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

  .gps-dashboard {
    grid-template-columns: 1fr 1fr;
  }

  .site-header {
    background: #00b09d;
  }
}

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

  .hero-video {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
