﻿/* ==========================================================================
   DIGITAL AUTO HOMEPAGE STYLESHEET
   100% Pixel Perfect Luxury Design Matching Reference Mocks
   ========================================================================== */

:root {
  --da-font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --da-font-display: 'Sora', 'Inter', system-ui, sans-serif;
  --da-bg-cream: #FAF7F2;
  --da-bg-cream-soft: #F5EFE6;
  --da-bg-white: #FFFFFF;
  --da-bg-dark: #091120;

  --da-text-dark: #111827;
  --da-text-body: #4B5563;
  --da-text-muted: #6B7280;

  --da-gold-primary: #b87333;
  --da-gold-light: #c58d47;
  --da-gold-dark: #996226;
  --da-gold-gradient: linear-gradient(135deg, #c58d47 0%, #a87232 100%);
  --da-gold-border: #E8DFD3;

  --da-red-primary: #E31E24;
  --da-red-hover: #C2181D;

  --da-border-light: #EAE4DC;
  --da-max-width: 1220px;
  --da-radius-card: 18px;
  --da-radius-pill: 999px;
  --da-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body.da-home {
  font-family: var(--da-font-primary);
  background-color: var(--da-bg-cream);
  color: var(--da-text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.da-container {
  max-width: var(--da-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.da-gold-text {
  color: var(--da-gold-primary);
  background: var(--da-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.da-rupee-symbol {
  font-family: var(--da-font-primary);
  font-weight: 800;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.da-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--da-radius-pill);
  transition: var(--da-transition);
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.da-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.da-btn:hover svg {
  transform: translateX(3px);
}

.da-btn--black {
  background-color: var(--da-bg-dark);
  color: #ffffff;
}

.da-btn--black:hover {
  background-color: #1a2332;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(9, 17, 32, 0.2);
}

.da-btn--gold {
  background: var(--da-gold-gradient);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(184, 115, 51, 0.28);
}

.da-btn--gold:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(184, 115, 51, 0.38);
}

.da-btn--red {
  background-color: var(--da-red-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(227, 30, 36, 0.25);
}

.da-btn--red:hover {
  background-color: var(--da-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(227, 30, 36, 0.35);
}

.da-btn--outline {
  background: rgba(255, 255, 255, 0.92);
  border-color: #E5E7EB;
  color: var(--da-text-dark);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.da-btn--outline:hover {
  background: #ffffff;
  border-color: var(--da-gold-primary);
  color: var(--da-gold-primary);
  transform: translateY(-1px);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.da-top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(234, 228, 220, 0.7);
}

.da-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.da-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.da-logo__text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--da-text-dark);
}

.da-logo__text span {
  color: var(--da-red-primary);
}

.da-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.da-menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: #374151;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s ease;
  position: relative;
  padding: 0.4rem 0;
}

.da-menu a svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.2px;
  color: #9CA3AF;
}

.da-menu a:hover,
.da-menu a.is-active {
  color: var(--da-text-dark);
  font-weight: 600;
}

.da-menu a.is-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--da-red-primary);
  border-radius: 2px;
}

.da-top__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.da-link-login {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--da-text-dark);
  transition: color 0.2s ease;
}

.da-link-login svg {
  width: 17px;
  height: 17px;
  color: #6B7280;
}

.da-link-login:hover {
  color: var(--da-gold-primary);
}

.da-burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--da-text-dark);
}

/* Drawer */
.da-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.da-drawer.is-open {
  display: block;
}

.da-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

.da-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: #ffffff;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  z-index: 201;
}

.da-drawer__close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
}

.da-drawer__panel a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--da-text-dark);
}

/* ==========================================================================
   HERO SECTION — one viewport composition
   ========================================================================== */
.da-hero {
  position: relative;
  background:
    linear-gradient(
      152deg,
      #fffdfb 0%,
      #f8f3ec 28%,
      #f1ebe2 58%,
      #e9e1d5 82%,
      #e3d9cb 100%
    );
  height: calc(100svh - 76px);
  min-height: calc(100svh - 76px);
  max-height: calc(100svh - 76px);
  display: flex;
  align-items: stretch;
  padding: 0.25rem 0 0.7rem;
  overflow: hidden;
  box-sizing: border-box;
}

.da-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.da-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 88% 72% at 16% 32%, rgba(255, 253, 250, 0.72) 0%, transparent 58%),
    radial-gradient(ellipse 70% 62% at 88% 42%, rgba(28, 32, 40, 0.045) 0%, transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, transparent 34%, rgba(168, 132, 88, 0.055) 100%);
  pointer-events: none;
}

.da-hero__bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
}

.da-hero__bg-glow--left {
  top: 4%;
  left: -10%;
  width: min(54vw, 580px);
  height: min(54vw, 580px);
  background: radial-gradient(
    circle,
    rgba(212, 168, 104, 0.2) 0%,
    rgba(197, 141, 71, 0.08) 40%,
    transparent 72%
  );
}

.da-hero__bg-glow--right {
  top: 8%;
  right: -8%;
  width: min(50vw, 540px);
  height: min(50vw, 540px);
  background: radial-gradient(
    circle,
    rgba(255, 150, 60, 0.07) 0%,
    rgba(120, 96, 70, 0.05) 45%,
    transparent 70%
  );
}

.da-hero__bg-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(140, 110, 78, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 110, 78, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 78% 68% at 28% 38%, #000 8%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 78% 68% at 28% 38%, #000 8%, transparent 74%);
}

.da-hero__bg-grain {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

.da-hero__waves-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.da-hero__waves-bg svg {
  position: absolute;
  left: 0;
  bottom: -2%;
  width: 100%;
  height: 62%;
  object-fit: cover;
  opacity: 0.9;
}

.da-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.1rem;
  padding: 0.2rem 0 0;
}

.da-hero__grid {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  column-gap: clamp(1.25rem, 3vw, 2.75rem);
  align-items: center;
  justify-items: stretch;
  padding-top: 0.25rem;
  padding-bottom: 0.35rem;
  overflow: visible;
}

.da-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: center;
  width: 100%;
  max-width: 36.5rem;
  margin: 0;
  padding: 0.15rem 0.65rem 0.15rem 0;
  text-align: left;
}



.da-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--da-font-primary);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #a87232;
  text-transform: uppercase;
  margin: 0 0 1rem;
  line-height: 1.4;
}

.da-hero__eyebrow-line {
  display: inline-block;
  width: 1.75rem;
  height: 1.5px;
  border-radius: 1px;
  background: #b87333;
  flex-shrink: 0;
}

.da-hero__copy h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  font-family: var(--da-font-display);
  font-size: clamp(2.4rem, 4.8vh, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  color: #0f172a;
  margin: 0 0 1rem;
  letter-spacing: -0.035em;
}

.da-hero__title-row {
  display: block;
  color: #0f172a;
}

.da-hero__title-accent {
  display: block;
  color: #b87333;
  background: none;
  -webkit-text-fill-color: #b87333;
}

.da-hero__sub {
  font-family: var(--da-font-primary);
  font-size: clamp(0.95rem, 1.65vh, 1.0625rem);
  line-height: 1.65;
  color: #475569;
  margin: 0 0 1.5rem;
  max-width: 32rem;
  font-weight: 400;
  letter-spacing: -0.011em;
}

.da-hero__cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0 0 1.35rem;
}

.da-hero__cta .da-btn {
  gap: 0.5rem;
  padding: 0.75rem 1.15rem;
  font-family: var(--da-font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  min-height: 48px;
  border-radius: 10px;
}

.da-hero__btn-ico,
.da-hero__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.da-hero__btn-ico svg,
.da-hero__btn-arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}

.da-hero__btn-primary {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 8px 20px rgba(184, 115, 51, 0.28);
}

.da-hero__btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08), 0 12px 24px rgba(184, 115, 51, 0.32);
}

.da-hero__btn-primary:hover .da-hero__btn-arrow {
  transform: translateX(2px);
}

.da-hero__btn-arrow {
  transition: transform 0.2s ease;
}

.da-hero__btn-secondary {
  background: #ffffff;
  border: 1px solid #d6c3a8;
  color: #0f172a;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.da-hero__btn-secondary:hover {
  border-color: #b87333;
  color: #996226;
  background: #fff;
}

.da-hero__btn-secondary:hover .da-hero__btn-arrow {
  transform: translateX(2px);
}

.da-hero__trust {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  width: 100%;
}

.da-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 1rem;
  border-right: 1px solid #e7dccb;
  font-family: var(--da-font-primary);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #334155;
  line-height: 1.25;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.da-hero__trust li:first-child { padding-left: 0; }
.da-hero__trust li:last-child { border-right: none; padding-right: 0; }

.da-hero__trust-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.da-hero__trust-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

/* ==========================================================================
   HERO HUD ORBIT â€” dark reference mock (car lights + 7 badges)
   ========================================================================== */
.da-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: min(440px, 48vh);
  overflow: visible;
  /* Top clear of header; bottom room for History card */
  padding: 0.35rem 0 2.4rem;
  margin: 0 0 0 0.5rem;
}

.da-hud-orbit {
  --hub-x: 50%;
  --hub-y: 50%;
  --hud-orange: #ff8c2a;
  --hud-orange-soft: rgba(255, 140, 42, 0.45);
  position: relative;
  width: min(520px, 56vh, 92%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: visible;
  margin: 0 auto;
  isolation: isolate;
}

.da-hud-orbit__bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 140, 42, 0.1) 0%, transparent 38%),
    radial-gradient(circle at 50% 50%, #16181f 0%, #0c0d12 55%, #06070a 100%);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 140, 42, 0.18),
    inset 0 0 100px rgba(255, 140, 42, 0.05);
  z-index: 0;
}

.da-hud-orbit__grid {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.da-hud-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  opacity: 0.85;
}

.da-hud-ring-segments {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  animation: da-ring-spin 60s linear infinite;
  transform-origin: center center;
}

.da-orbit-glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(255, 140, 42, 0.14) 0%,
    rgba(255, 140, 42, 0.04) 45%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 1;
  animation: da-glow-breathe 4.5s ease-in-out infinite;
}

