:root {
  --primary: #174a7e;
  --accent: #009eae;
  --bg: #f8fafc;
  --ink: #102a43;
  --muted: #496177;
  --line: #d7e2ec;
  --panel: #f3f7fa;
  --warning: #934208;
  --radius: 20px;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font:
    16px/1.85 "Noto Sans Arabic",
    Tahoma,
    Arial,
    sans-serif;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.55;
}
h1 {
  font-size: 42px;
  letter-spacing: -0.6px;
  font-weight: 800;
}
h2 {
  font-size: 30px;
  font-weight: 750;
}
h3 {
  font-size: 21px;
  font-weight: 700;
}
p {
  color: var(--muted);
  margin-top: 12px;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
}
.icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  vertical-align: middle;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #174a7e;
  outline-offset: 4px;
}
main:focus {
  outline: none;
}
.container {
  max-width: 1240px;
  padding-inline: 28px;
  margin-inline: auto;
}
.reviewbar {
  background: #102a43;
  color: white;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Arial, "Noto Sans Arabic", sans-serif;
  direction: ltr;
  gap: 20px;
  min-height: 50px;
}
.reviewbar b {
  font-size: 18px;
  letter-spacing: 4px;
}
.review-tag {
  font-size: 10px;
  letter-spacing: 2px;
  margin-inline-start: 20px;
  opacity: 0.8;
}
.reviewbar label {
  display: flex;
  align-items: center;
  direction: rtl;
  gap: 10px;
  font-size: 12px;
}
.reviewbar select {
  font-family: "Noto Sans Arabic", Tahoma, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  min-height: 32px;
  min-width: 220px;
  border: 1px solid #7590a7;
  border-radius: 6px;
  color: white;
  background: #193c59;
  padding: 4px 10px;
}
.demo-banner {
  background: #eaf3f7;
  border-bottom: 1px solid #d7e5ee;
  color: #294e6b;
  text-align: center;
  font-size: 11px;
  line-height: 1.8;
  padding: 6px 12px;
}
.site-header {
  background: white;
  border-bottom: 1px solid #e8eef3;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 96px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 128px;
}
.brand img {
  width: 46px;
  height: 46px;
}
.brand > span {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary);
}
.brand small {
  display: block;
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0;
  font-weight: 500;
  margin-top: 7px;
  color: var(--muted);
}
nav {
  display: flex;
  gap: 27px;
  font-size: 14px;
  font-weight: 600;
}
nav a {
  padding: 10px 0;
}
nav a:hover,
.text-link:hover {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 6px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 23px;
  min-height: 51px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.9;
  text-align: center;
  max-width: 100%;
  white-space: normal;
  transition: background 0.15s;
}
.btn .icon {
  width: 20px;
  height: 20px;
}
.primary {
  background: var(--primary);
  color: #fff;
}
.primary:hover {
  background: #113c68;
}
.secondary {
  border-color: #96adc2;
  background: white;
  color: var(--primary);
}
.secondary:hover {
  background: #f0f5f9;
}
.quiet {
  color: var(--primary);
  background: transparent;
}
.light {
  color: var(--primary);
  background: white;
  border-color: white;
}
.compact {
  font-size: 13px;
  padding: 10px 17px;
  min-height: 46px;
}
.wide {
  width: 100%;
}
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.centered {
  justify-content: center;
}
.eyebrow {
  display: block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: 48px;
  padding-block: 76px 65px;
  min-height: 650px;
}
.hero h1 {
  font-size: 58px;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.7px;
}
.hero h1 span {
  color: var(--primary);
}
.hero p {
  font-size: 18px;
  max-width: 450px;
  margin-top: 23px;
}
.hero .eyebrow {
  position: relative;
  padding-inline-start: 23px;
  margin-bottom: 16px;
}
.hero .eyebrow:before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-foot {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
  margin-top: 26px;
  max-width: 440px;
}
.hero-foot .icon {
  width: 17px;
  height: 17px;
  margin-top: 3px;
}
.hero-art {
  position: relative;
  padding-bottom: 38px;
}
.truck-image {
  width: 100%;
  height: auto;
  border-radius: 30px;
  display: block;
}
.floating-card {
  position: absolute;
  bottom: 13px;
  inset-inline-start: 24px;
  display: flex;
  gap: 15px;
  align-items: center;
  background: white;
  box-shadow: 0 15px 45px #13385a1a;
  border: 1px solid #e2ebf1;
  border-radius: 15px;
  padding: 16px 22px;
}
.floating-card > .icon {
  background: #e5f4f5;
  color: var(--primary);
  box-sizing: content-box;
  padding: 12px;
  border-radius: 12px;
}
.floating-card strong {
  display: block;
  font-size: 15px;
}
.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
}
.scene-label {
  position: absolute;
  inset-inline-end: 18px;
  top: 15px;
  background: #ffffffdd;
  border-radius: 6px;
  padding: 4px 9px;
  color: #456478;
  font-size: 10px;
}
.trust-strip {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 23px 26px;
  border-block: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.trust-strip span {
  display: flex;
  gap: 12px;
  align-items: center;
}
.trust-strip .icon {
  color: var(--primary);
  width: 21px;
  height: 21px;
}
.section {
  padding-block: 80px;
}
.section-title {
  margin-bottom: 30px;
}
.section-title p {
  max-width: 620px;
}
.section-title h2 {
  font-size: 34px;
}
.grid {
  display: grid;
  gap: 24px;
}
.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.category {
  background: var(--panel);
  border: 1px solid #e0e9f1;
  border-radius: 20px;
  padding: 30px;
}
.category:nth-child(2) {
  background: #f0f6f7;
  border-color: #d8e8e9;
}
.category-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--primary);
  margin-bottom: 18px;
}
.category-icon .icon {
  width: 29px;
  height: 29px;
}
.category h3 {
  font-size: 24px;
}
.category p {
  font-size: 15px;
  max-width: 410px;
}
.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  padding-block: 10px;
  margin-top: 12px;
}
.text-link .icon {
  width: 18px;
  height: 18px;
}
.process-section {
  background: #f8fafc;
  border-block: 1px solid #eaf0f5;
}
.stepno {
  font:
    500 24px/1.4 Arial,
    sans-serif;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: #e8f0f6;
  border-radius: 16px;
  margin-bottom: 20px;
}
.steps article {
  padding-inline-end: 28px;
  position: relative;
}
.steps article:not(:last-child) {
  border-inline-end: 1px solid var(--line);
}
.steps p {
  font-size: 14px;
}
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  align-items: start;
}
.apps-teaser {
  align-items: center;
}
.feature-line {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 22px;
}
.feature-line > .icon {
  color: var(--primary);
  background: var(--panel);
  padding: 12px;
  box-sizing: content-box;
  border-radius: 12px;
}
.feature-line strong {
  font-size: 19px;
}
.feature-line p {
  font-size: 14px;
  margin-top: 3px;
}
.apps-teaser .btn {
  margin-top: 30px;
}
.tiny {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.9;
}
.phone-pair {
  display: flex;
  direction: rtl;
  align-items: center;
  justify-content: center;
  padding: 36px 22px 20px;
  background: #eaf2f6;
  border-radius: 28px;
  gap: 18px;
  overflow: hidden;
}
.phone-pair .phone-concept:nth-child(2) {
  margin-top: 65px;
}
.phone-concept {
  background: white;
  border: 7px solid #14354d;
  border-radius: 28px;
  width: 218px;
  flex: 0 0 218px;
  box-shadow: 0 20px 30px #17364e13;
  padding: 26px 14px 13px;
  position: relative;
  color: var(--ink);
}
.phone-camera {
  position: absolute;
  top: 7px;
  left: calc(50% - 18px);
  background: #14354d;
  width: 36px;
  height: 5px;
  border-radius: 3px;
}
.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 13px;
  color: var(--primary);
}
.phone-top .icon {
  width: 19px;
  height: 19px;
}
.phone-concept .tiny {
  font-size: 7px;
}
.phone-concept h3 {
  font-size: 15px;
  line-height: 1.7;
  margin-top: 12px;
}
.phone-feature {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 14px 8px;
  background: #eef5f7;
  border-radius: 10px;
  margin: 15px 0;
  color: var(--primary);
}
.phone-feature .icon {
  width: 18px;
  height: 18px;
}
.phone-feature strong {
  font-size: 9px;
  display: block;
}
.phone-feature small {
  font-size: 7px;
  display: block;
  color: var(--muted);
  margin-top: 3px;
}
.phone-row {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  font-size: 8px;
  padding-block: 9px;
  border-bottom: 1px solid #edf2f6;
}
.phone-row strong {
  font-size: 8px;
}
.phone-cta {
  padding: 9px;
  border-radius: 8px;
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  margin-top: 18px;
}
.phone-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 17px;
  color: #678399;
}
.phone-bottom .icon {
  width: 16px;
  height: 16px;
}
.coverage-band {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: center;
  gap: 65px;
  background: #f1f6f8;
  border: 1px solid #e0eaf0;
  border-radius: 24px;
  padding: 46px 50px;
}
.coverage-band p {
  font-size: 15px;
  max-width: 550px;
}
.coverage-band .btn {
  margin-top: 25px;
}
.coverage-symbol {
  justify-self: center;
  border: 1px solid #c5d9e2;
  border-radius: 50%;
  height: 210px;
  width: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--primary);
  outline: 20px solid #e8f1f5;
}
.coverage-symbol .icon {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
}
.coverage-symbol span {
  font-size: 13px;
}
.driver-band {
  background: var(--primary);
  color: white;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 60px;
  padding: 50px;
  border-radius: 24px;
  align-items: center;
}
.driver-band .eyebrow,
.driver-band p {
  color: #dbeaf4;
}
.driver-band h2 {
  font-size: 33px;
}
.driver-band p {
  font-size: 14px;
  max-width: 570px;
}
.driver-band .btn {
  margin-top: 25px;
}
.driver-mark {
  text-align: center;
  border-inline-start: 1px solid #5c81a7;
  padding-inline-start: 40px;
}
.driver-mark > .icon {
  width: 110px;
  height: 110px;
  color: #c9e5f0;
}
.driver-mark p {
  font-size: 12px;
}
.faq-layout {
  grid-template-columns: 0.8fr 1.3fr;
  gap: 70px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 19px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 16px;
  font-weight: 700;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  font:
    23px Arial,
    sans-serif;
  color: var(--primary);
}
.faq details p {
  font-size: 14px;
  padding-inline-end: 30px;
}
.last-call {
  text-align: center;
  background: #eaf3f7;
  padding-block: 65px;
}
.last-call h2 {
  font-size: 32px;
}
.last-call p {
  margin-bottom: 24px;
}
.last-call .btn {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.site-footer {
  padding: 65px 0 0;
  background: #f8fafc;
  border-top: 1px solid #e3ebf1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 44px;
}
.site-footer h3 {
  font-size: 14px;
  margin-bottom: 20px;
}
.site-footer a:not(.brand) {
  display: block;
  font-size: 12px;
  color: var(--muted);
  padding-block: 6px;
}
.site-footer p {
  font-size: 13px;
  line-height: 2;
  margin-block: 20px;
}
.site-footer small {
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 45px;
  padding-block: 20px;
}
.menu-trigger {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 9px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.skip {
  position: fixed;
  top: -100px;
  right: 20px;
  background: white;
  padding: 10px 16px;
  z-index: 100;
  border: 2px solid var(--primary);
}
.skip:focus {
  top: 10px;
}
.page {
  padding-block: 52px 78px;
  min-height: 650px;
}
.page.narrow {
  max-width: 820px;
}
.pagehead {
  margin-bottom: 32px;
}
.pagehead p {
  max-width: 780px;
}
.pagehead h1 {
  font-size: 38px;
}
.notice {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: #eaf3f7;
  border: 1px solid #cadde8;
  border-radius: 12px;
  padding: 15px 18px;
  color: #284f6d;
  font-size: 13px;
  margin-block: 20px;
}
.notice .icon {
  margin-top: 3px;
  width: 20px;
  height: 20px;
}
.notice.warn {
  background: #fffaf1;
  border-color: #e9d4b7;
  color: #874008;
}
.notice.success {
  background: #eff7f1;
  border-color: #c4dccb;
  color: #175b32;
}
.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  min-width: 0;
}
.card h2 {
  font-size: 23px;
}
.card + .card {
  margin-top: 20px;
}
.card p {
  font-size: 14px;
}
.category-fieldset {
  border: 0;
  padding: 0;
  margin: 30px 0;
}
.category-fieldset legend {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
.option {
  display: flex;
  position: relative;
  gap: 14px;
  align-items: flex-start;
  padding: 25px;
  cursor: pointer;
}
.option input {
  margin: 7px 0 0;
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  flex-shrink: 0;
}
.option .category-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  margin: 0;
}
.option .category-icon .icon {
  width: 25px;
  height: 25px;
}
.option-copy strong {
  font-size: 19px;
  display: block;
}
.option-copy > span {
  font-size: 13px;
  display: block;
  color: var(--muted);
  margin-top: 8px;
}
.option-copy small {
  font-size: 10px;
  color: var(--primary);
  display: block;
  margin-top: 15px;
}
.option:has(input:checked) {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
  background: #edf4fa;
}
.option.disabled {
  background: #f4f5f6;
  cursor: not-allowed;
}
.option.disabled .option-copy small {
  color: #874008;
}
.bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 35px;
}
.form label,
.card > label {
  font-size: 14px;
  font-weight: 650;
  display: block;
  margin-bottom: 8px;
}
.form label:not(:first-child) {
  margin-top: 20px;
}
input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  display: block;
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #809aaf;
  border-radius: 9px;
  background: white;
  color: var(--ink);
  min-height: 49px;
  font-size: 14px;
  line-height: 1.7;
}
textarea {
  resize: vertical;
}
.helper {
  font-size: 12px !important;
  line-height: 1.9;
  margin-top: 10px !important;
}
.field-error {
  font-size: 12px;
  color: #a32116;
  font-weight: 650;
  margin-block: 8px;
  min-height: 0;
}
.field-error:not(:empty) {
  padding: 8px;
  border-inline-start: 3px solid #a32116;
  background: #fff5f2;
}
[aria-invalid="true"] {
  border-color: #a32116 !important;
}
.form .btn {
  margin-top: 15px;
}
.form .actions .btn {
  margin-top: 0;
}
.coverage-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ecf4f7;
  border: 1px solid #d8e7ee;
  border-radius: 22px;
  padding: 50px 35px;
  min-height: 375px;
}
.coverage-graphic > .icon {
  width: 67px;
  height: 67px;
  color: var(--primary);
  margin-bottom: 25px;
}
.coverage-graphic h2 {
  font-size: 25px;
}
.coverage-graphic p {
  font-size: 14px;
}
.state-card {
  border: 1px solid var(--line);
  border-radius: 23px;
  background: #f8fafc;
  padding: 45px;
  text-align: center;
}
.state-card p {
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 25px;
  font-size: 15px;
}
.state-card > .btn {
  margin-bottom: 25px;
}
.state-icon,
.round-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  background: #e6f0f6;
  border-radius: 22px;
  color: var(--primary);
  margin-bottom: 20px;
}
.state-icon > .icon {
  width: 36px;
  height: 36px;
}
.round-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}
.success-icon {
  color: #175b32;
  background: #e7f4e9;
}
.auth-card {
  max-width: 520px;
  margin-inline: auto;
  padding: 35px;
}
.auth-card > h2 {
  font-size: 24px;
}
.auth-card p {
  font-size: 14px;
}
.auth-card form {
  margin-block: 24px;
}
.auth-card label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.otp-input {
  font:
    32px/1.7 Arial,
    sans-serif !important;
  letter-spacing: 12px;
  text-align: center !important;
}
.policy-row {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.policy-row > span {
  display: flex;
  gap: 10px;
  align-items: center;
}
.policy-row .icon {
  width: 21px;
  height: 21px;
}
.checkline {
  display: flex !important;
  gap: 12px;
  align-items: flex-start;
  line-height: 2;
  font-weight: 500 !important;
}
.checkline input {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  margin-top: 5px;
  flex: 0 0 20px;
}
.order-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 1fr);
  gap: 26px;
  align-items: start;
}
.order-grid > aside {
  position: sticky;
  top: 20px;
}
.card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.card-heading .text-link {
  margin: 0;
}
.detail-row {
  display: flex;
  gap: 17px;
  align-items: center;
  padding-block: 18px;
  border-bottom: 1px solid #e7eef3;
  margin-bottom: 16px;
}
.detail-row > .icon {
  color: var(--primary);
  width: 27px;
  height: 27px;
}
.detail-row strong {
  font-size: 16px;
}
.detail-row p {
  margin-top: 3px;
  font-size: 12px;
}
.kv {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #e5edf3;
  padding-block: 17px;
  font-size: 13px;
}
.kv span {
  color: var(--muted);
}
.kv bdi {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.kv.total {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  margin-top: 12px;
  padding-block: 20px;
}
.total strong {
  font-size: 23px;
  color: var(--primary);
}
.order-summary h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.order-summary .btn {
  margin-top: 20px;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 650;
  background: #eaf2f8;
  color: var(--primary);
  line-height: 1.7;
}
.pill.warn {
  background: #fff4df;
  color: #874008;
}
.status-banner {
  display: flex;
  gap: 19px;
  align-items: flex-start;
  background: #eff5f8;
  border-radius: 16px;
  padding: 24px;
}
.status-banner > .icon {
  width: 34px;
  height: 34px;
  color: var(--primary);
  margin-top: 5px;
}
.status-banner h2 {
  font-size: 23px;
}
.status-banner p {
  font-size: 13px;
}
.timeline {
  padding: 4px 0;
  margin: 27px 0;
  list-style: none;
}
.timeline li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #526b81;
  padding-bottom: 27px;
  line-height: 1.7;
}
.timeline li:not(:last-child):after {
  content: "";
  position: absolute;
  inset-inline-start: 14px;
  width: 2px;
  background: #d3dfe9;
  height: calc(100% - 28px);
  top: 28px;
}
.timeline li:last-child {
  padding-bottom: 0;
}
.timeline .dot {
  width: 30px;
  height: 30px;
  border: 2px solid #b8cbda;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
}
.timeline .done {
  color: var(--primary);
  font-weight: 700;
}
.timeline .done .dot {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.timeline .dot .icon {
  width: 17px;
  height: 17px;
}
.map-card {
  overflow: hidden;
  padding: 0;
}
.map-card .card-heading {
  padding: 24px;
  margin: 0;
}
.map-card .helper {
  margin-top: 3px !important;
}
.mapdiagram {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background: #ecf2f5;
}
.mapdiagram > svg {
  width: 100%;
  height: auto;
  display: block;
}
.map-note {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  background: #ffffffeb;
  border: 1px solid #d6e4ec;
  padding: 6px 9px;
  border-radius: 6px;
  font-size: 10px;
  text-align: center;
  color: #3b5871;
}
.map-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 22px;
  gap: 22px;
}
.map-details > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
}
.map-details span {
  color: var(--muted);
}
.map-details strong {
  font-size: 15px;
}
.review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  border-top: 1px dashed #b5cada;
  padding-top: 20px;
  margin-top: 30px;
  font-size: 12px;
  color: var(--primary);
}
.review-links a {
  text-decoration: underline;
  text-underline-offset: 5px;
  padding: 8px;
}
.conversation {
  padding: 0;
  overflow: hidden;
}
.conversation-head {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 23px 27px;
  border-bottom: 1px solid var(--line);
}
.conversation-head .icon {
  width: 38px;
  height: 38px;
  background: #eaf2f7;
  padding: 8px;
  box-sizing: content-box;
  border-radius: 12px;
  color: var(--primary);
}
.conversation-head small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}
.chat-area {
  background: #f3f7fa;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 300px;
}
.chat-bubble {
  border: 1px solid #d3e2ec;
  border-radius: 15px;
  padding: 13px 17px;
  max-width: 83%;
  font-size: 14px;
}
.chat-bubble p {
  font-size: 14px;
  margin: 0;
}
.chat-bubble small {
  font-size: 9px;
  margin-top: 10px;
  display: block;
  color: var(--muted);
}
.chat-bubble.other {
  align-self: flex-start;
  background: white;
}
.chat-bubble.mine {
  align-self: flex-end;
  background: #e7f1f8;
}
.conversation form {
  padding: 24px;
}
.conversation .notice {
  margin: 0 24px 24px;
}
.message-compose {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-top: 10px;
}
.message-compose .btn {
  flex-shrink: 0;
}
.app-card-top {
  display: flex;
  align-items: center;
  gap: 17px;
}
.app-card-top .eyebrow {
  margin: 0;
  font-size: 11px;
}
.app-card-top h2 {
  font-size: 28px;
}
.app-icon {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: #e5f0f7;
  color: var(--primary);
}
.app-icon .icon {
  width: 35px;
  height: 35px;
}
.app-download-card:nth-child(2) .app-icon {
  background: #e5f2f2;
}
.app-preview-wrap {
  background: #edf4f7;
  border-radius: 17px;
  display: flex;
  justify-content: center;
  padding: 30px 20px 0;
  margin-block: 24px;
  height: 285px;
  overflow: hidden;
}
.app-preview-wrap .phone-concept {
  flex-basis: 215px;
}
.app-download-card .phone-concept .phone-bottom {
  display: none;
}
.download-state {
  display: flex;
  gap: 12px;
  font-size: 13px;
  align-items: flex-start;
}
.download-state > .icon {
  color: #58768c;
  margin-top: 3px;
}
.download-state strong {
  font-size: 14px;
}
.download-state p {
  font-size: 12px;
  margin-top: 7px;
}
.badge-reserve {
  border: 1px dashed #91abb9;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 14px;
  margin-top: 19px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 12px;
}
.badge-reserve small {
  font-size: 10px;
  margin-top: 5px;
}
.driver-hero {
  align-items: center;
}
.driver-hero h1 {
  font-size: 38px;
}
.driver-visual img {
  width: 100%;
  height: auto;
  border-radius: 25px;
}
.mobile-menu {
  position: fixed;
  max-width: none;
  max-height: 100dvh;
  margin: 0 0 0 auto;
  width: min(390px, 100vw);
  height: 100dvh;
  border: 0;
  padding: 25px;
  inset: 0 0 0 auto;
  color: var(--ink);
  background: white;
}
.mobile-menu::backdrop,
.confirm-dialog::backdrop {
  background: #102a437a;
}
.menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
  margin-bottom: 18px;
}
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f7fa;
  border: 1px solid var(--line);
  border-radius: 9px;
  width: 44px;
  height: 44px;
  color: var(--primary);
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  padding-block: 14px;
  border-bottom: 1px solid #e5edf4;
}
.mobile-menu nav a .icon {
  width: 18px;
  height: 18px;
}
.confirm-dialog {
  border: 1px solid var(--line);
  border-radius: 20px;
  width: calc(100vw - 40px);
  max-width: 500px;
  padding: 30px;
  color: var(--ink);
}
.confirm-dialog h2 {
  font-size: 25px;
}
.confirm-dialog p {
  font-size: 14px;
}
.noscript {
  padding: 35px;
}
@media (min-width: 1500px) {
  .container {
    max-width: 1320px;
  }
  .hero {
    gap: 70px;
  }
  .hero h1 {
    font-size: 62px;
  }
}
@media (max-width: 1100px) {
  .header-inner {
    gap: 20px;
  }
  nav {
    gap: 17px;
    font-size: 12px;
  }
  .hero {
    gap: 30px;
    padding-block: 55px;
    min-height: 580px;
  }
  .hero h1 {
    font-size: 47px;
  }
  .phone-pair {
    gap: 10px;
    padding: 25px 12px;
  }
  .phone-concept {
    width: 190px;
    flex-basis: 190px;
  }
  .split {
    gap: 30px;
  }
  .coverage-band,
  .driver-band {
    padding: 35px;
    gap: 35px;
  }
  .three {
    gap: 16px;
  }
  .card {
    padding: 24px;
  }
  .order-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(255px, 1fr);
  }
  .header-inner .brand {
    min-width: 108px;
  }
  .brand img {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 850px) {
  .header-inner nav {
    display: none;
  }
  .menu-trigger {
    display: flex;
  }
  .header-inner {
    min-height: 84px;
  }
  .hero {
    gap: 25px;
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero .actions {
    gap: 8px;
  }
  .hero .btn {
    padding: 10px 13px;
    font-size: 12px;
  }
  .hero-foot {
    font-size: 10px;
  }
  .floating-card {
    padding: 12px;
    gap: 10px;
    inset-inline-start: 13px;
  }
  .floating-card strong {
    font-size: 11px;
  }
  .floating-card span {
    font-size: 9px;
  }
  .floating-card > .icon {
    padding: 8px;
    width: 20px;
    height: 20px;
  }
  .three {
    grid-template-columns: 1fr;
  }
  .steps article {
    border: 0 !important;
    padding-bottom: 18px;
  }
  .steps article:not(:last-child) {
    border-bottom: 1px solid var(--line) !important;
  }
  .steps .stepno {
    margin-bottom: 12px;
  }
  .apps-teaser,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .phone-pair {
    max-width: 550px;
    margin: auto;
    width: 100%;
  }
  .phone-concept {
    width: 218px;
    flex-basis: 218px;
  }
  .coverage-band {
    grid-template-columns: 1.6fr 1fr;
  }
  .coverage-symbol {
    width: 150px;
    height: 150px;
    outline-width: 13px;
  }
  .coverage-symbol > .icon {
    width: 37px;
    height: 37px;
  }
  .coverage-symbol span {
    font-size: 11px;
  }
  .driver-band h2 {
    font-size: 28px;
  }
  .driver-mark > .icon {
    width: 85px;
    height: 85px;
  }
  .driver-mark {
    padding-inline-start: 25px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-split,
  .driver-hero {
    grid-template-columns: 1fr;
  }
  .order-grid {
    grid-template-columns: 1fr;
  }
  .order-grid > aside {
    position: static;
  }
  .pagehead h1 {
    font-size: 33px;
  }
  .mapdiagram {
    min-height: 0;
  }
  .app-downloads {
    gap: 18px;
  }
  .app-download-card {
    padding: 22px;
  }
  .app-card-top h2 {
    font-size: 24px;
  }
  .policy-row {
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .container {
    padding-inline: 20px;
  }
  .reviewbar {
    padding: 8px 14px;
    gap: 10px;
    min-height: 46px;
  }
  .reviewbar b {
    font-size: 13px;
    letter-spacing: 2px;
  }
  .review-tag {
    display: none;
  }
  .reviewbar label {
    font-size: 0;
    gap: 0;
  }
  .reviewbar select {
    min-width: 0;
    width: 200px;
    max-width: calc(100vw - 100px);
    font-size: 10px;
    min-height: 31px;
  }
  .demo-banner {
    font-size: 9px;
    padding: 6px 15px;
    line-height: 1.8;
  }
  .header-inner {
    min-height: 78px;
    gap: 10px;
  }
  .brand {
    gap: 8px;
    min-width: 95px !important;
  }
  .brand img {
    width: 37px;
    height: 37px;
  }
  .brand > span {
    font-size: 23px;
  }
  .brand small {
    font-size: 8px;
    margin-top: 6px;
  }
  .header-actions {
    gap: 7px;
  }
  .header-actions .btn {
    font-size: 10px;
    padding: 8px 10px;
    min-height: 42px;
    gap: 6px;
  }
  .header-actions .btn .icon {
    width: 16px;
    height: 16px;
  }
  .menu-trigger {
    width: 42px;
    height: 42px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-block: 40px 32px;
    gap: 32px;
    min-height: 0;
  }
  .hero .eyebrow {
    font-size: 10px;
    margin-bottom: 13px;
  }
  .hero h1 {
    font-size: 39px;
    line-height: 1.5;
    letter-spacing: -0.4px;
  }
  .hero p {
    font-size: 15px;
    margin-top: 17px;
    max-width: 330px;
  }
  .hero .actions {
    gap: 9px;
    margin-top: 23px;
  }
  .hero .btn {
    font-size: 12px;
    min-height: 48px;
    padding: 10px 14px;
  }
  .hero-foot {
    margin-top: 18px;
    font-size: 9px;
    max-width: 340px;
  }
  .hero-art {
    padding-bottom: 30px;
  }
  .truck-image {
    border-radius: 23px;
  }
  .scene-label {
    top: 12px;
    inset-inline-end: 12px;
    font-size: 8px;
  }
  .floating-card {
    bottom: 6px;
    inset-inline-start: 16px;
    padding: 12px 15px;
    gap: 12px;
  }
  .floating-card strong {
    font-size: 12px;
  }
  .floating-card span {
    font-size: 9px;
  }
  .trust-strip {
    padding: 18px 0;
    gap: 10px;
    justify-content: space-between;
  }
  .trust-strip span {
    font-size: 8px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    flex: 1;
  }
  .trust-strip .icon {
    width: 20px;
    height: 20px;
  }
  .section {
    padding-block: 44px;
  }
  .section-title {
    margin-bottom: 23px;
  }
  .section-title h2 {
    font-size: 27px;
  }
  .section-title .eyebrow {
    font-size: 10px;
  }
  .section-title p {
    font-size: 13px;
  }
  .two {
    grid-template-columns: 1fr;
  }
  .category {
    padding: 24px;
  }
  .category h3 {
    font-size: 22px;
  }
  .category p {
    font-size: 13px;
  }
  .category-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 14px;
  }
  .text-link {
    font-size: 12px;
  }
  .grid {
    gap: 17px;
  }
  .steps p {
    font-size: 13px;
  }
  .steps h3 {
    font-size: 21px;
  }
  .steps .stepno {
    font-size: 20px;
    width: 45px;
    height: 45px;
    border-radius: 13px;
  }
  .feature-line {
    margin-top: 18px;
    gap: 12px;
  }
  .feature-line strong {
    font-size: 18px;
  }
  .feature-line p {
    font-size: 12px;
  }
  .feature-line > .icon {
    padding: 10px;
  }
  .apps-teaser {
    gap: 28px;
  }
  .phone-pair {
    padding: 25px 12px 18px;
    gap: 12px;
    border-radius: 22px;
    align-items: flex-start;
  }
  .phone-concept {
    width: 149px;
    flex-basis: 149px;
    border-width: 5px;
    border-radius: 23px;
    padding: 22px 9px 11px;
  }
  .phone-pair .phone-concept:nth-child(2) {
    margin-top: 45px;
  }
  .phone-top {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .phone-top .icon {
    width: 15px;
    height: 15px;
  }
  .phone-concept .tiny {
    font-size: 5px;
  }
  .phone-concept h3 {
    font-size: 10px;
    line-height: 1.8;
    margin-top: 9px;
  }
  .phone-feature {
    padding: 10px 5px;
    gap: 5px;
    margin: 10px 0;
  }
  .phone-feature .icon {
    width: 13px;
    height: 13px;
  }
  .phone-feature strong {
    font-size: 7px;
  }
  .phone-feature small {
    font-size: 5px;
  }
  .phone-row,
  .phone-row strong {
    font-size: 6px;
    gap: 3px;
  }
  .phone-cta {
    font-size: 8px;
    padding: 7px;
    margin-top: 12px;
  }
  .phone-bottom {
    margin-top: 13px;
  }
  .phone-bottom .icon {
    width: 13px;
    height: 13px;
  }
  .coverage-band {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 27px;
    gap: 35px;
    border-radius: 21px;
  }
  .coverage-band h2 {
    font-size: 27px;
  }
  .coverage-band p {
    font-size: 13px;
  }
  .coverage-symbol {
    align-self: center;
    width: 150px;
    height: 150px;
    margin-block: 15px;
  }
  .driver-band {
    display: block;
    padding: 28px;
    border-radius: 21px;
  }
  .driver-band h2 {
    font-size: 27px;
  }
  .driver-band p {
    font-size: 13px;
  }
  .driver-mark {
    margin-top: 30px;
    padding: 22px 0 0;
    border: 0;
    border-top: 1px solid #5c81a7;
    display: flex;
    align-items: center;
    gap: 22px;
    text-align: start;
  }
  .driver-mark > .icon {
    width: 62px;
    height: 62px;
  }
  .driver-mark p {
    font-size: 10px;
    margin: 0;
  }
  .faq-layout {
    gap: 0;
  }
  .faq summary {
    font-size: 14px;
  }
  .faq details {
    padding-block: 16px;
  }
  .faq details p {
    font-size: 12px;
  }
  .last-call {
    padding-block: 44px;
  }
  .last-call h2 {
    font-size: 26px;
  }
  .last-call p {
    font-size: 13px;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-grid {
    gap: 32px 20px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .site-footer p {
    font-size: 12px;
    margin-block: 15px;
  }
  .site-footer h3 {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .site-footer a:not(.brand) {
    font-size: 11px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    font-size: 9px;
    margin-top: 30px;
  }
  .page {
    padding-block: 32px 45px;
    min-height: 580px;
  }
  .pagehead {
    margin-bottom: 25px;
  }
  .pagehead h1 {
    font-size: 29px;
    line-height: 1.65;
  }
  .pagehead .eyebrow {
    font-size: 10px;
  }
  .pagehead p {
    font-size: 13px;
  }
  .notice {
    font-size: 11px;
    padding: 13px;
    gap: 9px;
    line-height: 1.9;
  }
  .notice .icon {
    width: 17px;
    height: 17px;
  }
  .card {
    padding: 22px;
    border-radius: 17px;
  }
  .card h2 {
    font-size: 22px;
  }
  .card h3 {
    font-size: 20px;
  }
  .card p {
    font-size: 13px;
  }
  .option {
    gap: 10px;
    padding: 21px;
  }
  .option-copy strong {
    font-size: 18px;
  }
  .option-copy > span {
    font-size: 12px;
  }
  .option-copy small {
    font-size: 9px;
  }
  .option .category-icon {
    width: 33px;
    height: 33px;
    border-radius: 9px;
  }
  .option .category-icon .icon {
    width: 22px;
    height: 22px;
  }
  .option input {
    width: 18px;
    height: 18px;
  }
  .btn {
    font-size: 12px;
    padding: 11px 16px;
    gap: 10px;
    min-height: 48px;
  }
  .bottom-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .helper {
    font-size: 10px !important;
  }
  .tiny {
    font-size: 9px;
  }
  .form label,
  .card > label {
    font-size: 12px;
  }
  input:not([type="checkbox"]):not([type="radio"]),
  select,
  textarea {
    font-size: 13px;
    min-height: 48px;
  }
  .coverage-graphic {
    padding: 32px 22px;
    min-height: 290px;
  }
  .coverage-graphic h2 {
    font-size: 23px;
  }
  .coverage-graphic p {
    font-size: 12px;
  }
  .state-card {
    padding: 30px 21px;
  }
  .state-card h2 {
    font-size: 24px;
  }
  .state-card p {
    font-size: 13px;
  }
  .state-icon {
    width: 67px;
    height: 67px;
    border-radius: 20px;
  }
  .state-icon > .icon {
    width: 31px;
    height: 31px;
  }
  .auth-card {
    padding: 24px;
  }
  .auth-card h2 {
    font-size: 22px;
  }
  .auth-card label {
    font-size: 12px;
  }
  .policy-row {
    font-size: 12px;
    padding-block: 15px;
    gap: 10px;
  }
  .checkline {
    font-size: 12px !important;
  }
  .checkline input {
    width: 20px;
  }
  .order-grid {
    gap: 18px;
  }
  .order-grid .card {
    padding: 22px;
  }
  .order-grid .map-card {
    padding: 0;
  }
  .map-card .card-heading {
    padding: 19px;
    gap: 12px;
    align-items: flex-start;
  }
  .map-card .card-heading strong {
    font-size: 12px;
  }
  .map-card .pill {
    font-size: 8px;
  }
  .mapdiagram svg {
    min-height: 230px;
    object-fit: cover;
  }
  .map-note {
    font-size: 8px;
  }
  .map-details {
    padding: 18px;
    gap: 15px;
  }
  .map-details span {
    font-size: 10px;
  }
  .map-details strong {
    font-size: 12px;
  }
  .detail-row {
    gap: 12px;
  }
  .detail-row strong {
    font-size: 14px;
  }
  .detail-row p {
    font-size: 11px;
  }
  .kv {
    font-size: 11px;
    gap: 12px;
  }
  .kv bdi {
    font-size: 13px;
  }
  .kv strong {
    font-size: 12px;
  }
  .kv.total strong {
    font-size: 24px;
  }
  .status-banner {
    padding: 18px;
    gap: 12px;
  }
  .status-banner h2 {
    font-size: 20px;
  }
  .status-banner p {
    font-size: 12px;
  }
  .status-banner > .icon {
    width: 27px;
    height: 27px;
  }
  .timeline li {
    font-size: 12px;
  }
  .conversation {
    padding: 0;
  }
  .conversation-head {
    padding: 18px;
  }
  .conversation-head strong {
    font-size: 14px;
  }
  .conversation-head small {
    font-size: 9px;
  }
  .conversation-head .icon {
    width: 24px;
    height: 24px;
  }
  .chat-area {
    padding: 22px 16px;
    gap: 17px;
  }
  .chat-bubble {
    max-width: 90%;
    padding: 12px 13px;
  }
  .chat-bubble p {
    font-size: 12px;
  }
  .chat-bubble small {
    font-size: 8px;
  }
  .conversation form {
    padding: 18px;
  }
  .conversation .notice {
    margin: 0 18px 18px;
  }
  .message-compose {
    flex-direction: column;
  }
  .message-compose .btn {
    align-self: flex-start;
  }
  .conversation label {
    font-size: 12px;
  }
  .app-download-card {
    padding: 24px;
  }
  .app-card-top h2 {
    font-size: 26px;
  }
  .app-card-top .eyebrow {
    font-size: 10px;
  }
  .app-downloads .phone-concept {
    flex-basis: 207px;
    width: 207px;
    border-width: 7px;
    padding: 25px 13px 13px;
  }
  .app-downloads .phone-top {
    font-size: 16px;
  }
  .app-downloads .phone-concept .tiny {
    font-size: 7px;
  }
  .app-downloads .phone-concept h3 {
    font-size: 15px;
  }
  .app-downloads .phone-feature strong {
    font-size: 9px;
  }
  .app-downloads .phone-feature small {
    font-size: 7px;
  }
  .app-downloads .phone-row,
  .app-downloads .phone-row strong {
    font-size: 8px;
  }
  .app-downloads .phone-cta {
    font-size: 10px;
  }
  .download-state strong {
    font-size: 13px;
  }
  .download-state p {
    font-size: 11px;
  }
  .badge-reserve {
    font-size: 11px;
  }
  .badge-reserve small {
    font-size: 9px;
  }
  .driver-hero h1 {
    font-size: 30px;
  }
  .review-links {
    gap: 9px;
  }
  .review-links a {
    font-size: 10px;
  }
  .mobile-menu {
    padding: 22px;
  }
  .mobile-menu .brand img {
    width: 43px;
    height: 43px;
  }
  .mobile-menu .brand > span {
    font-size: 25px;
  }
  .mobile-menu nav a {
    padding-block: 13px;
  }
  .confirm-dialog {
    padding: 25px;
  }
  .confirm-dialog h2 {
    font-size: 22px;
  }
}
@media (max-width: 355px) {
  .container {
    padding-inline: 16px;
  }
  .header-inner .brand small {
    display: none;
  }
  .header-inner .brand {
    min-width: 83px !important;
  }
  .header-actions .btn {
    padding: 8px;
    font-size: 9px;
  }
  .hero h1 {
    font-size: 35px;
  }
  .phone-pair {
    gap: 8px;
    padding-inline: 8px;
  }
  .phone-concept {
    flex-basis: 130px;
    width: 130px;
  }
  .phone-feature .icon {
    display: none;
  }
  .hero .btn {
    font-size: 11px;
  }
  .option {
    gap: 7px;
    padding: 18px;
  }
  .option .category-icon {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .reviewbar,
  .menu-trigger {
    display: none;
  }
  body {
    font-size: 12px;
  }
  .site-footer {
    break-inside: avoid;
  }
  a {
    color: inherit;
  }
  .card {
    break-inside: avoid;
  }
  .page {
    padding-block: 20px;
  }
}
/* Implemented website, no review picker and no synthetic operational data. */
[hidden],
.hidden {
  display: none !important;
}
.skip-link {
  position: fixed;
  inset-block-start: -100px;
  inset-inline-start: 16px;
  z-index: 1000;
  background: #fff;
  color: #174a7e;
  padding: 12px;
  border: 2px solid #174a7e;
}
.skip-link:focus {
  inset-block-start: 10px;
}
.mobile-trigger {
  display: none;
}
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid #c8d8e4;
  border-radius: 10px;
  background: #fff;
  color: #174a7e;
}
.mobile-dialog {
  position: fixed;
  inset: 0 0 auto auto;
  margin: 0;
  width: min(88vw, 390px);
  height: 100dvh;
  max-height: 100dvh;
  padding: 24px;
  border: 0;
  border-inline-start: 1px solid #c8d8e4;
  background: white;
}
.mobile-dialog::backdrop,
.confirmation-dialog::backdrop {
  background: rgba(10, 30, 50, 0.55);
}
.mobile-dialog nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-dialog nav a {
  min-height: 48px;
  border-bottom: 1px solid #edf2f6;
}
.menu-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.account-link {
  color: #174a7e;
  padding: 10px;
  min-height: 44px;
}
.account-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding: 16px;
  border: 1px solid #d7e2ec;
  border-radius: 14px;
  margin-block-end: 32px;
  background: #f8fafc;
  font-size: 14px;
}
.account-nav a {
  padding-block: 8px;
}
.page {
  min-height: 55vh;
  padding-block: 56px 80px;
}
.narrow {
  max-width: 860px;
}
.auth-page {
  max-width: 570px;
}
.card {
  background: #fff;
  border: 1px solid #d7e2ec;
  border-radius: 20px;
  padding: 30px;
  margin-block: 18px;
}
.card h2 {
  font-size: 24px;
  margin-bottom: 16px;
}
.pagehead {
  margin-block-end: 30px;
}
.field {
  display: flex;
  flex-direction: column;
  margin-block: 16px;
  gap: 7px;
  min-width: 0;
}
.field label {
  font-size: 14px;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #98b0c5;
  border-radius: 10px;
  background: white;
  color: #102a43;
  padding: 11px 13px;
  max-width: 100%;
  font: inherit;
}
.field textarea {
  min-height: 110px;
  resize: vertical;
}
.field input[type="tel"],
input[name="code"],
input[name="latitude"],
input[name="longitude"] {
  direction: ltr;
  text-align: start;
}
.field :disabled {
  background: #f1f5f8;
  color: #526a7e;
}
.helper,
.field small {
  font-size: 12px;
  color: #496177;
}
.checkline {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-block: 20px;
}
.checkline input {
  min-width: 20px;
  min-height: 20px;
  margin-top: 6px;
  accent-color: #174a7e;
}
.water-field {
  border: 0;
  padding: 0;
  margin: 22px 0;
}
.water-field legend {
  font-weight: 700;
  margin-bottom: 12px;
}
.water-option {
  position: relative;
  cursor: pointer;
  border: 1px solid #a1b5c5;
  border-radius: 15px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.water-option input {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 5px;
  accent-color: #174a7e;
}
.water-option span {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.water-option strong {
  font-size: 14px;
}
.water-option small {
  font-size: 12px;
  color: #934208;
}
.water-option:has(input:checked) {
  border: 2px solid #174a7e;
  background: #edf5f9;
  padding: 15px;
}
.water-option:has(input:disabled) {
  background: #f2f4f5;
  cursor: not-allowed;
}
.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.8fr);
  align-items: start;
  gap: 24px;
}
.review-panel {
  position: sticky;
  top: 20px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 12px;
  border-bottom: 1px solid #e4edf3;
}
.summary-row span {
  overflow-wrap: anywhere;
}
.summary-row.total {
  font-size: 22px;
  font-weight: 800;
  border-bottom: 0;
}
.summary-row.total bdi {
  color: #174a7e;
}
.notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  margin-block: 18px;
  border: 1px solid #bdd7e3;
  border-radius: 12px;
  background: #eef6fa;
  color: #224862;
  line-height: 1.8;
  font-size: 14px;
}
.notice .icon {
  margin-top: 3px;
}
.notice.warn {
  background: #fff7ea;
  border-color: #e4cba7;
  color: #793909;
}
.notice.success {
  background: #eef8f1;
  border-color: #abd5ba;
  color: #176336;
}
.empty-state {
  text-align: center;
  padding: 35px 20px;
}
.empty-state > .icon {
  width: 44px;
  height: 44px;
  color: #174a7e;
}
.empty-state p {
  margin: 14px auto;
  max-width: 560px;
}
.live-region {
  margin-block: 20px;
}
.section.compact-section {
  padding-block: 32px;
}
.actions button {
  max-width: 100%;
}
.status-pill {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 100px;
  background: #e9f2f7;
  color: #174a7e;
  font-size: 12px;
  font-weight: 700;
}
.order-card {
  display: block;
}
.order-card header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
.reference {
  font-size: 16px;
  color: #496177;
  margin-block-end: 20px;
}
.reference bdi {
  font-weight: 800;
  letter-spacing: 1px;
  color: #174a7e;
}
.order-card p {
  font-size: 14px;
}
.tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.confirmation-dialog {
  border: 1px solid #c8d8e4;
  border-radius: 20px;
  padding: 30px;
  width: min(90vw, 550px);
  max-height: 90vh;
  overflow: auto;
}
.confirmation-dialog h2 {
  font-size: 24px;
}
.confirmation-dialog #confirm-body {
  margin-block: 20px;
}
.timeline {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  border-inline-start: 2px solid #b5cfdf;
}
.timeline li {
  position: relative;
  padding: 10px 24px;
}
.timeline li:before {
  content: "";
  position: absolute;
  inset-inline-start: -6px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #174a7e;
}
.timeline time {
  display: block;
  font-size: 12px;
  color: #496177;
}
.chat-area {
  max-height: 65vh;
  overflow: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-bubble {
  max-width: 88%;
  background: #f1f5f7;
  border: 1px solid #d7e2ec;
  padding: 16px;
  border-radius: 15px;
  align-self: flex-start;
  overflow-wrap: anywhere;
}
.chat-bubble.mine {
  background: #eaf3f9;
  align-self: flex-end;
}
.chat-bubble p {
  white-space: pre-wrap;
  color: #102a43;
  margin: 0;
}
.chat-bubble small {
  display: block;
  font-size: 11px;
  color: #496177;
  margin-top: 8px;
}
.chat-bubble button {
  font-size: 11px;
  padding: 7px;
  min-height: 36px;
}
.driver-symbol > .icon {
  width: 130px;
  height: 130px;
  color: #d8eaf5;
}
.driver-explain {
  margin-top: 25px;
}
.driver-explain .card {
  margin: 0;
}
.app-card {
  margin-top: 0;
}
.app-card h2 {
  font-size: 29px;
}
.app-benefits {
  font-size: 14px;
  color: #496177;
  margin-block: 20px;
}
.download-links {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.play-badge {
  object-fit: contain;
}
.qr {
  margin: 0;
}
.qr figcaption {
  font-size: 11px;
  text-align: center;
}
.footer {
  background: #102a43;
  color: #e2edf4;
  padding-block: 60px 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer h2 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px;
}
.footer a {
  display: block;
  font-size: 13px;
  padding-block: 7px;
  color: #e2edf4;
}
.footer .brand {
  display: flex;
}
.footer-brand span {
  color: #fff;
}
.footer p {
  color: #c0d0dc;
  font-size: 13px;
  max-width: 280px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  border-top: 1px solid #345064;
  margin-top: 35px;
  padding-top: 20px;
  font-size: 11px;
  color: #c0d0dc;
}
.final-band {
  background: #f0f6f9;
  text-align: center;
  padding-block: 65px;
}
.final-band h2 {
  font-size: 34px;
}
.final-band p {
  margin: 12px auto;
}
.faq-list details {
  border-bottom: 1px solid #d7e2ec;
  padding: 20px 0;
}
.faq-list summary {
  font-weight: 700;
  cursor: pointer;
  min-height: 40px;
}
.faq-list p {
  font-size: 15px;
  max-width: 900px;
}
.coordinate-details {
  margin-block: 20px;
}
.coordinate-details summary {
  cursor: pointer;
  padding: 12px 0;
  color: #174a7e;
}
.honeypot {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.noscript {
  padding: 18px;
  background: #fff2da;
  color: #6d3c13;
  text-align: center;
}
.privacy-hidden {
  visibility: hidden !important;
}
button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
bdi {
  unicode-bidi: isolate;
}
.list-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.text-danger {
  color: #a32920;
}
.grid > * {
  min-width: 0;
}
.image-caption {
  font-size: 11px;
  color: #496177;
  text-align: center;
}
.pagehead p {
  max-width: 750px;
}
#feedback:not(:empty) {
  margin-block: 20px;
}
.sr-only {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
@media (max-width: 1000px) {
  .desktop-nav {
    gap: 15px;
    font-size: 12px;
  }
  .hero {
    gap: 28px;
    min-height: auto;
    padding-block: 50px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .phone-pair {
    gap: 8px;
    padding-inline: 8px;
  }
  .phone-concept {
    width: 180px;
    flex-basis: 180px;
  }
  .order-layout {
    grid-template-columns: 1.3fr 1fr;
  }
  .container {
    padding-inline: 24px;
  }
  .header-inner {
    gap: 15px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .desktop-nav {
    display: none;
  }
  .mobile-trigger {
    display: inline-flex;
  }
  .header-inner {
    min-height: 82px;
    gap: 8px;
  }
  .header-actions > .btn {
    padding: 9px 12px;
    font-size: 12px;
    min-height: 46px;
  }
  .header-actions {
    gap: 7px;
  }
  .brand {
    min-width: 90px;
    gap: 8px;
  }
  .brand > span {
    font-size: 23px;
  }
  .brand img {
    width: 39px;
    height: 39px;
  }
  .brand small {
    font-size: 8px;
  }
  .account-link {
    display: none;
  }
  .container {
    padding-inline: 20px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-block: 38px;
    gap: 30px;
  }
  .hero h1 {
    font-size: 40px;
    line-height: 1.5;
  }
  .hero p {
    font-size: 16px;
  }
  .hero-art {
    max-width: 580px;
    margin-inline: auto;
  }
  .hero .actions {
    gap: 10px;
  }
  .hero .btn {
    padding-inline: 15px;
    font-size: 13px;
  }
  .hero-foot {
    font-size: 11px;
  }
  .trust-strip {
    flex-direction: column;
    gap: 14px;
    padding-inline: 18px;
  }
  .two,
  .three,
  .split,
  .coverage-band,
  .driver-band,
  .order-layout {
    grid-template-columns: 1fr;
  }
  .section {
    padding-block: 48px;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .category {
    padding: 25px;
  }
  .steps {
    gap: 30px;
  }
  .steps article {
    padding: 0 0 25px;
    border: 0 !important;
    border-bottom: 1px solid #d7e2ec !important;
  }
  .phone-pair {
    justify-content: center;
    padding: 28px 12px;
    gap: 14px;
  }
  .phone-concept {
    flex-basis: 185px;
    width: 185px;
  }
  .apps-teaser {
    gap: 30px;
  }
  .coverage-band,
  .driver-band {
    padding: 30px;
    gap: 35px;
  }
  .coverage-symbol {
    width: 160px;
    height: 160px;
    margin-block: 10px;
  }
  .driver-symbol {
    display: none;
  }
  .footer-grid {
    gap: 28px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    gap: 8px;
  }
  .page {
    padding-block: 35px 55px;
  }
  .pagehead h1 {
    font-size: 32px;
  }
  .card {
    padding: 22px;
    border-radius: 16px;
  }
  .review-panel {
    position: static;
  }
  .water-field .two {
    grid-template-columns: 1fr;
  }
  .water-option span {
    display: grid;
    grid-template-columns: 28px 1fr;
  }
  .water-option small {
    grid-column: 2;
  }
  .account-nav {
    gap: 3px 17px;
    padding: 12px;
    font-size: 13px;
  }
  .order-layout {
    gap: 0;
  }
  .confirmation-dialog {
    padding: 22px;
  }
  .driver-band h2 {
    font-size: 28px;
  }
  .final-band h2 {
    font-size: 29px;
  }
  .field input,
  .field select {
    font-size: 16px;
  }
  .summary-row.total {
    font-size: 19px;
  }
  .grid.two {
    gap: 18px;
  }
}
@media (max-width: 390px) {
  .container {
    padding-inline: 16px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .brand small {
    display: none;
  }
  .brand {
    min-width: 70px;
  }
  .header-actions > .btn {
    font-size: 11px;
    padding-inline: 10px;
  }
  .phone-pair {
    gap: 8px;
    padding-inline: 7px;
  }
  .phone-concept {
    flex-basis: 144px;
    width: 144px;
    border-width: 5px;
    padding-inline: 9px;
  }
  .phone-top {
    font-size: 12px;
  }
  .phone-concept h3 {
    font-size: 12px;
  }
  .phone-feature {
    gap: 4px;
    padding-inline: 5px;
  }
  .floating-card {
    inset-inline-start: 8px;
    padding: 12px;
    gap: 9px;
  }
  .floating-card strong {
    font-size: 12px;
  }
  .floating-card span {
    font-size: 9px;
  }
  .footer-grid {
    gap: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
.quote-lines > div,
.between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.quote-lines dt,
.quote-lines dd {
  margin: 0;
}
.quote-lines > div {
  padding-block: 0.65rem;
  border-bottom: 1px solid #e1e9ef;
}
.quote-total {
  font-size: 1.4rem;
  font-weight: 800;
}
.timeline {
  padding-inline-start: 1.8rem;
  display: grid;
  gap: 1rem;
}
.timeline li small {
  display: block;
  color: #526a7e;
}
.status-chip {
  display: inline-block;
  background: #edf5fa;
  color: #174a7e;
  padding: 0.45rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.88rem;
}
.message {
  padding: 1rem;
  border: 1px solid #d5e2eb;
  border-radius: 1rem;
  margin-block: 0.8rem;
  white-space: normal;
}
.message p {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.message.outgoing {
  background: #edf7fb;
  margin-inline-start: 8%;
}
.message.incoming {
  margin-inline-end: 8%;
}
.message small {
  display: block;
}
.chat-area {
  max-height: 32rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.order-card {
  margin-block: 1rem;
}
.account-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-block-end: 2rem;
  padding: 1rem;
  background: #eaf2f8;
  border-radius: 1rem;
}
.account-nav a {
  padding: 0.5rem;
  color: #174a7e;
}
.card form {
  display: grid;
  gap: 1rem;
}
.card {
  min-width: 0;
}
.coordinate-details {
  padding: 1rem;
  border: 1px solid #c8d8e6;
  border-radius: 0.75rem;
}
.field select,
select {
  max-width: 100%;
  min-height: 48px;
  padding: 0.65rem;
  font: inherit;
  color: #102a43;
  border: 1px solid #b5c8d8;
  border-radius: 0.7rem;
  background: white;
}
.field input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
  border: 2px solid #b42318;
}
body {
  overflow-wrap: break-word;
}
.notice:empty {
  display: none;
}
.between {
  flex-wrap: wrap;
}
.tabs {
  display: flex;
  gap: 0.5rem;
  margin-block: 1rem;
}
#feedback {
  max-width: 100%;
  scroll-margin-block-start: 6rem;
}
.checkline input {
  min-width: 22px;
  min-height: 22px;
}
.water-option input:disabled + span {
  opacity: 0.65;
}
button {
  touch-action: manipulation;
}
button:disabled {
  cursor: not-allowed;
}
input[type="tel"],
#latitude,
#longitude,
#code {
  direction: ltr;
  text-align: start;
}
#private-content:empty::before {
  content: "تم إخفاء معلومات الجلسة.";
}
.page.narrow {
  max-width: 850px;
}
.hero,
.container {
  min-width: 0;
}
dialog {
  max-height: 90dvh;
  overflow: auto;
}
dialog::backdrop {
  background: rgba(16, 42, 67, 0.5);
}
.confirmation-dialog {
  border: 0;
  border-radius: 1.25rem;
  padding: 1.75rem;
  max-width: min(36rem, calc(100vw - 2rem));
  color: #102a43;
}
.confirmation-dialog .actions {
  margin-block-start: 1.5rem;
}
.mobile-dialog {
  inset-inline-start: auto;
  margin: 0;
  padding: 1.5rem;
  width: min(360px, 90vw);
  height: 100dvh;
  max-height: 100dvh;
  border: 0;
}
.mobile-dialog nav {
  display: grid;
  gap: 0.3rem;
}
.mobile-dialog nav a {
  padding: 0.8rem;
}
.menu-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.skip-link {
  z-index: 1000;
}
.section.compact-section {
  padding-block: 2rem;
}
@media (max-width: 720px) {
  .between {
    align-items: flex-start;
  }
  .order-layout {
    display: grid;
    grid-template-columns: 1fr;
  }
  .account-nav {
    gap: 0.15rem;
  }
  .account-nav a {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
  .quote-total {
    font-size: 1.15rem;
  }
  .message {
    margin-inline: 0 !important;
  }
  .hero .actions {
    flex-wrap: wrap;
  }
  .actions .btn {
    max-width: 100%;
    white-space: normal;
  }
}
.mobile-trigger {
  display: none;
}
@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }
  .mobile-trigger {
    display: inline-flex;
  }
  .header-inner {
    gap: 12px;
  }
  .brand {
    min-width: 0;
  }
  .header-actions {
    gap: 6px;
  }
}
@media (max-width: 420px) {
  .header-actions .account-link {
    display: none;
  }
}
.policy-document {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font: inherit;
  line-height: 2.1;
  margin-block-start: 1.5rem;
}

/* FONT-002: approved self-hosted Tajawal; no remote font requests. */
@font-face {
  font-family: Tajawal;
  src: url("/assets/Tajawal-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Tajawal;
  src: url("/assets/Tajawal-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Tajawal;
  src: url("/assets/Tajawal-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Tajawal;
  src: url("/assets/Tajawal-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Tajawal;
  src: url("/assets/Tajawal-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
body,
.reviewbar,
.reviewbar select {
  font-family: Tajawal, Tahoma, Arial, sans-serif;
}
h1,
h2,
h3 {
  letter-spacing: normal;
}
.policy-draft {
  font-size: 1rem;
  line-height: 2;
  overflow-wrap: anywhere;
  margin-block-start: 1.5rem;
}
.policy-draft h2 {
  font-size: 1.4rem;
  margin-block: 2rem 0.75rem;
}
.policy-draft h3 {
  font-size: 1.15rem;
  margin-block: 1rem 0.5rem;
}
.policy-draft ul {
  padding-inline-start: 1.5rem;
}
.policy-draft li {
  margin-block: 0.4rem;
}
.policy-draft .policy-pending {
  padding: 0.8rem 1rem;
  border-inline-start: 3px solid #ad7300;
  background: #fff5dc;
  color: #694600;
  border-radius: 0.4rem;
}
