/* CTA Block — decorative layers behind the content (the section is
   `relative overflow-hidden`; content sits above via `relative z-10`). */

/* Subtle criss-cross grid: 1px white lines at 2% opacity on a 60px cell. */
.le-cta-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Soft glow bleeding from the top-right corner. Tinted from the dealer's accent
   token via color-mix (not a baked amber), so it adapts per dealer. */
.le-cta-glow {
    width: 400px;
    height: 400px;
    border-radius: 9999px;
    background-color: color-mix(in srgb, var(--color-secondary) 10%, transparent);
    filter: blur(64px);
    transform: translate(25%, -50%);
}