:root {
  --primary: #005eea;
  --primary-hover: #004fd0;
  --primary-dark: #002a66;
  --navy: #061733;
  --ink: #091631;
  --muted: #5d6982;
  --line: #dce5f4;
  --soft: #f4f8ff;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(6, 23, 51, 0.12);
  --page-padding: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
          radial-gradient(circle at top right, rgba(0, 94, 234, 0.10), transparent 34rem),
          radial-gradient(circle at top left, rgba(0, 94, 234, 0.06), transparent 28rem),
          linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

body.no-scroll {
  overflow: hidden;
}

/* Choice / visitor selector page */
.choice-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
          radial-gradient(circle at top right, rgba(0, 94, 234, 0.10), transparent 34rem),
          radial-gradient(circle at top left, rgba(0, 94, 234, 0.06), transparent 28rem),
          linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.choice-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
          linear-gradient(rgba(0, 94, 234, 0.055) 1px, transparent 1px),
          linear-gradient(90deg, rgba(0, 94, 234, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0.95),
          rgba(0, 0, 0, 0.70) 45%,
          transparent 100%
  );
  pointer-events: none;
}

.choice-shell {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  display: grid;
  justify-items: center;
}

.choice-logo {
  width: 280px;
  max-width: 82%;
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 12px 26px rgba(6, 23, 51, 0.14));
}

.choice-card {
  width: 100%;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(220, 229, 244, 0.95);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.choice-card h1 {
  max-width: 720px;
  margin: 0 auto 14px;
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.choice-card > p {
  max-width: 680px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.choice-option {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(6, 23, 51, 0.08);
  transition:
          transform 0.3s ease,
          border-color 0.3s ease,
          box-shadow 0.3s ease;
}

.choice-option::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 94, 234, 0.10), transparent 16rem);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.choice-option:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 94, 234, 0.32);
  box-shadow: 0 20px 50px rgba(0, 94, 234, 0.14);
}

.choice-option:hover::before {
  opacity: 1;
}

.choice-icon,
.choice-option strong,
.choice-option small,
.choice-option em {
  position: relative;
  z-index: 1;
}

.choice-icon {
  width: 78px;
  height: 78px;
  display: inline-grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  color: var(--primary);
  box-shadow: 0 14px 32px rgba(0, 94, 234, 0.14);
  font-size: 2.25rem;
}

.choice-option strong {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
}

.choice-option small {
  max-width: 320px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.choice-option em {
  margin-top: 8px;
  color: var(--primary);
  font-style: normal;
  font-weight: 900;
}

.choice-footer {
  margin-top: 26px;
  color: var(--muted);
  font-weight: 700;
}

.choice-footer a {
  color: var(--primary);
  font-weight: 900;
}

.choice-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .choice-page {
    padding: 18px;
    align-items: flex-start;
  }

  .choice-shell {
    padding-top: 22px;
  }

  .choice-logo {
    width: 230px;
  }

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

  .choice-option {
    min-height: 230px;
  }
}

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

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

/* Page wrapper */
.brochure-page {
  position: relative;
  isolation: isolate;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 var(--page-padding) 34px;
  background: transparent;
}

.brochure-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
          linear-gradient(rgba(0, 94, 234, 0.055) 1px, transparent 1px),
          linear-gradient(90deg, rgba(0, 94, 234, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0.95),
          rgba(0, 0, 0, 0.70) 45%,
          transparent 100%
  );
  pointer-events: none;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 86px;
  display: grid;
  grid-template-columns: auto minmax(340px, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-inline: calc(var(--page-padding) * -1);
  padding: 12px var(--page-padding);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 229, 244, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.logo {
  width: 288px;
  height: 68px;
  display: block;
  object-fit: contain;
}

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.3vw, 44px);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--navy);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
  color: var(--navy);
  transition:
          color 0.45s ease,
          transform 0.45s ease;
}

.nav-links a i {
  font-size: 0.92rem;
  transition:
          color 0.45s ease,
          transform 0.45s ease;
}