@keyframes da-glow-breathe {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.da-ring {
  position: absolute;
  inset: var(--inset, 0);
  border-radius: 50%;
  border: 1.5px solid var(--hud-orange-soft);
  background: transparent;
  pointer-events: none;
  z-index: 2;
  transform-origin: center center;
  box-shadow: 0 0 14px rgba(255, 140, 42, 0.08);
}

.da-ring--1 {
  --inset: 0%;
  border-color: rgba(255, 140, 42, 0.55);
  border-width: 1.75px;
  animation: da-ring-spin 52s linear infinite;
}

.da-ring--2 {
  --inset: 10%;
  border-color: rgba(255, 140, 42, 0.38);
  animation: da-ring-spin-rev 38s linear infinite;
}

.da-ring--3 {
  --inset: 20%;
  border-style: dashed;
  border-width: 1.25px;
  border-color: rgba(255, 140, 42, 0.32);
  animation: da-ring-spin 30s linear infinite;
}

.da-ring--4 {
  --inset: 30%;
  border-color: rgba(255, 140, 42, 0.26);
  animation: da-ring-spin-rev 24s linear infinite;
}

.da-ring--5 {
  --inset: 40%;
  border-color: rgba(255, 140, 42, 0.18);
  animation: da-ring-spin 20s linear infinite;
}

@keyframes da-ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes da-ring-spin-rev {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.da-ring-dot {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  z-index: 3;
  transform: rotate(var(--a, 0deg));
}

.da-ring-dot::after {
  content: '';
  position: absolute;
  top: var(--d, 8%);
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--hud-orange);
  box-shadow: 0 0 0 3px rgba(255, 140, 42, 0.2), 0 0 16px rgba(255, 140, 42, 0.65);
}

.da-ring-dot--pulse::after {
  animation: da-dot-pulse 2.6s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes da-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.4); opacity: 1; }
}

.da-car-scan {
  position: absolute;
  top: var(--hub-y);
  left: var(--hub-x);
  width: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(255, 140, 42, 0.85);
  border-right-color: rgba(255, 140, 42, 0.22);
  z-index: 5;
  pointer-events: none;
  animation: da-scan-sweep 2.4s linear infinite;
  opacity: 0.95;
  box-shadow:
    0 0 24px rgba(255, 140, 42, 0.28),
    inset 0 0 18px rgba(255, 140, 42, 0.08);
}

.da-car-scan--2 {
  width: 58%;
  height: 58%;
  border-top-color: rgba(255, 180, 80, 0.55);
  border-right-color: rgba(255, 140, 42, 0.12);
  animation-duration: 3.8s;
  animation-direction: reverse;
  opacity: 0.65;
}

@keyframes da-scan-sweep {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.da-car-shadow {
  position: absolute;
  top: calc(var(--hub-y) + 9%);
  left: var(--hub-x);
  width: 42%;
  height: 12%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, transparent 70%);
  filter: blur(8px);
  z-index: 3;
  pointer-events: none;
}

/* Off-white color theme — ONLY in marked zone around the car */
.da-car-theme {
  position: absolute;
  top: var(--hub-y);
  left: var(--hub-x);
  width: 48%;
  height: 48%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 50%,
    #FAF7F2 0%,
    #F5F0E8 42%,
    rgba(250, 247, 242, 0.55) 68%,
    transparent 78%
  );
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.35),
    0 0 36px rgba(250, 247, 242, 0.2);
  animation: da-theme-breathe 4.8s ease-in-out infinite;
}

.da-car-theme__ring {
  position: absolute;
  top: var(--hub-y);
  left: var(--hub-x);
  width: 44%;
  height: 44%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 4;
  pointer-events: none;
  border: 1.5px solid rgba(250, 247, 242, 0.7);
  box-shadow:
    0 0 14px rgba(250, 247, 242, 0.25),
    inset 0 0 14px rgba(255, 255, 255, 0.15);
  animation: da-theme-ring 6s ease-in-out infinite;
}

.da-car-theme__ring--2 {
  width: 36%;
  height: 36%;
  border-color: rgba(245, 240, 232, 0.55);
  border-style: dashed;
  animation-duration: 8s;
  animation-direction: reverse;
  opacity: 0.9;
}

@keyframes da-theme-breathe {
  0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes da-theme-ring {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.03); }
}

.da-hero__car-box {
  position: absolute;
  top: var(--hub-y);
  left: var(--hub-x);
  transform: translate(-50%, -50%);
  width: 42%;
  max-width: 210px;
  z-index: 6;
  pointer-events: none;
  background: transparent !important;
  box-shadow: none !important;
  animation: da-car-float 5s ease-in-out infinite;
}

@keyframes da-car-float {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 4px)); }
}

.da-hero__car-box img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  background: transparent !important;
  mix-blend-mode: normal;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.55));
}

/* Live LIDAR scan — cyan diagnostic beam on car */
.da-inspect-scan {
  --scan-cyan: #3dd9ff;
  position: absolute;
  inset: 0% 4% 1%;
  z-index: 3;
  overflow: hidden;
  border-radius: 44% / 22%;
  pointer-events: none;
  isolation: isolate;
}

.da-inspect-scan__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 28, 40, 0.12) 0%, transparent 35%, transparent 70%, rgba(8, 28, 40, 0.1) 100%);
  mix-blend-mode: soft-light;
}

.da-inspect-scan__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 217, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 217, 255, 0.1) 1px, transparent 1px);
  background-size: 9px 9px;
  opacity: 0.55;
  mix-blend-mode: screen;
  mask-image: radial-gradient(ellipse at center, #000 42%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 42%, transparent 80%);
  animation: da-inspect-grid 2.8s linear infinite;
}

.da-inspect-scan__heatmap {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 35% at 50% 35%, rgba(61, 217, 255, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 70%, rgba(26, 184, 212, 0.12) 0%, transparent 75%);
  mix-blend-mode: screen;
  opacity: 0.65;
  animation: da-inspect-heatmap 2.8s ease-in-out infinite;
}

.da-inspect-scan__reveal {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 0;
  background: linear-gradient(180deg, rgba(61, 217, 255, 0.04) 0%, rgba(61, 217, 255, 0.16) 55%, rgba(122, 236, 255, 0.22) 100%);
  mix-blend-mode: screen;
  animation: da-inspect-reveal 2.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  will-change: height;
}

.da-inspect-scan__trail {
  position: absolute;
  left: -10%;
  right: -10%;
  height: 32%;
  background: linear-gradient(180deg, transparent 0%, rgba(61, 217, 255, 0.04) 25%, rgba(61, 217, 255, 0.22) 68%, rgba(122, 236, 255, 0.5) 90%, transparent 100%);
  filter: blur(1px);
  mix-blend-mode: screen;
  animation: da-inspect-beam 2.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  will-change: top, opacity;
}

.da-inspect-scan__beam {
  position: absolute;
  left: -8%;
  right: -8%;
  height: 16%;
  background: linear-gradient(180deg, transparent 0%, rgba(61, 217, 255, 0.1) 30%, rgba(61, 217, 255, 0.45) 52%, rgba(180, 245, 255, 0.4) 72%, transparent 100%);
  box-shadow: 0 0 24px rgba(61, 217, 255, 0.4), 0 0 48px rgba(26, 184, 212, 0.22);
  mix-blend-mode: screen;
  animation: da-inspect-beam 2.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  will-change: top, opacity;
}

.da-inspect-scan__laser {
  position: absolute;
  left: -6%;
  right: -6%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(61, 217, 255, 0.25) 6%, #b4f5ff 28%, #ffffff 48%, #3dd9ff 52%, #b4f5ff 72%, rgba(61, 217, 255, 0.25) 94%, transparent 100%);
  box-shadow:
    0 0 3px 1px rgba(255, 255, 255, 0.95),
    0 0 10px 2px rgba(61, 217, 255, 0.95),
    0 0 22px 5px rgba(61, 217, 255, 0.55),
    0 0 40px 8px rgba(26, 184, 212, 0.28);
  animation: da-inspect-laser 2.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  will-change: top, opacity;
  z-index: 3;
}

.da-inspect-scan__spark {
  position: absolute;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #3dd9ff 40%, transparent 70%);
  box-shadow: 0 0 12px 3px rgba(61, 217, 255, 0.85);
  animation: da-inspect-spark 2.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  z-index: 4;
}

.da-inspect-scan__vline {
  position: absolute;
  top: 6%;
  bottom: 8%;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent 0%, rgba(61, 217, 255, 0.35) 20%, rgba(61, 217, 255, 0.15) 50%, rgba(61, 217, 255, 0.35) 80%, transparent 100%);
  opacity: 0.45;
  animation: da-inspect-vline 2.8s ease-in-out infinite;
}

.da-inspect-scan__ticks {
  position: absolute;
  inset: 8% 5%;
  background-image: repeating-linear-gradient(180deg, rgba(61, 217, 255, 0.65) 0 1px, transparent 1px 8px);
  mask-image: linear-gradient(90deg, #000 0, #000 2px, transparent 2px, transparent calc(100% - 2px), #000 calc(100% - 2px), #000 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 2px, transparent 2px, transparent calc(100% - 2px), #000 calc(100% - 2px), #000 100%);
  opacity: 0.4;
  animation: da-inspect-ticks 2.8s ease-in-out infinite;
}

.da-inspect-scan__corner {
  position: absolute;
  width: 11px;
  height: 11px;
  border-color: rgba(61, 217, 255, 0.9);
  border-style: solid;
  z-index: 3;
  filter: drop-shadow(0 0 4px rgba(61, 217, 255, 0.55));
  animation: da-inspect-corner 2.8s ease-in-out infinite;
}

.da-inspect-scan__corner--tl { top: 5%; left: 12%; border-width: 1.5px 0 0 1.5px; }
.da-inspect-scan__corner--tr { top: 5%; right: 12%; border-width: 1.5px 1.5px 0 0; }
.da-inspect-scan__corner--bl { bottom: 7%; left: 12%; border-width: 0 0 1.5px 1.5px; }
.da-inspect-scan__corner--br { bottom: 7%; right: 12%; border-width: 0 1.5px 1.5px 0; }

.da-inspect-scan__label {
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.14rem 0.42rem;
  border-radius: 4px;
  background: rgba(4, 18, 28, 0.82);
  border: 1px solid rgba(61, 217, 255, 0.5);
  font-size: 0.4rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #7aecff;
  text-shadow: 0 0 10px rgba(61, 217, 255, 0.65);
  animation: da-inspect-label 2.8s ease-in-out infinite;
  white-space: nowrap;
  z-index: 5;
  backdrop-filter: blur(3px);
  box-shadow: 0 0 14px rgba(61, 217, 255, 0.18);
}

.da-inspect-scan__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #3dd9ff;
  box-shadow: 0 0 8px rgba(61, 217, 255, 1);
  animation: da-inspect-dot 0.8s ease-in-out infinite;
}

