:root {
  --navy: #0b1f3a;
  --navy-800: #102b4f;
  --navy-700: #173a66;
  --orange: #f97316;
  --orange-dark: #d9570b;
  --orange-soft: #fff1e7;
  --green: #10b981;
  --green-dark: #047857;
  --green-soft: #e9fbf4;
  --sand: #d4a574;
  --sand-soft: #f7efe6;
  --background: #fafafa;
  --surface: #ffffff;
  --muted-surface: #f4f4f5;
  --border: #e4e4e7;
  --text: #0b1f3a;
  --text-secondary: #52525b;
  --text-muted: #71717a;
  --error: #ef4444;
  --error-soft: #fff1f2;
  --shadow-sm: 0 1px 2px rgba(11, 31, 58, 0.04), 0 8px 24px rgba(11, 31, 58, 0.05);
  --shadow-md: 0 24px 60px rgba(11, 31, 58, 0.12);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--text);
  font-family: "Tajawal", "Noto Kufi Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 165, 116, 0.1), transparent 23rem),
    radial-gradient(circle at 92% 36%, rgba(11, 31, 58, 0.05), transparent 30rem);
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.45);
  outline-offset: 3px;
}

::selection {
  background: var(--navy);
  color: #fff;
}

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

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(250, 250, 250, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(228, 228, 231, 0.85);
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.04);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  filter: drop-shadow(0 7px 10px rgba(11, 31, 58, 0.12));
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
}

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

.site-nav a {
  position: relative;
  padding: 9px 12px;
  border-radius: 11px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--surface);
  color: var(--navy);
}

.site-nav a[aria-current="page"]::after {
  position: absolute;
  inset-inline: 12px;
  inset-block-end: 3px;
  height: 2px;
  border-radius: 99px;
  background: var(--navy);
  content: "";
}

.site-nav .nav-contact {
  margin-inline-start: 8px;
  padding-inline: 16px;
  border: 1px solid var(--navy);
  color: var(--navy);
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact[aria-current="page"] {
  background: var(--navy);
  color: #fff;
}

.site-nav .nav-contact[aria-current="page"]::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--surface);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 670px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 250, 250, 0.88) 48%, rgba(247, 239, 230, 0.76) 100%);
}

.hero::after {
  position: absolute;
  inset-inline-start: -10%;
  inset-block-end: -54%;
  width: 58vw;
  height: 58vw;
  max-width: 820px;
  max-height: 820px;
  border: 1px solid rgba(212, 165, 116, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(212, 165, 116, 0.04),
    0 0 0 140px rgba(212, 165, 116, 0.025);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  padding-block: 86px 96px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.hero h1 {
  max-width: 700px;
  margin: 22px 0 20px;
  font-size: clamp(43px, 5.8vw, 78px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.hero h1 span {
  position: relative;
  color: var(--orange);
  white-space: nowrap;
}

.hero h1 span::after {
  position: absolute;
  inset-inline: 4px;
  inset-block-end: -4px;
  height: 7px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.14);
  content: "";
  transform: rotate(-1.5deg);
}

.hero-lead {
  max-width: 600px;
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.9;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.22);
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}

.button-secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--navy);
}

.button-secondary:hover {
  border-color: rgba(11, 31, 58, 0.22);
  box-shadow: var(--shadow-sm);
}

.button-danger {
  background: var(--error);
  color: #fff;
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.18);
}

.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 32px 0 0;
  padding: 0;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof svg {
  width: 18px;
  height: 18px;
  color: var(--green-dark);
}

.market-visual {
  position: relative;
  min-height: 490px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.market-visual::before {
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 44% 56% 58% 42% / 45% 40% 60% 55%;
  background: var(--navy);
  content: "";
  transform: rotate(8deg);
  box-shadow: var(--shadow-md);
}

.market-visual::after {
  position: absolute;
  inset: 15% 9% auto auto;
  z-index: -1;
  width: 82%;
  height: 48%;
  background-image: radial-gradient(rgba(212, 165, 116, 0.55) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
  content: "";
  transform: rotate(-6deg);
}

.market-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 420px);
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 30px 70px rgba(3, 13, 27, 0.28);
  transform: rotate(-2.2deg);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 18px 13px;
}

.panel-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 900;
}

.panel-brand img {
  width: 29px;
  height: 29px;
}

.panel-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px var(--orange-soft);
}

.vehicle-stage {
  position: relative;
  min-height: 205px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(212, 165, 116, 0.17), rgba(255, 255, 255, 0.2)),
    linear-gradient(145deg, #e8edf2 0%, #f8f5f0 55%, #ded2c2 100%);
}