.nav-links a:hover,
.nav-links a:hover i {
  color: var(--primary);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
  transform: translateX(-50%);
  transition: width 0.45s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .mobile-signin {
  display: none !important;
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: max-content;
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(220, 229, 244, 0.95);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition:
          color 0.3s ease,
          border-color 0.3s ease,
          box-shadow 0.3s ease;
}

.mobile-menu-toggle:hover {
  color: var(--primary);
  border-color: rgba(0, 94, 234, 0.35);
  box-shadow: 0 10px 28px rgba(0, 94, 234, 0.12);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border: 2px solid var(--primary);
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 800;
  transition:
          transform 0.25s ease,
          box-shadow 0.25s ease,
          background 0.25s ease,
          color 0.25s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(0, 94, 234, 0.24);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 12px 28px rgba(0, 94, 234, 0.28);
}

.btn-ghost {
  background: var(--white);
  color: var(--primary);
}

.btn-large {
  min-width: 130px;
  min-height: 44px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
/* Hero */
.hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: 0.9fr 1.55fr;
  gap: 42px;
  align-items: center;
  padding: 46px 0 34px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 5.8vw, 5.05rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  width: min(430px, 100%);
  margin: 24px 0 22px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.48;
}

.hero-visual {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-image {
  width: min(760px, 100%);
  height: auto;
  display: block;
  border-radius: 28px;
  filter: drop-shadow(0 28px 60px rgba(6, 23, 51, 0.16));
}

.hero-image-business,
.hero-image-customer {
  transform: translateX(18px);
}

/* Tablet */
@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
    padding: 40px 0 28px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero p {
    width: min(620px, 100%);
  }

  .hero-visual {
    min-height: auto;
    justify-content: center;
  }

  .hero-image {
    width: min(920px, 100%);
  }

  .hero-image-business,
  .hero-image-customer {
    transform: none;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .hero {
    padding: 34px 0 26px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.1rem);
  }

  .hero p {
    font-size: 1.05rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1;
    min-width: 150px;
  }

  .hero-visual {
    margin-top: 12px;
  }

  .hero-image {
    border-radius: 20px;
    filter: drop-shadow(0 18px 38px rgba(6, 23, 51, 0.14));
  }
}

@media (max-width: 520px) {
  .hero-image {
    width: 112%;
    max-width: none;
  }
}

/* Feature cards */
.feature-strip {
  margin: 8px 0 26px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  scroll-margin-top: 100px;
}

.feature-strip article {
  min-height: 165px;
  padding: 22px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-strip article > i,
.industries article i,
.steps article > i,
.transfer-flow article > i,
.footer-action > i {
  color: var(--primary);
}

.feature-strip article > i {
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  box-shadow: 0 12px 28px rgba(0, 94, 234, 0.13);
  font-size: 2rem;
}

.feature-strip h3,
.steps h3,
.experience h2,
.transfers h2,
.industries h2 {
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-strip h3 {
  margin: 11px 0 8px;
  font-size: 0.9rem;
}

.feature-strip p,
.steps p,
.transfers p {
  margin: 0;
  color: var(--navy);
  font-size: 0.85rem;
  line-height: 1.45;
}

/* Shared sections */
.section {
  margin: 64px 0;
  scroll-margin-top: 100px;
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}

.section-title span {
  height: 2px;
  background: var(--line);
}

.section-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  padding: 20px 0 6px;
}

.steps article {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.steps article:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -20px;
  top: 64px;
  color: var(--primary);
  font-size: 1.6rem;
}

.step-number {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  margin: 0 0 12px;
  border-radius: 50%;
  background: #ddebff;
  color: var(--primary);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 94, 234, 0.16);
}

.steps article > i {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid #cfe0ff;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(6, 23, 51, 0.08);
  font-size: 2.25rem;
}

.steps h3 {
  margin: 4px 0 5px;
  font-size: 0.84rem;
}

/* Industries */
.industries h2 {
  margin: 0 0 14px;
  padding: 24px;
  text-align: center;
  font-size: 1rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.industry-grid article {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(10px);
}

.industry-grid span {
  display: block;
  font-size: 1.6rem;
}

/* Experience */
/* Experience */
.experience {
  margin: 42px 0 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.experience-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 34px rgba(6, 23, 51, 0.07);
  backdrop-filter: blur(10px);
}

.experience-image-wrap {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background:
          radial-gradient(circle at top right, rgba(0, 94, 234, 0.12), transparent 18rem),
          linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border-bottom: 1px solid var(--line);
}

.experience-image {
  width: 112%;
  max-width: none;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: translateX(-6%);
}

.experience-list {
  padding: 26px 28px 28px;
}

.experience h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.experience ul {
  list-style: none;
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
}

.experience li {
  position: relative;
  padding-left: 26px;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.45;
}

.experience li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

.experience h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.experience ul {
  list-style: none;
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
}

.experience li {
  position: relative;
  padding-left: 24px;
  color: var(--navy);
  font-size: 0.9rem;
}

.experience li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

.operator-card {
  text-align: center;
}

/* Transfers */
.transfers {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 24px;
  align-items: center;
  margin: 14px 0;
  padding: 22px 30px;
  border: 1px solid #dcecff;
  border-radius: var(--radius);
  background: rgba(238, 246, 255, 0.92);
  backdrop-filter: blur(10px);
}

.transfers h2 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 1rem;
}

.transfer-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.transfer-flow article {
  display: grid;
  justify-items: center;
}

.transfer-flow article > i {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border: 2px solid rgba(0, 94, 234, 0.28);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 94, 234, 0.16);
  font-size: 2.35rem;
}