.da-inspect-scan__pct {
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  color: #ffffff;
  opacity: 0.95;
}

@keyframes da-inspect-beam {
  0% { top: -14%; opacity: 0; }
  5% { opacity: 1; }
  94% { opacity: 1; }
  100% { top: 98%; opacity: 0; }
}

@keyframes da-inspect-laser {
  0% { top: -3%; opacity: 0; }
  4% { opacity: 1; }
  94% { opacity: 1; }
  100% { top: 103%; opacity: 0; }
}

@keyframes da-inspect-spark {
  0% { top: -2%; left: 18%; opacity: 0; }
  5% { opacity: 1; }
  35% { left: 72%; }
  65% { left: 28%; }
  94% { opacity: 1; }
  100% { top: 102%; left: 60%; opacity: 0; }
}

@keyframes da-inspect-reveal {
  0% { height: 0%; opacity: 0.25; }
  8% { opacity: 0.9; }
  92% { height: 97%; opacity: 0.85; }
  100% { height: 100%; opacity: 0.12; }
}

@keyframes da-inspect-heatmap {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(1.03); }
}

@keyframes da-inspect-grid {
  0% { background-position: 0 0, 0 0; opacity: 0.35; }
  50% { opacity: 0.7; }
  100% { background-position: 0 9px, 9px 0; opacity: 0.35; }
}

@keyframes da-inspect-ticks {
  0%, 100% { opacity: 0.22; }
  50% { opacity: 0.55; }
}

@keyframes da-inspect-vline {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.55; }
}

@keyframes da-inspect-corner {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes da-inspect-label {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

@keyframes da-inspect-dot {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Premium inspection checkpoints — aligned orbit */
.da-hud-badge {
  --badge-x: 50%;
  --badge-y: 50%;
  --node: 32px;
  --gap: 10px;
  position: absolute;
  z-index: 10;
  top: var(--badge-y);
  left: var(--badge-x);
  width: var(--node);
  height: var(--node);
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  opacity: 1;
  transform: translate(-50%, -50%);
  cursor: default;
}

/* Perfect mirror clock positions (same radius feel) */
.da-hud-badge--1 { --badge-x: 22%; --badge-y: 20%; } /* TL */
.da-hud-badge--2 { --badge-x: 78%; --badge-y: 20%; } /* TR */
.da-hud-badge--3 { --badge-x: 90%; --badge-y: 50%; } /* R  */
.da-hud-badge--4 { --badge-x: 78%; --badge-y: 80%; } /* BR */
.da-hud-badge--5 { --badge-x: 50%; --badge-y: 90%; } /* B  */
.da-hud-badge--6 { --badge-x: 22%; --badge-y: 80%; } /* BL */
.da-hud-badge--7 { --badge-x: 10%; --badge-y: 50%; } /* L  */

/* Horizontal / vertical link from node → card */
.da-hud-badge__stem {
  position: absolute;
  top: 50%;
  height: 1px;
  width: var(--gap);
  margin-top: -0.5px;
  background: rgba(255, 140, 42, 0.55);
  pointer-events: none;
  z-index: 1;
}

.da-hud-badge--right .da-hud-badge__stem {
  left: 100%;
  right: auto;
}

.da-hud-badge--left .da-hud-badge__stem {
  right: 100%;
  left: auto;
}

.da-hud-badge--bottom .da-hud-badge__stem {
  top: 100%;
  bottom: auto;
  left: 50%;
  width: 1px;
  height: var(--gap);
  margin-top: 0;
  margin-left: -0.5px;
  background: rgba(255, 140, 42, 0.55);
}

.da-hud-badge__node {
  position: relative;
  z-index: 2;
  width: var(--node);
  height: var(--node);
  border-radius: 50%;
  border: 1.5px solid rgba(255, 140, 42, 0.72);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 190, 110, 0.35) 0%, transparent 52%),
    linear-gradient(165deg, #1c1f28 0%, #0b0d11 100%);
  color: #ffb060;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 3px rgba(255, 140, 42, 0.07),
    0 3px 12px rgba(0, 0, 0, 0.4),
    0 0 14px rgba(255, 140, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.da-hud-badge__node::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(255, 140, 42, 0.16);
  pointer-events: none;
}

.da-hud-badge__node svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}

.da-hud-badge__card {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 0.34rem;
  height: 36px;
  box-sizing: border-box;
  width: 7.35rem;
  padding: 0 0.42rem 0 0.32rem;
  border-radius: 8px;
  background: rgba(10, 12, 16, 0.94);
  border: 1px solid rgba(255, 140, 42, 0.3);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  pointer-events: none;
  transform: translateY(-50%);
  font-family: "Inter", system-ui, sans-serif;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.da-hud-badge__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, #ffb060, #ff8c2a);
}

/* Right labels: card to the right of node, perfectly centered */
.da-hud-badge--right .da-hud-badge__card {
  left: calc(100% + var(--gap));
  right: auto;
}

/* Left labels: card to the left of node, mirrored layout */
.da-hud-badge--left .da-hud-badge__card {
  right: calc(100% + var(--gap));
  left: auto;
  flex-direction: row-reverse;
  padding: 0 0.3rem 0 0.4rem;
  text-align: right;
}

.da-hud-badge--left .da-hud-badge__card::before {
  left: auto;
  right: 0;
}

.da-hud-badge--left .da-hud-badge__copy {
  align-items: flex-end;
}

/* Bottom label: under node, centered on node axis */
.da-hud-badge--bottom .da-hud-badge__card {
  top: calc(100% + var(--gap));
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translate(-50%, 0);
  width: 6.8rem;
  justify-content: center;
}

.da-hud-badge--bottom .da-hud-badge__card::before {
  left: 18%;
  right: 18%;
  top: 0;
  bottom: auto;
  width: auto;
  height: 2px;
  background: linear-gradient(90deg, #ffb060, #ff8c2a);
}

.da-hud-badge__num {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 5px;
  background: linear-gradient(160deg, #ff9e45 0%, #ff8c2a 100%);
  color: #11141a;
  font-family: "IBM Plex Mono", "Inter", monospace;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 18px;
  text-align: center;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 2px 6px rgba(255, 140, 42, 0.3);
}

.da-hud-badge__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.08rem;
  min-width: 0;
  flex: 1;
}

.da-hud-badge__copy strong {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  color: #f7f8fa;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.da-hud-badge__copy span {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Reserve space always — prevents active-state layout jump */
.da-hud-badge__ok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(61, 217, 255, 0.16);
  border: 1px solid rgba(61, 217, 255, 0.5);
  color: #7aecff;
  flex-shrink: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.da-hud-badge__ok svg {
  width: 8px;
  height: 8px;
  stroke-width: 3;
}

.da-hud-badge:hover,
.da-hud-badge.is-active {
  z-index: 14;
}

/* Only glow the node — keep card/node alignment locked */
.da-hud-badge:hover .da-hud-badge__node,
.da-hud-badge.is-active .da-hud-badge__node {
  border-color: #ffc078;
  color: #fff;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 210, 140, 0.55) 0%, transparent 55%),
    linear-gradient(160deg, #ff8c2a 0%, #e06a12 100%);
  box-shadow:
    0 0 0 4px rgba(255, 140, 42, 0.14),
    0 5px 16px rgba(0, 0, 0, 0.4),
    0 0 22px rgba(255, 140, 42, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.da-hud-badge:hover .da-hud-badge__stem,
.da-hud-badge.is-active .da-hud-badge__stem {
  background: rgba(255, 180, 90, 0.9);
}

.da-hud-badge:hover .da-hud-badge__card,
.da-hud-badge.is-active .da-hud-badge__card {
  border-color: rgba(255, 160, 60, 0.65);
  background: rgba(14, 16, 22, 0.96);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.48),
    0 0 12px rgba(255, 140, 42, 0.16);
}

.da-hud-badge.is-active .da-hud-badge__ok {
  opacity: 1;
  visibility: visible;
}

.da-hud-badge.is-active .da-hud-badge__copy span {
  color: rgba(122, 236, 255, 0.88);
}

@media (prefers-reduced-motion: reduce) {
  .da-ring,
  .da-ring-dot--pulse::after,
  .da-car-scan,
  .da-orbit-glow,
  .da-car-theme,
  .da-car-theme__ring,
  .da-hero__car-box,
  .da-inspect-scan__grid,
  .da-inspect-scan__heatmap,
  .da-inspect-scan__reveal,
  .da-inspect-scan__trail,
  .da-inspect-scan__beam,
  .da-inspect-scan__laser,
  .da-inspect-scan__spark,
  .da-inspect-scan__vline,
  .da-inspect-scan__ticks,
  .da-inspect-scan__corner,
  .da-inspect-scan__label,
  .da-inspect-scan__dot,
  .da-inspect-scan__pct,
  .da-hud-badge,
  .da-hud-badge__node::before {
    animation: none !important;
  }

  .da-hud-badge {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* ==========================================================================
   HERO STATS — editorial proof row (no floating card)
   ========================================================================== */
.da-hero-stats-card {
  position: relative;
  z-index: 20;
  flex: 0 0 auto;
  width: 100%;
  margin-top: 0.15rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  padding: 0.85rem 0 0.95rem;
  border-radius: 0;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(160, 128, 88, 0.28);
  border-bottom: 1px solid rgba(160, 128, 88, 0.18);
  box-shadow: none;
  isolation: isolate;
  overflow: visible;
}

.da-hero-stats-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 3.25rem;
  height: 2px;
  background: linear-gradient(90deg, #b87333 0%, #c58d47 70%, transparent 100%);
  pointer-events: none;
}

.da-hero-stats-card::after {
  display: none;
}

.da-hero-stat-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-width: 0;
  padding: 0.1rem 1.1rem 0.1rem 0.95rem;
  border-right: none;
}

.da-hero-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 18%;
  right: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(150, 120, 82, 0.35) 30%,
    rgba(150, 120, 82, 0.35) 70%,
    transparent 100%
  );
}

.da-hero-stat-item:first-child {
  padding-left: 0;
}

.da-hero-stat-item:last-child {
  padding-right: 0;
}

.da-hero-stat-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding-left: 0.55rem;
  border-left: 2px solid rgba(184, 115, 51, 0.55);
}

.da-hero-stat-info strong {
  display: block;
  font-family: var(--da-font-display);
  font-size: clamp(1.05rem, 1.9vh, 1.28rem);
  font-weight: 700;
  color: #1a1f2a;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.da-hero-stat-info span {
  font-family: var(--da-font-primary);
  font-size: 0.62rem;
  color: #6f6558;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   SECTION HEADINGS & LAYOUT
   ========================================================================== */
.da-section {
  padding: 5rem 0;
}

.da-sec-head {
  text-align: center;
  margin-bottom: 3.25rem;
}

.da-sec-kicker {
  margin: 0 0 0.7rem;
  font-family: var(--da-font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--da-gold-dark);
}

.da-sec-title {
  font-family: var(--da-font-display);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 700;
  color: var(--da-text-dark);
  margin-bottom: 0.55rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.da-sec-sub {
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--da-text-muted);
}

/* ==========================================================================
   SECTION 2: ECOSYSTEM — Digital Auto route map
   ========================================================================== */
.da-eco-sec {
  position: relative;
  background:
    radial-gradient(ellipse 48% 42% at 8% 18%, rgba(184, 115, 51, 0.07), transparent 62%),
    radial-gradient(ellipse 40% 36% at 92% 78%, rgba(9, 17, 32, 0.035), transparent 58%),
    var(--da-bg-cream);
  padding-top: 4.1rem;
  padding-bottom: 4.4rem;
  overflow: hidden;
}

.da-eco-head {
  position: relative;
  z-index: 1;
  margin-bottom: 2.1rem;
  text-align: left;
}

.da-eco-head .da-sec-kicker {
  margin-bottom: 0.45rem;
}

.da-eco-head .da-sec-title {
  margin-bottom: 0.55rem;
  text-align: left;
}

.da-eco-sub {
  max-width: 38rem;
  margin: 0;
  text-align: left;
  color: var(--da-text-body);
}

.da-eco-route {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.85fr);
  gap: 1.35rem;
  align-items: stretch;
}

.da-eco-route__intro {
  position: sticky;
  top: 6.5rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.05rem;
  padding: 1.9rem 1.6rem 1.55rem 1.75rem;
  border-radius: 18px;
  color: #f4ebe0;
  background:
    radial-gradient(circle at 100% 0%, rgba(197, 141, 71, 0.16) 0%, transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(227, 30, 36, 0.06) 0%, transparent 36%),
    linear-gradient(155deg, rgba(197, 141, 71, 0.1) 0%, transparent 48%),
    linear-gradient(180deg, #121b2b 0%, #091120 100%);
  border: 1px solid rgba(197, 141, 71, 0.3);
  box-shadow:
    0 20px 44px rgba(9, 17, 32, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.da-eco-route__intro::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #e8b56a 0%, #c58d47 45%, rgba(197, 141, 71, 0.12) 100%);
  border-radius: 18px 0 0 18px;
  pointer-events: none;
}

.da-eco-route__intro::after {
  content: "";
  position: absolute;
  top: -28%;
  right: -18%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 141, 71, 0.1) 0%, transparent 68%);
  pointer-events: none;
}

.da-eco-route__intro-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.da-eco-route__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d4a45c;
}

.da-eco-route__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4a45c;
  box-shadow: 0 0 0 3px rgba(212, 164, 92, 0.2);
  animation: da-eco-pulse 2.4s ease-in-out infinite;
}

@keyframes da-eco-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(212, 164, 92, 0.2); }
  50% { box-shadow: 0 0 0 5px rgba(212, 164, 92, 0.08); }
}

