/* ============================================
   CarMax-Eu — Premium Automotive Theme
   Inspired by luxury car dealership aesthetics
   ============================================ */

/* --- Google Fonts loaded in head.php --- */

.nowrap { white-space: nowrap; }

/* --- Theme Variables --- */
:root {
    --bg-primary: #08080c;
    --bg-secondary: #0e0e14;
    --bg-card: #13131b;
    --bg-card-hover: #1a1a24;
    --bg-input: #16161f;
    --text-white: #ffffff;
    --text-light: #e0e0e8;
    --text-muted: #9a9aa7;
    --text-dim: #4a4a58;
    --accent: #22C55E;
    --accent-hover: #16A34A;
    --accent-glow: rgba(34, 197, 94, 0.25);
    --accent-subtle: rgba(34, 197, 94, 0.08);
    --accent-line: rgba(34, 197, 94, 0.4);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(34, 197, 94, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Light Theme --- */
html.light-theme {
    --bg-primary: #f5f5f7;
    --bg-secondary: #eaeaef;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f0f5;
    --bg-input: #ffffff;
    --text-white: #111118;
    --text-light: #2a2a35;
    --text-muted: #9a9aa7;
    --text-dim: #9a9aad;
    --accent: #16A34A;
    --accent-hover: #15803D;
    --accent-glow: rgba(22, 163, 74, 0.18);
    --accent-subtle: rgba(22, 163, 74, 0.07);
    --accent-line: rgba(22, 163, 74, 0.35);
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(22, 163, 74, 0.1);
}

/* Light theme — header */
html.light-theme .site-header {
    background: rgba(245, 245, 247, 0.85);
}
html.light-theme .site-header.scrolled {
    background: rgba(245, 245, 247, 0.97);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Light theme — hero overlay (lighter so photo shows through) */
html.light-theme .hero-overlay {
    background:
        linear-gradient(180deg,
            rgba(245, 245, 247, 0.75) 0%,
            rgba(245, 245, 247, 0.45) 40%,
            rgba(245, 245, 247, 0.6) 70%,
            rgba(245, 245, 247, 1) 100%
        ),
        radial-gradient(ellipse at 20% 50%, rgba(22, 163, 74, 0.05) 0%, transparent 60%);
}

/* Light theme — hero image darker for contrast */
html.light-theme .hero-bg-image {
    opacity: 0.2;
}

/* Light theme — hero heading gradient */
html.light-theme .hero-content h1 {
    background: linear-gradient(135deg, #111118 0%, #3a3a48 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Light theme — particles */
html.light-theme .particle {
    background: rgba(22, 163, 74, 0.2);
}

/* Light theme — form card */
html.light-theme .hero-form-card {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(22, 163, 74, 0.04);
}

html.light-theme .input {
    border-color: rgba(0, 0, 0, 0.2);
}

/* Light theme — parallax divider */
html.light-theme .parallax-divider-overlay {
    background: linear-gradient(180deg,
        var(--bg-primary) 0%,
        rgba(245, 245, 247, 0.25) 30%,
        rgba(245, 245, 247, 0.25) 70%,
        var(--bg-primary) 100%
    );
}

/* Light theme — sticky CTA */
html.light-theme .sticky-cta {
    background: rgba(245, 245, 247, 0.97);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

/* Light theme — theme toggle icon swap */
html.light-theme .theme-toggle .icon-moon { display: none; }
html.light-theme .theme-toggle .icon-sun { display: block; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

/* Smooth theme transition */
html {
    transition: background-color 0.4s ease, color 0.4s ease;
}
body,
.site-header,
.hero-form-card,
.step-card,
.benefit-card,
.trust-item,
.faq-question,
.faq-answer,
.site-footer,
.sticky-cta,
.btn-primary,
.btn-secondary,
.input,
.card {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* --- Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--bg-primary);
    color: var(--text-light);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4 {
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.15;
}

p {
    color: var(--text-light);
}

/* --- Container --- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* --- Utility --- */
.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="left"] {
    transform: translateX(-60px);
}
[data-reveal="left"].revealed {
    transform: translateX(0);
}

[data-reveal="right"] {
    transform: translateX(60px);
}
[data-reveal="right"].revealed {
    transform: translateX(0);
}

[data-reveal="scale"] {
    transform: scale(0.9);
}
[data-reveal="scale"].revealed {
    transform: scale(1);
}

/* Stagger delays for grid items */
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }
[data-reveal-delay="6"] { transition-delay: 0.6s; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(8, 8, 12, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(8, 8, 12, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
    z-index: 2;
}

.logo-mark {
    width: auto;
    height: 2.25rem;
    flex-shrink: 0;
    object-fit: contain;
}

.logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    font-stretch: condensed;
    transform: scaleX(0.85);
    color: var(--text-white);
    line-height: 1;
}

.logo-text span {
    color: #d23a39;
    padding-left: 0.05rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Language Switcher (dropdown) */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    width: 2.125rem;
    height: 2.125rem;
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition);
}

.lang-flag {
    font-size: 1.2rem;
    line-height: 1;
}

.lang-current:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.08);
}

.lang-arrow {
    display: none;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    display: none;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 4px;
    z-index: 100;
    min-width: 140px;
}

.lang-switcher.open .lang-dropdown {
    display: flex;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.6rem;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: calc(var(--radius-sm) - 2px);
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.lang-btn:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.08);
}

.lang-btn--active {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
}

.lang-btn--active:hover {
    background: rgba(255, 255, 255, 0.12);
}

html.light-theme .lang-current {
    background: rgba(0, 0, 0, 0.05);
}

html.light-theme .lang-current:hover {
    background: rgba(0, 0, 0, 0.08);
}

html.light-theme .lang-btn:hover {
    background: rgba(0, 0, 0, 0.06);
}

/* Mobile Contact Switcher (hidden on desktop) */
.contact-switcher {
    display: none;
    position: relative;
}

.contact-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.125rem;
    height: 2.125rem;
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    color: #fff;
    cursor: pointer;
    transition: all var(--transition);
}

.contact-toggle:hover {
    border-color: var(--accent);
    background: var(--accent-hover);
}

.contact-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    display: none;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 4px;
    z-index: 100;
    min-width: 180px;
}

