:root {
  --navy-950: #061b33;
  --navy-900: #08213a;
  --navy-800: #102c49;
  --navy-700: #1c4667;
  --blue-600: #1578f2;
  --blue-500: #338cf5;
  --blue-100: #e8f0ff;
  --teal-600: #20a9a3;
  --green-600: #267a57;
  --green-100: #e8f6ef;
  --amber-600: #a55a12;
  --amber-100: #fff2df;
  --red-600: #b34848;
  --white: #fff;
  --grey-25: #fcfcfb;
  --grey-50: #f3f8fc;
  --grey-100: #eff5fa;
  --grey-200: #dae9f4;
  --grey-300: #c8d1db;
  --grey-500: #697684;
  --grey-600: #5e6b78;
  --ink: #16202a;
  --shadow-sm: 0 6px 20px rgba(11, 31, 51, 0.07);
  --shadow-md: 0 18px 48px rgba(11, 31, 51, 0.12);
  --shadow-lg: 0 30px 80px rgba(3, 14, 25, 0.2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1200px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: var(--navy-900);
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.13;
}

h1 {
  font-size: clamp(2.65rem, 5.2vw, 4.85rem);
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

p {
  color: var(--grey-600);
}

[hidden] {
  display: none !important;
}

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

.section {
  padding: 112px 0;
}

.section-soft {
  background: var(--grey-50);
  border-block: 1px solid rgba(220, 227, 234, 0.7);
}

.section-navy {
  color: var(--white);
  background: var(--navy-900);
}

.section-navy h2,
.section-navy h3,
.section-navy strong {
  color: var(--white);
}

.section-navy p {
  color: #b8c7d6;
}

.icon {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #78a4ff;
  outline-offset: 3px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.095em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 23px;
  height: 2px;
  background: currentColor;
}

.section-navy .eyebrow,
.home-hero .eyebrow,
.cta-band .eyebrow {
  color: #7ea7ff;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 54px;
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading > p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading.center > p {
  margin-inline: auto;
}

.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 54px;
}

.heading-row .section-heading {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

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

.button .icon,
.text-link .icon,
.card-link .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.18s ease;
}

.button:hover .icon,
.text-link:hover .icon,
.card-link:hover .icon {
  transform: translateX(3px);
}

.button-primary {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 9px 22px rgba(47, 111, 237, 0.25);
}

.button-primary:hover {
  background: #225fd4;
}

.button-secondary {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--grey-300);
}

.button-secondary:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
}

.button-light {
  color: var(--navy-900);
  background: var(--white);
}

.button-light:hover {
  background: #edf3ff;
}

.button-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.05);
}

.button-ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.09);
}

.button-large {
  min-height: 56px;
  padding-inline: 25px;
}

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.85rem;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-weight: 720;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 78px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 227, 234, 0.8);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease;
}

.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(11, 31, 51, 0.08);
}

.header-inner {
  display: flex;
  height: 78px;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  font-size: 1.15rem;
  font-weight: 790;
  letter-spacing: -0.025em;
}

.brand-logo {
  object-fit: cover;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(11, 31, 51, 0.08);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 5px;
  padding: 9px 10px;
  color: #344453;
  border: 0;
  background: transparent;
  font-size: 0.86rem;
  font-weight: 640;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-600);
}

.nav-link.active::after {
  position: absolute;
  right: 10px;
  bottom: 1px;
  left: 10px;
  height: 2px;
  content: "";
  background: var(--blue-600);
}

.dropdown-toggle .icon {
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
  transition: transform 0.18s ease;
}

.dropdown-toggle[aria-expanded="true"] .icon {
  transform: rotate(-90deg);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  visibility: hidden;
  width: 310px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}

.nav-dropdown.open .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.dropdown-link {
  display: block;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
}

.dropdown-link:hover,
.dropdown-link.active {
  background: var(--grey-50);
}

.dropdown-link span,
.dropdown-link small {
  display: block;
}

.dropdown-link span {
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 730;
}

.dropdown-link small {
  margin-top: 2px;
  color: var(--grey-500);
  font-size: 0.76rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.login-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #394b5b;
  font-size: 0.84rem;
  font-weight: 680;
  white-space: nowrap;
}

.login-link:hover {
  color: var(--blue-600);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.breadcrumbs {
  color: var(--grey-500);
  background: var(--grey-25);
  border-bottom: 1px solid var(--grey-200);
  font-size: 0.8rem;
}

.breadcrumbs ol {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs .icon {
  width: 13px;
  height: 13px;
}

.breadcrumbs a:hover {
  color: var(--blue-600);
}

.home-hero {
  position: relative;
  min-height: 790px;
  padding: 98px 0 112px;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, #000, transparent 75%);
}

.home-hero::before {
  position: absolute;
  top: -270px;
  left: 38%;
  width: 750px;
  height: 750px;
  content: "";
  background: radial-gradient(circle, rgba(47, 111, 237, 0.22), transparent 68%);
}

.home-hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
}

.home-hero-grid > * {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-copy h1 {
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(3rem, 4.3vw, 4.55rem);
  line-height: 1.03;
}

.hero-copy > p {
  max-width: 610px;
  margin-bottom: 34px;
  color: #c5d2df;
  font-size: 1.12rem;
}

.hero-copy > .hero-topic-links {
  margin-top: -16px;
  margin-bottom: 28px;
  color: #aebfce;
  font-size: .87rem;
}

.hero-topic-links a {
  color: var(--white);
  font-weight: 680;
  text-decoration-color: rgba(255,255,255,.45);
  text-underline-offset: 3px;
}

.hero-topic-links a:hover { color: #d9efff; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-login {
  display: inline-flex;
  gap: 8px;
  margin-top: 24px;
  color: #8fa2b5;
  font-size: 0.85rem;
}

.hero-login span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #dce7f2;
  font-weight: 680;
}

.hero-login .icon {
  width: 15px;
  height: 15px;
}

.hero-product {
  position: relative;
  width: 760px;
}

.product-composition {
  position: relative;
  min-height: 590px;
}

.browser-frame {
  position: absolute;
  top: 20px;
  left: 0;
  width: 690px;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  transform: perspective(1300px) rotateY(-3deg) rotateX(1deg);
}

.browser-bar {
  display: flex;
  height: 34px;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  background: #e9edf2;
}

.browser-bar > span {
  width: 7px;
  height: 7px;
  background: #b4bec8;
  border-radius: 50%;
}

.browser-address {
  width: 230px;
  margin-left: 12px;
  padding: 4px 10px;
  color: #72808c;
  background: rgba(255,255,255,.8);
  border-radius: 4px;
  font-size: 0.52rem;
}

.dashboard-shell {
  display: grid;
  min-height: 425px;
  background: #f5f7fa;
  grid-template-columns: 54px 1fr;
}

.dashboard-sidebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 8px;
  background: var(--navy-900);
  flex-direction: column;
}

.mini-logo {
  display: grid;
  width: 28px;
  height: 28px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 7px;
  font-size: 0.75rem;
  font-weight: 800;
  place-items: center;
}

.side-icon {
  display: grid;
  width: 30px;
  height: 30px;
  color: #728ba2;
  border-radius: 7px;
  place-items: center;
}

.side-icon.active {
  color: var(--white);
  background: rgba(79,131,241,.3);
}

.side-icon .icon {
  width: 14px;
  height: 14px;
}

.dashboard-main {
  padding: 21px 22px;
}

.dashboard-heading,
.panel-top,
.visual-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-heading small,
.dashboard-heading strong {
  display: block;
}

.dashboard-heading small {
  color: #84919c;
  font-size: 0.56rem;
}

.dashboard-heading strong {
  color: var(--navy-900);
  font-size: 1rem;
}

.dashboard-user {
  display: grid;
  width: 28px;
  height: 28px;
  color: var(--navy-900);
  background: #dce8ff;
  border-radius: 50%;
  font-size: 0.56rem;
  font-weight: 800;
  place-items: center;
}

.metric-row {
  display: grid;
  margin: 17px 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.metric {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: var(--white);
  border: 1px solid #e8edf2;
  border-radius: 8px;
}

.metric-icon {
  display: grid;
  width: 29px;
  height: 29px;
  border-radius: 7px;
  place-items: center;
}

.metric-icon .icon {
  width: 14px;
  height: 14px;
}

.metric-icon.blue { color: var(--blue-600); background: var(--blue-100); }
.metric-icon.green { color: var(--green-600); background: var(--green-100); }
.metric-icon.amber { color: var(--amber-600); background: var(--amber-100); }

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

.metric small {
  color: #82909c;
  font-size: 0.48rem;
}

.metric strong {
  color: var(--navy-900);
  font-size: 0.88rem;
}

.vehicle-panel,
.visual-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e1e7ed;
  border-radius: 9px;
}

.panel-top {
  padding: 12px 13px;
  border-bottom: 1px solid #e9edf2;
  font-size: 0.69rem;
}

.panel-top > span {
  display: flex;
  width: 150px;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  color: #8a96a1;
  background: #f8f9fa;
  border: 1px solid #e4e9ed;
  border-radius: 5px;
  font-size: 0.49rem;
}

.panel-top .icon {
  width: 10px;
  height: 10px;
}

.vehicle-row {
  display: grid;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid #edf0f3;
  font-size: 0.55rem;
  grid-template-columns: 31px 1.25fr .75fr .78fr 18px;
  gap: 8px;
}

.vehicle-row:last-child {
  border-bottom: 0;
}

.vehicle-avatar {
  display: grid;
  width: 27px;
  height: 27px;
  color: #557088;
  background: #eef2f5;
  border-radius: 6px;
  place-items: center;
}

.vehicle-avatar .icon {
  width: 14px;
  height: 14px;
}

.vehicle-name strong,
.vehicle-name small {
  display: block;
}

.vehicle-name strong {
  color: var(--navy-900);
  font-size: 0.62rem;
}

.vehicle-name small,
.plate {
  color: #7f8c98;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #50606e;
  font-size: 0.52rem;
  font-weight: 650;
}