.da-eco-route__brand {
  display: block;
  font-family: var(--da-font-display);
  font-size: 1.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1.02;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.da-eco-route__brand span {
  color: #ff4d52;
}

.da-eco-route__tagline {
  margin: 0;
  font-family: var(--da-font-display);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.38;
  color: rgba(244, 235, 224, 0.82);
}

.da-eco-route__tagline span {
  background: linear-gradient(90deg, #e8b56a 0%, #c58d47 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.da-eco-route__intro-copy {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-left: 0.85rem;
  max-width: 18.5rem;
  font-size: 0.82rem;
  line-height: 1.68;
  color: rgba(244, 235, 224, 0.58);
  border-left: 2px solid rgba(197, 141, 71, 0.35);
}

.da-eco-route__facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 0;
  padding: 0.9rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(197, 141, 71, 0.18);
}

.da-eco-route__facts li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.58rem 0.62rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease;
}

.da-eco-route__intro:hover .da-eco-route__facts li {
  border-color: rgba(197, 141, 71, 0.18);
}

.da-eco-route__facts li:hover {
  background: rgba(197, 141, 71, 0.08);
  border-color: rgba(197, 141, 71, 0.28);
  transform: translateY(-1px);
}

.da-eco-route__fact-ico {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #d4a45c;
  background: rgba(197, 141, 71, 0.1);
  border: 1px solid rgba(197, 141, 71, 0.22);
}

.da-eco-route__fact-ico svg {
  width: 15px;
  height: 15px;
}

.da-eco-route__fact-body {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.da-eco-route__fact-body strong {
  font-family: var(--da-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

.da-eco-route__fact-body span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(244, 235, 224, 0.48);
}

.da-eco-route__trail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
  margin: 0;
  padding: 0.75rem 0 0;
  list-style: none;
  border-top: 1px dashed rgba(197, 141, 71, 0.22);
}

.da-eco-route__trail::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 141, 71, 0.45), transparent);
  pointer-events: none;
}

.da-eco-route__trail li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  text-align: center;
}

.da-eco-route__trail-num {
  width: 1.65rem;
  height: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #d4a45c;
  background: rgba(9, 17, 32, 0.92);
  border: 1px solid rgba(197, 141, 71, 0.35);
  box-shadow: 0 0 0 3px rgba(197, 141, 71, 0.08);
}

.da-eco-route__trail-label {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(244, 235, 224, 0.62);
  line-height: 1.2;
}

.da-eco-route__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.da-eco-route__chips li {
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 235, 224, 0.72);
  background: rgba(197, 141, 71, 0.1);
  border: 1px solid rgba(197, 141, 71, 0.22);
}

.da-eco-route__note {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(244, 235, 224, 0.5);
}

.da-eco-route__panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(184, 115, 51, 0.18);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 18px 42px rgba(15, 23, 42, 0.06);
}

.da-eco-route__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem 0.75rem 1.15rem;
  background: #fff;
  border-bottom: 1px solid var(--da-border-light);
}

.da-eco-route__panel-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--da-font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--da-text-dark);
}

.da-eco-route__live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.14);
}

.da-eco-route__steps {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: #f7f0e6;
  border: 1px solid rgba(184, 115, 51, 0.14);
}

.da-eco-route__steps > span:not(.da-eco-route__chev) {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--da-text-dark);
  background: #fff;
  border: 1px solid rgba(184, 115, 51, 0.1);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.da-eco-route__chev {
  width: 12px;
  height: 12px;
  position: relative;
  flex-shrink: 0;
}

.da-eco-route__chev::before {
  content: "";
  position: absolute;
  inset: 3px 2px 3px 3px;
  border-right: 1.5px solid rgba(184, 115, 51, 0.55);
  border-top: 1.5px solid rgba(184, 115, 51, 0.55);
  transform: rotate(45deg);
}

.da-eco-route__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.7rem;
  background:
    linear-gradient(180deg, #f7f1e8 0%, #faf7f2 100%);
}

.da-eco-stop {
  position: relative;
  display: grid;
  grid-template-columns: 22px 4.9rem minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.72rem 0.9rem 0.72rem 0.7rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(184, 115, 51, 0.14);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.da-eco-stop:last-child {
  border-bottom: 1px solid rgba(184, 115, 51, 0.14);
}

.da-eco-stop::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 2px;
  border-radius: 0 3px 3px 0;
  background: rgba(184, 115, 51, 0.18);
  transition: background 0.22s ease;
}

.da-eco-stop:hover {
  background: #fffdf9;
  border-color: rgba(184, 115, 51, 0.32);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.da-eco-stop:hover::after {
  background: var(--da-gold-gradient);
}

.da-eco-stop__rail {
  position: relative;
  display: flex;
  justify-content: center;
  align-self: stretch;
  min-height: 100%;
}

.da-eco-stop__rail::before {
  content: "";
  position: absolute;
  top: -0.65rem;
  bottom: -0.65rem;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(184, 115, 51, 0.32), transparent);
}

.da-eco-stop:first-child .da-eco-stop__rail::before {
  top: 50%;
}

.da-eco-stop:last-child .da-eco-stop__rail::before {
  bottom: 50%;
}

.da-eco-stop__dot {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  margin: auto 0;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--da-gold-primary);
  box-shadow: 0 0 0 2px rgba(184, 115, 51, 0.1);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.da-eco-stop:hover .da-eco-stop__dot {
  background: var(--da-gold-primary);
  box-shadow: 0 0 0 4px rgba(184, 115, 51, 0.12);
}