.contact-switcher.open .contact-dropdown {
    display: flex;
}

.contact-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: calc(var(--radius-sm) - 2px);
    transition: all var(--transition);
    white-space: nowrap;
}

.contact-dropdown-item:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.08);
}

.contact-dropdown-item svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

html.light-theme .contact-toggle {
    background: var(--accent);
}

html.light-theme .contact-toggle:hover {
    background: var(--accent-hover);
}

html.light-theme .contact-dropdown-item:hover {
    background: rgba(0, 0, 0, 0.06);
}

html.light-theme .lang-btn--active {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-dark);
    border: 1px solid var(--border);
}

/* Theme Toggle Button */
.theme-toggle {
    width: 2.125rem;
    height: 2.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--glass-bg);
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.theme-toggle:hover {
    color: var(--text-white);
    background: var(--border);
    border-color: var(--border-hover);
    transform: rotate(15deg);
}

/* Header Phone & Messenger */
.header-phone {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
}

.header-phone:hover {
    color: var(--accent);
}

.header-messenger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.header-messenger:hover {
    background: rgba(255, 255, 255, 0.06);
}

.header-cta {
    font-size: 0.8125rem;
    padding: 0.5rem 1.25rem;
}

/* Contact icons */
.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--text-muted);
    transition: color var(--transition);
    font-size: 0.8125rem;
}

.contact-link:hover {
    color: var(--text-white);
}

.contact-icon-tg { color: #26A5E4; }
.contact-icon-wa { color: #25D366; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 4rem; /* header height */
}

/* Background car image */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=1920&q=80&auto=format');
    background-size: cover;
    background-position: center 40%;
    opacity: 0.3;
    transition: transform 0.1s linear;
}

/* Headlight glow effects */
.headlight {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.headlight-left {
    width: 180px;
    height: 180px;
    left: 18%;
    top: 42%;
    background: radial-gradient(circle,
        rgba(255, 255, 220, 0.5) 0%,
        rgba(255, 255, 200, 0.2) 30%,
        rgba(255, 255, 180, 0) 70%
    );
    animation: headlight-pulse 3s ease-in-out infinite;
}

.headlight-right {
    width: 180px;
    height: 180px;
    right: 18%;
    top: 42%;
    background: radial-gradient(circle,
        rgba(255, 255, 220, 0.5) 0%,
        rgba(255, 255, 200, 0.2) 30%,
        rgba(255, 255, 180, 0) 70%
    );
    animation: headlight-pulse 3s ease-in-out infinite 0.5s;
}

@keyframes headlight-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.15); }
}

