:root {
  --ink: #16202a;
  --muted: #61707f;
  --paper: #f7f8f5;
  --white: #ffffff;
  --line: rgba(22, 32, 42, .12);
  --teal: #d4a017;
  --green: #f5c542;
  --amber: #f4a832;
  --red: #d94f45;
  --blue: #2f74b5;
  --graphite: #26323d;
  --gold-deep: #b8860b;
  --gold-rich: #c9941c;
  --gold-light: #f0d57e;
  --gold-pale: #fdf3c7;
  --gold-grad: linear-gradient(135deg, #f0d57e, #d4a017 45%, #b8860b);
  --shadow: 0 22px 60px rgba(22, 32, 42, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--amber));
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  min-height: 62px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 12px 40px rgba(22, 32, 42, .12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background .25s ease, box-shadow .25s ease, top .25s ease;
}

.site-header.is-scrolled {
  top: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 42px rgba(22, 32, 42, .16);
}

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

.brand-logo {
  height: 56px;
  width: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25), 0 4px 12px rgba(184,134,11,.3);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  padding: 10px 13px;
  border-radius: 8px;
  color: #344351;
  font-size: 14px;
  transition: background .2s ease, color .2s ease;
}

.nav-menu a:hover {
  color: var(--ink);
  background: rgba(212, 160, 23, .12);
}

.nav-menu .nav-access {
  margin-left: 6px;
  color: #fff;
  background: var(--gold-grad);
  box-shadow: 0 10px 24px rgba(184, 134, 11, .38);
  font-weight: 900;
}

.nav-menu .nav-access:hover {
  color: #fff;
  background: linear-gradient(135deg, #f0b827, var(--graphite));
  box-shadow: 0 14px 30px rgba(212, 160, 23, .4);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: rgba(22, 32, 42, .08);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: end;
  min-height: 100vh;
  padding: 160px max(24px, calc((100vw - 1120px) / 2)) 82px;
  overflow: hidden;
  color: #fff;
  background: #17232d;
}

#fleetScene,
.hero-noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-noise {
  pointer-events: none;
  opacity: .52;
  background:
    radial-gradient(circle at 18% 22%, rgba(212,160,23,.48), transparent 28%),
    radial-gradient(circle at 72% 20%, rgba(244,168,50,.24), transparent 24%),
    linear-gradient(90deg, rgba(14,24,33,.9), rgba(14,24,33,.56) 48%, rgba(14,24,33,.82));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  align-self: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold-light);
  text-shadow: 0 0 18px rgba(240,213,126,.4);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(36px, 6vw, 76px);
  line-height: .89;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255,255,255,.82);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  font-weight: 800;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn.primary {
  color: #2a1d05;
  background: var(--gold-grad);
  border-color: rgba(184,134,11,.5);
  box-shadow: 0 18px 34px rgba(184, 134, 11, .4);
}

.btn.ghost {
  color: inherit;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}

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

.hero-panel {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: rgba(255,255,255,.74);
  font-size: 13px;
}

.panel-top strong {
  color: #fff0a8;
}

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

.ops-grid div {
  min-height: 104px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
}

.ops-grid small {
  display: block;
  min-height: 34px;
  color: rgba(255,255,255,.68);
}

.ops-grid strong {
  display: inline-block;
  margin-top: 8px;
  font-size: 38px;
}

.ops-grid em {
  font-style: normal;
  font-weight: 800;
}

.route-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.route-strip span {
  height: 5px;
  border-radius: 8px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
}

.route-strip span::before {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  background: var(--amber);
  animation: routePulse 2.6s ease-in-out infinite;
}

.route-strip span:nth-child(2)::before { animation-delay: .25s; background: var(--teal); }
.route-strip span:nth-child(3)::before { animation-delay: .5s; background: var(--green); }
.route-strip span:nth-child(4)::before { animation-delay: .75s; background: var(--red); }

@keyframes routePulse {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(180%); }
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-item {
  min-height: 210px;
  padding: 36px;
  background: var(--white);
}

.trust-item span {
  color: var(--amber);
  font-weight: 900;
}

.trust-item strong {
  display: block;
  margin: 22px 0 10px;
  font-size: 24px;
}

.trust-item p,
.section-copy p,
.timeline-step p,
.impact-card p,
.tab-content p,
.sla-box p,
.cta-inner p,
.site-footer span {
  color: var(--muted);
  line-height: 1.62;
}

.section {
  padding: 110px max(24px, calc((100vw - 1120px) / 2));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1fr);
  gap: 70px;
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, .92fr);
}

.reverse .section-copy {
  order: 2;
}

.section-copy {
  max-width: 610px;
}