.da-eco-stop__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  min-height: 0;
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
  background: #f7f0e6;
  border: 1px solid rgba(184, 115, 51, 0.12);
}

.da-eco-stop__num {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--da-gold-primary);
  line-height: 1;
}

.da-eco-stop:hover .da-eco-stop__num {
  color: var(--da-gold-dark);
}

.da-eco-stop__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--da-text-dark);
  line-height: 1.15;
}

.da-eco-stop__main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.da-eco-stop__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a45c;
  background:
    radial-gradient(circle at 30% 25%, rgba(197, 141, 71, 0.18), transparent 50%),
    linear-gradient(160deg, #182335 0%, #0a1320 100%);
  border: 1px solid rgba(197, 141, 71, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 4px 10px rgba(9, 17, 32, 0.14);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.da-eco-stop__icon svg {
  width: 20px;
  height: 20px;
  overflow: visible;
}

.da-eco-stop:hover .da-eco-stop__icon {
  color: #fff;
  background: var(--da-gold-gradient);
  border-color: transparent;
  box-shadow: 0 8px 14px rgba(168, 114, 50, 0.26);
}

.da-eco-stop:hover .da-eco-stop__icon svg [opacity] {
  opacity: 0.22;
}

.da-eco-stop__copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.da-eco-stop__title {
  font-family: var(--da-font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--da-text-dark);
  line-height: 1.2;
}

.da-eco-stop__text {
  max-width: 30rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--da-text-body);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.da-eco-stop__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  flex-shrink: 0;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  background: var(--da-bg-dark);
  border: 1px solid var(--da-bg-dark);
  box-shadow: 0 4px 10px rgba(9, 17, 32, 0.12);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.da-eco-stop__cta svg {
  width: 12px;
  height: 12px;
  color: #c58d47;
  transition: transform 0.2s ease, color 0.2s ease;
}

.da-eco-stop:hover .da-eco-stop__cta {
  background: var(--da-gold-gradient);
  border-color: transparent;
  box-shadow: 0 6px 12px rgba(168, 114, 50, 0.24);
}

.da-eco-stop:hover .da-eco-stop__cta svg {
  color: #fff;
  transform: translate(1px, -1px);
}

@keyframes da-eco-live {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4); }
  70% { box-shadow: 0 0 0 7px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .da-eco-route__live {
    animation: none;
  }

  .da-eco-stop,
  .da-eco-stop::after,
  .da-eco-stop__dot,
  .da-eco-stop__icon,
  .da-eco-stop__cta,
  .da-eco-stop__cta svg {
    transition: none;
  }
}

/* ==========================================================================
   SECTION 3: DARK STATS RIBBON
   ========================================================================== */
.da-dark-stats-ribbon {
  background:
    linear-gradient(180deg, #0d1522 0%, var(--da-bg-dark) 100%);
  padding: 2.35rem 0;
  color: #ffffff;
  border-top: 1px solid rgba(197, 141, 71, 0.18);
  border-bottom: 1px solid rgba(197, 141, 71, 0.12);
}

.da-dark-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.da-dark-stat-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: center;
  padding: 0.35rem 0.85rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.da-dark-stat-item:last-child {
  border-right: none;
}

.da-dark-stat-item svg {
  width: 22px;
  height: 22px;
  color: var(--da-gold-light);
  flex-shrink: 0;
}

.da-dark-stat-info strong {
  display: block;
  font-family: var(--da-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.da-dark-stat-info span {
  font-size: 0.72rem;
  color: #9CA3AF;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   SECTION 4: VEHICLE INSPECTION SOLUTIONS
   ========================================================================== */
.da-services-sec {
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(184, 115, 51, 0.05), transparent 55%),
    var(--da-bg-cream);
  padding-top: 4rem;
  padding-bottom: 4.25rem;
}

.da-services-head {
  margin-bottom: 1.65rem;
  text-align: left;
}

.da-services-head .da-sec-title,
.da-services-head .da-sec-sub {
  text-align: left;
}

.da-services-head .da-sec-sub {
  margin-left: 0;
  margin-right: 0;
}

.da-svc-board {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(184, 115, 51, 0.2);
  box-shadow:
    0 20px 48px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.da-svc-hero {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  min-height: 300px;
  text-decoration: none;
  color: inherit;
  background: #091120;
}

.da-svc-hero__media {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 280px;
  padding: 1.1rem;
  background:
    radial-gradient(circle at 0% 100%, rgba(197, 141, 71, 0.12) 0%, transparent 45%),
    #091120;
}

.da-svc-hero__frame {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(197, 141, 71, 0.28);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.da-svc-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.da-svc-hero:hover .da-svc-hero__frame img {
  transform: scale(1.05);
}

.da-svc-hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(9, 17, 32, 0.42) 100%);
  pointer-events: none;
}

.da-svc-hero__proof {
  position: absolute;
  left: 1.65rem;
  bottom: 1.65rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.8rem;
  border-radius: 12px;
  background: rgba(9, 17, 32, 0.78);
  border: 1px solid rgba(197, 141, 71, 0.35);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.da-svc-hero__proof svg {
  width: 18px;
  height: 18px;
  color: #d4a45c;
  flex-shrink: 0;
}

.da-svc-hero__proof-copy {
  display: flex;
  flex-direction: column;
  gap: 0.06rem;
}

.da-svc-hero__proof-copy strong {
  font-family: var(--da-font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

.da-svc-hero__proof-copy span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 235, 224, 0.58);
}

.da-svc-hero__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.75rem 1.65rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(197, 141, 71, 0.14) 0%, transparent 44%),
    linear-gradient(180deg, #121b2b 0%, #091120 100%);
  color: #f4ebe0;
  border-left: 1px solid rgba(197, 141, 71, 0.12);
}

.da-svc-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4a45c;
  background: rgba(197, 141, 71, 0.12);
  border: 1px solid rgba(197, 141, 71, 0.28);
}

.da-svc-hero__tag svg {
  width: 13px;
  height: 13px;
}

.da-svc-hero__title {
  font-family: var(--da-font-display);
  font-size: clamp(1.42rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.da-svc-hero__text {
  max-width: 26rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(244, 235, 224, 0.65);
}

.da-svc-hero__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0.15rem 0 0;
  padding: 0;
  list-style: none;
}

.da-svc-hero__points li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.55rem 0.6rem;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.da-svc-hero__points li svg {
  width: 15px;
  height: 15px;
  color: #d4a45c;
}

.da-svc-hero__points li span {
  font-size: 0.64rem;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(244, 235, 224, 0.76);
}

.da-svc-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  margin-top: 0.4rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #091120;
  background: var(--da-gold-gradient);
  box-shadow: 0 8px 18px rgba(168, 114, 50, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.da-svc-hero__cta svg {
  width: 14px;
  height: 14px;
}

.da-svc-hero:hover .da-svc-hero__cta {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(168, 114, 50, 0.36);
}

.da-svc-list-wrap {
  padding: 1.35rem 1.35rem 1.45rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(197, 141, 71, 0.06) 0%, transparent 38%),
    linear-gradient(180deg, #fffdfb 0%, #fff 100%);
  border-top: 1px solid rgba(184, 115, 51, 0.12);
}

.da-svc-list-head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(184, 115, 51, 0.12);
}

.da-svc-list-head__label {
  margin: 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--da-gold-dark);
}

.da-svc-list-head__title {
  margin: 0;
  font-family: var(--da-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--da-text-dark);
}

.da-svc-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.da-svc-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  min-height: 168px;
  padding: 1.15rem 1.15rem 1.05rem;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(184, 115, 51, 0.14);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.da-svc-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 14px 0 0 14px;
  background: var(--da-gold-gradient);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.da-svc-item:hover {
  transform: translateY(-2px);
  background: #fffdfa;
  border-color: rgba(197, 141, 71, 0.28);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.da-svc-item:hover::before {
  opacity: 1;
}

.da-svc-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.65rem;
}

.da-svc-item__num {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(184, 115, 51, 0.55);
}

.da-svc-item__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d4a45c;
  background:
    radial-gradient(circle at 30% 25%, rgba(197, 141, 71, 0.18), transparent 52%),
    linear-gradient(160deg, #182335 0%, #0a1320 100%);
  border: 1px solid rgba(197, 141, 71, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.da-svc-item__icon svg {
  width: 19px;
  height: 19px;
}

.da-svc-item:hover .da-svc-item__icon {
  color: #fff;
  background: var(--da-gold-gradient);
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(168, 114, 50, 0.24);
}

.da-svc-item__copy {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
  flex: 1;
}

.da-svc-item__copy strong {
  font-family: var(--da-font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--da-text-dark);
  line-height: 1.22;
}

.da-svc-item__copy span {
  font-size: 0.76rem;
  line-height: 1.5;
  color: var(--da-text-body);
}

.da-svc-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--da-gold-primary);
  opacity: 0.8;
  transition: opacity 0.2s ease, gap 0.2s ease;
}

.da-svc-item__link svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s ease;
}

.da-svc-item:hover .da-svc-item__link {
  opacity: 1;
  gap: 0.38rem;
}

.da-svc-item:hover .da-svc-item__link svg {
  transform: translate(1px, -1px);
}

@media (min-width: 1100px) {
  .da-svc-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .da-svc-item {
    min-height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .da-svc-hero__frame img,
  .da-svc-hero__cta,
  .da-svc-item,
  .da-svc-item__icon,
  .da-svc-item::before,
  .da-svc-item__link,
  .da-svc-item__link svg {
    transition: none;
  }
}

/* ==========================================================================
   SECTION 5: HOW IT WORKS
   ========================================================================== */
.da-how-sec {
  background:
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(184, 115, 51, 0.07), transparent 60%),
    var(--da-bg-cream);
  padding-top: 4rem;
  padding-bottom: 5.5rem;
  overflow: visible;
}

.da-how-ladder {
  position: relative;
  padding: 0.5rem 0.5rem 5rem;
}

.da-how-head {
  margin-bottom: 2.25rem;
  text-align: center;
}

.da-how-head .da-sec-title,
.da-how-head .da-sec-sub {
  text-align: center;
}

.da-how-head .da-sec-sub {
  margin-left: auto;
  margin-right: auto;
  max-width: 34rem;
}

.da-how-ladder__arc {
  position: absolute;
  top: 0.35rem;
  left: 3%;
  right: 3%;
  width: 94%;
  height: 72px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.da-how-ladder__steps {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
  margin: 0;
  padding: 2.5rem 0 0;
  list-style: none;
}

.da-how-ladder__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  transition: transform 0.28s ease;
}

.da-how-ladder__step:nth-child(1) { transform: translateY(0); }
.da-how-ladder__step:nth-child(2) { transform: translateY(-1.6rem); }
.da-how-ladder__step:nth-child(3) { transform: translateY(-3.2rem); }
.da-how-ladder__step:nth-child(4) { transform: translateY(-4.8rem); }

.da-how-ladder__step:hover {
  transform: translateY(calc(var(--da-lift, 0px) - 6px));
}

.da-how-ladder__step:nth-child(1) { --da-lift: 0px; }
.da-how-ladder__step:nth-child(2) { --da-lift: -1.6rem; }
.da-how-ladder__step:nth-child(3) { --da-lift: -3.2rem; }
.da-how-ladder__step:nth-child(4) { --da-lift: -4.8rem; }

.da-how-ladder__marker {
  width: 2.65rem;
  height: 2.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--da-font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #091120;
  background: var(--da-gold-gradient);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  box-shadow: 0 6px 16px rgba(168, 114, 50, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.da-how-ladder__step:hover .da-how-ladder__marker {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(168, 114, 50, 0.36);
}

.da-how-ladder__plate {
  width: 100%;
  filter: drop-shadow(0 12px 28px rgba(15, 23, 42, 0.07));
  transition: filter 0.25s ease;
}

.da-how-ladder__step:hover .da-how-ladder__plate {
  filter: drop-shadow(0 18px 34px rgba(15, 23, 42, 0.11));
}

.da-how-ladder__block {
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  padding: 1.15rem 1.05rem 1.2rem 1.15rem;
  text-align: left;
  background:
    radial-gradient(circle at 100% 0%, rgba(197, 141, 71, 0.08) 0%, transparent 48%),
    #fff;
  border: 1px solid rgba(184, 115, 51, 0.18);
  min-height: 132px;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.da-how-ladder__step:hover .da-how-ladder__block {
  border-color: rgba(184, 115, 51, 0.32);
}

.da-how-ladder__phase {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--da-gold-dark);
}

.da-how-ladder__block strong {
  font-family: var(--da-font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--da-text-dark);
  line-height: 1.22;
}

.da-how-ladder__block p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.52;
  color: var(--da-text-body);
}

.da-how-ladder__step--peak .da-how-ladder__marker {
  color: #fff;
  background: linear-gradient(160deg, #182335 0%, #091120 100%);
  border: 2px solid #d4a45c;
  box-shadow:
    0 0 0 4px rgba(197, 141, 71, 0.16),
    0 8px 20px rgba(9, 17, 32, 0.22);
}

.da-how-ladder__step--peak .da-how-ladder__block {
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 181, 106, 0.14) 0%, transparent 50%),
    linear-gradient(165deg, #141e2f 0%, #091120 100%);
  border-color: rgba(197, 141, 71, 0.35);
}

.da-how-ladder__step--peak .da-how-ladder__phase {
  color: #d4a45c;
}

.da-how-ladder__step--peak .da-how-ladder__block strong {
  color: #fff;
}

.da-how-ladder__step--peak .da-how-ladder__block p {
  color: rgba(244, 235, 224, 0.68);
}

@media (prefers-reduced-motion: reduce) {
  .da-how-ladder__step,
  .da-how-ladder__marker,
  .da-how-ladder__plate,
  .da-how-ladder__block {
    transition: none;
  }
}

/* ==========================================================================
   SECTION 6: TRUSTED BY THOUSANDS
   ========================================================================== */
.da-trust-sec {
  background:
    radial-gradient(ellipse 42% 45% at 100% 10%, rgba(184, 115, 51, 0.05), transparent 55%),
    var(--da-bg-cream);
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}

.da-trust-proof {
  display: grid;
  grid-template-columns: minmax(230px, 0.82fr) minmax(0, 1.52fr);
  gap: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(184, 115, 51, 0.2);
  background: #fff;
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.da-trust-proof__mark {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 1.55rem 2.1rem 1.75rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(197, 141, 71, 0.14) 0%, transparent 42%),
    linear-gradient(165deg, rgba(197, 141, 71, 0.12), transparent 50%),
    linear-gradient(180deg, #141e2f 0%, #091120 100%);
  color: #f4ebe0;
  border-right: 1px solid rgba(184, 115, 51, 0.22);
  overflow: hidden;
}

.da-trust-proof__mark::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #e8b56a 0%, rgba(197, 141, 71, 0.15) 100%);
}

.da-trust-proof__mark-label {
  margin: 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4a45c;
}

.da-trust-proof__years {
  font-family: var(--da-font-display);
  font-size: clamp(3.8rem, 6.5vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.9;
  background: var(--da-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.da-trust-proof__years-sub {
  font-family: var(--da-font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.da-trust-proof__mark-note {
  margin: 0.35rem 0 0;
  max-width: 16rem;
  font-size: 0.8rem;
  line-height: 1.58;
  color: rgba(244, 235, 224, 0.62);
}

.da-trust-proof__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 0.85rem 0 0;
  padding: 0.85rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(197, 141, 71, 0.2);
}

.da-trust-proof__facts li {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.da-trust-proof__facts strong {
  font-family: var(--da-font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

.da-trust-proof__facts span {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(244, 235, 224, 0.48);
}

.da-trust-proof__main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.65rem 1.6rem 1.4rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(197, 141, 71, 0.05) 0%, transparent 38%),
    #fff;
}

.da-trust-proof__kicker {
  margin: 0 0 0.4rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--da-gold-dark);
}

.da-trust-proof__head h2 {
  margin: 0 0 1.25rem;
  font-family: var(--da-font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.14;
  color: var(--da-text-dark);
}

.da-trust-proof__head h2 span {
  background: linear-gradient(90deg, #b87333 0%, #c58d47 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.da-trust-proof__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.da-trust-proof__list li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 132px;
  padding: 0.95rem 0.9rem 0.9rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(184, 115, 51, 0.14);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.da-trust-proof__list li:hover {
  border-color: rgba(184, 115, 51, 0.3);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
  transform: translateY(-2px);
}

.da-trust-proof__num {
  position: absolute;
  top: 0.65rem;
  right: 0.7rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(184, 115, 51, 0.45);
}

.da-trust-proof__list li:hover .da-trust-proof__num {
  color: var(--da-gold-dark);
}

.da-trust-proof__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d4a45c;
  background:
    radial-gradient(circle at 30% 25%, rgba(197, 141, 71, 0.16), transparent 52%),
    linear-gradient(160deg, #182335 0%, #0a1320 100%);
  border: 1px solid rgba(197, 141, 71, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.da-trust-proof__icon svg {
  width: 18px;
  height: 18px;
}

.da-trust-proof__list li:hover .da-trust-proof__icon {
  color: #fff;
  background: var(--da-gold-gradient);
  border-color: transparent;
}

.da-trust-proof__copy {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  margin-top: auto;
}

.da-trust-proof__name {
  font-family: var(--da-font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--da-text-dark);
  line-height: 1.22;
}

.da-trust-proof__desc {
  font-size: 0.74rem;
  line-height: 1.45;
  color: var(--da-text-body);
}

.da-trust-proof__partners {
  margin-top: 1.15rem;
  padding-top: 0;
}

.da-trust-proof__partners-label {
  display: block;
  margin-bottom: 0.6rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.42);
}

.da-trust-proof__partners-band {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #faf6ef 0%, #f7f0e6 100%);
  border: 1px solid rgba(184, 115, 51, 0.12);
}

.da-trust-proof__partners-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 0.85rem 1rem;
}

.da-brand-item {
  min-height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(15, 23, 42, 0.05);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  opacity: 0.88;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.da-brand-item:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.07);
}

/* Partner brand colors */
.da-brand-hdb {
  color: #004c8f;
}

.da-brand-poonawalla {
  color: #111827;
  letter-spacing: 0.02em;
}

.da-brand-equitas {
  color: #e4007f;
}

.da-brand-vastu {
  color: #f15a29;
}

.da-brand-setia {
  color: #0066b3;
}

.da-brand-kogta {
  color: #1e3a8a;
}

.da-brand-chola {
  color: #c9920a;
}

.da-brand-hinduja {
  color: #003da5;
}

.da-brand-suryoday {
  color: #ef7d00;
}

.da-brand-esaf {
  color: #008349;
  font-weight: 900;
}

@media (prefers-reduced-motion: reduce) {
  .da-trust-proof__list li,
  .da-brand-item {
    transition: none;
  }
}

/* ==========================================================================
   SECTION 7: MAP & REACH
   ========================================================================== */
.da-reach-sec {
  padding: 4rem 0 2.75rem;
  background:
    radial-gradient(ellipse 42% 45% at 100% 10%, rgba(184, 115, 51, 0.05), transparent 55%),
    var(--da-bg-cream);
}

.da-reach-proof {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(184, 115, 51, 0.2);
  background: #fff;
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.da-reach-proof__contact {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.75rem 1.5rem 1.65rem 1.65rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(197, 141, 71, 0.14) 0%, transparent 42%),
    linear-gradient(165deg, rgba(197, 141, 71, 0.12), transparent 50%),
    linear-gradient(180deg, #141e2f 0%, #091120 100%);
  color: #f4ebe0;
  border-right: 1px solid rgba(184, 115, 51, 0.22);
}

.da-reach-proof__contact::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #e8b56a 0%, rgba(197, 141, 71, 0.15) 100%);
}

.da-reach-proof__label {
  margin: 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4a45c;
}

.da-reach-proof__company {
  margin: 0;
  font-family: var(--da-font-display);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
}

.da-reach-proof__note {
  margin: 0;
  max-width: 17rem;
  font-size: 0.8rem;
  line-height: 1.58;
  color: rgba(244, 235, 224, 0.62);
}

.da-reach-proof__contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  margin: 0.15rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(197, 141, 71, 0.2);
}

.da-reach-proof__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.da-reach-proof__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9px;
  background: rgba(197, 141, 71, 0.14);
  border: 1px solid rgba(197, 141, 71, 0.28);
  color: #e8b56a;
}

.da-reach-proof__icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

.da-reach-proof__copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.da-reach-proof__copy strong {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 235, 224, 0.48);
}

.da-reach-proof__copy span,
.da-reach-proof__copy a {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #f4ebe0;
  text-decoration: none;
}

.da-reach-proof__copy a:hover {
  color: #e8b56a;
}

.da-reach-proof__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  list-style: none;
  margin: 0.1rem 0 0;
  padding: 0;
}

.da-reach-proof__stats li {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.5rem 0.4rem;
  border-radius: 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.da-reach-proof__stats strong {
  font-family: var(--da-font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

.da-reach-proof__stats span {
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(244, 235, 224, 0.48);
}

.da-reach-proof__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.45rem;
}

.da-reach-proof__actions .da-btn--gold {
  justify-content: center;
  width: 100%;
  padding-inline: 1rem;
}

.da-reach-proof__directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  min-height: 2.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--da-radius-pill);
  border: 1px solid rgba(197, 141, 71, 0.32);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(244, 235, 224, 0.92);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.da-reach-proof__directions svg {
  width: 0.9rem;
  height: 0.9rem;
}

.da-reach-proof__directions:hover {
  color: #e8b56a;
  border-color: rgba(232, 181, 106, 0.45);
  background: rgba(197, 141, 71, 0.08);
}

.da-reach-proof__main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  min-height: 100%;
  padding: 1.65rem 1.55rem 1.5rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(197, 141, 71, 0.05) 0%, transparent 38%),
    #fff;
}

.da-reach-proof__kicker {
  margin: 0 0 0.4rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--da-gold-dark);
}

.da-reach-proof__head h2 {
  margin: 0;
  font-family: var(--da-font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.16;
  color: var(--da-text-dark);
}

.da-reach-proof__head h2 span {
  background: linear-gradient(90deg, #b87333 0%, #c58d47 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.da-reach-proof__sub {
  margin: 0.55rem 0 0;
  max-width: 34rem;
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--da-text-muted);
}

.da-reach-proof__map-wrap {
  position: relative;
  flex: 1;
  min-height: 360px;
}

.da-reach-proof__map-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.72rem;
  border-radius: var(--da-radius-pill);
  background: rgba(9, 17, 32, 0.82);
  border: 1px solid rgba(197, 141, 71, 0.35);
  backdrop-filter: blur(8px);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f4ebe0;
}

.da-reach-proof__live {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.22);
  animation: da-reach-pulse 2s ease-in-out infinite;
}

@keyframes da-reach-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.da-reach-proof__map {
  position: relative;
  height: 100%;
  min-height: 360px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(184, 115, 51, 0.16);
  background: #ece5da;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.da-reach-proof__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: saturate(0.94) contrast(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .da-reach-proof__live {
    animation: none;
  }
}

/* ==========================================================================
   SECTION 8: FINAL CTA BANNER
   ========================================================================== */
.da-final-sec {
  padding: 1.5rem 0 4.75rem;
  background: var(--da-bg-cream);
}

.da-final-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 380px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(184, 115, 51, 0.22);
  background: #091120;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.da-final-banner__media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  order: 2;
}