/* Dark gradient overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg,
            rgba(8, 8, 12, 0.7) 0%,
            rgba(8, 8, 12, 0.4) 40%,
            rgba(8, 8, 12, 0.6) 70%,
            rgba(8, 8, 12, 1) 100%
        ),
        radial-gradient(ellipse at 20% 50%, rgba(34, 197, 94, 0.06) 0%, transparent 60%);
}

/* Animated particles / bokeh */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    animation: particle-float linear infinite;
}

@keyframes particle-float {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-indicator svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
}

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

/* Hero Content */
.hero-content h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #c8c8d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1 .accent {
    -webkit-text-fill-color: var(--accent);
    color: var(--accent);
}

.hero-content .subcopy {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 540px;
}

/* Check list bullets */
.check-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.check-icon {
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.25);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Shimmer effect on primary button */
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        115deg,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 70%
    );
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-hover);
    font-size: 1rem;
    padding: 0.9rem 2rem;
}

.btn-secondary:hover {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.btn-sm {
    font-size: 0.8125rem;
    padding: 0.625rem 1.25rem;
}

/* ============================================
   HERO FORM CARD
   ============================================ */
.hero-form-card {
    background: rgba(19, 19, 27, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg), 0 0 80px rgba(34, 197, 94, 0.05);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
}

/* Subtle top accent line */
.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-line), transparent);
}

.hero-form-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.hero-form-card .form-sub {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

/* ============================================
   FORM INPUTS
   ============================================ */
.form-grid {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.375rem;
}

.input {
    width: 100%;
    background: var(--bg-input);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.input::placeholder {
    color: var(--text-muted);
}

.input--error {
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15);
}

.input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow), 0 0 20px rgba(34, 197, 94, 0.08);
}

select.input:invalid,
select.input.is-placeholder {
    color: var(--text-muted);
}

select.input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b6b7b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.25em 1.25em;
    padding-right: 2.5rem;
}

.btn-submit {
    width: 100%;
    min-height: 3rem;
    font-size: 1rem;
}

.gdpr-text {
    font-size: 0.6875rem;
    color: var(--text-dim);
    text-align: center;
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* Custom Brand Select */
.custom-select-wrapper {
    position: relative;
}

.brand-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    height: 48px;
    padding-top: 0;
    padding-bottom: 0;
    box-sizing: border-box;
}

.brand-options {
    position: absolute;
    z-index: 50;
    width: 100%;
    margin-top: 0.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-height: 18rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--bg-card-hover) var(--bg-card);
}

.brand-options::-webkit-scrollbar { width: 6px; }
.brand-options::-webkit-scrollbar-track { background: var(--bg-card); }
.brand-options::-webkit-scrollbar-thumb { background: var(--bg-card-hover); border-radius: 3px; }

.brand-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1rem;
    cursor: pointer;
    transition: background var(--transition);
    font-size: 0.875rem;
    color: var(--text-light);
}

.brand-option:hover {
    background: var(--bg-card-hover);
}

.brand-option img {
    width: 2.25rem;
    height: 1.375rem;
    object-fit: contain;
    flex-shrink: 0;
    background: #fff;
    border-radius: 3px;
}

.brand-logo-placeholder {
    width: 2.25rem;
    height: 1.375rem;
    flex-shrink: 0;
}