.section-copy > p:not(.eyebrow) {
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.check-list p {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  margin: 0;
  color: var(--ink);
  font-weight: 650;
}

.check-list span {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 42%, #fff 42% 58%, transparent 58%),
    var(--gold-grad);
}

.impact-board {
  display: grid;
  gap: 14px;
}

.impact-card,
.proof-card,
.timeline-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(22, 32, 42, .06);
}

.impact-card {
  padding: 28px;
  transform: translateX(var(--shift, 0));
}

.impact-card:nth-child(1) { --shift: 34px; }
.impact-card:nth-child(2) { --shift: -4px; }
.impact-card:nth-child(3) { --shift: 54px; }

.impact-card small {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-weight: 900;
  text-transform: uppercase;
}

.impact-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.05;
}

.product {
  background: #fdf6e3;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.product-shell {
  max-width: 1050px;
  margin: 0 auto;
  border: 1px solid rgba(38, 50, 61, .16);
  border-radius: 8px;
  background: var(--graphite);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.55);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.browser-bar span:nth-child(2) { background: var(--amber); }
.browser-bar span:nth-child(3) { background: var(--green); }
.browser-bar p {
  margin: 0 0 0 12px;
  font-size: 12px;
}

.dashboard-mock {
  display: grid;
  grid-template-columns: 215px minmax(0, 1fr);
  min-height: 430px;
  background: #fffaf0;
}

.mock-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px 16px;
  color: #f4e9c8;
  background: #2a2418;
}

.mock-sidebar strong {
  margin-bottom: 18px;
  color: #fff;
}

.mock-sidebar span {
  padding: 12px;
  border-radius: 8px;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.05);
  font-size: 13px;
}

.mock-sidebar .active {
  color: #fff;
  background: rgba(212,160,23,.78);
}

.mock-main {
  padding: 24px;
}

.mock-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mock-kpis div {
  min-height: 100px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mock-kpis small {
  color: var(--muted);
}

.mock-kpis strong {
  display: block;
  margin-top: 12px;
  font-size: 28px;
}

.mock-workflow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.mock-workflow span {
  position: relative;
  padding: 13px 10px;
  border-radius: 8px;
  color: var(--muted);
  background: #efe9d4;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.mock-workflow .done {
  color: #2a1d05;
  background: var(--gold-grad);
}

.mock-workflow .current {
  color: var(--ink);
  background: var(--amber);
  animation: breathe 2.4s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244,168,50,.35); }
  50% { box-shadow: 0 0 0 10px rgba(244,168,50,0); }
}

.mock-table {
  display: grid;
  gap: 10px;
}

.mock-table div {
  display: grid;
  grid-template-columns: 1fr .8fr .9fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mock-table span,
.mock-table b,
.mock-table em {
  min-width: 0;
  overflow-wrap: anywhere;
}

.mock-table em {
  color: var(--gold-deep);
  font-style: normal;
  font-weight: 800;
}

.module-tabs {
  max-width: 920px;
  margin: 36px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.tab-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.tab-buttons button {
  min-height: 56px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.tab-buttons button:last-child {
  border-right: 0;
}

.tab-buttons .active {
  color: #2a1d05;
  background: var(--gold-grad);
}

.tab-content {
  display: none;
  padding: 28px;
}

.tab-content.active {
  display: block;
  animation: fadeUp .28s ease both;
}

.timeline-section {
  background: var(--white);
}

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

.timeline::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-rich), var(--gold-deep));
}

.timeline-step {
  position: relative;
  padding: 24px;
}

.timeline-step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #2a1d05;
  background: var(--gold-grad);
  box-shadow: 0 6px 14px rgba(184,134,11,.32);
  font-weight: 900;
}

.security {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  background: linear-gradient(180deg, #fdf6e3, #f5e9c4);
}

.security-visual {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(38,50,61,.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.34)),
    repeating-linear-gradient(90deg, rgba(38,50,61,.05) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(38,50,61,.05) 0 1px, transparent 1px 42px);
  overflow: hidden;
}

.lock-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 122px;
  height: 102px;
  border-radius: 8px;
  background: var(--graphite);
  box-shadow: var(--shadow);
  transform: translate(-50%, -40%);
}

.lock-core span {
  position: absolute;
  top: -54px;
  width: 76px;
  height: 76px;
  border: 12px solid var(--graphite);
  border-bottom: 0;
  border-radius: 48px 48px 0 0;
}

.lock-core i {
  width: 18px;
  height: 34px;
  border-radius: 10px;
  background: var(--amber);
}

.orbit {
  position: absolute;
  inset: 55px;
  border: 1px solid rgba(212,160,23,.34);
  border-radius: 50%;
  animation: orbitSpin 14s linear infinite;
}