.da-final-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 0.55s ease;
}

.da-final-banner:hover .da-final-banner__media img {
  transform: scale(1.07);
}

.da-final-banner__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(9, 17, 32, 0.92) 0%, rgba(9, 17, 32, 0.35) 48%, transparent 72%);
  pointer-events: none;
}

.da-final-banner__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(9, 17, 32, 0.35) 100%);
  pointer-events: none;
}

.da-final-banner__panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: 2.4rem 1.5rem 2.4rem 2.35rem;
  order: 1;
  background:
    linear-gradient(135deg, rgba(197, 141, 71, 0.14), transparent 45%),
    linear-gradient(180deg, #121b2b 0%, #091120 100%);
  color: #f4ebe0;
}

.da-final-banner__kicker {
  margin: 0;
  font-family: var(--da-font-mono, "IBM Plex Mono", monospace);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c58d47;
}

.da-final-banner__panel h2 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--da-font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #fff;
}

.da-final-banner__panel h2 span {
  color: #c58d47;
}

.da-final-banner__text {
  margin: 0;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(244, 235, 224, 0.72);
}

.da-final-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
  margin-top: 0.35rem;
}

.da-final-banner__actions .da-btn--gold {
  box-shadow: 0 10px 22px rgba(168, 114, 50, 0.3);
}