.brand-selected {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-selected img {
    width: 2.25rem;
    height: 1.375rem;
    object-fit: contain;
    flex-shrink: 0;
    background: #fff;
    border-radius: 3px;
}

.brand-chevron {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.brand-search-wrap {
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 0.5rem;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-search-icon {
    width: 1rem;
    height: 1rem;
    color: var(--text-dim);
    flex-shrink: 0;
}

.brand-search-input {
    width: 100%;
    background: var(--bg-input);
    color: var(--text-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.625rem;
    font-size: 0.8125rem;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition);
}

.brand-search-input::placeholder { color: var(--text-dim); }
.brand-search-input:focus { border-color: var(--accent); }

/* Flash Messages */
.flash-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: var(--accent);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.flash-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #EF4444;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* ============================================
   PARALLAX IMAGE DIVIDER
   ============================================ */
.parallax-divider {
    position: relative;
    height: 40vh;
    min-height: 300px;
    overflow: hidden;
}

.parallax-divider-img {
    position: absolute;
    inset: -20% 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-divider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        var(--bg-primary) 0%,
        rgba(8, 8, 12, 0.3) 30%,
        rgba(8, 8, 12, 0.3) 70%,
        var(--bg-primary) 100%
    );
}

/* ============================================
   SECTIONS — Base
   ============================================ */
.section {
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* Accent underline for section titles */
.section-header h2::after {
    content: '';
    display: block;
    width: 3rem;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin: 0.75rem auto 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.steps-grid {
    display: grid;
    gap: 1rem;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--accent-subtle), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
}

.step-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-card:hover::before {
    opacity: 1;
}

.step-badge {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--accent-subtle);
    border: 1px solid rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.step-card p {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* Open badge */
.open-badge {
    margin-top: 2rem;
    text-align: center;
}

.open-badge .card {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.open-badge h3 {
    font-size: 1.0625rem;
    font-weight: 700;
}

.open-badge p {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    color: var(--text-muted);
}

.inline-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
    vertical-align: -0.15em;
    display: inline;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits-section {
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    gap: 1rem;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition);
}

.benefit-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: var(--radius-sm);
}

.benefit-svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
}

.benefit-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.8125rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ============================================
   TRUST / STATS
   ============================================ */
.trust-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.trust-section h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

.trust-section h2::after {
    content: '';
    display: block;
    width: 3rem;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin: 0.75rem auto 0;
}

.trust-grid {
    display: grid;
    gap: 1.5rem;
}

.trust-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.trust-item:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    padding: 5rem 0;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    color: var(--text-white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-chevron {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform var(--transition), color var(--transition);
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    padding: 0.5rem 1.25rem 1.25rem;
    background: var(--bg-card);
}

.faq-answer p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.faq-answer[hidden] {
    display: none;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-mark {
    width: 3.5rem;
    height: auto;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
}

.footer-brand p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 320px;
}

.footer-contact-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-contact-list a:hover {
    color: var(--accent);
}

.footer-contact-list .contact-icon {
    width: 1rem;
    height: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-dim);
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom-links a {
    color: var(--text-dim);
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--text-light);
}

/* Legacy footer support */
.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--text-dim);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: color var(--transition);
}

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

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 0.75rem 1rem;
    background: rgba(8, 8, 12, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    transition: transform 300ms ease;
}

.sticky-cta--visible {
    transform: translateY(0);
}

.sticky-cta .btn-primary {
    width: 100%;
    padding: 1rem;
}

/* ============================================
   CARD utility class (for backwards compat)
   ============================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

/* ============================================
   LOADING / PAGE TRANSITION
   ============================================ */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    animation: loader-pulse 1.2s ease-in-out infinite;
}

@keyframes loader-pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

/* ============================================
   ROAD TIMELINE (How It Works)
   ============================================ */
.road-timeline {
    position: relative;
    padding: 2rem 0;
}

.road-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-50%);
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.road-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(
        to bottom,
        var(--text-dim) 0px,
        var(--text-dim) 8px,
        transparent 8px,
        transparent 20px
    );
    opacity: 0.4;
}

.road-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0%;
    background: linear-gradient(180deg, var(--accent), var(--accent-hover));
    border-radius: 2px;
    box-shadow: 0 0 12px var(--accent-glow);
}


.road-station {
    position: relative;
    margin-bottom: 2.5rem;
}

.road-station:last-of-type {
    margin-bottom: 0;
}

.road-station-marker {
    position: absolute;
    left: 50%;
    top: 0.25rem;
    transform: translateX(-50%);
    z-index: 3;
}

.road-station-dot {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--accent-glow), inset 0 0 0 2px var(--bg-primary);
    transition: all var(--transition);
}

.road-station.revealed .road-station-dot {
    animation: station-pulse 0.6s ease-out;
}