.vehicle-stage::before,
.vehicle-stage::after {
  position: absolute;
  inset-inline: -10%;
  inset-block-end: 22%;
  height: 45%;
  background: var(--navy);
  content: "";
  opacity: 0.09;
  clip-path: polygon(0 100%, 16% 40%, 30% 74%, 48% 18%, 63% 67%, 77% 32%, 100% 100%);
}

.vehicle-stage::after {
  inset-block-end: 13%;
  opacity: 0.05;
  transform: scaleX(-1.15);
}

.vehicle-icon {
  position: relative;
  z-index: 1;
  width: 72%;
  color: var(--navy);
  filter: drop-shadow(0 16px 10px rgba(11, 31, 58, 0.18));
}

.vehicle-badge {
  position: absolute;
  inset-inline-start: 15px;
  inset-block-start: 14px;
  z-index: 3;
  padding: 5px 9px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.panel-details {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: end;
  padding: 16px 18px 18px;
}

.panel-details strong {
  font-size: 17px;
  line-height: 1.35;
}

.panel-details span {
  color: var(--text-secondary);
  font-size: 12px;
}

.panel-price {
  color: var(--navy) !important;
  font-size: 18px !important;
  font-weight: 900;
  white-space: nowrap;
}

.floating-note {
  position: absolute;
  z-index: 4;
  min-width: 150px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-md);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.floating-note svg {
  width: 22px;
  height: 22px;
  color: var(--green-dark);
}

.floating-note.top {
  inset-inline-start: -16px;
  inset-block-start: 58px;
  animation: float 5s ease-in-out infinite;
}

.floating-note.bottom {
  inset-inline-end: -10px;
  inset-block-end: 70px;
  animation: float 5s 1.2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.section {
  padding-block: 96px;
}

.section-tight {
  padding-block: 72px;
}

.section-muted {
  border-block: 1px solid var(--border);
  background: rgba(244, 244, 245, 0.62);
}

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

.section-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.section-heading h2,
.split-copy h2,
.cta-banner h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.04em;
  line-height: 1.28;
}

.section-heading p,
.split-copy > p,
.cta-banner p {
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 17px;
}

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

.value-card {
  position: relative;
  overflow: hidden;
  min-height: 265px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.value-card::after {
  position: absolute;
  inset-inline-end: -24px;
  inset-block-end: -38px;
  width: 120px;
  height: 120px;
  border: 18px solid var(--sand-soft);
  border-radius: 50%;
  content: "";
}

.value-card:hover {
  border-color: rgba(11, 31, 58, 0.18);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.08);
  transform: translateY(-5px);
}

.icon-box {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--sand-soft);
  color: var(--navy);
}

.icon-box.green {
  background: var(--green-soft);
  color: var(--green-dark);
}

.icon-box.orange {
  background: var(--orange-soft);
  color: var(--orange-dark);
}

.icon-box svg {
  width: 25px;
  height: 25px;
}

.value-card h3 {
  margin: 22px 0 8px;
  font-size: 21px;
}

.value-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-secondary);
}

.category-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.category-inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: 50px;
  align-items: center;
  padding: clamp(34px, 6vw, 68px);
  background:
    radial-gradient(circle at 15% 20%, rgba(212, 165, 116, 0.17), transparent 16rem),
    linear-gradient(135deg, transparent 55%, rgba(255, 255, 255, 0.03) 55%);
}

.category-copy h2 {
  margin: 0;
  font-size: clamp(29px, 3.7vw, 45px);
  line-height: 1.3;
}

.category-copy p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.category-item {
  min-height: 120px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.06);
}

.category-item svg {
  width: 29px;
  height: 29px;
  color: var(--sand);
}

.category-item span {
  font-size: 14px;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(44px, 8vw, 100px);
  align-items: center;
}

.trust-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(255, 255, 255, 0.92)),
    var(--surface);
}

.trust-visual::before {
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 55px rgba(16, 185, 129, 0.05), 0 0 0 110px rgba(16, 185, 129, 0.025);
}

.trust-shield {
  position: relative;
  z-index: 1;
  width: 140px;
  height: 160px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 46% 46% / 35% 35% 65% 65%;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 24px 48px rgba(11, 31, 58, 0.22);
}

.trust-shield svg {
  width: 62px;
  height: 62px;
  color: var(--green);
}

.trust-label {
  position: absolute;
  inset-block-end: 38px;
  z-index: 2;
  padding: 9px 15px;
  border: 1px solid rgba(16, 185, 129, 0.16);
  border-radius: 999px;
  background: var(--surface);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--text-secondary);
}

.check-list svg {
  width: 24px;
  height: 24px;
  margin-top: 3px;
  color: var(--green-dark);
}

.check-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
}

.cta-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(32px, 6vw, 62px);
  border-radius: var(--radius-lg);
  background: var(--sand-soft);
}

