:root {
  --ink: #11151c;
  --ink-soft: #343a46;
  --muted: #626978;
  --paper: #ffffff;
  --canvas: #f1f3f7;
  --line: #d6d9e1;
  --green: #007c78;
  --green-dark: #005d5a;
  --yellow: #d7f24a;
  --yellow-soft: #f3f8ce;
  --coral: #f2554f;
  --coral-soft: #ffe9e8;
  --blue: #315ed4;
  --blue-soft: #e9edff;
  --teal: #008e9b;
  --teal-soft: #ddf3f4;
  --shadow: 0 18px 50px rgba(17, 21, 28, 0.14);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI Variable", "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: relative;
  z-index: 100;
  height: 76px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.home .site-header {
  position: absolute;
  inset: 0 0 auto;
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.24);
  background: rgba(15, 23, 20, 0.36);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-size: 21px;
  font-weight: 800;
}

.brand-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
}

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

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.home .site-nav a {
  color: rgba(255, 255, 255, 0.88);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--yellow);
  outline: none;
}

.site-nav a.nav-app-link,
.home .site-nav a.nav-app-link {
  margin-left: 5px;
  color: #fff;
  background: var(--blue);
}

.site-nav a.nav-app-link:hover,
.site-nav a.nav-app-link:focus-visible,
.home .site-nav a.nav-app-link:hover,
.home .site-nav a.nav-app-link:focus-visible {
  color: var(--ink);
  background: var(--yellow);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before {
  position: absolute;
  top: -6px;
}

.nav-toggle-lines::after {
  position: absolute;
  top: 6px;
}

.hero {
  position: relative;
  min-height: 720px;
  min-height: min(82vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-image: url("parking-pro-hero.webp");
  background-size: cover;
  background-position: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 21, 0.66);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-block: 128px 82px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

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

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

h1,
h2,
h3 {
  line-height: 1.12;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: 68px;
  font-weight: 850;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible {
  outline: 3px solid rgba(244, 200, 74, 0.4);
  outline-offset: 3px;
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
}

.button-primary:hover {
  background: #ffd96c;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(8, 13, 21, 0.3);
}

.button-secondary:hover {
  background: rgba(8, 13, 21, 0.62);
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-dark:hover {
  background: #2c3833;
}

.hero-proof {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(8, 13, 21, 0.82);
}

.proof-grid {
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.proof-item {
  padding: 11px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-item:first-child {
  border-left: 0;
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  font-size: 15px;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.section {
  padding-block: 94px;
}

.section-muted {
  background: var(--canvas);
}

.section-dark {
  color: #fff;
  background: #11151c;
}

.section-heading {
  max-width: 710px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 16px;
  font-size: 44px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

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

.type-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--type-color);
  border-radius: 3px;
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.type-card.monthly { --type-color: var(--green); }
.type-card.daily { --type-color: var(--yellow); }
.type-card.corporate { --type-color: var(--blue); }

.type-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  border-radius: 2px;
  color: var(--ink);
  background: var(--type-color);
  font-size: 14px;
  font-weight: 900;
}

.type-card.corporate .type-index,
.type-card.monthly .type-index {
  color: #fff;
}

.type-card h3 {
  margin-bottom: 10px;
  font-size: 30px;
}

.type-card p {
  max-width: 470px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: var(--ink);
  font-weight: 850;
}

.text-link::after {
  content: "\2192";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.operations-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.operations-copy {
  position: sticky;
  top: 108px;
}

.operations-copy h2 {
  margin-bottom: 18px;
  font-size: 44px;
}

.operations-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

.operation-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.operation-number {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.operation-row h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.operation-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.choice-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.choice-band h2 {
  margin-bottom: 14px;
  font-size: 42px;
}

.choice-band p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.choice-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.choice-links a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  font-weight: 750;
}

.choice-links a:hover,
.choice-links a:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  outline: none;
}

.site-footer {
  padding-block: 32px;
  color: #d7dfda;
  background: #090c11;
}

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

.footer-brand p {
  margin: 8px 0 0;
  color: #93a099;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: #bac5bf;
  font-size: 14px;
  font-weight: 700;
}

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

/* Parking type pages */
.mode-page {
  --mode: var(--green);
  --mode-soft: #ddf3f1;
}

.mode-page.daily-page {
  --mode: #686f00;
  --mode-soft: var(--yellow-soft);
}

.mode-page.corporate-page {
  --mode: #315ed4;
  --mode-soft: var(--blue-soft);
}

/* Contact page */
.contact-page {
  --mode: #006b62;
  --mode-soft: #e1f3ef;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding-block: 84px 92px;
  background: var(--mode-soft);
}

.contact-hero::after {
  position: absolute;
  inset: 0 0 0 auto;
  width: 15%;
  background: var(--yellow);
  content: "";
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
}

.contact-hero .breadcrumb a:hover {
  color: var(--mode);
}

.contact-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 62px;
}

.contact-hero-copy {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 20px;
}

.contact-content {
  min-height: 460px;
  padding-block: 82px 96px;
}

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

.contact-card {
  --contact-accent: var(--green);
  min-width: 0;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--contact-accent);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 21, 28, 0.08);
}

.contact-card-whatsapp {
  --contact-accent: #178a4b;
}

.contact-card-email {
  --contact-accent: var(--blue);
}

.contact-card-address {
  --contact-accent: var(--coral);
}

.contact-card-hours {
  --contact-accent: #7b7000;
}

.contact-card-note {
  --contact-accent: var(--ink);
}

.contact-kind {
  margin: 0 0 22px;
  color: var(--contact-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-card h2 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.25;
}

.contact-value {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink-soft);
  font-size: 16px;
  white-space: pre-line;
}

.contact-action {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 30px;
  color: var(--contact-accent);
  font-size: 14px;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact-action:hover,
.contact-action:focus-visible {
  color: var(--ink);
  outline: none;
}

.contact-feedback:not([hidden]) {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-feedback p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
}

.contact-spinner {
  width: 34px;
  height: 34px;
  border: 3px solid var(--line);
  border-top-color: var(--mode);
  border-radius: 50%;
  animation: contact-spin 700ms linear infinite;
}

.contact-feedback.is-error .contact-spinner {
  display: none;
}

.contact-retry {
  margin-top: 22px;
  color: #fff;
  border: 0;
  background: var(--mode);
  cursor: pointer;
}

@keyframes contact-spin {
  to {
    transform: rotate(360deg);
  }
}

.mode-hero {
  position: relative;
  overflow: hidden;
  padding-block: 74px 82px;
  background: var(--mode-soft);
}

.mode-hero::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 13%;
  height: 100%;
  background: var(--mode);
  content: "";
}

.mode-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 70px;
  align-items: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.breadcrumb a:hover {
  color: var(--mode);
}

.mode-hero h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: 58px;
}

.mode-hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 19px;
}

.mode-kicker {
  margin-bottom: 12px;
  color: var(--mode);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mode-hero .button-dark {
  background: var(--mode);
}

.mode-preview {
  position: relative;
  width: 100%;
  min-height: 500px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: 2px;
  background: #fff;
  box-shadow: 14px 14px 0 var(--mode);
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.preview-brand {
  font-size: 15px;
  font-weight: 900;
}

.preview-status {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--mode);
  background: var(--mode-soft);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-title {
  padding-block: 23px 18px;
}

.preview-title span,
.preview-title strong {
  display: block;
}

.preview-title span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.preview-title strong {
  margin-top: 5px;
  font-size: 24px;
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 2px;
}

.preview-stat {
  min-width: 0;
  padding: 13px 10px;
  border-left: 1px solid var(--line);
}

.preview-stat:first-child {
  border-left: 0;
}

.preview-stat strong,
.preview-stat span {
  display: block;
}

.preview-stat strong {
  font-size: 17px;
}

.preview-stat span {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-action-title {
  margin: 24px 0 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-row {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 780;
}

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

.preview-row span:last-child {
  color: var(--mode);
  font-weight: 900;
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 82px;
  align-items: start;
}

.feature-intro {
  position: sticky;
  top: 108px;
}

.feature-intro h2 {
  margin-bottom: 18px;
  font-size: 43px;
}

.feature-intro p {
  color: var(--muted);
  font-size: 18px;
}

.feature-stack {
  border-top: 1px solid var(--line);
}

.feature-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.feature-bullet {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--mode);
  background: var(--mode-soft);
  font-size: 13px;
  font-weight: 900;
}

.feature-item h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.feature-item p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.workflow-step {
  min-height: 230px;
  padding: 28px 24px;
  border-left: 1px solid var(--line);
}

.workflow-step:first-child {
  border-left: 0;
}

.workflow-step span {
  color: var(--mode);
  font-size: 13px;
  font-weight: 900;
}

.workflow-step h3 {
  margin: 38px 0 10px;
  font-size: 21px;
}

.workflow-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.other-modes {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  align-items: center;
}

.other-modes h2 {
  margin-bottom: 0;
  font-size: 38px;
}

.other-mode-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.other-mode-links a {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  font-weight: 850;
}

.other-mode-links a span:last-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.other-mode-links a:hover,
.other-mode-links a:focus-visible {
  border-color: var(--ink);
  box-shadow: 0 10px 28px rgba(23, 32, 29, 0.08);
  outline: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 960px) {
  .site-header,
  .home .site-header {
    height: 68px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 68px;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    display: block;
    padding: 22px;
    color: var(--ink);
    background: #fff;
    box-shadow: -18px 20px 50px rgba(23, 32, 29, 0.2);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a,
  .home .site-nav a {
    width: 100%;
    min-height: 50px;
    margin-bottom: 4px;
    color: var(--ink-soft);
  }

  .site-nav a.nav-app-link,
  .home .site-nav a.nav-app-link {
    margin-top: 10px;
    margin-left: 0;
    color: #fff;
  }

  .hero {
    min-height: 700px;
    background-position: 56% center;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-content {
    max-width: 650px;
  }

  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .type-card.corporate {
    grid-column: 1 / -1;
  }

  .operations-grid,
  .feature-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .operations-copy,
  .feature-intro {
    position: static;
  }

  .choice-band,
  .other-modes {
    grid-template-columns: 1fr;
  }

  .mode-hero-grid {
    grid-template-columns: 1fr 360px;
    gap: 38px;
  }

  .mode-hero::after {
    width: 7%;
  }

  .mode-hero h1 {
    font-size: 48px;
  }

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

  .workflow-step:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .workflow-step:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

@media (max-width: 840px) {
  .mode-hero::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 8px;
  }

  .mode-hero-grid {
    grid-template-columns: 1fr;
  }

  .mode-preview {
    width: min(100%, 520px);
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .brand {
    font-size: 18px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .hero {
    min-height: 690px;
    align-items: flex-start;
    background-position: 64% center;
  }

  .hero::before {
    background: rgba(8, 13, 21, 0.76);
  }

  .hero-content {
    padding-block: 116px 188px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .proof-grid {
    min-height: 96px;
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-item {
    min-height: 96px;
    padding: 10px 12px;
  }

  .section {
    padding-block: 68px;
  }

  .section-heading h2,
  .operations-copy h2,
  .feature-intro h2 {
    font-size: 34px;
  }

  .section-heading p,
  .operations-copy p,
  .feature-intro p {
    font-size: 16px;
  }

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

  .type-card.corporate {
    grid-column: auto;
  }

  .type-card {
    min-height: 280px;
    padding: 24px;
  }

  .choice-band h2 {
    font-size: 34px;
  }

  .choice-links {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    display: block;
  }

  .footer-links {
    margin-top: 24px;
  }

  .mode-hero {
    padding-block: 52px 64px;
  }

  .mode-hero h1 {
    font-size: 40px;
  }

  .mode-hero-copy {
    font-size: 17px;
  }

  .mode-preview {
    width: min(100%, 410px);
    min-height: 470px;
    margin-inline: auto;
    border-width: 2px;
    border-radius: 2px;
    box-shadow: 9px 9px 0 var(--mode);
  }

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

  .workflow-step,
  .workflow-step:nth-child(3),
  .workflow-step:nth-child(4) {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .workflow-step:first-child {
    border-top: 0;
  }

  .workflow-step h3 {
    margin-top: 20px;
  }

  .other-mode-links {
    grid-template-columns: 1fr;
  }

  .other-mode-links a {
    min-height: 84px;
  }

  .contact-hero {
    padding-block: 56px 66px;
  }

  .contact-hero::after {
    inset: auto 0 0;
    width: 100%;
    height: 8px;
  }

  .contact-hero h1 {
    font-size: 42px;
  }

  .contact-hero-copy {
    font-size: 17px;
  }

  .contact-content {
    padding-block: 60px 72px;
  }

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

  .contact-card {
    min-height: 240px;
    padding: 24px;
  }
}

@media (max-width: 380px) {
  .hero h1,
  .mode-hero h1,
  .contact-hero h1 {
    font-size: 36px;
  }

  .proof-item strong {
    font-size: 13px;
  }

  .operation-row,
  .feature-item {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .mode-preview {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