.status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status.green i { background: #37a775; }
.status.blue i { background: var(--blue-600); }
.status.amber i { background: #dc8c2f; }
.status.green { color: var(--green-600); }
.status.blue { color: var(--blue-600); }
.status.amber { color: var(--amber-600); }

.row-arrow {
  color: #9da7b0;
}

.row-arrow .icon {
  width: 11px;
  height: 11px;
}

.phone-frame {
  position: absolute;
  z-index: 3;
  right: 11px;
  bottom: 0;
  width: 216px;
  padding: 8px;
  color: var(--ink);
  background: #07121e;
  border: 1px solid #536271;
  border-radius: 29px;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 50%;
  width: 46px;
  height: 5px;
  background: #07121e;
  border-radius: 10px;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 420px;
  padding: 22px 14px 15px;
  background: #f8f9fb;
  border-radius: 23px;
}

.mobile-app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mobile-app-top .mini-logo {
  width: 25px;
  height: 25px;
  font-size: .65rem;
}

.mobile-app-top .icon {
  width: 17px;
  height: 17px;
  color: var(--navy-900);
}

.phone-screen > small {
  color: #768592;
  font-size: .52rem;
}

.phone-screen > h3 {
  margin: 3px 0 12px;
  font-size: .93rem;
}

.car-illustration {
  display: grid;
  height: 72px;
  color: var(--navy-700);
  background: linear-gradient(145deg, #e8edf2, #f7f9fa);
  border-radius: 9px;
  place-items: center;
}

.car-illustration .icon {
  width: 50px;
  height: 50px;
  stroke-width: 1.1;
}

.photo-grid {
  display: grid;
  margin: 11px 0;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.photo-grid span {
  display: grid;
  height: 46px;
  color: #66809a;
  background: var(--white);
  border: 1px dashed #c8d2dc;
  border-radius: 6px;
  place-items: center;
}

.photo-grid span:nth-child(2) {
  color: var(--green-600);
  border-style: solid;
  border-color: #b9ddcd;
  background: #f2fbf6;
}

.photo-grid .icon {
  width: 13px;
  height: 13px;
}

.photo-grid small {
  margin-top: -9px;
  font-size: .45rem;
}

.mobile-progress {
  display: flex;
  gap: 4px;
  margin: 13px 0 9px;
}

.mobile-progress span {
  width: 20px;
  height: 3px;
  background: var(--blue-600);
  border-radius: 3px;
}

.mock-button {
  display: flex;
  min-height: 37px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 6px;
  font-size: .58rem;
  font-weight: 700;
}

.mock-button .icon {
  width: 12px;
  height: 12px;
}

.floating-status {
  position: absolute;
  z-index: 4;
  right: 110px;
  bottom: -16px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  color: var(--green-600);
  background: var(--white);
  border: 1px solid #cfe8dc;
  border-radius: 9px;
  box-shadow: var(--shadow-md);
}

.floating-status > .icon {
  width: 20px;
  height: 20px;
}

.floating-status strong,
.floating-status small {
  display: block;
}

.floating-status strong {
  color: var(--navy-900);
  font-size: .63rem;
}

.floating-status small {
  color: #788690;
  font-size: .5rem;
}

.trust-strip {
  position: relative;
  z-index: 5;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
}

.trust-grid {
  display: grid;
  min-height: 112px;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 26px;
  border-right: 1px solid var(--grey-200);
}

.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { padding-right: 0; border-right: 0; }
.trust-item > .icon { width: 23px; height: 23px; color: var(--blue-600); }
.trust-item strong,
.trust-item span { display: block; }
.trust-item strong { color: var(--navy-900); font-size: .84rem; }
.trust-item span { color: var(--grey-500); font-size: .74rem; }

.problem-section {
  background: var(--grey-25);
}

.comparison-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 56px 1fr;
  gap: 24px;
}

.comparison-card {
  min-height: 425px;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.comparison-card.before {
  background: #fbfafa;
}

.comparison-card.after {
  border-color: #cbdcfb;
  box-shadow: 0 16px 45px rgba(47,111,237,.1);
}

.comparison-label {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 5px 10px;
  color: var(--grey-600);
  background: var(--grey-100);
  border-radius: 4px;
  font-size: .69rem;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.after .comparison-label {
  color: var(--blue-600);
  background: var(--blue-100);
}

.comparison-card h3 {
  margin-bottom: 24px;
  font-size: 1.55rem;
}

.comparison-card ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card.before li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  color: var(--grey-600);
  border-bottom: 1px solid #e9e5e5;
}

.comparison-card.before li span {
  display: grid;
  width: 24px;
  height: 24px;
  color: var(--red-600);
  background: #f8eaea;
  border-radius: 50%;
  transform: rotate(45deg);
  place-items: center;
}

.comparison-card.before li .icon {
  width: 13px;
  height: 13px;
}

.comparison-arrow {
  display: grid;
  width: 56px;
  height: 56px;
  color: var(--blue-600);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  place-items: center;
}

.comparison-arrow .icon {
  width: 23px;
  height: 23px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 8px 0;
  color: #3f4e5a;
}

.check-list .icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  padding: 3px;
  color: var(--green-600);
  background: var(--green-100);
  border-radius: 50%;
  stroke-width: 2.2;
}

.process-section {
  position: relative;
  overflow: hidden;
}

.process-section::after {
  position: absolute;
  right: -250px;
  bottom: -350px;
  width: 700px;
  height: 700px;
  content: "";
  background: radial-gradient(circle, rgba(47,111,237,.16), transparent 65%);
}

.process-section .section-heading {
  position: relative;
  z-index: 1;
}

.process-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.process-timeline::before {
  position: absolute;
  top: 67px;
  right: 9%;
  left: 9%;
  height: 1px;
  content: "";
  background: linear-gradient(to right, rgba(126,167,255,.15), rgba(126,167,255,.65), rgba(126,167,255,.15));
}

.process-timeline li {
  position: relative;
  padding-right: 26px;
}

.process-number {
  margin-bottom: 16px;
  color: #71869a;
  font-size: .69rem;
  font-weight: 750;
  letter-spacing: .08em;
}

.process-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 25px;
  color: #93b4ff;
  background: var(--navy-800);
  border: 1px solid #305270;
  border-radius: 13px;
  box-shadow: 0 0 0 7px var(--navy-900);
  place-items: center;
}

.process-icon .icon {
  width: 27px;
  height: 27px;
}

.process-timeline h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.process-timeline p {
  margin: 0;
  font-size: .88rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 260px;
  padding: 29px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.feature-card:hover {
  border-color: #bdcff1;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.icon-box {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 25px;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 10px;
  place-items: center;
}

.icon-box .icon {
  width: 23px;
  height: 23px;
}

.feature-card h3 {
  margin-bottom: 11px;
}

.feature-card p {
  margin-bottom: 0;
  font-size: .93rem;
}

.feature-card .card-link {
  margin-top: 19px;
  font-size: .86rem;
}

.role-section {
  padding-top: 30px;
}

.role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.role-card {
  min-width: 0;
  overflow: hidden;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
}

.role-card.employee {
  background: #f1f6ff;
  border-color: #d4e1f9;
}

.role-card.admin {
  background: #f6f8fa;
}

.role-copy {
  padding: 42px 42px 26px;
}

.role-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 23px;
  color: var(--blue-600);
  font-size: .77rem;
  font-weight: 760;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.role-label .icon {
  width: 18px;
  height: 18px;
}

.role-copy h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.role-copy > p {
  margin-bottom: 15px;
}

.mobile-flow-visual {
  position: relative;
  height: 390px;
  padding-top: 40px;
  overflow: hidden;
}

.flow-phone {
  position: absolute;
  right: 8%;
  bottom: -30px;
  width: 238px;
  height: 405px;
  padding: 8px;
  background: var(--navy-950);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.flow-phone-back {
  right: auto;
  bottom: -65px;
  left: 9%;
  opacity: .8;
  transform: rotate(-5deg) scale(.9);
}

.flow-screen {
  height: 100%;
  padding: 30px 17px 20px;
  background: var(--white);
  border-radius: 23px;
}

.flow-screen > small {
  color: var(--blue-600);
  font-size: .6rem;
  font-weight: 700;
}

.flow-screen h3 {
  margin: 5px 0 19px;
  font-size: 1.1rem;
}

.mini-vehicle {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  padding: 10px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: 8px;
}

.mini-vehicle > span {
  display: grid;
  width: 32px;
  height: 32px;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 7px;
  place-items: center;
}

.mini-vehicle .icon { width: 16px; height: 16px; }
.mini-vehicle div { flex: 1; }
.mini-vehicle strong,
.mini-vehicle small { display: block; }
.mini-vehicle strong { font-size: .67rem; }
.mini-vehicle small { color: var(--grey-500); font-size: .51rem; }
.mini-vehicle i { width: 7px; height: 7px; background: #43a778; border-radius: 50%; }

.success-ring {
  display: grid;
  width: 90px;
  height: 90px;
  margin: 40px auto 23px;
  color: var(--green-600);
  background: var(--green-100);
  border: 1px solid #b9ddcd;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(232,246,239,.6);
  place-items: center;
}

.success-ring .icon { width: 36px; height: 36px; }
.flow-screen > p { text-align: center; font-size: .72rem; }

.history-card {
  padding: 28px;
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
}

.role-card .history-card {
  margin: 16px 32px 32px;
}

.visual-card-top {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--grey-200);
}

.visual-card-top small,
.visual-card-top h3 {
  display: block;
}

.visual-card-top small {
  color: var(--grey-500);
  font-size: .67rem;
}

.visual-card-top h3 {
  margin: 3px 0 0;
}

.visual-card-top .status {
  padding: 5px 9px;
  background: var(--green-100);
  border-radius: 20px;
}

.history-line {
  padding-top: 20px;
}

.history-event {
  position: relative;
  display: flex;
  gap: 14px;
  padding-bottom: 22px;
}

.history-event:not(:last-child)::before {
  position: absolute;
  top: 31px;
  bottom: 0;
  left: 15px;
  width: 1px;
  content: "";
  background: var(--grey-200);
}

.event-dot {
  position: relative;
  z-index: 1;
  display: grid;
  width: 31px;
  height: 31px;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 50%;
  place-items: center;
}

.event-dot.green { color: var(--green-600); background: var(--green-100); }
.event-dot.navy { color: var(--navy-800); background: #e8edf1; }
.event-dot .icon { width: 14px; height: 14px; }
.history-event strong,
.history-event p,
.history-event small { display: block; }
.history-event strong { font-size: .76rem; }
.history-event p { margin: 2px 0; font-size: .67rem; }
.history-event small { color: #919ca5; font-size: .58rem; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.audience-card {
  position: relative;
  min-height: 330px;
  padding: 29px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.audience-card:hover {
  border-color: #a9c2f3;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.audience-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 55px;
  color: var(--navy-800);
  background: var(--grey-100);
  border-radius: 10px;
  place-items: center;
}

.audience-icon .icon { width: 25px; height: 25px; }
.audience-card h3 { font-size: 1.4rem; }
.audience-card p { font-size: .9rem; }
.audience-card > span { position: absolute; bottom: 26px; display: inline-flex; align-items: center; gap: 8px; color: var(--blue-600); font-size: .83rem; font-weight: 720; }
.audience-card > span .icon { width: 16px; height: 16px; }

.split-content {
  display: grid;
  align-items: center;
  grid-template-columns: .92fr 1.08fr;
  gap: 90px;
}

.split-content.split-reverse .split-copy { order: 2; }
.split-content.split-reverse .split-visual { order: 1; }
.split-copy h2 { margin-bottom: 20px; }
.split-copy > p { margin-bottom: 25px; font-size: 1.04rem; }
.split-copy .check-list { margin-top: 15px; }
.split-visual { min-width: 0; }
.split-visual .history-card,
.split-visual .visual-card { box-shadow: var(--shadow-md); }

.security-teaser {
  padding-top: 0;
}

.security-panel {
  display: grid;
  align-items: center;
  padding: 47px 52px;
  background: #f0f5fb;
  border: 1px solid #d5e0ec;
  border-radius: var(--radius-lg);
  grid-template-columns: 82px 1fr auto;
  gap: 30px;
}

.security-symbol {
  display: grid;
  width: 68px;
  height: 68px;
  color: var(--blue-600);
  background: var(--white);
  border: 1px solid #d3dfed;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  place-items: center;
}

.security-symbol .icon { width: 32px; height: 32px; }
.security-copy h2 { margin-bottom: 12px; font-size: 1.75rem; }
.security-copy p { max-width: 700px; margin-bottom: 0; }

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 115px;
  align-self: start;
}

.faq-intro h2 { margin-bottom: 18px; }
.faq-intro .text-link { margin-top: 10px; }

.accordion-item {
  border-bottom: 1px solid var(--grey-300);
}

.accordion-item:first-child {
  border-top: 1px solid var(--grey-300);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-trigger {
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  color: var(--navy-900);
  border: 0;
  background: transparent;
  font-weight: 710;
  text-align: left;
}

.accordion-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--blue-600);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 50%;
  transition: transform .2s ease;
  place-items: center;
}

.accordion-icon .icon { width: 15px; height: 15px; }
.accordion-trigger[aria-expanded="true"] .accordion-icon { color: var(--white); background: var(--blue-600); transform: rotate(45deg); }
.accordion-panel { padding: 0 55px 24px 0; }
.accordion-panel p { margin: 0; }

.cta-section {
  padding: 88px 0;
}

.cta-band {
  position: relative;
  display: grid;
  align-items: center;
  padding: 63px 64px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  grid-template-columns: 1fr auto;
  gap: 45px;
  overflow: hidden;
}

.cta-band::before {
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 550px;
  height: 550px;
  content: "";
  background: radial-gradient(circle, rgba(47,111,237,.35), transparent 67%);
}

.cta-copy,
.cta-actions { position: relative; z-index: 1; }
.cta-copy h2 { max-width: 720px; margin-bottom: 16px; color: var(--white); font-size: clamp(2rem,3vw,2.8rem); }
.cta-copy p { max-width: 680px; margin-bottom: 0; color: #bccbd8; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; min-width: 225px; }

.internal-hero {
  position: relative;
  min-height: 600px;
  padding: 92px 0 100px;
  background: linear-gradient(145deg, #f6f8fb 0%, #edf3fa 100%);
  overflow: hidden;
}

.internal-hero::before {
  position: absolute;
  top: -300px;
  right: -240px;
  width: 700px;
  height: 700px;
  content: "";
  background: radial-gradient(circle, rgba(47,111,237,.12), transparent 68%);
}

.internal-hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr .9fr;
  gap: 80px;
}

.internal-hero-copy {
  max-width: 700px;
}

.internal-hero-copy h1 {
  margin-bottom: 25px;
  font-size: clamp(2.85rem, 5vw, 4.55rem);
}

.internal-hero-copy > p {
  max-width: 650px;
  margin-bottom: 33px;
  font-size: 1.13rem;
}

.internal-hero-copy > p a {
  color: var(--blue-700);
  font-weight: 680;
  text-decoration: underline;
  text-decoration-color: rgba(24, 95, 160, .45);
  text-underline-offset: 3px;
}

.internal-hero .button-ghost-light {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--grey-300);
}

.hero-symbol {
  position: relative;
  display: grid;
  width: 330px;
  height: 330px;
  margin: auto;
  color: var(--blue-600);
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(200,213,226,.8);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  place-items: center;
}

.hero-symbol > .icon { width: 120px; height: 120px; stroke-width: 1; }
.hero-symbol span { position: absolute; inset: -22px; border: 1px dashed #b8c9da; border-radius: 50%; }

.internal-product-stack {
  position: relative;
  padding: 20px 0 30px;
}

.internal-product-stack .compact-dashboard {
  box-shadow: var(--shadow-md);
  transform: rotate(1deg);
}

.stack-badge {
  position: absolute;
  right: -12px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  color: var(--green-600);
  background: var(--white);
  border: 1px solid #c9e7d8;
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
  font-size: .78rem;
  font-weight: 720;
}

.anchor-nav {
  position: sticky;
  z-index: 100;
  top: 78px;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--grey-200);
  box-shadow: 0 5px 18px rgba(11,31,51,.04);
}

.anchor-nav .container {
  display: flex;
  min-height: 60px;
  align-items: center;
  gap: 34px;
  overflow-x: auto;
  scrollbar-width: none;
}

.anchor-nav a {
  flex: 0 0 auto;
  color: #50606e;
  font-size: .87rem;
  font-weight: 660;
}

.anchor-nav a:hover { color: var(--blue-600); }

.visual-feature-grid {
  display: grid;
  margin-bottom: 24px;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.visual-feature-grid > div > .visual-card {
  min-height: 450px;
  box-shadow: var(--shadow-sm);
}

.compact-dashboard {
  padding: 27px;
}

.compact-dashboard .vehicle-row {
  min-height: 67px;
  font-size: .72rem;
  grid-template-columns: 40px 1.25fr .8fr .8fr 18px;
}

.compact-dashboard .vehicle-avatar { width: 36px; height: 36px; }
.compact-dashboard .vehicle-name strong { font-size: .78rem; }
.compact-dashboard .vehicle-name small,
.compact-dashboard .plate,
.compact-dashboard .status { font-size: .66rem; }

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: var(--grey-600);
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: 6px;
  font-size: .65rem;
}

.filter-chip .icon { width: 11px; height: 11px; transform: rotate(90deg); }

.damage-visual {
  padding: 27px;
}

.damage-visual .visual-card-top .status { background: var(--amber-100); }

.damage-photo {
  display: block;
  overflow: hidden;
  height: 165px;
  margin: 22px 0 17px;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: 9px;
}

.damage-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.damage-photo-closeup img { object-position: 42% center; }

.damage-meta {
  display: grid;
  margin-bottom: 13px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.damage-meta div,
.note-box {
  padding: 12px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: 7px;
}

.damage-meta small,
.damage-meta strong,
.note-box small { display: block; }
.damage-meta small,
.note-box small { color: var(--grey-500); font-size: .58rem; }
.damage-meta strong { font-size: .74rem; }
.note-box p { margin: 4px 0 0; font-size: .69rem; }

.definition-card {
  position: relative;
  max-width: 430px;
  margin-left: auto;
  padding: 50px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.definition-card::after {
  position: absolute;
  right: -100px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  content: "";
  background: radial-gradient(circle, rgba(47,111,237,.48), transparent 67%);
}

.definition-card > span {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 65px;
  color: #9ab9ff;
  background: var(--navy-800);
  border: 1px solid #315574;
  border-radius: 14px;
  place-items: center;
}

.definition-card > span .icon { width: 31px; height: 31px; }
.definition-card small { color: #91a5b7; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.definition-card h2 { position: relative; z-index: 1; margin: 8px 0 13px; color: var(--white); font-size: 2rem; }
.definition-card p { position: relative; z-index: 1; margin: 0; color: #c2cfdb; }

.article-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 90px;
}

.article-content {
  max-width: 730px;
}

.article-content h2 { margin-bottom: 25px; }
.article-content h3 { margin: 40px 0 14px; font-size: 1.45rem; }
.article-content p { font-size: 1.03rem; }
.article-aside { align-self: start; }

.info-panel {
  padding: 30px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
}

.info-panel h3 { margin-bottom: 12px; }
.info-panel > p:empty { display: none; }

.difference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.difference-grid article {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
}

.difference-grid article.highlight {
  border-color: #abc4f5;
  box-shadow: var(--shadow-sm);
}

.difference-icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 55px;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 12px;
  place-items: center;
}

.difference-icon.muted { color: var(--grey-600); background: var(--grey-100); }
.difference-icon .icon { width: 27px; height: 27px; }
.difference-grid h3 { font-size: 1.55rem; }

.implementation-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 100px;
}

.implementation-grid > div { align-self: start; position: sticky; top: 130px; }
.implementation-grid h2 { margin-bottom: 20px; }
.implementation-steps { margin: 0; padding: 0; list-style: none; }
.implementation-steps li { display: grid; padding: 25px 0; border-bottom: 1px solid #29465f; grid-template-columns: 70px 1fr; gap: 20px; }
.implementation-steps li:first-child { border-top: 1px solid #29465f; }
.implementation-steps > li > span { color: #7290aa; font-size: .76rem; font-weight: 760; letter-spacing: .08em; }
.implementation-steps h3 { margin-bottom: 8px; }
.implementation-steps p { margin: 0; }

.sector-visual {
  position: relative;
  width: 390px;
  height: 390px;
  margin: auto;
}

.sector-main {
  position: absolute;
  inset: 48px;
  display: grid;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  place-content: center;
  text-align: center;
}

.sector-main .icon { width: 82px; height: 82px; margin: 0 auto 20px; color: #8fb0fa; stroke-width: 1.1; }
.sector-main span { max-width: 180px; color: #d9e3ec; font-size: .78rem; font-weight: 700; }

.sector-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  font-size: .72rem;
  font-weight: 720;
}

.sector-chip .icon { width: 17px; height: 17px; color: var(--blue-600); }
.sector-chip.one { top: 20px; left: 5px; }
.sector-chip.two { top: 115px; right: -12px; }
.sector-chip.three { bottom: 24px; left: 5px; }

.role-summary {
  display: grid;
  align-items: center;
  padding: 45px 50px;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.role-summary h2 { color: var(--white); }
.role-summary p { color: #b7c7d4; }
.role-summary .related-copy { margin-top: 15px; font-size: .92rem; }
.role-summary .related-copy a { color: var(--white); font-weight: 680; text-decoration-color: rgba(255,255,255,.45); text-underline-offset: 3px; }

.mini-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mini-flow > div {
  display: grid;
  min-width: 96px;
  min-height: 100px;
  padding: 15px;
  color: #a8c0d5;
  background: var(--navy-800);
  border: 1px solid #315573;
  border-radius: 10px;
  place-items: center;
}

.mini-flow > div > .icon { width: 28px; height: 28px; }
.mini-flow > div span { color: var(--white); font-size: .67rem; font-weight: 680; }
.mini-flow > .icon { width: 17px; height: 17px; color: #69839a; }

.note-section { padding: 0 0 35px; }
.caution-note { display: flex; align-items: flex-start; gap: 14px; padding: 18px 22px; background: #fbfaf6; border: 1px solid #e8dfca; border-radius: 9px; }
.caution-note > .icon { width: 21px; height: 21px; margin-top: 3px; color: var(--amber-600); }
.caution-note p { margin: 0; color: #625c50; font-size: .88rem; }

.context-chain {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  gap: 10px;
}

.context-chain > div {
  display: grid;
  min-height: 190px;
  padding: 25px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  place-content: center;
  text-align: center;
}

.context-chain > div .icon { width: 35px; height: 35px; margin: 0 auto 20px; color: var(--blue-600); }
.context-chain > div strong,
.context-chain > div span { display: block; }
.context-chain > div span { margin-top: 5px; color: var(--grey-500); font-size: .78rem; }
.context-chain > i { display: grid; color: var(--grey-300); place-items: center; }
.context-chain > i .icon { width: 18px; height: 18px; }

.legal-clarity {
  display: flex;
  max-width: 900px;
  align-items: center;
  gap: 28px;
}

.legal-icon {
  display: grid;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  color: var(--blue-600);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 15px;
  place-items: center;
}

.legal-icon .icon { width: 34px; height: 34px; }
.legal-clarity h2 { margin-bottom: 12px; font-size: 2rem; }
.legal-clarity p { margin: 0; }

.security-hero-symbol {
  position: relative;
  display: grid;
  width: 270px;
  height: 270px;
  margin: auto;
  color: var(--blue-600);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  place-items: center;
}

.security-hero-symbol > .icon { width: 105px; height: 105px; stroke-width: 1.2; }
.orbit { position: absolute; display: grid; width: 55px; height: 55px; color: var(--navy-800); background: var(--white); border: 1px solid var(--grey-200); border-radius: 50%; box-shadow: var(--shadow-sm); place-items: center; }
.orbit .icon { width: 23px; height: 23px; }
.orbit.one { top: 0; right: 5px; }
.orbit.two { bottom: 20px; right: -10px; }
.orbit.three { bottom: -5px; left: 10px; }

.feature-grid-three { grid-template-columns: repeat(3, 1fr); }
.procurement-table { overflow: hidden; background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.table-row { display: grid; min-height: 68px; align-items: center; padding: 12px 20px; border-bottom: 1px solid var(--grey-200); grid-template-columns: .8fr 1fr 1fr; gap: 20px; }
.table-row:last-child { border-bottom: 0; }
.table-row > div { color: var(--grey-600); font-size: .86rem; }
.table-row strong { color: var(--navy-900); }
.table-head { min-height: 54px; color: var(--white); background: var(--navy-900); }
.table-head > div { color: #cbd7e1; font-size: .73rem; font-weight: 730; letter-spacing: .05em; text-transform: uppercase; }

.security-checklist {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.story-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 100px;
}

.story-copy p { font-size: 1.12rem; }

.about-mark {
  display: flex;
  width: 360px;
  min-height: 310px;
  align-items: center;
  justify-content: center;
  margin: auto;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  flex-direction: column;
}

.about-mark img { margin-bottom: 20px; }
.about-mark span { color: var(--navy-900); font-size: 1.5rem; font-weight: 780; }
.about-mark small { color: var(--grey-500); }

.principles {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 90px;
}

.principle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.principle-grid article { padding: 26px; background: var(--navy-800); border: 1px solid #315472; border-radius: var(--radius-md); }
.principle-grid article > span { display: grid; width: 42px; height: 42px; margin-bottom: 30px; color: #96b5fa; background: rgba(255,255,255,.06); border-radius: 8px; place-items: center; }
.principle-grid article > span .icon { width: 21px; height: 21px; }
.principle-grid article h3 { margin-bottom: 10px; }
.principle-grid article p { margin: 0; font-size: .88rem; }

.ambition-panel { display: grid; align-items: start; grid-template-columns: 180px 1fr; gap: 70px; }
.ambition-number { color: var(--blue-100); font-size: 8rem; font-weight: 800; letter-spacing: -.08em; line-height: .9; }
.ambition-panel h2 { max-width: 800px; }
.ambition-panel p { max-width: 760px; font-size: 1.05rem; }

.contact-hero-card {
  max-width: 390px;
  margin-left: auto;
  padding: 43px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-hero-card > .icon { width: 47px; height: 47px; margin-bottom: 55px; color: #8eb0fc; }
.contact-hero-card h2 { color: var(--white); font-size: 1.75rem; }
.contact-hero-card p { margin: 0; color: #bac9d6; }

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 1.35fr .65fr;
  gap: 70px;
}

.contact-form-wrap > h2 { margin-bottom: 12px; }
.contact-form-wrap > p { margin-bottom: 37px; }
.contact-form { display: grid; gap: 22px; }
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; }
.form-field label { margin-bottom: 7px; color: var(--navy-900); font-size: .84rem; font-weight: 700; }
.form-field label span { color: var(--grey-500); font-weight: 500; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-sm);
  transition: border-color .16s ease, box-shadow .16s ease;
}

.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: #9cabb8; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(47,111,237,.13); outline: 0; }
.form-field [aria-invalid="true"] { border-color: var(--red-600); box-shadow: 0 0 0 3px rgba(179,72,72,.1); }
.field-hint,
.field-error { margin-top: 5px; font-size: .73rem; }
.field-hint { color: var(--grey-500); }
.field-error { color: var(--red-600); font-weight: 620; }
.field-error:empty { display: none; }

.checkbox-field {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
}

.checkbox-field input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--blue-600); }
.checkbox-field label { color: #4b5b68; font-size: .82rem; }
.checkbox-field label a { color: var(--blue-600); text-decoration: underline; text-underline-offset: 2px; }
.checkbox-field .field-error { grid-column: 2; margin-top: -6px; }

.form-submit { display: flex; align-items: center; gap: 18px; }
.form-submit > span { display: flex; max-width: 310px; align-items: flex-start; gap: 7px; color: var(--grey-500); font-size: .72rem; }
.form-submit > span .icon { width: 15px; height: 15px; margin-top: 2px; }

.form-status { padding: 16px 18px; border-radius: 8px; font-size: .86rem; }
.form-status.is-pending { color: #5a4b31; background: var(--amber-100); border: 1px solid #e8cca0; }
.form-status.is-success { color: #1f684d; background: #eef9f4; border: 1px solid #b8dfce; }
.form-status.is-error { color: #843838; background: #fff4f4; border: 1px solid #e7bcbc; }
.form-submit button:disabled { cursor: wait; opacity: .72; }

.contact-aside { display: grid; gap: 22px; }
.contact-info-card,
.next-steps { padding: 30px; background: var(--grey-50); border: 1px solid var(--grey-200); border-radius: var(--radius-md); }
.contact-info-card .icon-box { margin-bottom: 35px; }
.contact-info-card h2,
.next-steps h2 { font-size: 1.45rem; }
.contact-info-card > p { font-size: .88rem; }
.integration-note { display: flex; gap: 10px; padding: 12px; background: var(--amber-100); border: 1px solid #ead0a5; border-radius: 7px; }
.integration-note > .icon { width: 18px; height: 18px; margin-top: 2px; color: var(--amber-600); }
.integration-note strong,
.integration-note span { display: block; }
.integration-note strong { color: #6d481f; font-size: .75rem; }
.integration-note span { color: #7a654b; font-size: .68rem; }

.next-steps ol { margin: 0; padding: 0; list-style: none; }
.next-steps li { display: grid; padding: 16px 0; border-bottom: 1px solid var(--grey-200); grid-template-columns: 34px 1fr; gap: 12px; }
.next-steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.next-steps li > span { display: grid; width: 28px; height: 28px; color: var(--blue-600); background: var(--blue-100); border-radius: 50%; font-size: .7rem; font-weight: 750; place-items: center; }
.next-steps strong { font-size: .82rem; }
.next-steps p { margin: 3px 0 0; font-size: .75rem; }

.legal-hero {
  padding: 88px 0;
  background: var(--grey-50);
  border-bottom: 1px solid var(--grey-200);
}

.legal-hero-copy { max-width: 840px; }
.legal-hero h1 { margin-bottom: 23px; font-size: clamp(2.7rem,4vw,4rem); }
.legal-hero p { max-width: 760px; font-size: 1.08rem; }
.review-label { display: inline-flex; margin-top: 12px; padding: 7px 10px; color: #72582e; background: var(--amber-100); border: 1px solid #ead2aa; border-radius: 5px; font-size: .7rem; font-weight: 650; }

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 90px;
}

.legal-nav {
  position: sticky;
  top: 110px;
  display: flex;
  align-self: start;
  padding-left: 17px;
  border-left: 2px solid var(--grey-200);
  flex-direction: column;
}

.legal-nav strong { margin-bottom: 12px; color: var(--navy-900); font-size: .74rem; letter-spacing: .05em; text-transform: uppercase; }
.legal-nav a { padding: 5px 0; color: var(--grey-500); font-size: .8rem; }
.legal-nav a:hover { color: var(--blue-600); }
.legal-content { max-width: 770px; }
.legal-content section { margin-bottom: 55px; scroll-margin-top: 115px; }
.legal-content section:last-child { margin-bottom: 0; }
.legal-content h2 { margin-bottom: 18px; font-size: 1.8rem; }
.legal-content h3 { margin: 30px 0 10px; }
.legal-content p { font-size: 1rem; }
.legal-callout { display: flex; gap: 12px; margin: 25px 0; padding: 17px 18px; background: var(--grey-50); border: 1px solid var(--grey-200); border-radius: 8px; }
.legal-callout .icon { width: 21px; height: 21px; margin-top: 2px; color: var(--blue-600); }
.legal-callout p { margin: 0; font-size: .86rem; }
.cookie-status { display: flex; gap: 16px; margin: 25px 0; padding: 22px; background: var(--green-100); border: 1px solid #c2e3d2; border-radius: 9px; }
.cookie-status > span { display: grid; width: 38px; height: 38px; flex: 0 0 auto; color: var(--green-600); background: var(--white); border-radius: 50%; place-items: center; }
.cookie-status > span .icon { width: 20px; height: 20px; }
.cookie-status strong { color: #1f6147; }
.cookie-status p { margin: 3px 0 0; color: #4b6f60; font-size: .83rem; }

.utility-body { background: var(--grey-50); }
.utility-body .site-header,
.utility-body .site-footer { display: none; }
.utility-page { display: grid; min-height: 100vh; padding: 50px 24px; place-items: center; }
.utility-card { width: min(100%, 590px); padding: 50px; background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); text-align: center; }
.utility-card .brand { margin-bottom: 45px; }
.utility-icon { display: grid; width: 72px; height: 72px; margin: 0 auto 25px; color: var(--blue-600); background: var(--blue-100); border-radius: 17px; place-items: center; }
.utility-icon .icon { width: 34px; height: 34px; }
.utility-card h1 { margin-bottom: 18px; font-size: 2.4rem; }
.utility-card > p { margin-bottom: 28px; }
.utility-notice { display: flex; gap: 10px; margin-bottom: 25px; padding: 14px; color: #6b5130; background: var(--amber-100); border: 1px solid #e9cfa3; border-radius: 8px; text-align: left; }
.utility-notice .icon { width: 19px; height: 19px; margin-top: 2px; flex: 0 0 auto; }
.utility-notice span { font-size: .78rem; }
.utility-notice code { padding: 2px 4px; background: rgba(255,255,255,.7); border-radius: 3px; }
.utility-card .text-link { display: flex; justify-content: center; margin-top: 22px; font-size: .82rem; }
.error-code { color: var(--blue-100); font-size: 8rem; font-weight: 830; letter-spacing: -.08em; line-height: .9; }
.utility-card .hero-actions { justify-content: center; }

.site-footer {
  padding: 80px 0 0;
  color: #c0ccd7;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  padding-bottom: 65px;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: 65px;
}

.brand-light { color: var(--white); }
.footer-brand > p { max-width: 340px; margin: 25px 0; color: #94a6b6; font-size: .87rem; }
.footer-login { display: inline-flex; align-items: center; gap: 8px; color: #c9d6e1; font-size: .8rem; font-weight: 680; }
.footer-login:hover { color: var(--white); }
.footer-column { display: flex; flex-direction: column; gap: 9px; }
.footer-column h2 { margin-bottom: 10px; color: var(--white); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-column a { color: #94a6b6; font-size: .82rem; }
.footer-column a:hover { color: var(--white); }
.footer-bottom { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid #21384d; }
.footer-bottom p { margin: 0; color: #788da0; font-size: .75rem; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a { color: #788da0; font-size: .75rem; }
.footer-bottom a:hover { color: var(--white); }

/* PDF-derived product presentation */
.real-product-composition {
  position: relative;
  width: 100%;
  min-height: 590px;
}

.real-browser-frame {
  position: absolute;
  top: 40px;
  left: 0;
  width: min(720px, 94%);
  overflow: hidden;
  background: #f7f9fc;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.real-browser-frame > img {
  width: 100%;
  height: auto;
}

.real-phone-frame {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 4px;
  width: 220px;
  height: 455px;
  padding: 9px;
  overflow: hidden;
  background: #071727;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 36px;
  box-shadow: 0 30px 70px rgba(0,0,0,.38);
  transform: rotate(2deg);
}

.real-phone-frame::before {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 50%;
  width: 68px;
  height: 7px;
  content: "";
  background: #071727;
  border-radius: 999px;
  transform: translateX(-50%);
}

.real-phone-frame img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 28px;
}

.example-badge {
  position: absolute;
  z-index: 3;
  right: 132px;
  bottom: 20px;
  padding: 9px 13px;
  color: #dbe7f2;
  background: rgba(6,27,51,.9);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  font-size: .68rem;
  font-weight: 700;
}

.benefit-bridge {
  position: relative;
  z-index: 4;
  padding: 0 0 70px;
  background: var(--grey-50);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  transform: translateY(-46px);
}

.benefit-card {
  display: grid;
  min-height: 154px;
  align-items: start;
  padding: 27px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  grid-template-columns: 52px 1fr;
  gap: 17px;
}

.benefit-card > span {
  display: grid;
  width: 52px;
  height: 52px;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 14px;
  place-items: center;
}

.benefit-card:nth-child(2) > span { color: var(--teal-600); background: #e7f8f6; }
.benefit-card:nth-child(3) > span { color: #6558e8; background: #eeedff; }
.benefit-card > span .icon { width: 27px; height: 27px; }
.benefit-card h3 { margin: 2px 0 8px; font-size: 1.28rem; }
.benefit-card p { margin: 0; font-size: .86rem; line-height: 1.55; }

.product-proof-grid,
.mobile-proof-grid {
  display: grid;
  align-items: center;
  grid-template-columns: .78fr 1.22fr;
  gap: 76px;
}

.product-proof-copy h2,
.mobile-proof-copy h2 { margin-bottom: 22px; }
.product-proof-copy > p,
.mobile-proof-copy > p { margin-bottom: 26px; font-size: 1.03rem; }
.product-proof-copy .text-link { margin-top: 23px; }

.product-shot {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.product-shot > img { width: 100%; height: auto; }
.product-shot figcaption,
.photo-flow-shot figcaption {
  padding: 11px 15px;
  color: var(--grey-500);
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  font-size: .7rem;
  line-height: 1.45;
}

.shot-browser-bar {
  display: flex;
  height: 38px;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  background: #e9eff5;
}

.shot-browser-bar i { width: 8px; height: 8px; background: #acbac7; border-radius: 50%; }
.shot-browser-bar span { margin-left: 8px; color: #71808d; font-size: .62rem; }

.mobile-proof-section { overflow: hidden; }
.mobile-proof-grid { grid-template-columns: .82fr 1.18fr; }
.mobile-proof-copy h2 { color: var(--white); }
.mobile-proof-copy > p { color: #b8c7d6; }

.phone-gallery {
  position: relative;
  min-height: 650px;
}

.phone-gallery > p {
  position: absolute;
  right: 4%;
  bottom: 12px;
  margin: 0;
  padding: 7px 10px;
  color: #b8c7d6;
  background: rgba(255,255,255,.07);
  border-radius: 6px;
  font-size: .68rem;
}

.product-phone {
  position: absolute;
  top: 10px;
  width: 285px;
  height: 610px;
  margin: 0;
  padding: 9px;
  overflow: hidden;
  background: #061729;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 39px;
  box-shadow: var(--shadow-lg);
}

.product-phone img { width: 100%; height: auto; border-radius: 31px; }
.product-phone.secondary { left: 5%; opacity: .82; transform: rotate(-5deg) scale(.9); }
.product-phone.primary { z-index: 2; right: 8%; transform: rotate(3deg); }

.angle-steps,
.pilot-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.angle-steps {
  display: grid;
  max-width: 900px;
  margin: 0 auto 42px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.angle-steps li {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 10px 14px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 10px;
  font-size: .84rem;
  font-weight: 720;
}

.angle-steps span,
.pilot-steps > li > span {
  display: grid;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 50%;
  font-size: .72rem;
  place-items: center;
}

.photo-proof-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: 290px 1fr;
  gap: 28px;
}

.photo-flow-shot,
.before-after-shots figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.photo-flow-shot { height: 545px; }
.photo-flow-shot img { width: 100%; height: 492px; object-fit: cover; object-position: top; }
.before-after-shots { display: grid; grid-template-rows: 1fr 1fr; gap: 22px; }
.before-after-shots figure { position: relative; min-height: 250px; }
.before-after-shots img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.before-after-shots figure > span { position: absolute; z-index: 2; top: 14px; left: 14px; padding: 7px 10px; color: var(--white); background: var(--navy-950); border-radius: 6px; font-size: .72rem; font-weight: 720; }

.damage-report-section .product-proof-grid { grid-template-columns: 1.2fr .8fr; }
.report-shot img { aspect-ratio: 1.8 / 1; object-fit: cover; object-position: top; }

.pilot-section { background: var(--white); }
.pilot-steps {
  position: relative;
  display: grid;
  max-width: 1050px;
  margin-inline: auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pilot-steps::before {
  position: absolute;
  z-index: 0;
  top: 31px;
  right: 11%;
  left: 11%;
  height: 2px;
  content: "";
  background: var(--grey-200);
}

.pilot-steps li {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  text-align: center;
}

.pilot-steps > li > span {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  border: 7px solid var(--white);
  box-shadow: 0 0 0 1px var(--grey-200);
  font-size: .9rem;
  font-weight: 800;
}

.pilot-steps li:last-child > span { background: var(--teal-600); }
.pilot-steps h3 { margin-bottom: 9px; }
.pilot-steps p { margin: 0; font-size: .83rem; }

.verified-contact {
  display: flex;
  margin: 22px 0;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 10px;
  flex-direction: column;
}

.verified-contact strong { color: var(--navy-900); font-size: 1rem; }
.verified-contact span { color: var(--grey-500); font-size: .78rem; }
.verified-contact a { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--blue-600); font-size: 1.18rem; font-weight: 780; }
.verified-contact a .icon { width: 20px; height: 20px; }
.verified-contact .email-link { font-size: .86rem; overflow-wrap: anywhere; }
.contact-info-card .contact-limit { font-size: .75rem; }

/* Skadeforebyggelse og SEO-guides */
.text-link-group {
  display: flex;
  align-items: flex-start;
  margin-top: 23px;
  flex-direction: column;
  gap: 10px;
}

.text-link-group .text-link { margin-top: 0; }

.prevention-dashboard-frame,
.prevention-photo,
.tailored-hero-photo {
  align-self: center;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.prevention-dashboard-frame img,
.prevention-photo img,
.tailored-hero-photo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto !important;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  image-rendering: auto;
}

.prevention-dashboard-frame figcaption,
.prevention-photo figcaption,
.tailored-hero-photo figcaption {
  padding: 12px 16px;
  color: var(--grey-500);
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  font-size: .7rem;
  line-height: 1.45;
}

.prevention-dashboard-frame.hero-dashboard {
  width: 660px;
  max-width: 100%;
}

.dashboard-showcase { overflow: hidden; }
.dashboard-showcase-copy { max-width: 780px; margin: 0 auto 45px; text-align: center; }
.dashboard-showcase-copy .eyebrow { justify-content: center; }
.dashboard-showcase-copy h2 { margin-bottom: 18px; }
.dashboard-showcase-copy p { margin-bottom: 0; font-size: 1.05rem; }
.prevention-dashboard-frame.full-dashboard { border-radius: 18px; box-shadow: 0 25px 70px rgba(11,31,51,.14); }
.prevention-dashboard-frame.full-dashboard figcaption { text-align: center; }

.prevention-teaser { padding-top: 78px; padding-bottom: 78px; background: linear-gradient(135deg, #f4f8fd, #eaf3fb); border-block: 1px solid var(--grey-200); }
.prevention-teaser-grid { display: grid; align-items: center; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.prevention-teaser-grid h2 { margin-bottom: 18px; }
.prevention-teaser-grid p { margin-bottom: 25px; }

.split-reverse > .prevention-photo { order: 1; }
.split-reverse > .split-copy { order: 2; }
.split-content > .prevention-photo,
.split-content > .prevention-dashboard-frame { min-width: 0; }
.split-copy .data-note { margin-top: 24px; padding: 14px 16px; color: #4d6477; background: #eef7f7; border: 1px solid #cce8e6; border-radius: var(--radius-sm); font-size: .78rem; }
.split-copy > .text-link,
.split-copy > .button { margin-top: 22px; }

.prevention-steps li { color: var(--white); }
.prevention-steps p { color: #b8c7d6; }
.prevention-steps > li > span { color: var(--white); }

.guide-link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.guide-link-grid > a {
  display: grid;
  min-height: 220px;
  align-items: start;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 52px 1fr 24px;
  gap: 20px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.guide-link-grid > a:hover { border-color: #9fc1fb; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.guide-link-grid > a > span { display: grid; width: 52px; height: 52px; color: var(--blue-600); background: var(--blue-100); border-radius: 12px; place-items: center; }
.guide-link-grid > a > span .icon { width: 25px; height: 25px; }
.guide-link-grid > a > .icon { width: 21px; height: 21px; margin-top: 5px; color: var(--blue-600); }
.guide-link-grid small { color: var(--blue-600); font-size: .69rem; font-weight: 760; letter-spacing: .07em; text-transform: uppercase; }
.guide-link-grid h3 { margin: 7px 0 10px; font-size: 1.35rem; }
.guide-link-grid p { margin: 0; font-size: .86rem; }

.selection-hero {
  display: grid;
  min-height: 330px;
  align-content: center;
  justify-items: center;
  padding: 45px;
  color: var(--white);
  background: radial-gradient(circle at top right, rgba(78,139,255,.55), transparent 38%), var(--navy-900);
  border: 1px solid #315472;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.selection-hero > .icon { width: 78px; height: 78px; margin-bottom: 25px; padding: 19px; color: #8bb1ff; background: rgba(255,255,255,.06); border-radius: 50%; }
.selection-hero strong { color: var(--white); font-size: 1.65rem; }
.selection-hero span { max-width: 330px; margin-top: 10px; color: #b8c7d6; font-size: .82rem; }
.selection-table .table-row { grid-template-columns: .55fr 1fr 1fr; }
.prevention-dashboard-frame.guide-dashboard,
.prevention-dashboard-frame.tailored-dashboard { align-self: center; }

.fit-cta {
  display: grid;
  align-items: center;
  padding: 48px 52px;
  background: linear-gradient(135deg, #eef5ff, #f6fbff);
  border: 1px solid #d4e3f6;
  border-radius: var(--radius-lg);
  grid-template-columns: 1fr auto;
  gap: 45px;
}

.fit-cta small { color: var(--blue-600); font-size: .72rem; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.fit-cta h2 { max-width: 800px; margin: 8px 0 12px; font-size: clamp(1.8rem,3vw,2.65rem); }
.fit-cta p { max-width: 760px; margin: 0; }
.tailored-hero-photo { width: 610px; max-width: 100%; }
.tailored-chain > i .icon { transform: none; }

/* Research and knowledge pages */
.research-stat-card,
.decision-hero {
  display: grid;
  min-height: 300px;
  align-content: center;
  padding: 42px;
  color: var(--white);
  background: radial-gradient(circle at top right, rgba(72,137,255,.48), transparent 42%), var(--navy-900);
  border: 1px solid #315472;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.research-stat-card.blue { background: radial-gradient(circle at top right, rgba(47,111,237,.68), transparent 42%), #123657; }
.research-stat-card small { color: #b8c7d6; font-size: .76rem; font-weight: 730; letter-spacing: .08em; text-transform: uppercase; }
.research-stat-card strong { margin: 12px 0 8px; color: var(--white); font-size: clamp(3.25rem, 7vw, 5.25rem); letter-spacing: -.07em; line-height: .9; }
.research-stat-card span { max-width: 340px; color: #e6eef7; font-size: 1rem; font-weight: 670; line-height: 1.45; }
.research-stat-card p { margin: 16px 0 0; color: #a8c1d7; font-size: .83rem; }

.case-grid,
.data-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.data-card-grid.three-columns { grid-template-columns: repeat(3, 1fr); }
.case-card,
.data-card-grid article { min-height: 276px; padding: 28px; background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.case-card { display: flex; flex-direction: column; }
.case-card.featured { border-color: #98b9f2; background: linear-gradient(155deg, #f5f9ff, var(--white)); }
.case-card > span,
.data-card-grid small { color: var(--blue-600); font-size: .72rem; font-weight: 760; letter-spacing: .07em; text-transform: uppercase; }
.case-card h3 { margin: 16px 0 12px; font-size: 1.4rem; }
.case-card p { margin: 0; font-size: .89rem; }
.case-card small { margin-top: auto; padding-top: 18px; color: var(--grey-500); font-size: .72rem; line-height: 1.45; }
.data-card-grid article { min-height: 220px; }
.data-card-grid strong { display: block; margin: 24px 0 12px; color: var(--navy-900); font-size: 2.25rem; letter-spacing: -.05em; }
.data-card-grid p { margin: 0; font-size: .86rem; }

.sources-section { padding-top: 44px; background: var(--grey-50); border-top: 1px solid var(--grey-200); }
.sources-panel { display: grid; padding: 46px; background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); grid-template-columns: .7fr 1.3fr; gap: 60px; }
.sources-panel h2 { margin: 10px 0 13px; font-size: 2rem; }
.sources-panel p { margin: 0; font-size: .91rem; }
.sources-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.sources-list a { display: grid; align-items: center; min-height: 76px; padding: 15px 17px; color: inherit; background: var(--grey-50); border: 1px solid var(--grey-200); border-radius: 10px; grid-template-columns: 1fr 22px; column-gap: 16px; text-decoration: none; transition: border-color .18s ease, background .18s ease; }
.sources-list a:hover { background: #f3f8ff; border-color: #a9c6f5; }
.sources-list strong { display: block; color: var(--navy-900); font-size: .87rem; }
.sources-list span { display: block; margin-top: 3px; color: var(--grey-600); font-size: .75rem; line-height: 1.45; }
.sources-list .icon { width: 18px; height: 18px; color: var(--blue-600); }
.sources-list a > strong,
.sources-list a > span { grid-column: 1; }
.sources-list a > .icon { align-self: center; grid-column: 2; grid-row: 1 / span 2; }

.decision-hero { justify-items: start; }
.decision-hero > span { display: grid; width: 66px; height: 66px; margin-bottom: 26px; color: #9dc0ff; background: rgba(255,255,255,.08); border: 1px solid #416788; border-radius: 15px; place-items: center; }
.decision-hero > span .icon { width: 32px; height: 32px; }
.decision-hero strong { color: var(--white); font-size: 1.65rem; }
.decision-hero p { max-width: 350px; margin: 12px 0 0; color: #c0cfdd; font-size: .91rem; }

.question-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.question-grid.compact { grid-template-columns: repeat(3, 1fr); }
.question-card { min-height: 330px; padding: 42px; background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.question-card.gps { color: var(--white); background: radial-gradient(circle at top right, rgba(73,139,255,.55), transparent 40%), var(--navy-900); border-color: #315472; }
.question-card > span { display: grid; width: 54px; height: 54px; margin-bottom: 38px; color: var(--blue-600); background: var(--blue-100); border-radius: 13px; place-items: center; }
.question-card.gps > span { color: #a9c8ff; background: rgba(255,255,255,.08); }
.question-card > span .icon { width: 27px; height: 27px; }
.question-card small { color: var(--blue-600); font-size: .7rem; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.question-card.gps small { color: #a9c8ff; }
.question-card h2 { margin: 10px 0 13px; font-size: clamp(1.65rem, 3vw, 2.25rem); }
.question-card.gps h2 { color: var(--white); }
.question-card p { margin: 0; }
.question-card.gps p { color: #c9d6e2; }
.question-card > strong { display: block; margin-top: 25px; color: var(--navy-900); font-size: .86rem; line-height: 1.45; }
.question-card.gps > strong { color: var(--white); }
.question-grid.compact .question-card { min-height: 230px; padding: 30px; }
.question-grid.compact .question-card > span { margin-bottom: 24px; }
.question-grid.compact .question-card h2 { font-size: 1.35rem; }

.checklist-sheet { width: min(100%, 860px); margin: 42px auto 0; overflow: hidden; background: var(--white); border: 1px solid #c8d9eb; border-radius: var(--radius-md); box-shadow: 0 18px 45px rgba(11,31,51,.09); }
.checklist-sheet.large { width: min(100%, 1020px); }
.checklist-sheet-top { display: flex; align-items: center; justify-content: space-between; padding: 20px 25px; color: var(--white); background: var(--navy-900); gap: 18px; }
.checklist-sheet-top span { color: #a8c7ff; font-size: .72rem; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.checklist-sheet-top strong { color: var(--white); font-size: 1rem; text-align: right; }
.checklist-sheet > div:not(.checklist-sheet-top) { display: grid; align-items: start; padding: 18px 25px; border-bottom: 1px solid var(--grey-200); grid-template-columns: 43px 1fr; gap: 14px; }
.checklist-sheet > div:last-child { border-bottom: 0; }
.checklist-sheet > div > span { display: grid; width: 30px; height: 30px; color: var(--blue-600); background: var(--blue-100); border-radius: 8px; place-items: center; font-size: .72rem; font-weight: 760; }
.checklist-sheet p { margin: 0; color: var(--grey-600); font-size: .89rem; line-height: 1.55; }
.checklist-sheet p strong { display: block; margin-bottom: 3px; color: var(--navy-900); }

.case-callout { display: grid; align-items: start; max-width: 980px; margin: auto; padding: 42px; background: #f3f8ff; border: 1px solid #cbdcf2; border-radius: var(--radius-lg); grid-template-columns: 72px 1fr; gap: 28px; }
.case-callout > div:first-child { display: grid; width: 62px; height: 62px; color: var(--blue-600); background: var(--white); border: 1px solid #cbdcf2; border-radius: 14px; place-items: center; }
.case-callout .icon { width: 30px; height: 30px; }
.case-callout small { color: var(--blue-600); font-size: .72rem; font-weight: 760; letter-spacing: .07em; text-transform: uppercase; }
.case-callout h2 { margin: 9px 0 13px; font-size: 2rem; }
.case-callout p { margin: 0; }

.comparison-matrix { overflow: hidden; background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.comparison-row { display: grid; min-height: 106px; align-items: center; padding: 20px 26px; border-bottom: 1px solid var(--grey-200); color: var(--grey-600); grid-template-columns: .8fr 1fr 1.1fr; gap: 28px; }
.comparison-row:last-child { border-bottom: 0; }
.comparison-row strong { color: var(--navy-900); }
.comparison-head { min-height: 54px; color: #cbd7e1; background: var(--navy-900); font-size: .73rem; font-weight: 730; letter-spacing: .05em; text-transform: uppercase; }
.comparison-head > div { color: inherit; }
.comparison-row.emphasis { background: #f3f8ff; }
.comparison-row.emphasis strong { color: var(--blue-700); }
.procurement-table + .data-note { max-width: 900px; margin: 18px auto 0; color: var(--grey-600); font-size: .82rem; text-align: center; }

@media (max-width: 980px) {
  .case-grid,
  .data-card-grid { grid-template-columns: 1fr 1fr; }
  .data-card-grid.three-columns { grid-template-columns: 1fr 1fr; }
  .sources-panel { grid-template-columns: 1fr; gap: 32px; }
  .question-grid.compact { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .research-stat-card,
  .decision-hero,
  .question-card { min-height: 0; padding: 30px 25px; }
  .research-stat-card strong { font-size: 3.6rem; }
  .case-grid,
  .data-card-grid,
  .question-grid { grid-template-columns: 1fr; }
  .data-card-grid.three-columns { grid-template-columns: 1fr; }
  .case-card,
  .data-card-grid article { min-height: 0; }
  .sources-panel { padding: 29px 23px; }
  .sources-list a { min-height: 0; }
  .case-callout { padding: 28px 23px; grid-template-columns: 1fr; gap: 20px; }
  .comparison-matrix { overflow-x: auto; }
  .comparison-row { min-width: 700px; padding: 18px 20px; }
  .checklist-sheet-top { align-items: flex-start; flex-direction: column; }
  .checklist-sheet-top strong { text-align: left; }
  .checklist-sheet > div:not(.checklist-sheet-top) { padding: 16px 18px; grid-template-columns: 34px 1fr; gap: 10px; }
}

@media (max-width: 1180px) {
  .container { width: min(calc(100% - 40px), var(--container)); }
  .desktop-nav .nav-link { padding-inline: 7px; font-size: .79rem; }
  .header-inner { gap: 18px; }
  .header-actions { gap: 9px; }
  .hero-product { width: 650px; transform: scale(.9); transform-origin: left center; }
  .home-hero-grid { gap: 30px; }
  .home-hero .hero-copy h1 { font-size: 3.55rem; }
  .trust-item { padding-inline: 17px; }
}

@media (max-width: 1100px) {
  .section { padding: 88px 0; }
  .desktop-nav,
  .header-actions { display: none; }
  .menu-toggle {
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--grey-200);
    border-radius: 9px;
    background: var(--white);
    flex-direction: column;
    gap: 5px;
  }
  .menu-toggle span { width: 20px; height: 2px; background: var(--navy-900); transition: transform .18s ease, opacity .18s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 999; top: 78px; right: 0; bottom: 0; left: 0; display: block; background: var(--white); overflow-y: auto; }
  .mobile-menu-inner { width: min(calc(100% - 40px), 720px); margin: auto; padding: 20px 0 50px; }
  .mobile-menu .nav-link { display: flex; min-height: 50px; padding: 12px 4px; border-bottom: 1px solid var(--grey-200); font-size: 1rem; }
  .mobile-menu .nav-link.active::after { display: none; }
  .mobile-group { padding: 16px 0; border-bottom: 1px solid var(--grey-200); }
  .mobile-group > span { color: var(--grey-500); font-size: .72rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
  .mobile-group .nav-link { min-height: 43px; padding-left: 17px; border-bottom: 0; font-size: .91rem; }
  .mobile-actions { display: grid; margin-top: 25px; grid-template-columns: 1fr 1fr; gap: 10px; }
  .home-hero { padding-top: 80px; }
  .home-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .hero-product { width: 760px; margin-top: 25px; transform: none; }
  .product-composition { min-height: 560px; }
  .trust-grid { grid-template-columns: 1fr 1fr; padding: 20px 0; }
  .trust-item { min-height: 70px; border-right: 0; }
  .trust-item:first-child { padding-left: 17px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .split-content { gap: 50px; }
  .security-panel { grid-template-columns: 70px 1fr; }
  .security-panel .button { grid-column: 2; justify-self: start; }
  .faq-layout { gap: 50px; }
  .internal-hero-grid { gap: 45px; }
  .internal-hero-copy h1 { font-size: 3.5rem; }
  .article-grid { gap: 50px; }
  .contact-layout { gap: 40px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2; }
  .benefit-grid { gap: 15px; }
  .product-proof-grid,
  .mobile-proof-grid { gap: 44px; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 74px 0; }
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2.15rem; }
  .section-heading { margin-bottom: 40px; }
  .heading-row { align-items: start; margin-bottom: 40px; flex-direction: column; }
  .home-hero { min-height: auto; padding: 70px 0 90px; }
  .home-hero .hero-copy h1 { font-size: 3.15rem; }
  .hero-copy > p { font-size: 1.02rem; }
  .hero-product { width: 670px; transform: scale(.88); transform-origin: left top; }
  .product-composition { min-height: 510px; }
  .benefit-bridge { padding-bottom: 25px; }
  .benefit-grid { grid-template-columns: 1fr; transform: translateY(-34px); }
  .benefit-card { min-height: auto; }
  .product-proof-grid,
  .mobile-proof-grid,
  .damage-report-section .product-proof-grid { grid-template-columns: 1fr; gap: 45px; }
  .mobile-proof-copy { max-width: 680px; }
  .phone-gallery { min-height: 620px; }
  .photo-proof-grid { grid-template-columns: 250px 1fr; }
  .pilot-steps { grid-template-columns: 1fr 1fr; row-gap: 42px; }
  .pilot-steps::before { display: none; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-arrow { margin: -9px auto; transform: rotate(90deg); }
  .comparison-card { min-height: auto; }
  .process-timeline { grid-template-columns: 1fr; gap: 0; }
  .process-timeline::before { top: 25px; right: auto; bottom: 25px; left: 31px; width: 1px; height: auto; }
  .process-timeline li { display: grid; padding: 0 0 32px; grid-template-columns: 64px 1fr; column-gap: 22px; }
  .process-number { display: none; }
  .process-icon { grid-row: 1 / span 2; width: 62px; height: 62px; margin: 0; box-shadow: 0 0 0 6px var(--navy-900); }
  .process-timeline h3 { align-self: end; margin-bottom: 5px; }
  .process-timeline p { grid-column: 2; }
  .role-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .split-content,
  .split-content.split-reverse { grid-template-columns: 1fr; gap: 45px; }
  .split-content.split-reverse .split-copy { order: 1; }
  .split-content.split-reverse .split-visual { order: 2; }
  .security-panel { padding: 38px; }
  .faq-layout { grid-template-columns: 1fr; gap: 35px; }
  .faq-intro { position: static; }
  .cta-band { padding: 45px 40px; grid-template-columns: 1fr; }
  .cta-actions { align-items: stretch; min-width: 0; flex-direction: row; }
  .cta-actions .button { flex: 1; }
  .internal-hero { min-height: auto; padding: 75px 0; }
  .internal-hero-grid { grid-template-columns: 1fr; }
  .internal-hero-copy h1 { font-size: 3.2rem; }
  .internal-product-stack,
  .definition-card,
  .sector-visual,
  .contact-hero-card,
  .about-mark { width: 100%; max-width: 520px; margin-inline: auto; }
  .visual-feature-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .article-aside { width: 100%; max-width: none; }
  .difference-grid { grid-template-columns: 1fr; }
  .implementation-grid { grid-template-columns: 1fr; gap: 50px; }
  .implementation-grid > div { position: static; }
  .role-summary { grid-template-columns: 1fr; }
  .context-chain { grid-template-columns: 1fr; }
  .context-chain > div { min-height: 155px; }
  .context-chain > i { transform: rotate(90deg); }
  .procurement-table { overflow-x: auto; }
  .table-row { min-width: 720px; }
  .security-checklist,
  .story-grid,
  .principles { grid-template-columns: 1fr; gap: 45px; }
  .ambition-panel { grid-template-columns: 110px 1fr; gap: 35px; }
  .ambition-number { font-size: 6rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-aside { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 45px; }
  .legal-nav { position: static; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .prevention-dashboard-frame.hero-dashboard { width: min(100%, 720px); margin-inline: auto; transform: none; }
  .prevention-teaser-grid,
  .guide-link-grid { grid-template-columns: 1fr; gap: 35px; }
  .split-reverse > .prevention-photo { order: 2; }
  .tailored-hero-photo { width: min(100%, 620px); margin-inline: auto; }
  .fit-cta { grid-template-columns: 1fr; gap: 28px; }
  .fit-cta .button { justify-self: start; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 62px 0; }
  .site-header,
  .header-inner { height: 70px; }
  .mobile-menu { top: 70px; }
  .brand img { width: 35px; height: 35px; }
  .anchor-nav { top: 70px; }
  .anchor-nav .container { min-height: 54px; gap: 25px; }
  .breadcrumbs ol { min-height: 43px; }
  .home-hero { padding-top: 57px; }
  .home-hero .hero-copy h1 { font-size: clamp(2.55rem, 12vw, 3.1rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-login { display: block; }
  .hero-product { width: 100%; max-width: 100%; height: 450px; margin-top: 10px; transform: none; }
  .product-composition { width: 760px; min-height: 590px; transform: scale(.76); transform-origin: left top; }
  .home-hero .hero-product { height: 420px; }
  .real-product-composition { min-height: 420px; }
  .real-browser-frame { top: 18px; width: 100%; }
  .real-phone-frame { right: 1%; width: 148px; height: 315px; border-radius: 25px; }
  .real-phone-frame img { border-radius: 19px; }
  .real-phone-frame::before { top: 12px; width: 47px; height: 5px; }
  .example-badge { right: 85px; bottom: 9px; max-width: 190px; }
  .benefit-card { grid-template-columns: 45px 1fr; padding: 23px; }
  .benefit-card > span { width: 45px; height: 45px; }
  .angle-steps { grid-template-columns: 1fr 1fr; }
  .photo-proof-grid { grid-template-columns: 1fr; }
  .photo-flow-shot { width: min(100%, 330px); margin-inline: auto; }
  .before-after-shots figure { min-height: 210px; }
  .pilot-steps { grid-template-columns: 1fr; text-align: left; }
  .pilot-steps li { display: grid; align-items: start; padding: 0; text-align: left; grid-template-columns: 54px 1fr; gap: 14px; }
  .pilot-steps > li > span { width: 48px; height: 48px; margin: 0; border-width: 5px; }
  .trust-grid { grid-template-columns: 1fr; padding: 15px 0; }
  .trust-item { padding-inline: 0; }
  .trust-item:first-child { padding-left: 0; }
  .comparison-card { padding: 28px 24px; }
  .feature-grid,
  .feature-grid-three,
  .audience-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .role-copy { padding: 32px 25px 20px; }
  .role-copy h3 { font-size: 1.55rem; }
  .mobile-flow-visual { height: 330px; }
  .flow-phone { right: 4%; transform: scale(.83); transform-origin: bottom right; }
  .flow-phone-back { right: auto; left: 1%; transform: rotate(-5deg) scale(.75); transform-origin: bottom left; }
  .role-card .history-card { margin: 12px; padding: 20px; }
  .security-panel { display: flex; padding: 30px 24px; align-items: flex-start; flex-direction: column; }
  .cta-section { padding: 58px 0; }
  .cta-band { padding: 38px 25px; }
  .cta-actions { flex-direction: column; }
  .internal-hero { padding: 60px 0; }
  .internal-hero-copy h1 { font-size: clamp(2.45rem,11vw,3.15rem); }
  .internal-hero-copy > p { font-size: 1rem; }
  .compact-dashboard { padding: 18px 14px; }
  .compact-dashboard .vehicle-row { grid-template-columns: 37px 1fr .75fr 14px; }
  .compact-dashboard .plate { display: none; }
  .definition-card { padding: 35px 28px; }
  .difference-grid article { padding: 30px 25px; }
  .implementation-steps li { grid-template-columns: 42px 1fr; gap: 10px; }
  .sector-visual { height: 350px; transform: scale(.9); }
  .role-summary { padding: 32px 24px; }
  .mini-flow { flex-direction: column; }
  .mini-flow > div { width: 100%; min-height: 80px; }
  .mini-flow > .icon { transform: rotate(90deg); }
  .legal-clarity { align-items: flex-start; }
  .legal-icon { width: 54px; height: 54px; }
  .legal-icon .icon { width: 27px; height: 27px; }
  .principle-grid { grid-template-columns: 1fr; }
  .ambition-panel { grid-template-columns: 1fr; gap: 12px; }
  .ambition-number { font-size: 5rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { align-items: stretch; flex-direction: column; }
  .contact-aside { grid-template-columns: 1fr; }
  .legal-hero { padding: 65px 0; }
  .review-label { line-height: 1.4; }
  .utility-card { padding: 38px 23px; }
  .error-code { font-size: 6.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; padding: 24px 0; flex-direction: column; }
  .prevention-teaser { padding: 58px 0; }
  .prevention-photo,
  .prevention-dashboard-frame,
  .tailored-hero-photo { border-radius: var(--radius-md); }
  .guide-link-grid > a { min-height: 0; padding: 25px 22px; grid-template-columns: 44px 1fr; gap: 15px; }
  .guide-link-grid > a > span { width: 44px; height: 44px; }
  .guide-link-grid > a > .icon { display: none; }
  .fit-cta { padding: 34px 25px; }
  .fit-cta .button { width: 100%; }
  .selection-hero { min-height: 280px; padding: 35px 24px; }
}

@media (max-width: 560px) {
  .hero-product { height: 405px; }
  .product-composition { transform: scale(.67); }
}

@media (max-width: 500px) {
  .hero-product { height: 355px; }
  .product-composition { transform: scale(.58); }
  .home-hero .hero-product { height: 340px; }
  .real-product-composition { min-height: 340px; }
  .real-browser-frame { top: 8px; }
  .real-phone-frame { right: -2%; bottom: 0; width: 122px; height: 258px; padding: 6px; border-radius: 21px; }
  .real-phone-frame img { border-radius: 16px; }
  .example-badge { display: none; }
  .phone-gallery { min-height: 490px; }
  .product-phone { width: 220px; height: 470px; padding: 7px; border-radius: 31px; }
  .product-phone img { border-radius: 24px; }
  .product-phone.secondary { left: -10%; }
  .product-phone.primary { right: -8%; }
  .phone-gallery > p { right: 0; bottom: -24px; }
  .before-after-shots { grid-template-rows: auto auto; }
  .before-after-shots figure { min-height: 0; }
  .before-after-shots img { height: auto; }
}

@media (max-width: 430px) {
  .home-hero .hero-product { width: 100%; height: 305px; }
  .product-composition { transform: scale(.48); }
  .hero-login span { display: flex; margin-top: 4px; }
  .mobile-actions { grid-template-columns: 1fr; }
  .section-heading h2 { font-size: 2rem; }
  .flow-phone { right: -9%; }
  .flow-phone-back { left: -8%; }
  .sector-visual { left: 50%; width: 370px; margin-left: -185px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-column:last-child { grid-column: auto; }
}

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

@media print {
  .site-header,
  .site-footer,
  .breadcrumbs,
  .anchor-nav,
  .cta-section { display: none; }
  .section { padding: 35px 0; }
  body { color: #000; }
  p { color: #222; }
}