.cta-banner::after {
  position: absolute;
  inset-inline-end: -70px;
  inset-block-end: -90px;
  width: 260px;
  height: 260px;
  border: 40px solid rgba(212, 165, 116, 0.2);
  border-radius: 50%;
  content: "";
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner .cta-actions {
  margin: 0;
}

.site-footer {
  margin-top: 96px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 60px;
  padding-block: 58px 42px;
}

.footer-brand p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-column h2 {
  margin: 0 0 15px;
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: var(--text-secondary);
  font-size: 14px;
  list-style: none;
}

.footer-links a {
  width: fit-content;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px 26px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
}

/* Inner pages */
.inner-hero {
  position: relative;
  overflow: hidden;
  padding-block: 76px 70px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(120deg, #fff 0%, #fafafa 62%, var(--sand-soft) 100%);
}

.inner-hero::after {
  position: absolute;
  inset-inline-end: -70px;
  inset-block-start: -110px;
  width: 340px;
  height: 340px;
  border: 45px solid rgba(212, 165, 116, 0.12);
  border-radius: 50%;
  content: "";
}

.breadcrumbs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  color: var(--text-muted);
  font-size: 13px;
  list-style: none;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--orange-dark);
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.inner-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5.4vw, 64px);
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.inner-hero p {
  max-width: 690px;
  margin: 16px 0 0;
  color: var(--text-secondary);
  font-size: 18px;
}

.update-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 6px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
}

.update-badge svg {
  width: 16px;
  height: 16px;
  color: var(--green-dark);
}

.page-content {
  padding-block: 72px 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 34px;
  align-items: start;
}

.prose-card {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.prose-card > :first-child {
  margin-top: 0;
}

.prose-card h2 {
  margin: 46px 0 13px;
  padding-top: 2px;
  font-size: 24px;
  line-height: 1.45;
  scroll-margin-top: 110px;
}

.prose-card h3 {
  margin: 28px 0 9px;
  font-size: 18px;
}

.prose-card p,
.prose-card li {
  color: var(--text-secondary);
}

.prose-card p {
  margin: 0 0 16px;
}

.prose-card ul,
.prose-card ol {
  margin: 12px 0 20px;
  padding-inline-start: 24px;
}

.prose-card li + li {
  margin-top: 8px;
}

.prose-card a:not(.button) {
  color: var(--navy-700);
  font-weight: 700;
  text-underline-offset: 4px;
}

.callout {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  margin: 30px 0;
  padding: 20px;
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 16px;
  background: var(--green-soft);
}

.callout.warning {
  border-color: rgba(249, 115, 22, 0.18);
  background: var(--orange-soft);
}

.callout .icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--surface);
}

.callout strong {
  display: block;
  margin-bottom: 3px;
}

.callout p {
  margin: 0;
  font-size: 14px;
}

.page-toc {
  position: sticky;
  inset-block-start: 112px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.page-toc h2 {
  margin: 0 0 13px;
  font-size: 14px;
}

.page-toc ol {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-toc a {
  display: block;
  padding: 7px 9px;
  border-radius: 9px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.page-toc a:hover {
  background: var(--muted-surface);
  color: var(--navy);
}

.support-box {
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  background: var(--sand-soft);
}

.support-box strong {
  display: block;
  font-size: 13px;
}

.support-box a {
  display: block;
  margin-top: 3px;
  direction: ltr;
  color: var(--text-secondary);
  font-size: 12px;
  text-align: right;
  text-decoration: none;
  word-break: break-all;
}

/* Contact and deletion */
.contact-grid,
.action-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.contact-card,
.action-card {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.contact-card h2,
.action-card h2 {
  margin: 20px 0 10px;
  font-size: 27px;
}

.contact-card > p,
.action-card > p {
  margin: 0;
  color: var(--text-secondary);
}

.email-link {
  display: inline-block;
  margin-top: 24px;
  direction: ltr;
  color: var(--navy-700);
  font-size: clamp(18px, 2.5vw, 25px);
  font-weight: 900;
  text-decoration: none;
  word-break: break-all;
}

.email-link:hover {
  color: var(--orange-dark);
}

.contact-aside {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: #fff;
}

.contact-aside::before {
  position: absolute;
  inset-inline-end: -80px;
  inset-block-start: -80px;
  width: 250px;
  height: 250px;
  border: 35px solid rgba(212, 165, 116, 0.15);
  border-radius: 50%;
  content: "";
}

.contact-aside svg {
  position: absolute;
  inset-inline-start: 32px;
  inset-block-start: 32px;
  width: 58px;
  height: 58px;
  color: var(--sand);
}

.contact-aside h2 {
  position: relative;
  margin: 0;
  font-size: 24px;
}

.contact-aside p {
  position: relative;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
  color: var(--text-secondary);
  counter-increment: process;
}

.process-list li::before {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--muted-surface);
  color: var(--navy);
  content: counter(process, decimal-leading-zero);
  font-size: 12px;
  font-weight: 900;
}

.process-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
}

.danger-panel {
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-md);
  background: var(--error-soft);
}

.danger-panel h2 {
  margin: 18px 0 8px;
  font-size: 24px;
}

.danger-panel p {
  margin: 0;
  color: var(--text-secondary);
}

.danger-panel .icon-box {
  background: #fff;
  color: var(--error);
}

.mini-note {
  margin-top: 18px !important;
  padding-top: 18px;
  border-top: 1px solid rgba(239, 68, 68, 0.16);
  font-size: 13px;
}

/* 404 */
.error-page {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.error-page .site-footer {
  margin-top: 0;
}

.error-content {
  min-height: 580px;
  display: grid;
  place-items: center;
  padding-block: 70px;
  text-align: center;
}

.error-inner {
  max-width: 680px;
}

.error-code {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  color: var(--navy);
  font-size: clamp(110px, 23vw, 220px);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.82;
}

.error-code span {
  color: var(--orange);
}

.error-inner h1 {
  margin: 38px 0 10px;
  font-size: clamp(28px, 5vw, 43px);
}

.error-inner p {
  margin: 0;
  color: var(--text-secondary);
}

.error-inner .hero-actions {
  justify-content: center;
}

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.85fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(42px, 6.4vw, 64px);
  }

  .floating-note.top {
    inset-inline-start: 0;
  }

  .floating-note.bottom {
    inset-inline-end: 0;
  }

  .footer-main {
    gap: 34px;
  }
}