.da-final-banner__mail {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(244, 235, 224, 0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(197, 141, 71, 0.35);
  padding-bottom: 0.1rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.da-final-banner__mail:hover {
  color: #c58d47;
  border-color: rgba(197, 141, 71, 0.7);
}

.da-final-banner__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 0.55rem 0 0;
  padding: 0;
  list-style: none;
}

.da-final-banner__points li {
  position: relative;
  padding-left: 0.85rem;
  font-family: var(--da-font-mono, "IBM Plex Mono", monospace);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 235, 224, 0.55);
}

.da-final-banner__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c58d47;
}

@media (prefers-reduced-motion: reduce) {
  .da-final-banner__media img,
  .da-final-banner__mail {
    transition: none;
  }
}

/* ==========================================================================
   FOOTER — professional enterprise
   ========================================================================== */
.da-foot {
  margin-top: 0;
  padding: 3.25rem 0 1.35rem;
  background: linear-gradient(180deg, #101827 0%, #091120 100%);
  border-top: 1px solid rgba(184, 115, 51, 0.2);
  color: rgba(244, 235, 224, 0.72);
}

.da-foot__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 2.4fr);
  gap: 3rem 3.5rem;
  align-items: start;
  padding-bottom: 2.25rem;
}

.da-foot__brand {
  max-width: 22rem;
}

.da-foot__logo .da-logo__text {
  font-family: var(--da-font-display);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.da-foot__logo .da-logo__text span {
  color: #e8b56a;
}

.da-foot__tagline {
  margin: 0.75rem 0 0;
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(244, 235, 224, 0.55);
}

.da-foot__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.15rem;
}

.da-foot__social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(197, 141, 71, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(232, 181, 106, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.da-foot__social a svg {
  width: 14px;
  height: 14px;
}

.da-foot__social a:hover {
  background: rgba(197, 141, 71, 0.14);
  border-color: rgba(232, 181, 106, 0.45);
  color: #fff;
}

.da-foot__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem 2rem;
}

.da-foot__col h4 {
  margin: 0 0 1rem;
  font-family: var(--da-font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8b56a;
}

.da-foot__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.da-foot__col a {
  color: rgba(244, 235, 224, 0.62);
  text-decoration: none;
  font-size: 0.83rem;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.da-foot__col a:hover {
  color: #fff;
}

.da-foot__contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(197, 141, 71, 0.14);
  border-bottom: 1px solid rgba(197, 141, 71, 0.14);
}

.da-foot__contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.25rem;
  color: rgba(244, 235, 224, 0.78);
  text-decoration: none;
  transition: color 0.2s ease;
}

.da-foot__contact-link:first-child {
  padding-left: 0;
}

.da-foot__contact-link + .da-foot__contact-link {
  border-left: 1px solid rgba(197, 141, 71, 0.14);
}

.da-foot__contact-link:hover {
  color: #fff;
}

.da-foot__contact-link--static {
  cursor: default;
}

.da-foot__contact-link--static:hover {
  color: rgba(244, 235, 224, 0.78);
}

.da-foot__contact-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #e8b56a;
  background: rgba(197, 141, 71, 0.1);
  border: 1px solid rgba(197, 141, 71, 0.2);
}

.da-foot__contact-icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

.da-foot__contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.da-foot__contact-text strong {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 181, 106, 0.58);
}

.da-foot__contact-text span {
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(244, 235, 224, 0.86);
  word-break: break-word;
}

.da-foot__contact-link:hover .da-foot__contact-text span {
  color: #fff;
}

.da-foot__base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.15rem;
}

.da-foot__legal {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.5;
  color: rgba(244, 235, 224, 0.4);
}

.da-foot__links {
  display: flex;
  gap: 1.25rem;
}