.orbit::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 60%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
}

.orbit-two {
  inset: 92px;
  border-color: rgba(244,168,50,.34);
  animation-duration: 18s;
  animation-direction: reverse;
}

.orbit-two::before {
  background: var(--amber);
}

.orbit-three {
  inset: 130px;
  border-color: rgba(217,79,69,.25);
  animation-duration: 11s;
}

.orbit-three::before {
  background: var(--red);
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

.security-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.security-grid span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.65);
  font-weight: 800;
}

.sla-box {
  margin-top: 28px;
  padding: 24px;
  border-left: 5px solid var(--gold-deep);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(22,32,42,.08);
}

.sla-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.network-map {
  position: relative;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(212,160,23,.22), transparent 34%),
    #fff;
  overflow: hidden;
}

.map-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 108px;
  min-height: 54px;
  padding: 10px;
  border: 1px solid rgba(38,50,61,.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(22,32,42,.1);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.map-node.main {
  top: 50%;
  left: 50%;
  color: #2a1d05;
  background: var(--gold-grad);
  box-shadow: 0 14px 30px rgba(184,134,11,.4);
  transform: translate(-50%, -50%);
}

.map-node.n1 { top: 16%; left: 13%; }
.map-node.n2 { top: 18%; right: 12%; }
.map-node.n3 { bottom: 17%; left: 16%; }
.map-node.n4 { right: 14%; bottom: 15%; }

.map-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, rgba(212,160,23,.06), rgba(212,160,23,.7));
  transform-origin: 0 50%;
}

.map-line::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  animation: dotTravel 2.6s linear infinite;
}

.l1 { transform: rotate(220deg); }
.l2 { transform: rotate(318deg); }
.l3 { transform: rotate(140deg); }
.l4 { transform: rotate(42deg); }

@keyframes dotTravel {
  from { right: 100%; opacity: 0; }
  15%, 85% { opacity: 1; }
  to { right: 0; opacity: 0; }
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: var(--graphite);
}

.proof-card {
  padding: 34px;
  color: #fff;
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.13);
}

.proof-card strong {
  display: block;
  margin-bottom: 10px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 64px;
  line-height: .9;
}

.proof-card span {
  color: rgba(255,255,255,.75);
  font-size: 17px;
  line-height: 1.45;
}

.cta-section {
  padding: 120px max(24px, calc((100vw - 1120px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(22,32,42,.96), rgba(120,82,8,.96)),
    #2a2418;
}

.cta-inner {
  max-width: 900px;
}

.cta-inner .eyebrow {
  color: var(--gold-light);
  text-shadow: 0 0 18px rgba(240,213,126,.4);
}

.cta-inner h2 {
  max-width: 860px;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 8px;
}

.contact-list a {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  font-weight: 750;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(24px, calc((100vw - 1120px) / 2));
  background: #111922;
  color: #fff;
}

.site-footer p {
  margin: 0;
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 950;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 18px 36px rgba(37, 211, 102, .34), 0 0 0 0 rgba(37, 211, 102, .3);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: whatsappPulse 2.4s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 44px rgba(37, 211, 102, .42), 0 0 0 10px rgba(37, 211, 102, .12);
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 18px 36px rgba(37, 211, 102, .34), 0 0 0 0 rgba(37, 211, 102, .3);
  }
  50% {
    box-shadow: 0 18px 36px rgba(37, 211, 102, .34), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

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

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

@media (max-width: 980px) {
  .hero,
  .split,
  .reverse,
  .security {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: start;
    padding-top: 140px;
  }

  .hero-panel {
    max-width: 420px;
    margin-top: 28px;
  }

  .trust-band,
  .proof,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }

  .reverse .section-copy {
    order: 0;
  }

  .impact-card {
    transform: none;
  }

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

  .mock-sidebar {
    display: none;
  }

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 42px rgba(22,32,42,.16);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 13px;
  }

  h1 {
    font-size: clamp(46px, 16vw, 74px);
  }

  .hero {
    min-height: auto;
    padding-bottom: 54px;
  }

  .section,
  .cta-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .trust-band,
  .proof,
  .timeline,
  .tab-buttons {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: auto;
    padding: 28px 24px;
  }

  .mock-kpis,
  .mock-workflow,
  .mock-table div {
    grid-template-columns: 1fr;
  }

  .mock-workflow span {
    text-align: left;
  }

  .security-visual,
  .network-map {
    min-height: 330px;
  }

  .map-node {
    width: 92px;
  }

  .map-line {
    width: 154px;
  }

  .site-footer {
    display: block;
  }

  .site-footer span {
    display: block;
    margin-top: 8px;
  }
}

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