@keyframes station-pulse {
    0% { transform: scale(0.7); opacity: 0.5; }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.road-station:hover .road-station-dot {
    background: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.road-station:hover .road-station-icon {
    color: white;
}

.road-station-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
    transition: color var(--transition);
}

.road-station-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    transition: all var(--transition);
    position: relative;
}

.road-station-card::after {
    content: '';
    position: absolute;
    top: 1.25rem;
    width: 1.5rem;
    height: 2px;
    background: var(--accent-line);
}

.road-station-card:hover {
    border-color: var(--accent-line);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.road-station-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: var(--text-white);
}

.road-station-card p {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ============================================
   LOGOS MARQUEE
   ============================================ */
.logos-section {
    padding: 2.5rem 0;
    overflow: hidden;
    position: relative;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.logos-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.logos-subtitle {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.logos-track {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.logos-slide {
    display: flex;
    gap: 1rem;
    animation: logos-scroll 60s linear infinite;
    width: max-content;
}

.logos-slide:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    padding: 0.5rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.logo-item img {
    height: 3rem;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all var(--transition);
}

.logo-item:hover img {
    filter: none;
    opacity: 1;
}

@keyframes logos-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: 4rem 0 3rem;
    background: var(--bg-secondary);
    overflow: hidden;
}

.map-viewport {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.map-zoom-container {
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: transform 2.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: 51.25% 43.3%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-zoom-container.map-zoomed {
    transform: scale(3.5);
}

.map-svg {
    width: 100%;
    height: 100%;
}

.map-pin {
    position: absolute;
    left: 51.25%;
    top: 43.3%;
    transform: translate(-50%, -100%) scale(0);
    width: 28px;
    height: 42px;
    z-index: 5;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    opacity: 0;
}

.map-pin.map-pin-visible {
    transform: translate(-50%, -100%) scale(1);
    opacity: 1;
}

.map-info {
    text-align: center;
    margin-top: 1.5rem;
}

.map-address-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color var(--transition);
}

.map-address-link:hover {
    color: var(--accent);
}

.map-address-link .contact-icon {
    color: var(--accent);
}


/* ============================================
   CAR DRIVE ANIMATION
   ============================================ */
.car-drive-section {
    position: relative;
    height: 120px;
    overflow: hidden;
    background: var(--bg-primary);
}

.car-drive-line {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        var(--text-dim) 0px,
        var(--text-dim) 30px,
        transparent 30px,
        transparent 60px
    );
    opacity: 0.35;
}

.car-drive-vehicle {
    position: absolute;
    bottom: 32px;
    left: -200px;
    width: 120px;
    z-index: 3;
}

.car-drive-vehicle.car-driving {
    animation: car-drive-across 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.car-svg {
    width: 100%;
    height: auto;
}

.car-exhaust {
    position: absolute;
    left: -20px;
    bottom: 8px;
    display: flex;
    gap: 4px;
}

.exhaust-puff {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-dim);
    opacity: 0;
}

.car-driving .exhaust-puff {
    animation: exhaust 0.8s ease-out infinite;
}

.car-driving .exhaust-puff:nth-child(2) {
    animation-delay: 0.25s;
    width: 7px;
    height: 7px;
}

.car-driving .exhaust-puff:nth-child(3) {
    animation-delay: 0.5s;
    width: 5px;
    height: 5px;
}

.car-headlight-beam {
    position: absolute;
    bottom: 38px;
    right: -400px;
    width: 300px;
    height: 60px;
    background: linear-gradient(90deg, rgba(255, 255, 200, 0.08), transparent);
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 70%);
    opacity: 0;
    pointer-events: none;
}

.car-driving ~ .car-headlight-beam {
    animation: beam-follow 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes car-drive-across {
    0% { left: -200px; }
    100% { left: calc(100% + 200px); }
}

@keyframes exhaust {
    0% { opacity: 0.35; transform: scale(1) translateX(0); }
    100% { opacity: 0; transform: scale(2.5) translateX(-15px); }
}

@keyframes beam-follow {
    0% { right: calc(100% + 100px); opacity: 0.6; }
    100% { right: -600px; opacity: 0; }
}

/* ============================================
   BENEFITS MODERNIZED (Bento Grid)
   ============================================ */
.benefits-bento {
    display: grid;
    gap: 1rem;
}

.benefit-card-glow {
    position: absolute;
    top: -40%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-subtle) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.benefit-card:hover .benefit-card-glow {
    opacity: 1;
}

.benefit-card:hover {
    border-color: var(--accent-line);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-card:hover .benefit-icon {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.benefit-card:hover .benefit-svg {
    color: white;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.benefit-header h3 {
    margin-bottom: 0;
}

.benefit-number {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    pointer-events: none;
    transition: color var(--transition);
}

.benefit-card:hover .benefit-number {
    color: var(--accent-subtle);
}

/* ============================================
   SERVICES (horizontal list layout)
   ============================================ */
.services-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
}

.service-item:hover {
    border-color: var(--accent-line);
    border-left-color: var(--accent);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.service-item-num {
    font-size: 0.6875rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.05em;
    opacity: 0.5;
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
}

.service-item-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    border-radius: 50%;
    transition: all var(--transition);
}

.service-item:hover .service-item-icon {
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.service-item-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
    transition: color var(--transition);
}

.service-item:hover .service-item-icon svg {
    color: #fff;
}

.service-item-body {
    flex: 1;
    min-width: 0;
}

.service-item-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-white);
}

.service-item-body p {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.service-item-arrow {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--text-dim);
    transition: all var(--transition);
}

.service-item-arrow svg {
    width: 100%;
    height: 100%;
}

.service-item:hover .service-item-arrow {
    color: var(--accent);
    transform: translateX(3px);
}

/* ============================================
   CALCULATOR
   ============================================ */
.calculator-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.calculator-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.calc-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.calc-field {
    flex: 1;
}

.calc-field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.375rem;
}

.calc-field select.input,
.calc-field .brand-display {
    width: 100%;
    min-height: 2.875rem;
    box-sizing: border-box;
}

.calc-field select.input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239a9aa7' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
    cursor: pointer;
}

select.select--empty {
    color: var(--text-muted);
}

/* Number input spinner arrows (mileage) */
.calc-field input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.calc-field input[type="number"]::-webkit-inner-spin-button,
.calc-field input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

.calc-field .calc-number-wrap {
    position: relative;
}

.calc-field .calc-number-wrap input {
    padding-right: 2.25rem;
}

.calc-mileage-suffix {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    visibility: hidden;
}

.calc-mileage-suffix.visible {
    visibility: visible;
}

.calc-field .calc-number-arrows {
    position: absolute;
    right: 1px;
    top: 1px;
    bottom: 1px;
    width: 2rem;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border);
}

