:root {
  color-scheme: light;
  --bg: #f6f5ef;
  --surface: #ffffff;
  --surface-2: #ebe8dd;
  --ink: #142225;
  --muted: #5e6a68;
  --line: rgba(20, 34, 37, 0.14);
  --sea: #006c70;
  --sea-2: #0f8f8c;
  --brass: #b98d44;
  --coral: #b86651;
  --success: #2f7c68;
  --danger: #b64a44;
  --shadow: 0 24px 70px rgba(22, 31, 31, 0.16);
  --header-bg: rgba(246, 245, 239, 0.86);
  --hero-veil: linear-gradient(90deg, rgba(7, 18, 20, 0.78), rgba(7, 18, 20, 0.46) 54%, rgba(7, 18, 20, 0.18));
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0d1212;
  --surface: #121b1c;
  --surface-2: #192526;
  --ink: #edf3ef;
  --muted: #a9b6b0;
  --line: rgba(237, 243, 239, 0.14);
  --sea: #58d0c7;
  --sea-2: #75bfb2;
  --brass: #d4aa61;
  --coral: #d18a74;
  --success: #7bd2ac;
  --danger: #ee8a7c;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --header-bg: rgba(13, 18, 18, 0.78);
  --hero-veil: linear-gradient(90deg, rgba(7, 12, 13, 0.84), rgba(7, 12, 13, 0.52) 54%, rgba(7, 12, 13, 0.2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px;
  width: 100%;
}

.section {
  padding: 104px 0;
  position: relative;
}

.section-heading {
  max-width: 720px;
}

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

.eyebrow {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: 4.1rem;
  line-height: 1.04;
  letter-spacing: 0;
  margin-bottom: 24px;
  max-width: 920px;
}

h2 {
  font-size: 2.55rem;
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.3;
  letter-spacing: 0;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  min-height: 44px;
  padding: 0 18px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

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

.button--primary {
  background: var(--sea);
  color: #ffffff;
}

:root[data-theme="dark"] .button--primary {
  color: #061112;
}

.button--quiet {
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  border-color: var(--line);
  color: var(--ink);
}

.button--glass {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

.button--large {
  min-height: 52px;
  padding: 0 24px;
}

.text-button {
  background: transparent;
  border: 0;
  color: inherit;
  padding: 0;
  text-align: left;
}

.text-button:hover,
.site-nav a:hover,
.footer-links a:hover {
  color: var(--sea);
}

.loading-screen {
  align-items: center;
  background: var(--bg);
  display: grid;
  inset: 0;
  justify-items: center;
  padding: 24px;
  position: fixed;
  z-index: 1000;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-screen__mark {
  animation: turtleDrift 2.8s ease-in-out infinite;
  height: 82px;
  margin-bottom: 18px;
  width: 82px;
}

.loading-screen p {
  color: var(--ink);
  font-weight: 700;
  margin: 0;
}

@keyframes turtleDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(0, -9px, 0) rotate(3deg);
  }
}

.site-header {
  align-items: center;
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  min-height: 78px;
  padding: 14px 20px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.brand img {
  height: 38px;
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.site-nav a,
.nav-dropdown__trigger {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  align-items: center;
  background: transparent;
  border: 0;
  display: inline-flex;
  gap: 8px;
  padding: 10px 0;
}

.nav-dropdown__trigger:hover,
.nav-dropdown__trigger:focus-visible {
  color: var(--sea);
}

.nav-dropdown__chevron {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  height: 7px;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
  width: 7px;
}

.nav-dropdown__menu {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 2px;
  left: 50%;
  min-width: 260px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  transform: translate(-50%, -6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.nav-dropdown__menu a {
  border-radius: 6px;
  padding: 11px 12px;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  background: var(--surface-2);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-dropdown.is-open .nav-dropdown__chevron {
  transform: rotate(225deg) translate(-2px, -1px);
}

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

.language-select,
.icon-button {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 42px;
}

.language-select {
  max-width: 132px;
  padding: 0 10px;
}

.icon-button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  width: 44px;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 0;
  width: 42px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 7px auto;
  width: 24px;
}

.hero {
  background:
    radial-gradient(circle at 78% 24%, rgba(88, 208, 199, 0.2), transparent 26%),
    radial-gradient(circle at 62% 70%, rgba(20, 121, 185, 0.18), transparent 32%),
    linear-gradient(135deg, #071214 0%, #0b2228 48%, #071214 100%);
  min-height: 96vh;
  overflow: hidden;
  padding: 170px 0 92px;
  position: relative;
}

.hero__overlay {
  background: var(--hero-veil);
  inset: 0;
  position: absolute;
}

.hero::after {
  background: linear-gradient(180deg, transparent, var(--bg));
  bottom: -1px;
  content: "";
  height: 22vh;
  left: 0;
  position: absolute;
  right: 0;
}

.hero__content {
  align-items: center;
  color: #ffffff;
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  max-width: 1320px;
  position: relative;
  z-index: 1;
}

.hero__copy {
  min-width: 0;
}

.hero h1 {
  font-size: clamp(2.85rem, 4.45vw, 4.55rem);
  max-width: 690px;
}

.hero .eyebrow,
.hero__lead {
  color: rgba(255, 255, 255, 0.84);
}

.hero__lead {
  font-size: 1.2rem;
  max-width: 720px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0;
}

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

.hero__signals span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 750;
  padding: 10px 12px;
}

.hero-video-card {
  background:
    linear-gradient(145deg, rgba(15, 42, 48, 0.92), rgba(6, 19, 23, 0.94)),
    rgba(7, 18, 20, 0.9);
  border: 1px solid rgba(117, 232, 224, 0.24);
  border-radius: 22px;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    0 0 54px rgba(88, 208, 199, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  min-width: 0;
  overflow: hidden;
  padding: 11px;
  position: relative;
  width: 100%;
}

.hero-video-card::before {
  background: radial-gradient(circle, rgba(88, 208, 199, 0.18), transparent 68%);
  content: "";
  height: 260px;
  pointer-events: none;
  position: absolute;
  right: -100px;
  top: -130px;
  width: 260px;
}

.hero-video-card__bar {
  align-items: center;
  display: flex;
  gap: 6px;
  min-height: 34px;
  padding: 0 5px 8px;
  position: relative;
  z-index: 1;
}

.hero-video-card__bar span {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.hero-video-card__bar span:first-child {
  background: rgba(88, 208, 199, 0.7);
}

.hero-video-card__bar strong {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  margin-left: auto;
  text-transform: uppercase;
}

.hero-video-card__viewport {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 50% 38%, rgba(88, 208, 199, 0.12), transparent 46%),
    #061113;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.hero-video-card video {
  background: #061113;
  cursor: pointer;
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.hero-video-card__toggle {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(5, 19, 22, 0.78);
  border: 1px solid rgba(117, 232, 224, 0.38);
  border-radius: 999px;
  bottom: 16px;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  position: absolute;
  right: 16px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
  width: 44px;
  z-index: 3;
}

.hero-video-card__toggle:hover,
.hero-video-card__toggle:focus-visible {
  background: rgba(10, 48, 52, 0.94);
  border-color: rgba(117, 232, 224, 0.72);
  transform: scale(1.05);
}

.hero-video-card__toggle:focus-visible {
  outline: 2px solid rgba(117, 232, 224, 0.9);
  outline-offset: 3px;
}

.hero-video-card__toggle [data-video-pause-icon] {
  font-size: 1rem;
  letter-spacing: -0.18em;
  transform: translateX(-0.08em);
}

.hero-video-card__toggle [data-video-play-icon] {
  font-size: 0.88rem;
  padding-left: 2px;
}

.hero-video-card__fallback {
  align-content: center;
  background:
    linear-gradient(135deg, rgba(88, 208, 199, 0.08), transparent),
    #061113;
  color: rgba(255, 255, 255, 0.76);
  inset: 0;
  justify-items: center;
  padding: 28px;
  position: absolute;
  text-align: center;
}

.hero-video-card__fallback:not([hidden]) {
  display: grid;
}

.hero-video-card__fallback span {
  align-items: center;
  border: 1px solid rgba(88, 208, 199, 0.36);
  border-radius: 50%;
  color: var(--sea);
  display: flex;
  height: 54px;
  justify-content: center;
  margin-bottom: 12px;
  padding-left: 3px;
  width: 54px;
}

.hero-video-card__fallback p {
  color: inherit;
  margin: 0;
}

.scroll-cue {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  bottom: 34px;
  display: flex;
  height: 48px;
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 30px;
  z-index: 2;
}

.scroll-cue span {
  animation: scrollCue 1.7s ease-in-out infinite;
  background: #ffffff;
  border-radius: 999px;
  height: 9px;
  width: 3px;
}

@keyframes scrollCue {
  0%,
  100% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(7px);
  }
}

.section--intro {
  padding-top: 72px;
}

.intro-grid,
.showcase-grid,
.workflow-grid,
.security-grid,
.faq-grid,
.demo-grid {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.intro-copy {
  font-size: 1.06rem;
}

.metric-strip {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
}

.metric-strip div {
  padding: 28px;
}

.metric-strip div + div {
  border-left: 1px solid var(--line);
}

.metric-strip strong,
.metric-strip span {
  display: block;
}

.metric-strip strong {
  color: var(--sea);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.metric-strip span {
  color: var(--muted);
  line-height: 1.5;
}

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

.feature-card,
.workflow-step,
.security-list article,
.faq-list details,
.contact-form,
.security-panel,
.product-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.04);
}

.feature-card {
  min-height: 260px;
  padding: 24px;
}

.feature-card__index {
  color: var(--brass);
  display: block;
  font-size: 0.84rem;
  font-weight: 900;
  margin-bottom: 46px;
}

.services {
  background: var(--surface-2);
}

.services .section-heading {
  margin-bottom: 44px;
}

.services-list {
  border-top: 1px solid var(--line);
}

.service-item {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 34px;
  grid-template-columns: 64px minmax(0, 1fr);
  padding: 32px 0;
  scroll-margin-top: 110px;
}

.service-item__number {
  color: var(--brass);
  font-size: 0.84rem;
  font-weight: 900;
  padding-top: 4px;
}

.service-item h3 {
  font-size: 1.35rem;
}

.service-item p {
  max-width: 920px;
}

.service-item__lead {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 750;
  margin-bottom: 8px;
}

.showcase {
  background: linear-gradient(180deg, var(--bg), var(--surface-2));
}

.check-list {
  color: var(--ink);
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  background: var(--sea);
  border-radius: 999px;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 8px;
}

.product-stack {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 0.52fr;
}

.product-frame {
  overflow: hidden;
}

.product-frame img {
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-frame--small img {
  aspect-ratio: 7 / 10;
}

.product-frame figcaption {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  margin: 0;
  padding: 12px 14px;
}

.section--image-band {
  background:
    linear-gradient(90deg, rgba(13, 18, 18, 0.96), rgba(13, 40, 45, 0.88)),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(88, 208, 199, 0.06) 55px),
    repeating-linear-gradient(0deg, transparent 0 54px, rgba(88, 208, 199, 0.06) 55px);
  color: #ffffff;
}

.section--image-band p {
  color: rgba(255, 255, 255, 0.74);
}

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

.workflow-step {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  min-height: 190px;
  padding: 22px;
}

.workflow-step span {
  color: var(--brass);
  display: block;
  font-weight: 900;
  margin-bottom: 34px;
}

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

.visual-proof {
  background: var(--bg);
}

.security {
  background:
    radial-gradient(circle at 85% 50%, color-mix(in srgb, var(--sea) 12%, transparent), transparent 34%),
    linear-gradient(90deg, var(--bg), color-mix(in srgb, var(--surface-2) 70%, var(--bg)));
}

.security-panel {
  padding: 34px;
}

.security-list {
  display: grid;
  gap: 14px;
}

.security-list article {
  padding: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--sea);
  content: "+";
  float: right;
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 14px 0 0;
}

.demo-section {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface-2) 72%, var(--bg)), var(--bg));
}

.contact-note {
  border-left: 3px solid var(--brass);
  margin-top: 28px;
  padding-left: 18px;
}

.contact-note span,
.contact-note strong {
  display: block;
}

.contact-note span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

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

.contact-form label {
  color: var(--muted);
  display: grid;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 46px;
  outline: 0;
  padding: 12px 13px;
  width: 100%;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--sea) 18%, transparent);
}

.contact-form .is-invalid {
  border-color: var(--danger);
}

.contact-form .hp-field {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

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

.form-status {
  font-size: 0.92rem;
  margin: 0;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.is-loading {
  opacity: 0.68;
}

.request-page,
.legal-page {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 92%, #0b5c86 8%) 0%, var(--bg) 100%);
  min-height: 100vh;
  padding: 120px 0 56px;
}

.request-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
}

.request-copy {
  align-content: start;
  display: grid;
  gap: 18px;
  padding-top: 18px;
}

.request-copy h1,
.legal-document h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
  margin: 0;
}

.decision-note {
  border-left: 3px solid var(--sea);
  color: var(--muted);
  margin: 0;
  padding-left: 14px;
}

.request-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.request-form .wide {
  grid-column: 1 / -1;
}

.legal-checks {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px;
}

.legal-checks legend {
  color: var(--ink);
  font-weight: 900;
  padding: 0 8px;
}

.legal-checks label {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.legal-checks input {
  flex: 0 0 auto;
  margin-top: 4px;
  min-height: auto;
  width: auto;
}

.legal-checks span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.legal-checks a {
  color: var(--sea);
}

.legal-brand {
  display: inline-flex;
  margin: 0;
}

.legal-page {
  display: grid;
  justify-items: center;
  padding-top: 96px;
}

.legal-page__top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  width: min(860px, calc(100vw - 32px));
}

.legal-document {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 860px;
  padding: clamp(22px, 4vw, 38px);
  width: min(860px, calc(100vw - 32px));
}

.legal-document h1 {
  color: var(--ink);
  font-size: clamp(20px, 2.5vw, 23px);
  line-height: 1.2;
  margin: 0 0 6px;
  max-width: none;
}

.legal-document [data-legal-content] {
  margin-top: 20px;
}

.legal-document [data-legal-content] section + section {
  border-top: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  margin-top: 14px;
  padding-top: 13px;
}

.legal-document h2,
.legal-document h3 {
  color: color-mix(in srgb, var(--sea) 68%, var(--ink));
  letter-spacing: 0;
  line-height: 1.35;
}

.legal-document h2 {
  font-size: 15.5px;
  margin: 0 0 4px;
}

.legal-document h3 {
  font-size: 14px;
  margin: 10px 0 3px;
}

.legal-document p {
  color: color-mix(in srgb, var(--ink) 82%, var(--muted));
  line-height: 1.5;
  margin: 0 0 7px;
}

.legal-document ul,
.legal-document ol {
  color: color-mix(in srgb, var(--ink) 82%, var(--muted));
  margin: 3px 0 8px;
  padding-left: 20px;
}

.legal-document li {
  line-height: 1.45;
  margin: 2px 0;
}

.legal-breadcrumb {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 8px;
  margin-bottom: 18px;
}

.legal-breadcrumb a,
.legal-document__footer a {
  color: var(--sea);
}

.legal-date {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin: 0;
}

.legal-document__footer {
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  padding-top: 16px;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 44px 0 24px;
}

.footer-grid {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr auto;
}

.footer-logo {
  height: 36px;
  margin-bottom: 14px;
  width: auto;
}

.footer-links {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.footer-links a,
.footer-links button,
.footer-bottom {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 20px;
}

.cookie-banner {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto;
  left: 18px;
  max-width: 980px;
  padding: 18px;
  position: fixed;
  right: 18px;
  z-index: 200;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner h2 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.cookie-banner p {
  font-size: 0.9rem;
  margin: 0;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  align-items: center;
  display: grid;
  inset: 0;
  justify-items: center;
  padding: 20px;
  position: fixed;
  z-index: 300;
}

.modal.is-hidden {
  display: none;
}

.modal__backdrop {
  background: rgba(0, 0, 0, 0.56);
  inset: 0;
  position: absolute;
}

.modal__panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 560px;
  padding: 26px;
  position: relative;
  width: min(100%, 560px);
}

.modal__close {
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 16px;
}

.cookie-options {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.cookie-options label {
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr;
  padding: 14px;
}

.cookie-options small {
  color: var(--muted);
  display: block;
  line-height: 1.5;
  margin-top: 4px;
}

.modal__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.brand-lockup,
.footer-brand,
.legal-brand {
  align-items: center;
  display: inline-flex;
  gap: 9px;
}

.beta-badge,
.beta-inline {
  background: color-mix(in srgb, var(--sea) 16%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--sea) 45%, var(--line));
  border-radius: 999px;
  color: var(--sea);
  display: inline-flex;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1;
  padding: 5px 7px;
  text-transform: uppercase;
}

.beta-inline {
  font-size: 0.56rem;
  padding: 4px 6px;
  vertical-align: middle;
}

.footer-brand img {
  height: 36px;
  width: auto;
}

.marketing-page {
  background: radial-gradient(circle at 12% 14%, color-mix(in srgb, var(--sea) 7%, transparent), transparent 24%), var(--bg);
}

.marketing-hero,
.contact-page-section {
  min-height: 760px;
  overflow: hidden;
  padding: 168px 0 96px;
  position: relative;
}

.marketing-hero::before,
.contact-page-section::before {
  background:
    radial-gradient(circle at 76% 25%, color-mix(in srgb, var(--sea) 20%, transparent), transparent 28%),
    radial-gradient(circle at 30% 74%, rgba(20, 121, 185, 0.11), transparent 28%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.marketing-hero--compact {
  min-height: 560px;
}

.marketing-hero--compact .marketing-hero__copy {
  max-width: 900px;
}

.marketing-grid-bg {
  background-image:
    linear-gradient(color-mix(in srgb, var(--sea) 7%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--sea) 7%, transparent) 1px, transparent 1px);
  background-size: 52px 52px;
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  opacity: 0.65;
  pointer-events: none;
  position: absolute;
}

.marketing-hero__grid,
.contact-page-grid {
  align-items: center;
  display: grid;
  gap: clamp(46px, 7vw, 96px);
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  position: relative;
  z-index: 1;
}

.marketing-hero__copy {
  max-width: 760px;
}

.marketing-lead {
  font-size: 1.12rem;
  max-width: 720px;
}

.marketing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.signal-row,
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.signal-row span,
.tech-tags span {
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 9px 12px;
}

.route-visual {
  aspect-ratio: 1 / 0.9;
  background:
    linear-gradient(color-mix(in srgb, var(--sea) 8%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--sea) 8%, transparent) 1px, transparent 1px),
    radial-gradient(circle at center, color-mix(in srgb, var(--sea) 10%, transparent), transparent 64%);
  background-size: 34px 34px, 34px 34px, auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: inset 0 0 80px color-mix(in srgb, var(--sea) 7%, transparent), var(--shadow);
  min-height: 400px;
  overflow: hidden;
  position: relative;
}

.route-visual::before,
.route-visual::after {
  border: 1px solid color-mix(in srgb, var(--sea) 24%, transparent);
  border-radius: 50%;
  content: "";
  inset: 18%;
  position: absolute;
}

.route-visual::after {
  inset: 31%;
}

.route-node {
  background: var(--sea);
  border: 5px solid color-mix(in srgb, var(--sea) 18%, var(--surface));
  border-radius: 50%;
  box-shadow: 0 0 28px color-mix(in srgb, var(--sea) 68%, transparent);
  height: 18px;
  position: absolute;
  width: 18px;
  z-index: 3;
}

.route-node--a { left: 16%; top: 66%; }
.route-node--b { right: 17%; top: 22%; }
.route-node--c { bottom: 18%; right: 25%; }

.route-line {
  border-top: 2px dashed color-mix(in srgb, var(--sea) 70%, transparent);
  height: 120px;
  left: 20%;
  position: absolute;
  top: 54%;
  transform: rotate(-28deg);
  transform-origin: left top;
  width: 68%;
}

.route-line--b {
  left: 48%;
  top: 51%;
  transform: rotate(43deg);
  width: 38%;
}

.route-vessel {
  background: linear-gradient(135deg, var(--sea), #1479b9);
  clip-path: polygon(0 44%, 66% 44%, 82% 15%, 88% 15%, 88% 44%, 100% 44%, 88% 78%, 20% 78%);
  filter: drop-shadow(0 0 16px color-mix(in srgb, var(--sea) 65%, transparent));
  height: 52px;
  left: 45%;
  position: absolute;
  top: 44%;
  transform: rotate(-12deg);
  width: 96px;
  z-index: 4;
}

.route-data {
  bottom: 24px;
  color: var(--sea);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 800;
  left: 24px;
  letter-spacing: 0.12em;
  position: absolute;
}

.marketing-section {
  padding: 104px 0;
  position: relative;
}

.marketing-section--alt {
  background: var(--surface-2);
}

.marketing-section--glow {
  background: radial-gradient(circle at 18% 50%, color-mix(in srgb, var(--sea) 17%, transparent), transparent 30%), var(--surface);
}

.marketing-section__heading {
  margin-bottom: 42px;
  max-width: 780px;
}

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

.marketing-card,
.timeline-card,
.service-page-card,
.comparison-card,
.technical-panel,
.contact-form-card,
.stat-card-grid article {
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
}

.marketing-card {
  min-height: 255px;
  padding: 25px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.marketing-card:hover,
.service-page-card:hover {
  border-color: color-mix(in srgb, var(--sea) 48%, var(--line));
  transform: translateY(-4px);
}

.css-icon {
  background: linear-gradient(135deg, color-mix(in srgb, var(--sea) 70%, transparent), color-mix(in srgb, #1479b9 45%, transparent));
  border: 1px solid color-mix(in srgb, var(--sea) 45%, transparent);
  border-radius: 12px;
  display: block;
  height: 42px;
  margin-bottom: 42px;
  position: relative;
  width: 42px;
}

.css-icon::before,
.css-icon::after {
  background: var(--surface);
  content: "";
  height: 2px;
  left: 9px;
  position: absolute;
  top: 14px;
  width: 22px;
}

.css-icon::after {
  top: 25px;
  width: 14px;
}

.split-heading,
.marketing-two-column {
  align-items: start;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-card {
  display: grid;
  gap: 10px 18px;
  grid-template-columns: 48px 1fr;
  padding: 22px;
}

.timeline-card span {
  color: var(--sea);
  font-weight: 900;
  grid-row: 1 / 3;
}

.timeline-card h3,
.timeline-card p {
  margin: 0;
}

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

.stat-card-grid article {
  padding: 22px;
}

.security-orbit {
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--sea) 28%, transparent);
  border-radius: 50%;
  margin: 0 auto;
  max-width: 320px;
  position: relative;
}

.security-orbit::before,
.security-orbit::after {
  border: 1px dashed color-mix(in srgb, var(--sea) 34%, transparent);
  border-radius: 50%;
  content: "";
  inset: 15%;
  position: absolute;
}

.security-orbit::after { inset: 32%; }

.security-orbit span {
  background: var(--sea);
  border-radius: 50%;
  box-shadow: 0 0 22px color-mix(in srgb, var(--sea) 60%, transparent);
  height: 14px;
  position: absolute;
  width: 14px;
}

.security-orbit span:nth-child(1) { left: 10%; top: 48%; }
.security-orbit span:nth-child(2) { right: 18%; top: 15%; }
.security-orbit span:nth-child(3) { bottom: 16%; right: 22%; }

.marketing-checks,
.comparison-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.marketing-checks li,
.comparison-card li {
  color: var(--muted);
  line-height: 1.55;
  padding-left: 24px;
  position: relative;
}

.marketing-checks li::before,
.comparison-card li::before {
  background: var(--sea);
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 9px;
  width: 8px;
}

.scenario-steps {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.scenario-steps li {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  gap: 16px;
  grid-template-columns: 46px 1fr;
  padding: 18px;
}

.scenario-steps span {
  color: var(--sea);
  font-weight: 900;
}

.scenario-steps p { margin: 0; }

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

.comparison-card { padding: 30px; }
.comparison-card--before { background: color-mix(in srgb, var(--danger) 6%, var(--surface)); }
.comparison-card--before li::before { background: var(--danger); }
.comparison-card--with { background: color-mix(in srgb, var(--sea) 7%, var(--surface)); }

.technical-panel {
  margin: 0 auto;
  max-width: 900px;
  padding: clamp(28px, 5vw, 54px);
}

.marketing-cta {
  background: radial-gradient(circle at 80% 50%, color-mix(in srgb, var(--sea) 22%, transparent), transparent 28%), linear-gradient(135deg, #071214, #0e3035);
  color: #fff;
  padding: 76px 0;
}

.marketing-cta .container {
  align-items: center;
  display: flex;
  gap: 36px;
  justify-content: space-between;
}

.marketing-cta h2 { max-width: 760px; }
.marketing-cta p { color: rgba(255, 255, 255, 0.74); margin-bottom: 0; }

.service-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.service-page-card {
  display: block;
  min-height: 260px;
  padding: 28px;
  position: relative;
  transition: border-color 180ms ease, transform 180ms ease;
}

.service-page-card > span {
  color: var(--sea);
  display: block;
  font-weight: 900;
  margin-bottom: 42px;
}

.service-page-card strong {
  bottom: 24px;
  color: var(--sea);
  font-size: 1.4rem;
  position: absolute;
  right: 26px;
}

.contact-page-grid { align-items: start; }
.contact-page-copy { padding-top: 44px; }

.contact-direct {
  border-left: 3px solid var(--sea);
  display: grid;
  gap: 5px;
  margin-top: 32px;
  padding-left: 18px;
}

.contact-direct span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-direct a {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 850;
}

.contact-form-card {
  backdrop-filter: blur(16px);
  padding: 26px;
}

.contact-form-card .contact-form {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.form-card-heading {
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
  padding-bottom: 16px;
}

.form-card-heading h2 { font-size: 1.5rem; }
.form-card-heading p { margin-bottom: 0; }

[hidden] { display: none !important; }

.loading-brand {
  align-items: center;
  display: flex;
  gap: 10px;
}

.interface-mockup,
.data-proof-card {
  background:
    linear-gradient(color-mix(in srgb, var(--sea) 7%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--sea) 7%, transparent) 1px, transparent 1px),
    var(--surface);
  background-size: 26px 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.interface-mockup {
  min-height: 370px;
  padding: 18px;
}

.interface-mockup--detail {
  min-height: 370px;
}

.interface-mockup strong,
.data-proof-card strong {
  bottom: 18px;
  color: var(--ink);
  font-size: 0.82rem;
  left: 18px;
  position: absolute;
}

.mockup-toolbar {
  display: flex;
  gap: 6px;
}

.mockup-toolbar span {
  background: color-mix(in srgb, var(--muted) 45%, transparent);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.mockup-layout {
  display: grid;
  gap: 12px;
  grid-template-columns: 72px 1fr;
  margin-top: 20px;
}

.mockup-sidebar {
  background: color-mix(in srgb, var(--sea) 12%, var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 10px;
  min-height: 260px;
}

.mockup-stream,
.mockup-lines {
  display: grid;
  gap: 10px;
}

.mockup-stream i,
.mockup-lines i {
  background: linear-gradient(90deg, color-mix(in srgb, var(--sea) 17%, var(--surface-2)), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 10px;
  display: block;
  min-height: 54px;
}

.mockup-stream i:nth-child(2) { width: 88%; }
.mockup-stream i:nth-child(3) { width: 94%; }
.mockup-stream i:nth-child(4) { width: 78%; }

.mockup-signal {
  border: 2px solid color-mix(in srgb, var(--sea) 62%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 35px color-mix(in srgb, var(--sea) 25%, transparent);
  height: 86px;
  margin: 26px auto;
  position: relative;
  width: 86px;
}

.mockup-signal::before,
.mockup-signal::after {
  background: var(--sea);
  border-radius: 50%;
  content: "";
  height: 10px;
  position: absolute;
  width: 10px;
}

.mockup-signal::before { left: 12px; top: 52px; }
.mockup-signal::after { right: 10px; top: 16px; }

.mockup-lines i {
  min-height: 12px;
}

.mockup-lines i:nth-child(2) { width: 72%; }
.mockup-lines i:nth-child(3) { width: 90%; }
.mockup-lines i:nth-child(4) { width: 64%; }
.mockup-lines i:nth-child(5) { width: 82%; }

.data-proof-card {
  min-height: 260px;
  padding: 24px;
}

.data-proof-icon {
  border: 1px solid color-mix(in srgb, var(--sea) 55%, transparent);
  border-radius: 50%;
  display: block;
  height: 76px;
  margin: 14px auto 30px;
  position: relative;
  width: 76px;
}

.data-proof-icon::before,
.data-proof-icon::after {
  background: var(--sea);
  content: "";
  left: 18px;
  position: absolute;
  top: 36px;
}

.data-proof-icon::before { height: 3px; width: 40px; }
.data-proof-icon::after { height: 40px; left: 36px; top: 18px; width: 3px; }

.data-proof-icon--vessel {
  border-radius: 10px 10px 34px 34px;
}

.data-proof-icon--cargo {
  border-radius: 12px;
  transform: rotate(45deg);
}

.data-proof-bars {
  display: grid;
  gap: 8px;
}

.data-proof-bars i {
  background: color-mix(in srgb, var(--sea) 18%, var(--surface-2));
  border-radius: 999px;
  display: block;
  height: 9px;
}

.data-proof-bars i:nth-child(2) { width: 76%; }
.data-proof-bars i:nth-child(3) { width: 88%; }

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

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    padding: 16px;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: flex;
  }

  .site-nav,
  .header-actions {
    flex-wrap: wrap;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown__trigger {
    justify-content: space-between;
    width: 100%;
  }

  .nav-dropdown__menu {
    box-shadow: none;
    left: auto;
    margin-top: 4px;
    min-width: 0;
    position: static;
    transform: none;
    width: 100%;
  }

  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    opacity: 0;
    pointer-events: none;
    transform: none;
    visibility: hidden;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

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

  .marketing-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .section {
    padding: 78px 0;
  }

  .intro-grid,
  .showcase-grid,
  .workflow-grid,
  .security-grid,
  .faq-grid,
  .demo-grid,
  .request-layout {
    grid-template-columns: 1fr;
  }

  .marketing-hero__grid,
  .contact-page-grid,
  .split-heading,
  .marketing-two-column {
    grid-template-columns: 1fr;
  }

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

  .hero__copy {
    max-width: 760px;
  }

  .hero-video-card {
    margin: 0 auto;
    max-width: 820px;
    width: 100%;
  }

  .route-visual {
    margin: 0 auto;
    max-width: 560px;
    width: 100%;
  }

  .marketing-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .metric-strip,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .metric-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .product-stack {
    grid-template-columns: 1fr;
  }

  .product-frame--small img {
    aspect-ratio: 16 / 10;
  }

  .security {
    background: var(--bg);
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 18px;
  }

  .site-header {
    padding: 12px 18px;
  }

  .brand img {
    height: 32px;
  }

  .hero {
    min-height: 92vh;
    padding: 136px 0 84px;
  }

  .hero__content {
    gap: 34px;
  }

  .hero-video-card__toggle {
    bottom: 12px;
    height: 42px;
    right: 12px;
    width: 42px;
  }

  h1 {
    font-size: 2.38rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .feature-grid,
  .workflow-steps,
  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .marketing-hero,
  .contact-page-section {
    min-height: 0;
    padding: 132px 0 72px;
  }

  .marketing-section {
    padding: 76px 0;
  }

  .marketing-card-grid,
  .service-page-grid,
  .stat-card-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .marketing-card {
    min-height: 0;
  }

  .route-visual {
    min-height: 310px;
  }

  .contact-form-card {
    padding: 18px;
  }

  .service-item {
    gap: 12px;
    grid-template-columns: 1fr;
    padding: 26px 0;
  }

  .feature-card__index,
  .workflow-step span {
    margin-bottom: 20px;
  }

  .form-footer,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-links {
    justify-items: start;
  }

  .cookie-banner__actions,
  .modal__actions {
    flex-direction: column;
  }

  .cookie-banner__actions .button,
  .modal__actions .button,
  .form-footer .button {
    width: 100%;
  }
}

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

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