:root {
  --ink: #0a1220;
  --ink-2: #111d2f;
  --navy: #07111e;
  --navy-2: #0c1c2e;
  --paper: #f8fafc;
  --white: #fff;
  --orange: #2563eb;
  --orange-2: #1d4ed8;
  --teal: #38d9bd;
  --muted: #66758a;
  --line: #dfe5eb;
  --shadow: 0 24px 80px rgba(10, 18, 32, 0.14);
  --radius: 26px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body[dir="rtl"],
html[dir="rtl"] {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

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

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

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

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

.skip-link {
  position: fixed;
  inset-inline-start: 20px;
  top: -80px;
  background: #fff;
  color: #000;
  padding: 12px 18px;
  z-index: 999;
  border-radius: 10px;
}

.skip-link:focus {
  top: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 20px;
}

.brand strong {
  color: var(--orange);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--orange), var(--orange-2));
  display: grid;
  place-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(255, 107, 35, 0.28);
  flex: 0 0 auto;
}

.brand-mark i {
  position: absolute;
  width: 24px;
  height: 7px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transform: rotate(-25deg);
  top: 8px;
  left: 8px;
}

.brand-mark b {
  position: relative;
  font-size: 15px;
  margin-top: 9px;
}

.brand-full {
  gap: 14px;
}

.brand-mark-icon {
  height: 44px;
  width: auto;
  display: block;
  flex: 0 0 auto;
}

