.driver-section {
  padding: 7rem 4rem;
  border-top: 1px solid var(--border);
}
.premium-flow {
  position: relative;
}
.premium-flow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.25;
}
.premium-flow-start {
  background: linear-gradient(
    180deg,
    rgba(13, 16, 32, 0.5),
    rgba(13, 16, 32, 0.2)
  );
}
.premium-flow-mid {
  background: linear-gradient(
    180deg,
    rgba(10, 12, 22, 0.9),
    rgba(13, 16, 32, 0.35)
  );
}
.premium-flow-end {
  background: linear-gradient(
    180deg,
    rgba(9, 11, 20, 0.96),
    rgba(8, 10, 18, 0.96)
  );
}
.driver-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.section-display-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin-top: 0.8rem;
  line-height: 1.1;
}
.section-display-title-contact {
  font-size: clamp(2rem, 4vw, 3rem);
}
.section-copy {
  color: var(--muted);
  line-height: 1.8;
}
.section-copy-lead {
  margin-top: 1.5rem;
}
.section-copy-followup {
  margin-top: 1rem;
}
.driver-stats {
  margin-top: 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.driver-stats {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.9rem;
}

.stat-card {
  border: 1px solid var(--border);
  border-top: 1.5px solid var(--gold);
  padding: 1.3rem 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  flex-direction: column;
}

.stat-platform {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.stat-big {
  font-family: var(--font-d);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.stat-stars {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-top: 0.4rem;
  opacity: 0.75;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 149, 58, 0.3);
  padding: 0.2rem 0.5rem;
  margin-top: 0.7rem;
  align-self: flex-start;
}

.stat-sub {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

.stat-verify-note {
  margin-top: 1rem;
  font-size: 0.7rem;
  color: var(--muted);
  opacity: 0.5;
  font-style: italic;
}
.driver-quote {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 420px;
  justify-self: center;
  padding: 2.5rem 1.8rem;
}

/* Quote marks */
.quote-mark {
  position: absolute;
  font-family: serif;
  font-size: 4rem;
  color: rgba(200, 149, 58, 0.18);
  line-height: 1;
  pointer-events: none;
}

/* Opening quote (top-left) */
.quote-open {
  top: 0;
  left: 0;
  transform: translate(-25%, -35%);
}

/* Closing quote (bottom-right) */
.quote-close {
  bottom: 0;
  right: 0;
  transform: translate(25%, 35%);
}

/* Quote text */
.driver-quote blockquote {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--gold);
  margin: 0;
  position: relative;
  z-index: 1;
}
/* Citation */
.driver-quote cite {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: normal;
}

@media (max-width: 960px) {
  .driver-section {
    padding: 5rem 2rem;
  }
  .driver-grid,
  .driver-stats {
    grid-template-columns: 1fr;
  }
}