@media (max-width: 860px) {
  body.menu-open {
    overflow: hidden;
  }

  .header-inner {
    min-height: 74px;
  }

  html:not(.js) .header-inner {
    flex-wrap: wrap;
    padding-block: 10px;
  }

  html:not(.js) .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-block-end: 6px;
  }

  .js .menu-toggle {
    display: grid;
  }

  .js .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    max-height: calc(100svh - 74px);
    display: grid;
    align-content: start;
    gap: 4px;
    padding: 18px 20px 26px;
    border-bottom: 1px solid var(--border);
    background: rgba(250, 250, 250, 0.98);
    box-shadow: 0 22px 45px rgba(11, 31, 58, 0.1);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .js .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 14px;
    font-size: 15px;
  }

  .js .site-nav .nav-contact {
    margin: 8px 0 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 66px 80px;
  }

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

  .market-visual {
    width: min(100%, 600px);
    margin-inline: auto;
  }

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

  .value-card:last-child {
    grid-column: 1 / -1;
  }

  .category-inner,
  .split-section,
  .contact-grid,
  .action-layout {
    grid-template-columns: 1fr;
  }

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

  .split-copy {
    order: -1;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .page-toc {
    position: static;
    order: -1;
  }

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

  .footer-main {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .brand-copy span {
    display: none;
  }

  .hero-grid {
    padding-block: 50px 66px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(38px, 12vw, 56px);
  }

  .hero h1 span {
    white-space: normal;
  }

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

  .hero-proof {
    display: grid;
    gap: 10px;
  }

  .market-visual {
    min-height: 410px;
  }

  .market-visual::before {
    width: 93%;
  }

  .market-panel {
    width: 91%;
  }

  .vehicle-stage {
    min-height: 165px;
  }

  .floating-note {
    min-width: 0;
    padding: 9px 11px;
    font-size: 10px;
  }

  .floating-note.top {
    inset-block-start: 28px;
  }

  .floating-note.bottom {
    inset-block-end: 24px;
  }

  .section {
    padding-block: 70px;
  }

  .section-tight {
    padding-block: 54px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

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

  .value-card:last-child {
    grid-column: auto;
  }

  .value-card {
    min-height: 0;
    padding: 24px;
  }

  .category-inner {
    gap: 30px;
  }

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

  .category-item {
    min-height: 106px;
  }

  .trust-visual {
    min-height: 350px;
  }

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

  .cta-banner .cta-actions {
    width: 100%;
  }

  .inner-hero {
    padding-block: 52px 48px;
  }

  .inner-hero p {
    font-size: 16px;
  }

  .page-content {
    padding-block-start: 48px;
  }

  .page-toc ol {
    grid-template-columns: 1fr;
  }

  .prose-card h2 {
    margin-top: 36px;
    font-size: 21px;
  }

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

  .contact-aside {
    min-height: 300px;
  }

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

  .footer-main {
    display: grid;
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    gap: 5px;
  }
}

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