.transfer-flow em {
  color: var(--primary);
  font-size: 2rem;
  font-style: normal;
}

.transfer-flow b,
.transfer-flow span {
  display: block;
}

.transfer-flow b {
  margin-bottom: 3px;
}

.transfer-flow span {
  color: var(--muted);
  font-size: 0.8rem;
}

/* Footer */
.footer-cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #061733, #002c68);
  color: #fff;
}

.footer-main,
.footer-action {
  padding: 26px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-main h2 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.86rem;
  line-height: 1.45;
}

.footer-action {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-action strong,
.footer-action small {
  display: block;
}

.footer-action small {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

.footer-action > i {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.contact-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  scroll-margin-top: 100px;
}

.contact-row a {
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
}

/* Responsive */
@media (max-width: 1080px) {
  .topbar {
    gap: 18px;
  }

  .logo {
    width: 240px;
  }

  .nav-links {
    gap: 24px;
    font-size: 1rem;
  }

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

  .hero-visual {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  :root {
    --page-padding: 18px;
  }

  .brochure-page {
    padding-bottom: 24px;
  }

  .topbar {
    min-height: 78px;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    padding-block: 10px;
  }

  .logo {
    width: 220px;
    height: 58px;
  }

  .top-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: var(--page-padding);
    right: var(--page-padding);
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding: 16px;
    border: 1px solid rgba(220, 229, 244, 0.95);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 50px rgba(6, 23, 51, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

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

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1.05rem;
  }

  .nav-links a:hover {
    background: rgba(0, 94, 234, 0.07);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .mobile-signin {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    padding: 14px 18px !important;
    border-radius: 12px;
    background: var(--primary);
    color: #ffffff !important;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0, 94, 234, 0.22);
  }

  .nav-links .mobile-signin:hover {
    background: var(--primary-hover) !important;
    color: #ffffff !important;
  }

  .hero-visual {
    transform: scale(0.86);
    transform-origin: center;
    min-height: 330px;
  }

  .feature-strip,
  .steps,
  .industry-grid,
  .experience,
  .transfers,
  .footer-cta,
  .contact-row {
    grid-template-columns: 1fr;
  }

  .feature-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-strip article:last-child {
    border-bottom: 0;
  }

  .steps article:not(:last-child)::after {
    display: none;
  }

  .steps article > i {
    width: 64px;
    height: 64px;
    font-size: 2rem;
  }

  .experience {
    gap: 22px;
  }

  .transfer-flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .transfer-flow em {
    transform: rotate(90deg);
    line-height: 1;
  }

  .transfer-flow article > i {
    width: 76px;
    height: 76px;
    font-size: 2.15rem;
  }

  .footer-main,
  .footer-action {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .contact-row {
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 34px 0 26px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.1rem);
  }

  .hero p {
    font-size: 1.05rem;
  }

  .hero-visual {
    display: none;
  }

  .operator-screen {
    grid-template-columns: 1fr;
  }

  .operator-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --page-padding: 16px;
  }

  .topbar {
    min-height: 72px;
  }

  .logo {
    width: 210px;
    height: 52px;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .section-title {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-title span {
    display: none;
  }

  .footer-main,
  .footer-action,
  .contact-row {
    padding-inline: 22px;
  }
}

/* Print */
@page {
  size: A4 portrait;
  margin: 8mm;
}

@media print {
  html,
  body {
    background: #fff;
  }

  .brochure-page {
    width: 100%;
    padding: 0;
  }

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

  .topbar {
    position: static;
    min-height: 58px;
    margin: 0;
    padding: 0;
  }

  .nav-links,
  .top-actions {
    display: none;
  }

  .btn,
  .footer-cta,
  .feature-strip,
  .experience,
  .transfers,
  .industry-grid article {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .hero {
    min-height: auto;
    padding-top: 8mm;
  }

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

  .feature-strip,
  .experience,
  .transfers,
  .footer-cta {
    break-inside: avoid;
  }
}