.calc-field .calc-number-arrows button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    font-size: 0;
    transition: background var(--transition), color var(--transition);
}

.calc-field .calc-number-arrows button:hover {
    background: var(--accent-subtle);
    color: var(--accent);
}

.calc-field .calc-number-arrows button:first-child {
    border-bottom: 1px solid var(--border);
    border-radius: 0 var(--radius-md) 0 0;
}

.calc-field .calc-number-arrows button:last-child {
    border-radius: 0 0 var(--radius-md) 0;
}

.calc-field .calc-number-arrows button svg {
    width: 0.625rem;
    height: 0.625rem;
}

.calc-button {
    width: 100%;
    min-height: 3rem;
    font-size: 1rem;
    font-weight: 700;
}

.calc-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.calc-button--loading {
    color: transparent !important;
    pointer-events: none;
    position: relative;
}

.calc-button--loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.25rem;
    height: 1.25rem;
    margin: -0.625rem 0 0 -0.625rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: calc-spin 0.6s linear infinite;
}

@keyframes calc-spin {
    to { transform: rotate(360deg); }
}

/* Calculator Result */
.calc-result {
    text-align: center;
    padding: 1rem 0;
}

.calc-result-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.calc-result-range {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-variant-numeric: tabular-nums;
}

/* Currency switcher */
.calc-currency-switcher {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.calc-currency-btn {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
}

.calc-currency-btn:hover {
    border-color: var(--border-hover);
    color: var(--text-white);
}

.calc-currency-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.calc-result-disclaimer {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.calc-result-cta {
    display: block;
    margin-bottom: 0.75rem;
}

.calc-reset-btn {
    width: 100%;
}

/* Theme transition for new components */
.service-item,
.calculator-card {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

