.driver-cta {
  position: relative;
  isolation: isolate;
  padding: clamp(20px, 3vw, 50px) var(--container-padding-x) clamp(60px, 8vw, 120px);
  background: var(--color-bg);
  overflow: hidden;
}

.driver-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1216px, calc(100% - 2 * var(--container-padding-x)));
  height: clamp(280px, 30vw, 399px);
  background: radial-gradient(
    ellipse at center,
    rgba(245, 194, 5, 0.18) 0%,
    rgba(245, 194, 5, 0.05) 40%,
    transparent 75%
  );
  filter: blur(100px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

.driver-cta__heading {
  margin: 0 auto;
  max-width: 1100px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 5.2vw, 70px);
  line-height: 1.05;
  text-transform: uppercase;
  background: var(--grad-text-light);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  filter: drop-shadow(0 4px 6px rgba(12, 12, 12, 0.4));
}

.driver-cta__grid {
  margin: clamp(48px, 6vw, 100px) auto 0;
  max-width: var(--container-max);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
}

.driver-cta__content {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 44px);
}

.driver-cta__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 32px);
  counter-reset: driver-step;
}

.driver-cta__step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: clamp(16px, 1.8vw, 24px);
  position: relative;
}

.driver-cta__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: clamp(20px, 1.75vw, 26px);
  top: clamp(48px, 4.2vw, 60px);
  bottom: calc(-1 * clamp(20px, 2.4vw, 32px));
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(245, 194, 5, 0.5) 0%,
    rgba(245, 194, 5, 0) 100%
  );
}

.driver-cta__step-num {
  counter-increment: driver-step;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 3.5vw, 52px);
  height: clamp(40px, 3.5vw, 52px);
  border-radius: 50%;
  background: var(--grad-accent);
  color: var(--color-text-on-light);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(18px, 1.6vw, 22px);
  box-shadow: 0 6px 18px rgba(245, 194, 5, 0.28);
  flex-shrink: 0;
}

.driver-cta__step-num::before {
  content: counter(driver-step);
}

.driver-cta__step-text {
  margin: 0;
  padding-top: clamp(6px, 0.8vw, 12px);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.driver-cta__callout {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: var(--grad-text-light);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  filter: drop-shadow(0 4px 8px rgba(245, 194, 5, 0.18));
}

.driver-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 601px;
  min-height: clamp(64px, 5vw, 76px);
  padding-inline: 32px;
  background: var(--grad-accent);
  border-radius: var(--radius-button);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-text-on-light);
  box-shadow: var(--shadow-button);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.driver-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

.driver-cta__btn:active {
  transform: translateY(0);
}

.driver-cta__photo {
  width: 100%;
  height: auto;
  max-height: 625px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Keep the desktop two-column structure (steps + photo side by side) on
   tablets; only collapse to a single stacked column on phones. */
@media (max-width: 640px) {
  .driver-cta__grid {
    grid-template-columns: 1fr;
    gap: clamp(32px, 6vw, 56px);
  }

  .driver-cta__photo {
    order: -1;
    max-height: none;
    object-fit: contain;
  }
}