.da-foot__links a {
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(244, 235, 224, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.da-foot__links a:hover {
  color: #e8b56a;
}

@media (prefers-reduced-motion: reduce) {
  .da-foot__social a,
  .da-foot__col a,
  .da-foot__contact-link,
  .da-foot__links a {
    transition: none;
  }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1100px) {
  .da-hero {
    height: auto;
    min-height: calc(100svh - 76px);
    max-height: none;
    padding: 2rem 0 2.5rem;
  }

  .da-hero__inner {
    height: auto;
  }

  .da-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    flex: none;
    align-items: center;
  }

  .da-hero__copy {
    align-items: center;
    align-self: center;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    text-align: center;
  }

  .da-hero__eyebrow {
    justify-content: center;
  }

  .da-hero__copy h1 {
    align-items: center;
  }

  .da-hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .da-hero__cta {
    justify-content: center;
  }

  .da-hero__trust {
    justify-content: center;
  }

  .da-hero__trust li:first-child {
    padding-left: 0.85rem;
  }

  .da-hero__bg-mesh {
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 15%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 15%, transparent 75%);
  }

  .da-hero-stats-card,
  .da-dark-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .da-dark-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.85rem 0.5rem;
    justify-content: flex-start;
  }

  .da-dark-stat-item:nth-child(n + 4) {
    border-bottom: none;
  }

  .da-svc-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .da-svc-hero__media {
    min-height: 220px;
    padding: 0.85rem;
  }

  .da-svc-hero__proof {
    left: 1.35rem;
    bottom: 1.35rem;
  }

  .da-svc-hero__points {
    grid-template-columns: 1fr;
  }

  .da-svc-list-wrap {
    padding: 1.15rem 1rem 1.2rem;
  }

  .da-svc-list {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .da-svc-item {
    min-height: 0;
  }

  .da-how-ladder__arc {
    display: none;
  }

  .da-how-ladder__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding-top: 0;
  }

  .da-how-ladder__step,
  .da-how-ladder__step:nth-child(n) {
    transform: none;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .da-how-ladder__step:hover,
  .da-how-ladder__step:nth-child(n):hover {
    transform: none;
  }

  .da-how-ladder__marker {
    flex-shrink: 0;
    margin-top: 0.15rem;
  }

  .da-how-ladder__block {
    clip-path: none;
    min-height: 0;
  }

  .da-eco-route {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .da-eco-route__intro {
    position: static;
  }

  .da-eco-route__intro-copy {
    max-width: 32rem;
  }

  .da-eco-route__facts {
    max-width: 18rem;
  }

  .da-eco-route__panel-head {
    flex-wrap: wrap;
  }

  .da-eco-stop {
    grid-template-columns: 20px 4.3rem minmax(0, 1fr);
    grid-template-areas:
      "rail meta cta"
      "rail main main";
    gap: 0.35rem 0.55rem;
    padding: 0.65rem 0.75rem 0.65rem 0.55rem;
  }

  .da-eco-stop__rail { grid-area: rail; }
  .da-eco-stop__meta { grid-area: meta; }
  .da-eco-stop__main { grid-area: main; }
  .da-eco-stop__cta {
    grid-area: cta;
    justify-self: end;
    align-self: start;
  }

  .da-trust-proof {
    grid-template-columns: 1fr;
  }

  .da-trust-proof__mark {
    border-right: none;
    border-bottom: 1px solid rgba(184, 115, 51, 0.22);
    padding: 1.5rem 1.35rem 1.55rem 1.55rem;
  }

  .da-trust-proof__facts {
    max-width: 18rem;
  }

  .da-trust-proof__list {
    grid-template-columns: 1fr;
  }

  .da-trust-proof__list li {
    min-height: 0;
  }

  .da-reach-proof {
    grid-template-columns: 1fr;
  }

  .da-reach-proof__contact {
    border-right: none;
    border-bottom: 1px solid rgba(184, 115, 51, 0.22);
    padding: 1.5rem 1.35rem 1.45rem 1.55rem;
  }

  .da-reach-proof__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .da-reach-proof__actions .da-btn--gold,
  .da-reach-proof__directions {
    width: auto;
    flex: 1 1 9.5rem;
  }

  .da-reach-proof__map-wrap,
  .da-reach-proof__map,
  .da-reach-proof__map iframe {
    min-height: 320px;
  }

  .da-final-banner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .da-final-banner__media {
    order: 1;
    min-height: 220px;
  }

  .da-final-banner__media::before {
    background: linear-gradient(180deg, transparent 30%, rgba(9, 17, 32, 0.75) 100%);
  }

  .da-final-banner__panel {
    order: 2;
    padding: 1.6rem 1.25rem 1.75rem;
  }

  .da-final-banner__panel h2 {
    max-width: none;
  }

  .da-foot__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .da-foot__nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .da-foot__contact {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .da-foot__contact-link {
    padding: 0;
    border-left: none !important;
  }

  .da-hero__visual {
    padding: 0 0 3rem;
    margin-left: 0;
    justify-content: center;
    min-height: 360px;
    max-height: none;
    height: auto;
  }

  .da-hero__orbit-system {
    margin-left: 0;
    --hub-x: 50%;
  }

  .da-hud-orbit {
    width: min(440px, 82vw);
  }

  .da-hud-badge {
    --node: 28px;
    --gap: 8px;
    width: var(--node);
    height: var(--node);
    opacity: 1;
  }

  .da-hud-badge--1 { --badge-x: 22%; --badge-y: 20%; }
  .da-hud-badge--2 { --badge-x: 78%; --badge-y: 20%; }
  .da-hud-badge--3 { --badge-x: 90%; --badge-y: 50%; }
  .da-hud-badge--4 { --badge-x: 78%; --badge-y: 80%; }
  .da-hud-badge--5 { --badge-x: 50%; --badge-y: 90%; }
  .da-hud-badge--6 { --badge-x: 22%; --badge-y: 80%; }
  .da-hud-badge--7 { --badge-x: 10%; --badge-y: 50%; }

  .da-hud-badge__node {
    width: var(--node);
    height: var(--node);
  }

  .da-hud-badge__node svg {
    width: 11px;
    height: 11px;
  }

  .da-hud-badge__card {
    height: 32px;
    width: 6.7rem;
    gap: 0.28rem;
    padding: 0 0.32rem 0 0.24rem;
    border-radius: 7px;
  }

  .da-hud-badge--left .da-hud-badge__card {
    padding: 0 0.24rem 0 0.32rem;
  }

  .da-hud-badge--bottom .da-hud-badge__card {
    width: 6.4rem;
  }

  .da-hud-badge__num {
    width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 0.42rem;
  }

  .da-hud-badge__copy strong {
    font-size: 0.56rem;
  }

  .da-hud-badge__copy span {
    font-size: 0.36rem;
    letter-spacing: 0.06em;
  }

  .da-hud-badge__node svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 768px) {
  .da-menu,
  .da-link-login {
    display: none;
  }

  .da-burger {
    display: block;
  }

  .da-dark-stats-grid {
    grid-template-columns: 1fr;
  }

  .da-trust-proof__list {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .da-trust-proof__main {
    padding: 1.25rem 1.1rem 1.15rem;
  }

  .da-trust-proof__partners-band {
    padding: 0.75rem 0.85rem;
  }

  .da-trust-proof__partners-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem 0.75rem;
  }

  .da-reach-sec {
    padding-top: 3.25rem;
  }

  .da-reach-proof__main {
    padding: 1.25rem 1.1rem 1.15rem;
  }

  .da-reach-proof__head h2 {
    font-size: 1.35rem;
  }

  .da-reach-proof__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .da-reach-proof__actions {
    flex-direction: column;
  }

  .da-reach-proof__actions .da-btn--gold,
  .da-reach-proof__directions {
    width: 100%;
    flex: none;
  }

  .da-reach-proof__map-wrap,
  .da-reach-proof__map,
  .da-reach-proof__map iframe {
    min-height: 280px;
  }

  .da-how-ladder {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .da-how-ladder__steps {
    padding-left: 0.35rem;
    border-left: 2px solid rgba(197, 141, 71, 0.25);
    margin-left: 1.1rem;
  }

  .da-how-ladder__step {
    position: relative;
    padding-left: 0.5rem;
  }

  .da-how-ladder__step::before {
    content: "";
    position: absolute;
    left: -1.23rem;
    top: 1.15rem;
    width: 0.65rem;
    height: 2px;
    background: rgba(197, 141, 71, 0.45);
  }

  .da-foot {
    padding-top: 2.75rem;
  }

  .da-foot__nav {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.25rem;
  }

  .da-foot__base {
    flex-direction: column;
    align-items: flex-start;
  }

  .da-how-head {
    text-align: center;
  }

  .da-how-head .da-sec-title,
  .da-how-head .da-sec-sub {
    text-align: center;
  }

  .da-how-head .da-sec-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .da-services-head {
    text-align: center;
  }

  .da-services-head .da-sec-title,
  .da-services-head .da-sec-sub {
    text-align: center;
  }

  .da-services-head .da-sec-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .da-svc-hero__body {
    padding: 1.25rem 1.1rem 1.35rem;
    border-left: none;
    border-top: 1px solid rgba(197, 141, 71, 0.12);
  }

  .da-svc-hero__points {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .da-svc-list-wrap {
    padding: 1rem 0.85rem 1.1rem;
  }

  .da-svc-item {
    padding: 1rem;
  }

  .da-eco-head {
    text-align: center;
  }

  .da-eco-head .da-sec-title,
  .da-eco-sub {
    text-align: center;
  }

  .da-eco-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .da-eco-route__intro {
    align-items: center;
    text-align: center;
  }

  .da-eco-route__intro-copy {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .da-eco-route__chips,
  .da-eco-route__trail {
    justify-content: center;
  }

  .da-eco-route__trail {
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
  }

  .da-eco-route__facts {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 19rem;
  }

  .da-eco-route__steps {
    display: none;
  }

  .da-eco-stop {
    grid-template-columns: 22px minmax(0, 1fr);
    grid-template-areas:
      "rail meta"
      "rail main"
      "rail cta";
  }

  .da-eco-stop__cta {
    justify-self: start;
  }

  .da-hero-stats-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 0;
    padding: 0.9rem 0;
  }

  .da-hero-stat-item {
    padding: 0.15rem 0.75rem 0.15rem 0;
  }

  .da-hero-stat-item:not(:last-child)::after {
    display: none;
  }

  .da-hero-stat-item:nth-child(odd) {
    padding-right: 0.85rem;
  }

  .da-hero-stat-item:nth-child(even) {
    padding-left: 0.85rem;
    border-left: 1px solid rgba(160, 128, 88, 0.2);
  }

  .da-hero-stat-item:last-child {
    grid-column: 1 / -1;
    padding-left: 0;
    padding-top: 0.35rem;
    border-left: none;
    border-top: 1px solid rgba(160, 128, 88, 0.18);
  }

  .da-hero-stat-info {
    border-left-width: 2px;
  }

  .da-final-banner__panel {
    padding: 1.35rem 1.1rem 1.5rem;
  }

  .da-trust-proof__partners-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .da-brand-item {
    font-size: 0.68rem;
    min-height: 2.15rem;
  }
}