.brand-divider {
  width: 1px;
  height: 32px;
  background: #24479c;
  opacity: 0.45;
  flex: 0 0 auto;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-title {
  font-size: 19px;
  font-weight: 800;
  color: #14151a;
  letter-spacing: -0.01em;
}

.brand-title strong {
  color: #14151a;
  font-weight: 800;
}

.brand-subtitle {
  font-size: 10.5px;
  font-weight: 600;
  color: #5b6470;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(247, 249, 251, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10, 18, 32, 0.08);
  transition: 0.25s;
}

.site-header.scrolled {
  box-shadow: 0 14px 50px rgba(8, 17, 30, 0.1);
}

.header-inner {
  width: min(1320px, calc(100% - 32px));
  height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-inline: auto;
  font-size: 14px;
  font-weight: 700;
  color: #2f3338;
}

.main-navigation>a,
.nav-dropdown>button {
  padding: 28px 0;
  border: 0;
  background: none;
  color: inherit;
  font-weight: inherit;
}

.main-navigation a:hover,
.nav-dropdown>button:hover {
  color: var(--orange);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown>button {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-panel {
  position: absolute;
  top: 72px;
  inset-inline-start: -24px;
  width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown.open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav-dropdown-panel a {
  display: block;
  padding: 13px 14px;
  border-radius: 12px;
  color: #344256;
}

.nav-dropdown-panel a:hover {
  background: #fff2eb;
}

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

.language-switcher {
  position: relative;
}

.language-button {
  height: 44px;
  min-width: 68px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid #d8dadd;
  background: #fff;
  color: #24272b;
  font-weight: 850;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 5px 16px rgba(10, 18, 32, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.language-button:hover,
.language-switcher.open .language-button {
  border-color: #f4a17a;
  box-shadow: 0 8px 20px rgba(239, 78, 16, 0.11);
}

.language-button b {
  color: #f15a24;
  font-size: 12px;
}

.language-menu {
  position: absolute;
  top: 50px;
  inset-inline-end: 0;
  width: 180px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(7px);
  transition: 0.2s;
  z-index: 40;
}

.language-switcher.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.language-menu a {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  color: #364357;
}

.language-menu a:hover,
.language-menu a.active {
  background: #fff0e8;
  color: #b83e00;
}

.language-menu small {
  color: #8793a3;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.menu-toggle em {
  font-style: normal;
  margin-inline-start: 6px;
}

.button {
  border: 0;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 800;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

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

.button-small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 14px;
}

.button-primary {
  background: linear-gradient(135deg, var(--orange), #f14e10);
  color: #fff;
  box-shadow: 0 16px 34px rgba(239, 78, 16, 0.22);
}

.button-primary:hover {
  box-shadow: 0 20px 38px rgba(239, 78, 16, 0.31);
}

.button-outline {
  border: 1px solid #cbd3dd;
  background: transparent;
  color: var(--ink);
}

.header-login-button {
  min-height: 44px;
  padding-inline: 19px;
  border: 1px solid #d8dadd;
  background: #fff;
  color: #25282c;
  box-shadow: 0 5px 16px rgba(10, 18, 32, 0.04);
  white-space: nowrap;
}

.header-login-button:hover {
  background: #f4f4f4;
  border-color: #c7c9cc;
  box-shadow: 0 8px 20px rgba(10, 18, 32, 0.08);
}

.header-contact-button {
  min-height: 44px;
  padding-inline: 21px;
  white-space: nowrap;
}

.button-link {
  padding-inline: 4px;
  color: var(--ink);
}

.button-link span {
  color: var(--orange);
  font-size: 21px;
}

.button-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.14);
}

.full {
  width: 100%;
}

.hero-section {
  padding: 160px 0 76px;
  background: linear-gradient(180deg, #f6f8fa 0, #eef2f5 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: 65px;
  align-items: center;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #b64108;
  text-transform: uppercase;
}

.eyebrow {
  background: #fff0e8;
  border: 1px solid #ffd1bb;
  border-radius: 999px;
  padding: 9px 13px;
}

.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 107, 35, 0.13);
}

.hero-copy h1,
.subpage-hero h1 {
  font-size: clamp(54px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  margin: 23px 0;
  color: #07111e;
}

.hero-copy p {
  font-size: 19px;
  color: #526178;
  max-width: 650px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 32px;
}

.trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: #56657a;
  font-size: 13px;
  font-weight: 700;
}

.parking-visual {
  height: 620px;
  position: relative;
  perspective: 1200px;
}

.visual-glow {
  position: absolute;
  inset: 8% 2%;
  background: radial-gradient(circle,
      rgba(255, 107, 35, 0.18),
      transparent 68%);
  filter: blur(12px);
}

.parking-board {
  position: absolute;
  inset: 64px 36px 64px 28px;
  border-radius: 28px;
  background: linear-gradient(145deg, #142437, #08111d);
  transform: rotateX(56deg) rotateZ(-27deg);
  transform-style: preserve-3d;
  box-shadow:
    0 55px 100px rgba(6, 14, 25, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  overflow: visible;
}

.parking-board:before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 18px;
  background:
    repeating-linear-gradient(90deg,
      transparent 0 77px,
      rgba(255, 255, 255, 0.09) 78px 80px),
    repeating-linear-gradient(0deg,
      transparent 0 95px,
      rgba(255, 255, 255, 0.055) 96px 98px);
}

.parking-lane {
  position: absolute;
  background: #263648;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.lane-one {
  left: 48%;
  top: 0;
  width: 70px;
  height: 100%;
}

.lane-two {
  top: 44%;
  left: 0;
  width: 100%;
  height: 72px;
}

.parking-space {
  position: absolute;
  width: 72px;
  height: 120px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
}

.s1 {
  left: 32px;
  top: 30px;
}

.s2 {
  left: 124px;
  top: 30px;
}

.s3 {
  right: 34px;
  top: 30px;
}

.s4 {
  left: 32px;
  bottom: 28px;
}

.s5 {
  left: 124px;
  bottom: 28px;
}

.s6 {
  right: 34px;
  bottom: 28px;
}

.car {
  position: absolute;
  width: 92px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #d9e1e8);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.28);
  transform: translateZ(55px);
  display: grid;
  place-items: center;
  color: #111b29;
  font-size: 13px;
  font-weight: 900;
}

.car:before,
.car:after {
  content: "";
  position: absolute;
  top: 12px;
  width: 15px;
  height: 26px;
  background: #172535;
  border-radius: 5px;
}

.car:before {
  left: 10px;
}

.car:after {
  right: 10px;
}

.car i {
  position: absolute;
  inset: 8px 26px;
  background: #36536c;
  border-radius: 7px;
}

.car b {
  position: relative;
  background: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 8px;
}

.car-a {
  left: 68px;
  top: 68px;
  animation: carMoveA 9s ease-in-out infinite;
}

.car-b {
  right: 56px;
  bottom: 60px;
  background: linear-gradient(145deg, #ff8a50, #e84c13);
  animation: carMoveB 8s ease-in-out infinite;
}

.car-c {
  left: 220px;
  bottom: 60px;
  background: linear-gradient(145deg, #93f0dd, #28a991);
}

.camera {
  position: absolute;
  width: 17px;
  height: 70px;
  background: #111a25;
  border-radius: 5px;
  transform: translateZ(65px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.camera:after {
  content: "";
  position: absolute;
  top: -14px;
  left: -7px;
  width: 30px;
  height: 20px;
  border-radius: 5px;
  background: #2563eb;
}

.camera span {
  position: absolute;
  inset: -35px -30px;
  border: 1px solid rgba(255, 107, 35, 0.35);
  border-radius: 50%;
  animation: signal 2.4s infinite;
}

.camera-entry {
  left: 48%;
  top: -28px;
}

.camera-exit {
  right: -10px;
  top: 46%;
}

.visual-card {
  position: absolute;
  width: 180px;
  padding: 16px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.96);
  color: #111b29;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  transform: translateZ(100px) rotateZ(27deg) rotateX(-42deg);
}

.visual-card small {
  display: block;
  font-size: 9px;
  font-weight: 900;
  color: #8a95a4;
  letter-spacing: 0.12em;
}

.visual-card strong {
  display: block;
  font-size: 23px;
  margin: 3px 0;
}

.visual-card span {
  font-size: 11px;
  color: #687589;
}

.card-status {
  right: -60px;
  top: 45px;
}

.card-plate {
  left: -70px;
  bottom: 58px;
}

.stats-section {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-strip>div {
  padding: 30px 32px;
  border-inline-end: 1px solid var(--line);
}

.stat-strip>div:last-child {
  border: 0;
}

.stat-strip strong {
  display: block;
  font-size: 36px;
  letter-spacing: -0.05em;
}

.stat-strip span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.stat-feature strong {
  color: var(--orange);
}

.section {
  padding: 108px 0;
}

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

.section-heading h2 {
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.03;
  letter-spacing: -0.06em;
  margin: 14px 0 0;
}

.section-heading.centered {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.section-heading.centered p {
  color: var(--muted);
  max-width: 680px;
  margin: 18px auto;
}

.section-copy>p {
  font-size: 20px;
  color: #55647a;
  margin-top: 0;
}

.check-list,
.feature-list,
.service-points {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.check-list li,
.feature-list li,
.service-points li {
  position: relative;
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.check-list li:before,
.feature-list li:before,
.service-points li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

html[dir="rtl"] .check-list li,
html[dir="rtl"] .feature-list li,
html[dir="rtl"] .service-points li {
  padding: 12px 34px 12px 0;
}

html[dir="rtl"] .check-list li:before,
html[dir="rtl"] .feature-list li:before,
html[dir="rtl"] .service-points li:before {
  left: auto;
  right: 0;
}

.how-section {
  background: var(--navy);
  color: #fff;
}

.how-section .kicker,
.portal-section .kicker {
  color: #ff9363;
}

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

.step-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025));
  position: relative;
  overflow: hidden;
}

.step-card>span {
  position: absolute;
  right: 22px;
  top: 15px;
  font-size: 54px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
}

.step-card h3 {
  font-size: 24px;
  margin: 22px 0 8px;
}

.step-card p {
  color: #aeb9c8;
}

.step-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: #182a3d;
  position: relative;
}

.entry-icon:before,
.exit-icon:before {
  content: "";
  position: absolute;
  width: 34px;
  height: 18px;
  border: 4px solid var(--orange);
  border-radius: 8px;
  left: 15px;
  top: 23px;
}

.entry-icon:after {
  content: "→";
  position: absolute;
  right: -10px;
  top: 17px;
  color: #fff;
  font-size: 28px;
}

.exit-icon:after {
  content: "←";
  position: absolute;
  left: -10px;
  top: 17px;
  color: #fff;
  font-size: 28px;
}

.logic-icon:before {
  content: "";
  position: absolute;
  inset: 17px;
  border: 3px solid var(--teal);
  border-radius: 50%;
}

.logic-icon:after {
  content: "✓";
  position: absolute;
  left: 24px;
  top: 17px;
  color: #fff;
  font-size: 24px;
}

.products-section {
  background: #fff;
}

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

.product-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  min-height: 325px;
  position: relative;
  transition: 0.25s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: #ffc8ad;
}

.product-no {
  font-size: 12px;
  font-weight: 900;
  color: #a1acb9;
}

.product-card h3 {
  font-size: 23px;
  letter-spacing: -0.03em;
  margin: 22px 0 10px;
}

.product-card p {
  color: var(--muted);
}

.product-card>b {
  display: block;
  margin-top: 26px;
  color: #bb4309;
  font-size: 13px;
}

.product-symbol {
  width: 72px;
  height: 72px;
  margin-top: 28px;
  border-radius: 20px;
  background: #fff0e8;
  position: relative;
}

.sensor-symbol:before {
  content: "";
  position: absolute;
  width: 32px;
  height: 16px;
  border: 4px solid var(--orange);
  border-radius: 7px;
  left: 18px;
  top: 26px;
}

.sensor-symbol:after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 107, 35, 0.35);
  border-radius: 50%;
}

.payment-symbol:before {
  content: "€";
  position: absolute;
  left: 23px;
  top: 14px;
  font-size: 30px;
  color: var(--orange);
  font-weight: 900;
}

.portal-symbol:before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 3px solid var(--orange);
  border-radius: 6px;
  box-shadow: inset 0 -12px 0 rgba(255, 107, 35, 0.15);
}

.service-symbol:before {
  content: "?";
  position: absolute;
  left: 26px;
  top: 12px;
  font-size: 34px;
  color: var(--orange);
  font-weight: 900;
}

.sectors-section {
  background: #eef2f5;
}

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

.sector-card {
  border-radius: 26px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(10, 18, 32, 0.06);
}

.sector-card>div:last-child {
  padding: 26px;
}

.sector-card small {
  color: var(--orange);
  font-weight: 900;
}

.sector-card h3 {
  font-size: 25px;
  margin: 7px 0;
}

.sector-card p {
  color: var(--muted);
}

.sector-art {
  height: 200px;
  background: linear-gradient(145deg, #15273b, #0a1320);
  position: relative;
  overflow: hidden;
}

.sector-art:before {
  content: "";
  position: absolute;
  inset: 30px;
  background:
    repeating-linear-gradient(90deg,
      transparent 0 58px,
      rgba(255, 255, 255, 0.15) 59px 61px),
    linear-gradient(0deg,
      transparent 47%,
      rgba(255, 255, 255, 0.13) 48% 50%,
      transparent 51%);
  transform: skewY(-8deg);
}

.sector-art span {
  position: absolute;
  width: 75px;
  height: 38px;
  border-radius: 13px;
  background: var(--orange);
  left: 34%;
  top: 43%;
  transform: rotate(-8deg);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.hospitality .sector-art {
  background: linear-gradient(145deg, #35251f, #111821);
}

.property .sector-art {
  background: linear-gradient(145deg, #153028, #0b1720);
}

.portal-section {
  background: var(--navy);
  color: #fff;
}

.portal-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 65px;
  align-items: center;
}

.portal-copy h2 {
  font-size: clamp(42px, 5vw, 67px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  margin: 15px 0;
}

.portal-copy p {
  color: #afbac8;
  font-size: 18px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 22px;
}

.feature-list li {
  border-color: rgba(255, 255, 255, 0.12);
  color: #d9e1eb;
}

.portal-mockup {
  height: 530px;
  background: #f5f7f9;
  border-radius: 26px;
  display: grid;
  grid-template-columns: 82px 1fr;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-7deg) rotateX(2deg);
}

.mock-sidebar {
  background: #0b192a;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mini-logo {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.mock-sidebar i {
  width: 37px;
  height: 37px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
}

.mock-sidebar i.active {
  background: rgba(255, 107, 35, 0.3);
  border: 1px solid var(--orange);
}

.mock-main {
  padding: 28px;
  color: var(--ink);
}

.mock-top {
  height: 35px;
  display: flex;
  justify-content: space-between;
}

.mock-top span {
  width: 180px;
  height: 13px;
  border-radius: 99px;
  background: #ccd4dd;
}

.mock-top b {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d8dee5;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0;
}

.mock-cards article {
  background: #fff;
  border: 1px solid #e2e6eb;
  border-radius: 16px;
  padding: 18px;
}

.mock-cards small {
  display: block;
  color: #8692a1;
}

.mock-cards strong {
  font-size: 27px;
}

.mock-chart {
  height: 190px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2e6eb;
  padding: 24px;
  display: flex;
  align-items: end;
  gap: 14px;
}

.mock-chart i {
  flex: 1;
  background: linear-gradient(var(--orange-2), var(--orange));
  border-radius: 8px 8px 0 0;
}

.bar-1 {
  height: 35%;
}

.bar-2 {
  height: 56%;
}

.bar-3 {
  height: 48%;
}

.bar-4 {
  height: 75%;
}

.bar-5 {
  height: 62%;
}

.bar-6 {
  height: 88%;
}

.bar-7 {
  height: 68%;
}

.mock-table {
  margin-top: 16px;
}

.mock-table span {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  background: #fff;
  border-bottom: 1px solid #edf0f3;
}

.mock-table em {
  font-style: normal;
  color: #16876d;
  font-size: 12px;
}

.models-section {
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 34px;
  background: #fff;
}

.price-card.featured {
  border: 2px solid var(--orange);
  box-shadow: 0 25px 65px rgba(255, 107, 35, 0.15);
  transform: translateY(-14px);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  border-radius: 99px;
  padding: 7px 15px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.plan-label {
  font-weight: 900;
  color: #6b7788;
}

.price-card h3 {
  font-size: 50px;
  margin: 16px 0 0;
  letter-spacing: -0.06em;
}

.price-card>p {
  color: var(--muted);
  margin-top: 0;
}

.price-card ul {
  list-style: none;
  padding: 20px 0;
  margin: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-card li {
  padding: 7px 0;
  color: #4e5b6d;
}

.price-card li:before {
  content: "✓";
  color: var(--orange);
  font-weight: 900;
  margin-inline-end: 8px;
}

.faq-section {
  background: #eef2f5;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 75px;
}

.accordion-item {
  border-bottom: 1px solid #cfd7e0;
}

.accordion-item button {
  width: 100%;
  padding: 24px 0;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: inherit;
  font-size: 18px;
  font-weight: 800;
}

.accordion-item button b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #bdc7d2;
  display: grid;
  place-items: center;
  color: var(--orange);
}

.accordion-item>div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s;
}

.accordion-item>div>p {
  overflow: hidden;
  color: var(--muted);
  margin: 0;
}

.accordion-item.open>div {
  grid-template-rows: 1fr;
}

.accordion-item.open>div>p {
  padding: 0 0 22px;
}

.accordion-item.open button b {
  transform: rotate(45deg);
}

.contact-section {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.contact-copy h2 {
  font-size: clamp(43px, 5vw, 67px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

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

.contact-detail {
  margin-top: 28px;
}

.contact-detail small {
  display: block;
  color: #8994a2;
  font-weight: 700;
}

.contact-detail a {
  font-size: 22px;
  font-weight: 800;
}

.contact-form {
  padding: 34px;
  border-radius: 26px;
  background: #f2f5f7;
  border: 1px solid #dfe5eb;
}

.contact-form h3 {
  margin-top: 0;
  font-size: 25px;
}

.contact-form label,
.auth-card label,
.service-login-card label,
.appeal-form-card label {
  display: block;
  margin-bottom: 15px;
}

.contact-form label>span,
.auth-card label>span,
.service-login-card label>span,
.appeal-form-card label>span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #4d5a6b;
  margin-bottom: 7px;
}

.contact-form input,
.contact-form textarea,
.auth-card input,
.service-login-card input,
.appeal-form-card input,
.appeal-form-card select,
.appeal-form-card textarea {
  width: 100%;
  border: 1px solid #cad3dd;
  background: #fff;
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.auth-card input:focus,
.service-login-card input:focus,
.appeal-form-card input:focus,
.appeal-form-card textarea:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 4px rgba(255, 107, 35, 0.12);
}

.contact-form textarea,
.appeal-form-card textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-label input {
  width: auto;
}

.driver-help-section {
  padding: 0 0 100px;
  background: #fff;
}

.driver-help-card {
  background: linear-gradient(135deg, var(--orange), #d94308);
  color: #fff;
  border-radius: 28px;
  padding: 43px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 25px 70px rgba(228, 72, 11, 0.23);
}

.driver-help-card .kicker {
  color: #fff3ec;
}

.driver-help-card h2 {
  font-size: 40px;
  letter-spacing: -0.05em;
  margin: 7px 0;
}

.driver-help-card p {
  max-width: 740px;
  margin: 0;
  color: #ffe4d8;
}

.site-footer {
  background: #07111e;
  color: #dce3eb;
  padding: 78px 0 28px;
}

.footer-grid {
  width: min(var(--container), calc(100% - 40px));
  margin: auto;
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 50px;
}

.footer-brand {
  color: #fff;
}

.footer-brand .brand-divider {
  background: #4d6bb0;
  opacity: 0.6;
}

.footer-brand .brand-title,
.footer-brand .brand-title strong {
  color: #fff;
}

.footer-brand .brand-subtitle {
  color: #97a7b9;
}

.footer-grid p {
  color: #97a7b9;
  max-width: 360px;
}

.footer-grid h3 {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #60a5fa;
  text-transform: uppercase;
}

.footer-grid>div>a:not(.brand) {
  display: block;
  color: #aebac8;
  padding: 5px 0;
}

.footer-grid>div>a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(var(--container), calc(100% - 40px));
  margin: 60px auto 0;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  color: #77889c;
  font-size: 13px;
}

.flash-stack {
  position: fixed;
  z-index: 180;
  top: 96px;
  right: 20px;
  width: min(440px, calc(100% - 40px));
}

.flash-message {
  padding: 15px 18px;
  border-radius: 13px;
  margin-bottom: 10px;
  background: #e8fff8;
  border: 1px solid #a6e9d7;
  color: #075e4a;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.flash-message.error {
  background: #fff0ee;
  border-color: #ffc1b7;
  color: #98280f;
}

.flash-message.one-time {
  background: #fff5da;
  border-color: #ffd571;
  color: #664700;
}

.subpage-hero {
  padding: 180px 0 100px;
  background: linear-gradient(140deg, #eef2f5, #fff);
}

.narrow {
  max-width: 900px;
}

.subpage-hero p {
  font-size: 20px;
  color: var(--muted);
  max-width: 700px;
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 33px;
}

.detail-card>span {
  color: var(--orange);
  font-weight: 900;
}

.detail-card h2 {
  font-size: 27px;
}

.detail-card p {
  color: var(--muted);
}

.service-page {
  min-height: 100vh;
  padding: 160px 20px 100px;
  background: linear-gradient(140deg, #07111e 0, #11283d 60%, #173d46 100%);
  color: #fff;
}

.service-shell {
  width: min(1100px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 70px;
  align-items: center;
}

.service-copy h1 {
  font-size: clamp(54px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.service-copy p {
  font-size: 19px;
  color: #bdc8d5;
}

.service-points li {
  border-color: rgba(255, 255, 255, 0.14);
}

.service-login-card {
  background: #fff;
  color: var(--ink);
  padding: 36px;
  border-radius: 26px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

.service-logo {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 24px;
}

.service-login-card small {
  display: block;
  text-align: center;
  color: var(--muted);
  margin-top: 14px;
}

.case-page {
  padding: 145px 0 100px;
  background: #eef2f5;
  min-height: 100vh;
}

.case-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 28px;
}

.case-head h1 {
  font-size: 50px;
  letter-spacing: -0.06em;
  margin: 4px 0;
}

.case-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 25px;
}

.case-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 25px;
  padding: 32px;
}

.case-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.case-status strong {
  font-size: 35px;
}

.case-card dl {
  margin: 0;
}

.case-card dl>div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.case-card dt {
  color: var(--muted);
}

.case-card dd {
  margin: 0;
  font-weight: 800;
  text-align: end;
}

.plate-chip {
  display: inline-flex;
  border: 2px solid #172131;
  border-radius: 6px;
  padding: 3px 8px;
  background: #fff;
  color: #111;
  font-family: monospace;
  font-weight: 900;
}

.plate-chip.light {
  border-color: #172131;
}

.case-note {
  background: #f5f7f9;
  border-radius: 14px;
  padding: 15px;
  color: #59677a;
}

.appeal-form-card h2 {
  font-size: 32px;
}

.file-drop {
  padding: 15px;
  border: 1px dashed #adb9c6;
  border-radius: 14px;
}

.file-drop input {
  border: 0;
  padding: 6px 0;
}

.file-drop small {
  display: block;
  color: var(--muted);
}

.status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #edf1f4;
  color: #657386;
}

.status.open {
  background: #fff0e7;
  color: #bd480f;
}

.status.under_review,
.status.submitted {
  background: #fff7d8;
  color: #896400;
}

.status.paid,
.status.approved,
.status.accepted,
.status.completed,
.status.success {
  background: #dcf8ef;
  color: #08735b;
}

.status.cancelled,
.status.rejected,
.status.failure {
  background: #ffe7e3;
  color: #a6311a;
}

.legal-page {
  padding: 155px 0 100px;
  background: #fff;
}

.legal-content {
  max-width: 900px;
}

.legal-content h1 {
  font-size: 58px;
  letter-spacing: -0.06em;
}

.legal-content h2 {
  margin-top: 35px;
  font-size: 24px;
}

.legal-content p {
  color: #4f5e72;
}

.legal-warning {
  margin-top: 35px;
  padding: 18px;
  border-left: 4px solid var(--orange);
  background: #fff4ee;
  border-radius: 0 12px 12px 0;
}

.error-page {
  min-height: 80vh;
  padding: 160px 20px 100px;
  display: grid;
  place-items: center;
  text-align: center;
}

.error-page>div>span {
  font-size: 80px;
  font-weight: 900;
  color: var(--orange);
}

.error-page h1 {
  font-size: 45px;
  margin: 0;
}

.error-page p {
  color: var(--muted);
}

.auth-body {
  min-height: 100vh;
  background: linear-gradient(135deg, #eef2f5 0, #fff 55%, #ffece2 100%);
  padding: 25px;
}

.auth-brand {
  position: fixed;
  top: 24px;
  left: 28px;
  z-index: 5;
}

.auth-language {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 5;
}

.auth-shell {
  min-height: calc(100vh - 50px);
  display: grid;
  grid-template-columns: 480px 500px;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding-top: 60px;
}

.auth-shell.single {
  grid-template-columns: 480px;
}

.auth-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 27px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.auth-card h1 {
  font-size: 42px;
  letter-spacing: -0.06em;
  margin: 10px 0;
}

.auth-card>p,
.auth-card>small {
  color: var(--muted);
}

.auth-card form {
  margin-top: 24px;
}

.form-hint {
  font-size: 12px;
  color: var(--muted);
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 18px;
  color: #b94810;
  font-weight: 800;
}

.auth-visual {
  text-align: center;
}

.shield-graphic {
  width: 270px;
  height: 300px;
  margin: auto;
  position: relative;
  background: linear-gradient(150deg, #0f2a42, #07111e);
  clip-path: polygon(50% 0, 92% 16%, 85% 73%, 50% 100%, 15% 73%, 8% 16%);
  display: grid;
  place-items: center;
  box-shadow: 0 45px 80px rgba(10, 18, 32, 0.25);
}

.shield-graphic:before {
  content: "";
  position: absolute;
  inset: 15px;
  clip-path: inherit;
  background: linear-gradient(145deg, #193c5a, #0a1725);
}

.shield-graphic span {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 107, 35, 0.3);
  border-radius: 50%;
  animation: signal 2.3s infinite;
}

.shield-graphic i {
  position: absolute;
  width: 80px;
  height: 95px;
  border: 8px solid var(--orange);
  border-radius: 42px 42px 12px 12px;
  top: 94px;
}

.shield-graphic b {
  position: relative;
  color: #fff;
  font-size: 28px;
}

.auth-visual h2 {
  font-size: 31px;
}

.auth-visual ul {
  list-style: none;
  padding: 0;
  color: #56657a;
}

.auth-flash {
  top: 90px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.65s ease;
}

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

@keyframes carMoveA {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 150px 75px;
  }
}

@keyframes carMoveB {

  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: -115px -55px;
  }
}

@keyframes signal {
  0% {
    transform: scale(0.7);
    opacity: 0.9;
  }

  100% {
    transform: scale(2.3);
    opacity: 0;
  }
}

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

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

  .car,
  .camera span,
  .shield-graphic span {
    animation: none !important;
  }

  .button {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .main-navigation {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-navigation.open {
    display: flex;
  }

  .main-navigation>a,
  .nav-dropdown>button {
    padding: 12px;
    text-align: inherit;
  }

  .nav-dropdown-panel {
    position: static;
    width: 100%;
    box-shadow: none;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    background: #f4f6f8;
  }

  .nav-dropdown.open .nav-dropdown-panel {
    display: block;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    margin-left: auto;
  }

  .header-actions {
    margin-left: 0;
  }

  .hero-grid,
  .portal-grid,
  .contact-grid,
  .service-shell,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .parking-visual {
    max-width: 760px;
    width: 100%;
    margin: auto;
  }

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

  .portal-copy {
    text-align: center;
  }

  .feature-list {
    text-align: left;
  }

  .portal-mockup {
    transform: none;
  }

  .service-copy {
    text-align: center;
  }

  .service-points {
    max-width: 600px;
    margin-inline: auto;
  }

  .service-login-card {
    width: min(460px, 100%);
    margin: auto;
  }

  .auth-shell {
    grid-template-columns: 460px;
  }

  .auth-visual {
    display: none;
  }
}

@media (max-width: 760px) {
  .header-inner {
    height: 72px;
  }

  .site-header .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-mark-icon {
    height: 32px;
  }

  .brand-subtitle {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .main-navigation {
    top: 72px;
  }

  .hero-section {
    padding-top: 125px;
  }

  .hero-copy h1 {
    font-size: 50px;
  }

  .parking-visual {
    height: 430px;
  }

  .parking-board {
    inset: 60px 20px;
    transform: rotateX(55deg) rotateZ(-19deg);
  }

  .visual-card {
    display: none;
  }

  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .stat-strip>div {
    border-bottom: 1px solid var(--line);
  }

  .split-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section {
    padding: 78px 0;
  }

  .steps-grid,
  .sector-grid,
  .pricing-grid,
  .feature-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-list {
    grid-template-columns: 1fr;
  }

  .portal-mockup {
    height: 430px;
    grid-template-columns: 60px 1fr;
  }

  .mock-main {
    padding: 16px;
  }

  .mock-cards article:nth-child(3) {
    display: none;
  }

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

  .driver-help-card {
    display: block;
    padding: 32px;
  }

  .driver-help-card .button {
    margin-top: 25px;
  }

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

  .footer-grid>div:first-child {
    grid-column: 1/-1;
  }

  .footer-bottom {
    display: block;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .case-head {
    display: block;
  }

  .case-head form {
    margin-top: 15px;
  }

  .auth-shell {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

  .auth-brand {
    left: 18px;
  }

  .auth-language {
    right: 18px;
  }

  .service-page {
    padding-top: 125px;
  }

  .legal-content h1 {
    font-size: 44px;
  }
}

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

  .header-inner {
    width: calc(100% - 20px);
    gap: 10px;
  }

  .menu-toggle em {
    display: none;
  }

  .language-button {
    min-width: 62px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .parking-visual {
    height: 340px;
  }

  .parking-board {
    inset: 45px 6px;
  }

  .car {
    width: 70px;
    height: 37px;
  }

  .stats-section {
    display: none;
  }

  .portal-mockup {
    display: none;
  }

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

  .footer-grid>div:first-child {
    grid-column: auto;
  }

  .case-card,
  .contact-form,
  .service-login-card,
  .auth-card {
    padding: 24px;
  }

  .driver-help-card h2 {
    font-size: 32px;
  }

  .site-footer {
    padding-top: 55px;
  }
}

.driver-direct-grid {
  width: min(var(--container), calc(100% - 40px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 40px;
  align-items: start;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.driver-direct-grid>div p {
  color: rgba(255, 255, 255, 0.75);
}

.driver-direct-grid h3 {
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.driver-direct-form {
  display: grid;
  gap: 14px;
}

.driver-direct-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.driver-direct-form input,
.driver-direct-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 17, 30, 0.48);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}

.driver-direct-form input:focus,
.driver-direct-form textarea:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.driver-direct-form textarea {
  min-height: 120px;
  resize: vertical;
}

.driver-direct-form .file-drop {
  border-color: rgba(255, 255, 255, 0.3);
}

.driver-direct-form .file-drop input {
  background: transparent;
  padding: 6px 0;
}

.driver-direct-form .file-drop small {
  color: rgba(255, 255, 255, 0.68);
}

.driver-direct-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.driver-direct-form .checkbox-label input {
  width: auto;
  margin-top: 5px;
}

.driver-direct-form .button {
  justify-self: start;
}

@media (max-width: 1080px) {
  .driver-direct-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .driver-direct-grid {
    width: min(100% - 28px, var(--container));
    padding: 24px;
  }

  .driver-direct-form .button {
    width: 100%;
  }
}

.legal-language-note {
  padding: 13px 16px;
  border-radius: 12px;
  background: #eef3f7;
  color: #46566b !important;
  font-size: 14px;
  font-weight: 700;
}

/* Products navigation: the label opens the overview page, the chevron opens the submenu. */
.nav-products-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-products-link {
  padding: 28px 0;
  font-weight: 700;
}

.nav-products-trigger>button {
  width: 28px;
  height: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 800;
}

.nav-products-link:hover,
.nav-products-trigger>button:hover,
.nav-products.open .nav-products-link,
.nav-products.open .nav-products-trigger>button {
  color: var(--orange);
}

.nav-products-trigger>button span {
  display: block;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.nav-products.open .nav-products-trigger>button span {
  transform: rotate(180deg);
}

.nav-products-overview {
  border-bottom: 1px solid var(--line);
  color: var(--orange) !important;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .nav-products-trigger {
    justify-content: space-between;
    padding-inline: 12px 5px;
  }

  .nav-products-link {
    flex: 1;
    padding: 12px 0;
    text-align: inherit;
  }

  .nav-products-trigger>button {
    width: 42px;
    height: 42px;
  }
}

.auth-help-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  color: #b8450e;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none
}

.auth-help-link:hover,
.auth-help-link:focus-visible {
  text-decoration: underline
}

.auth-card textarea {
  width: 100%;
  min-height: 110px;
  padding: 14px 16px;
  border: 1px solid #cbd5df;
  border-radius: 14px;
  background: #fff;
  color: #101a28;
  resize: vertical;
  outline: none
}

.auth-card textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(244, 86, 43, .11)
}
