:root {
    /* Premium USA Enterprise Palette */
    --primary-color: #0B5CAD;
    --primary-dark: #083D73;
    --primary-light: #3B8FD9;
    --primary-subtle: #E8F2FC;
    --secondary-color: #059669;
    --secondary-light: #D1FAE5;
    --accent-color: #C9A227;
    --accent-light: #FEF3C7;
    --danger-color: #DC2626;

    --text-main: #0F172A;
    --text-muted: #64748B;
    --text-light: #F8FAFC;

    --bg-body: #F8FAFC;
    --bg-surface: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --bg-dark: #0F172A;
    --bg-navy: #1E293B;

    --border-color: #E2E8F0;
    --border-light: #F1F5F9;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 5.5rem 0;
    --nav-height: 72px;
    --trust-bar-height: 36px;

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 20px 40px -12px rgba(15, 23, 42, 0.15);
    --shadow-glow: 0 0 50px rgba(11, 92, 173, 0.15);
    --shadow-card: 0 1px 3px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.06);

    --radius-sm: 0.375rem;
    --radius-md: 0.625rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: var(--section-padding);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(11, 92, 173, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 92, 173, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-text {
    background: none;
    color: var(--text-main);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: var(--primary-color);
}

/* Trust Top Bar */
.trust-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.85);
    z-index: 1001;
    height: var(--trust-bar-height);
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-top-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-top-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.trust-top-item i {
    color: var(--accent-color);
    font-size: 0.7rem;
}

.trust-top-highlight {
    color: white;
    font-weight: 600;
}

.trust-top-highlight i {
    color: #FBBF24;
}

/* Navigation */
.navbar {
    position: fixed;
    top: var(--trust-bar-height);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid transparent;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--border-color);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 197px;
    transition: opacity var(--transition-fast);
}

.logo:hover {
    opacity: 0.85;
}

.logo i {
    color: var(--primary-color);
}

.logo span {
    color: var(--primary-color);
}

.logo img {
    max-width: 75%;
    height: auto;
    display: block;
    margin-top: -11px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:not(.btn):hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: var(--primary-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    color: var(--text-main);
    cursor: pointer;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.mobile-menu-toggle .menu-icon-close {
    display: none;
}

.mobile-menu-toggle.active .menu-icon-open {
    display: none;
}

.mobile-menu-toggle.active .menu-icon-close {
    display: block;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

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

.mobile-sticky-cta .btn {
    width: 100%;
}

/* Language Switcher */
.lang-switcher-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid rgba(79, 70, 229, 0.2);
    transition: var(--transition-fast);
    text-decoration: none;
}

.lang-switcher:hover {
    background: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.lang-switcher.active {
    background: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
    cursor: default;
}

.lang-switcher.active:hover {
    transform: none;
    background: var(--primary-color);
}

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

/* Hero Section */
.hero {
    position: relative;
    padding-top: calc(var(--trust-bar-height) + var(--nav-height) + 3rem);
    padding-bottom: 6rem;
    overflow: hidden;
    background: linear-gradient(160deg, #F8FAFC 0%, #E8F2FC 50%, #F0F7FF 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 20%, rgba(11, 92, 173, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(11, 92, 173, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    max-width: 560px;
}

.hero-right {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
}

.hero-left .badge {
    margin-bottom: 1.25rem;
}

.hero-left h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-left p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 480px;
}

.hero-content-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-main);
}

.hero-feature-item i {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: var(--primary-subtle);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--accent-light) 0%, #FFFBEB 100%);
    color: #92400E;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(201, 162, 39, 0.3);
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.15);
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1.125rem;
}

.hero-left .hero-stats-row {
    margin-top: 0;
    padding-top: 0;
    max-width: 100%;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    background: white;
    padding: 0.4rem 0.85rem;
    border-radius: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.hero-trust-badge i {
    color: var(--secondary-color);
    font-size: 0.75rem;
}

/* VIN Search Form — USA Premium Card */
.vin-check-form {
    margin-bottom: 0;
    max-width: 100%;
}

.vin-search-card {
    background: white;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(11, 92, 173, 0.12);
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.04), 0 20px 50px rgba(11, 92, 173, 0.12);
    overflow: hidden;
    position: relative;
}

.vin-search-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--accent-color));
}

.vin-search-card-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.125rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-subtle) 0%, #F8FAFC 100%);
    border-bottom: 1px solid var(--border-light);
}

.vin-search-card-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(11, 92, 173, 0.25);
}

.vin-search-card-title {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.vin-search-card-title strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.3;
}

.vin-search-card-title span {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
}

.vin-search-card-body {
    padding: 1.375rem 1.5rem 1.5rem;
}

.vin-field-group,
.state-field-group,
.vehicle-type-field-group,
.vin-btn-group {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.vin-field-full {
    width: 100%;
}

.vin-field-group label,
.state-field-group label,
.vehicle-type-field-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
    margin: 0;
}

.field-label-spacer {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
    visibility: hidden;
    user-select: none;
    margin: 0;
    padding: 0;
    height: 1.1375rem;
}

.field-hint {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0.5rem 0 0;
    padding: 0;
    line-height: 1.5;
}

.field-hint i {
    color: var(--primary-color);
    font-size: 0.8125rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
    opacity: 0.75;
}

.vin-search-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.375rem;
    padding-top: 1.375rem;
    border-top: 1px solid var(--border-light);
}

.vin-search-fields-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.vin-btn-group.vin-btn-full {
    width: 100%;
}

.vin-btn-group.vin-btn-full .vin-check-btn {
    width: 100%;
}

.vin-input-wrap,
.state-select-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
    background: #F8FAFC;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    height: 54px;
    overflow: hidden;
}

.vin-input-wrap:focus-within,
.state-select-wrap:focus-within {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-subtle);
}

.vin-input-wrap .field-icon,
.state-select-wrap .field-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 100%;
    color: var(--primary-color);
    background: var(--primary-subtle);
    flex-shrink: 0;
    font-size: 1.1rem;
    border-right: 1px solid rgba(11, 92, 173, 0.08);
}

.vin-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'DM Sans', ui-monospace, monospace;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-main);
    padding: 0 4.25rem 0 0.875rem;
    outline: none;
    height: 100%;
    min-width: 0;
    width: 100%;
}

.vin-input-wrap input::placeholder {
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    font-size: 0.9375rem;
}

.vin-char-count {
    position: absolute;
    right: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--text-muted);
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid var(--border-color);
    pointer-events: none;
    line-height: 1;
    transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.vin-char-count.is-valid {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    background: var(--secondary-light);
}

.state-select-wrap select {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 0 2.5rem 0 0.875rem;
    outline: none;
    height: 100%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
}

.state-select-wrap select:invalid {
    color: var(--text-muted);
    font-weight: 500;
}

.select-chevron {
    position: absolute;
    right: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 0.75rem;
}

.vin-check-btn {
    height: 54px;
    width: 100%;
    padding: 0 1.25rem !important;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(11, 92, 173, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    margin: 0;
    line-height: 1;
}

.vin-check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 92, 173, 0.4);
}

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

.vin-check-form .hero-trust-badges {
    margin-top: 1.125rem;
    gap: 0.625rem;
}

@media (max-width: 480px) {
    .vin-search-card-header {
        padding: 1rem 1.125rem;
    }

    .vin-search-card-body {
        padding: 1.125rem 1.125rem 1.25rem;
    }

    .vin-search-actions {
        margin-top: 1.125rem;
        padding-top: 1.125rem;
        gap: 0.875rem;
    }

    .vin-search-fields-row {
        grid-template-columns: 1fr;
    }

    .vin-search-card-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9375rem;
    }

    .vin-search-card-title strong {
        font-size: 0.9375rem;
    }

    .vin-input-wrap input {
        font-size: 16px;
        letter-spacing: 0.04em;
    }
}

/* Checkout state select */
.checkout-select-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.checkout-select-wrap select {
    width: 100%;
    padding: 0.875rem 2.5rem 0.875rem 1rem;
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    color: var(--text-main);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.2s;
}

.checkout-select-wrap select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-subtle);
}

.checkout-select-wrap select.error {
    border-color: #EF4444 !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.checkout-select-wrap select.success {
    border-color: #10B981 !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.checkout-select-wrap .select-chevron {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.checkout-form .form-group select:invalid {
    color: var(--text-muted);
}

.form-note {
    font-size: 0.95rem;
    color: #4B5563;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.form-note i {
    color: #059669; /* Success Green */
}

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    justify-content: space-between;
    padding-top: 0;
    margin-top: 0;
    max-width: 600px;
    gap: 1.5rem;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.stat-icon {
    font-size: 1.5rem;
    color: #1D4ED8; /* Reference Blue */
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 1.40rem;
    font-weight: 800;
    color: #111827; /* Dark text */
    line-height: 1.2;
}

.stat-label {
    font-size: 0.875rem;
    color: #111827;
    font-weight: 500;
    margin-top: 0;
}

/* Responsive adjustments for stats */
@media (max-width: 480px) {
    .hero-stats-row {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

/* Hero Visual (Glassmorphism) */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-radius: var(--radius-xl);
}

.car-card {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: rgba(16, 185, 129, 0.1);
    display: inline-flex;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.green {
    background-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.car-mockup {
    font-size: 8rem;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.stats-grid .stat {
    display: flex;
    flex-direction: column;
}

.stats-grid .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stats-grid .value {
    font-weight: 700;
    font-size: 1.125rem;
}

.alert-card {
    position: absolute;
    bottom: 80px;
    left: -30px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    background: #FFFFFF;
}

.alert-card i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.alert-text {
    display: flex;
    flex-direction: column;
}

.alert-text strong {
    font-size: 0.95rem;
}

.alert-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delayed {
    animation: float 6s ease-in-out infinite 2s;
}

/* Stats Section */
.stats-bar {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stats-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    font-size: 0.95rem;
}

.stat-item {
    position: relative;
    z-index: 1;
}

/* Features Section */
.features {
    background: var(--bg-body);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-surface);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(11, 92, 173, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.icon-box {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 1.5rem;
}

.icon-box.blue { background: var(--primary-subtle); color: var(--primary-color); }
.icon-box.purple { background: #F3E8FF; color: #9333EA; }
.icon-box.green { background: #ECFDF5; color: #10B981; }
.icon-box.orange { background: #FFF7ED; color: #F97316; }
.icon-box.red { background: #FEF2F2; color: #EF4444; }
.icon-box.teal { background: #F0FDFA; color: #14B8A6; }

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Excellence Section */
.excellence {
    background: #FFFFFF;
    overflow: hidden;
    padding: 6rem 0;
}

.excellence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.excellence-visual {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
}

.excellence-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: -40px; /* Overlap effect */
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.excellence-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transform: scale(1.02); /* Slight zoom for better crop */
}

.excellence-stats {
    background: #F3F4F6;
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem 1.5rem; /* Top padding accounts for overlap */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 0;
}

.ex-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
}

.ex-stat strong {
    font-size: 1.75rem;
    color: #111827;
    font-weight: 800;
    line-height: 1.2;
}

.ex-stat span {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 500;
    margin-top: 0.25rem;
}

.excellence-trust-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 600;
    box-shadow: 0 10px 25px -5px rgba(11, 92, 173, 0.35);
    transform: translateY(-50%);
    margin-top: 1rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.excellence-trust-banner i {
    font-size: 1.25rem;
    opacity: 0.9;
}

.excellence-content {
    padding-left: 1rem;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-subtle);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(11, 92, 173, 0.12);
}

.excellence-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.excellence-content .description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.excellence-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ex-feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: white;
    transition: all 0.3s ease;
}

.ex-feature-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.ex-feature-item .ex-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Specific icon colors */
.ex-feature-item:nth-child(1) .ex-icon i {color: #4f46e5;} /* Blue */
.ex-feature-item:nth-child(2) .ex-icon i { color: #4F46E5; } /* Indigo */
.ex-feature-item:nth-child(3) .ex-icon i {color: #4f46e5;} /* Sky */

.ex-feature-item .ex-icon i {
    font-size: 2.25rem;
}

.ex-feature-item .ex-text h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #111827;
    font-weight: 700;
}

.ex-feature-item .ex-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Responsive Excellence */
@media (max-width: 992px) {
    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .excellence-visual {
        max-width: 100%;
        margin: 0 auto;
    }

    .excellence-content {
        padding-left: 0;
        text-align: left; /* Keep left aligned for readability */
    }

    .badge-pill {
        margin-bottom: 1.5rem;
    }

    .excellence-stats {
        padding: 3rem 1.5rem 1.5rem;
    }

    .excellence-trust-banner {
        width: 100%;
        transform: translateY(0);
        margin-top: -1rem;
    }
}

/* Trusted Partner Section */
.trusted-partner {
    background: white;
    overflow: hidden;
}

.trusted-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trusted-visual {
    position: relative;
    padding-bottom: 4rem; /* Space for the sub-image */
}

.trusted-main-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    width: 90%;
}

.trusted-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}

.floating-badge {
    position: absolute;
    top: 2rem;
    right: -1rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.floating-badge .badge-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.floating-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.floating-badge strong {
    font-size: 1.125rem;
    color: #111827;
    font-weight: 800;
}

.floating-badge span {
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 500;
}

.trusted-sub-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid white;
    box-shadow: var(--shadow-xl);
    z-index: 5;
}

.trusted-sub-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
}

.trusted-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}

.text-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: #E0E7FF;
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1deg);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.vm-card {
    background: linear-gradient(145deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vm-icon {
    margin-bottom: 1rem;
    color: #818CF8; /* Light indigo */
    font-size: 1.5rem;
}

.vm-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: white;
}

.vm-card p {
    font-size: 0.9rem;
    color: #C7D2FE; /* Light indigo text */
    line-height: 1.5;
    margin: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Responsive Trusted Partner */
@media (max-width: 992px) {
    .trusted-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .trusted-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}

/* Vehicle History Reports Section */
.report-types {
    background: #FFFFFF;
}

.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.centered h2 {
    font-size: 2.5rem;
    margin-top: 1rem;
    color: #111827;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.report-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.report-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.report-card:hover .report-bg {
    transform: scale(1.1);
}

.report-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.3), rgba(17, 24, 39, 0.9));
    z-index: 1;
}

.report-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 2;
}

.report-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.report-content h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.report-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.report-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.report-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.report-link i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.report-link:hover i {
    transform: translateX(3px);
}

.report-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.report-bg-fallback {
    position: absolute;
    inset: 0;
    background: var(--report-gradient, linear-gradient(135deg, #0B5CAD, #062847));
    z-index: 0;
}

.report-card-link .report-bg {
    position: relative;
    z-index: 0;
}

.reports-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 960px;
    margin: 0 auto;
}

/* Responsive Reports Grid */
@media (max-width: 992px) {
    .reports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .reports-grid {
        grid-template-columns: 1fr;
    }

    .report-card {
        height: 350px;
    }
}

/* How It Works */
.how-it-works {
    background: var(--bg-body);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 10px var(--primary-subtle);
}

.step-connector {
    flex: 1;
    height: 2px;
    background: #E5E7EB;
    margin-top: 30px;
}

.step h3 {
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: #fff;
}

.cta-box {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
    border-radius: var(--radius-2xl);
    padding: 4.5rem 2.5rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-trust-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-trust-row span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cta-trust-row i {
    color: var(--secondary-color);
}

.cta-content .btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-content .btn-primary:hover {
    background: #F8FAFC;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    background: var(--bg-body);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-visual {
    position: relative;
}

.contact-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

.contact-info-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-subtle);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.info-details {
    display: flex;
    flex-direction: column;
}

.info-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #111827;
}

.info-details a {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-decoration: none;
}

.info-details span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact Form */
.contact-form-wrapper h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #111827;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.required {
    color: #EF4444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-subtle);
}

.contact-success {
    text-align: center;
    padding: 3rem 2rem;
    background: #F0FDF4;
    border-radius: var(--radius-lg);
    border: 1px solid #BBF7D0;
    animation: fadeIn 0.5s ease-out;
}

.success-icon {
    font-size: 4rem;
    color: #16A34A;
    margin-bottom: 1.5rem;
}

.contact-success h3 {
    color: #166534;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-success p {
    color: #15803D;
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Contact */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-image-wrapper {
        min-height: 300px;
    }

    .contact-img {
        min-height: 300px;
        max-height: 400px;
    }
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        flex-direction: column;
        text-align: center;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem;
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: #F3F4F6;
    padding: 0 0 2rem;
}

.footer-trust-strip {
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.footer-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

.footer-trust-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.12);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.footer-trust-item strong {
    display: block;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.footer-trust-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-security-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-badge i {
    color: var(--secondary-color);
    font-size: 0.7rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-payment-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-payment-icons i {
    transition: color var(--transition-fast);
}

.footer-payment-icons i:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 0 2.5rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand .logo span {
    color: var(--primary-light);
}

.footer-brand p {
    color: #9CA3AF;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.link-group h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.link-group a {
    display: block;
    color: #9CA3AF;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.link-group a:hover {
    color: white;
}

.footer-bottom p {
    color: #64748B;
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
    }

    .hero-left {
        max-width: 100%;
        order: 2;
    }

    .hero-right {
        max-width: 100%;
        margin-left: 0;
        order: 1;
    }

    .trust-badges {
        justify-content: center;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step-connector {
        display: none;
    }

    .step {
        margin-bottom: 3rem;
        max-width: 400px;
    }

    .step::after {
        content: '';
        display: block;
        width: 2px;
        height: 30px;
        background: #E5E7EB;
        margin: 1rem auto 0;
    }

    .step:last-child::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .lang-switcher-group {
        margin-left: 0;
        margin-top: 1rem;
    }

    .lang-switcher {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
    }

    .flag-icon {
        font-size: 0.9rem;
    }

    .hero-left h1 {
        font-size: 2rem;
        word-break: break-word;
    }

    .hero-left p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-content-features {
        margin-top: 1.5rem;
    }

    .hero-stats-row {
        gap: 1rem;
    }

    .vin-search-card-body {
        padding: 1.125rem 1.25rem 1.375rem;
    }

    .vin-search-actions {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
        gap: 0.875rem;
    }

    .vin-search-fields-row {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .vin-check-btn {
        height: 52px;
    }

    .vin-input-wrap,
    .state-select-wrap {
        height: 52px;
    }

    .hero-trust-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-trust-badge {
        justify-content: center;
        text-align: center;
    }

    .btn-lg {
        width: 100%;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }


    .cta-content h2
    {
        font-size: 29px;
    }

    .cta-content .btn
    {
        font-size: 15px;
    }


}

/* Checkout Page Styles */
.checkout-section {
    padding-top: calc(var(--trust-bar-height) + var(--nav-height) + 2rem);
    padding-bottom: 4rem;
    background: var(--bg-body);
}

.checkout-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checkout-secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-light);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    min-width: 100px;
    text-align: center;
}

.progress-step.active {
    color: var(--primary-color);
}

.progress-step.completed {
    color: var(--secondary-color);
}

.progress-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    background: var(--border-light);
    color: var(--text-muted);
    border: 2px solid var(--border-color);
    transition: all var(--transition-normal);
}

.progress-step.active .progress-dot {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--primary-subtle);
}

.progress-step.completed .progress-dot {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.progress-line {
    flex: 1;
    max-width: 80px;
    height: 2px;
    background: var(--border-color);
    margin-bottom: 1.5rem;
}

.progress-line.completed {
    background: var(--secondary-color);
}

.checkout-header {
    margin-bottom: 2.5rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

.back-link:hover {
    color: var(--primary-dark);
    transform: translateX(-3px);
}

.back-link i {
    font-size: 0.875rem;
}

.checkout-title {
    font-size: 2.5rem;
    margin-bottom: 0;
    color: var(--text-main);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.checkout-form-card {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.checkout-form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.checkout-form .form-group {
    margin-bottom: 1.5rem;
}

.checkout-form .form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.checkout-form .form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
}

.checkout-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-subtle);
}

.checkout-form .form-group input.error {
    border-color: #EF4444 !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.checkout-form .form-group input.success {
    border-color: #10B981 !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.checkout-form .form-help {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.checkout-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.price-badge {
    font-weight: 700;
    font-size: 1.125rem;
}

/* Order Summary */
.checkout-summary-column {
    position: sticky;
    top: calc(var(--trust-bar-height) + var(--nav-height) + 1rem);
}

.order-summary-card {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.order-summary-modern {
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(11, 92, 173, 0.12);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.summary-price-hero {
    background: linear-gradient(135deg, #0b5cad 0%, #094a8f 55%, #062847 100%);
    color: #fff;
    padding: 1.5rem 1.5rem 1.35rem;
}

.summary-price-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.summary-price-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.85;
}

.summary-plan-badge {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
}

.summary-price-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.summary-price-note {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.65rem;
    font-size: 0.8125rem;
    opacity: 0.9;
}

.summary-plan-chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.25rem 1.25rem 0;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #f8fafc 100%);
    border: 1px solid #dbeafe;
    border-radius: 14px;
}

.summary-plan-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(11, 92, 173, 0.12);
    flex-shrink: 0;
}

.summary-plan-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.35;
}

.summary-block-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.summary-block-head h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.summary-block-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--primary-subtle);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.summary-info-modern {
    margin: 1.25rem 1.25rem 0;
    padding: 1.15rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.summary-info-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.summary-info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 0.9rem;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 12px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.summary-info-row:hover {
    border-color: #bfdbfe;
    box-shadow: 0 4px 14px rgba(11, 92, 173, 0.06);
}

.summary-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary-subtle);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.summary-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
    flex: 1;
}

.summary-info-content .info-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.summary-info-content .info-value {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-main);
    word-break: break-all;
    line-height: 1.35;
}

.summary-features-modern {
    margin: 1.25rem 1.25rem 0;
    padding: 0 0 0.25rem;
}

.features-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.feature-chip {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.65rem;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.25;
    min-height: 100%;
}

.feature-chip i {
    color: var(--secondary-color);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.feature-chip-more {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border-color: #bbf7d0;
    color: #047857;
}

.feature-chip-more i {
    color: #059669;
}

.summary-guarantee-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin: 1.25rem;
    padding: 0.85rem 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    color: #047857;
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
}

.summary-guarantee-bar i {
    font-size: 1rem;
    flex-shrink: 0;
}

.order-summary-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.summary-subtitle {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.plan-card {
    background: linear-gradient(135deg, var(--primary-subtle) 0%, #F3F4F6 100%);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.plan-header h4 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin: 0;
}

.plan-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.plan-delivery {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.plan-delivery i {
    color: var(--primary-color);
}

.plan-price {
    font-size: 1.125rem;
    color: var(--text-main);
    padding-top: 1rem;
    border-top: 1px solid rgba(11, 92, 173, 0.15);
}

.plan-price strong {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.summary-info-block {
    background: #F9FAFB;
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.summary-info-block h5 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.info-value {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1rem;
}

.summary-features {
    margin-bottom: 1.5rem;
}

.summary-features h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-main);
    font-size: 0.9rem;
}

.features-list li i {
    color: var(--secondary-color);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.features-list li.more-features {
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Trust Badges Section - New Eye-Catching Design */
.trust-badges-section {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.trust-badge-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-badge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.trust-badge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(11, 92, 173, 0.12);
    border-color: var(--primary-light);
}

.trust-badge-card:hover::before {
    transform: scaleX(1);
}

.trust-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.trust-icon-wrapper.secure {
    background: linear-gradient(135deg, var(--primary-subtle) 0%, #DBEAFE 100%);
    color: var(--primary-color);
}

.trust-icon-wrapper.guarantee {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    color: #10B981;
}

.trust-icon-wrapper.support {
    background: linear-gradient(135deg, #F0F9FF 0%, #DBEAFE 100%);
    color: #3B82F6;
}

.trust-icon-wrapper i {
    font-size: 1.5rem;
    z-index: 1;
    color: inherit;
}

.trust-badge-card:hover .trust-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.trust-content {
    flex: 1;
}

.trust-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.375rem;
    line-height: 1.3;
}

.trust-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.btn-block {
    width: 100%;
}

/* Payment Loader Overlay */
.payment-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.payment-loader-overlay.hidden {
    display: none;
}

.payment-loader-content {
    text-align: center;
    color: white;
    max-width: 400px;
    padding: 2rem;
}

.payment-loader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
    border-top-color: var(--primary-color);
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: var(--primary-light);
    width: 85%;
    height: 85%;
    top: 7.5%;
    left: 7.5%;
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: var(--secondary-color);
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

.spinner-ring:nth-child(4) {
    border-top-color: rgba(255, 255, 255, 0.3);
    width: 55%;
    height: 55%;
    top: 22.5%;
    left: 22.5%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.payment-loader-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 700;
}

.payment-loader-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.loader-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.loader-dots span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: dotPulse 1.4s ease-in-out infinite both;
}

.loader-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loader-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0;
}

@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Checkout Responsive */
@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .checkout-summary-column {
        position: static;
    }

    .order-summary-card {
        order: -1;
    }

    .checkout-form-card {
        padding: 1.5rem;
    }

    .checkout-title {
        font-size: 2rem;
    }

    .trust-badges-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding-top: 100px;
        padding-bottom: 2rem;
    }

    .checkout-title {
        font-size: 1.75rem;
    }

    .checkout-header {
        margin-bottom: 1.5rem;
    }

    .checkout-form-card,
    .order-summary-card:not(.order-summary-modern) {
        padding: 1.25rem;
    }

    .summary-price-amount {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .summary-guarantee-bar {
        flex-direction: column;
        gap: 0.35rem;
    }

    .checkout-grid {
        gap: 1.5rem;
    }

    .trust-badges-section {
        margin-top: 1.5rem;
        grid-template-columns: 1fr;
    }

    .trust-badge-card {
        padding: 1.25rem 1rem;
    }

    .trust-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }

    .trust-icon-wrapper i {
        font-size: 1.25rem;
    }

    .trust-content h4 {
        font-size: 0.95rem;
    }

    .trust-content p {
        font-size: 0.8rem;
    }

    .plan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .trust-badges {
        gap: 0.75rem;
    }

    .trust-badge-item {
        padding: 0.5rem;
    }

    .payment-loader-content {
        padding: 1.5rem;
        max-width: 90%;
    }

    .payment-loader-content h3 {
        font-size: 1.25rem;
    }

    .payment-loader-content p {
        font-size: 0.9rem;
    }

    .payment-loader-spinner {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-section {
    padding-top: 120px;
    padding-bottom: 4rem;
    background: var(--bg-body);
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.privacy-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.privacy-intro {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-subtle);
}

.privacy-section h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    list-style-type: disc;
}

.privacy-section li strong {
    color: var(--text-main);
    font-weight: 600;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: var(--transition-fast);
}

.privacy-section a:hover {
    color: var(--primary-dark);
}

.footer-bottom a {
    color: #9CA3AF;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: white;
}

/* Privacy Policy Responsive */
@media (max-width: 992px) {
    .privacy-content {
        padding: 2rem;
    }

    .privacy-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {

    .container {
        width: 100%;
    }

    .trusted-content h2
    {
        font-size: 36px;
    }

    .excellence-content h2
    {
        font-size: 37px;
    }


    .privacy-policy-section {
        padding-top: 100px;
        padding-bottom: 2rem;
    }

    .privacy-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-intro {
        font-size: 1rem;
    }

    .privacy-content {
        padding: 1.5rem;
    }

    .privacy-section {
        margin-bottom: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.125rem;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 0.95rem;
    }
}

/* Terms & Conditions Page Styles */
.terms-section {
    padding-top: 120px;
    padding-bottom: 4rem;
    background: var(--bg-body);
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.terms-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.terms-intro {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.terms-section-item {
    margin-bottom: 3rem;
}

.terms-section-item:last-child {
    margin-bottom: 0;
}

.terms-section-item h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-subtle);
}

.terms-section-item h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.terms-section-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.terms-section-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-section-item li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    list-style-type: disc;
}

.terms-section-item li strong {
    color: var(--text-main);
    font-weight: 600;
}

.terms-section-item a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: var(--transition-fast);
}

.terms-section-item a:hover {
    color: var(--primary-dark);
}

/* Terms & Conditions Responsive */
@media (max-width: 992px) {
    .terms-content {
        padding: 2rem;
    }

    .terms-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .terms-section {
        padding-top: 100px;
        padding-bottom: 2rem;
    }

    .terms-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .terms-header h1 {
        font-size: 2rem;
    }

    .terms-intro {
        font-size: 1rem;
    }

    .terms-content {
        padding: 1.5rem;
    }

    .terms-section-item {
        margin-bottom: 2rem;
    }

    .terms-section-item h2 {
        font-size: 1.5rem;
    }

    .terms-section-item h3 {
        font-size: 1.125rem;
    }

    .terms-section-item p,
    .terms-section-item li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .checkout-form-card,
    .order-summary-card:not(.order-summary-modern) {
        padding: 1.25rem;
    }

    .checkout-title {
        font-size: 1.5rem;
    }

    .checkout-btn {
        flex-direction: column;
        gap: 0.5rem;
    }

    .price-badge {
        font-size: 1rem;
    }
}

/* ============================================
   PREMIUM REDESIGN — NEW COMPONENTS
   ============================================ */

/* Trust Partners */
.trust-partners {
    background: white;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-partners-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.trust-partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.partner-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: all var(--transition-normal);
}

.partner-badge i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.partner-badge:hover {
    border-color: var(--primary-light);
    color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Testimonials — Premium Full-Width Marquee */
.testimonials-marquee-section {
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
    background: var(--bg-dark);
}

.testimonials-marquee-bg {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(ellipse 80% 60% at 20% 0%, rgba(11, 92, 173, 0.35) 0%, transparent 60%),
            radial-gradient(ellipse 70% 50% at 80% 100%, rgba(201, 162, 39, 0.12) 0%, transparent 55%),
            linear-gradient(180deg, #0F172A 0%, #0B2545 50%, #0F172A 100%);
    pointer-events: none;
}

.testimonials-marquee-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.testimonials-marquee-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}

.testimonials-marquee-header .subtitle {
    color: var(--primary-light);
}

.testimonials-marquee-header h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.testimonials-marquee-header p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonials-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.testimonials-trust-pill i {
    color: #FBBF24;
}

/* Marquee Arena — full bleed */
.testimonials-marquee-arena {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.marquee-edge {
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(60px, 12vw, 180px);
    z-index: 3;
    pointer-events: none;
}

.marquee-edge-left {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
}

.marquee-edge-right {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
}

.marquee-row {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.marquee-group {
    display: flex;
    gap: 1.5rem;
    padding-right: 1.5rem;
    flex-shrink: 0;
}

.marquee-row-forward .marquee-track {
    animation: marquee-scroll-forward 55s linear infinite;
}

.marquee-row-reverse .marquee-track {
    animation: marquee-scroll-reverse 60s linear infinite;
}

.testimonials-marquee-arena:hover .marquee-track {
    animation-play-state: paused;
}

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

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

/* Marquee Cards */
.marquee-card {
    position: relative;
    flex-shrink: 0;
    width: clamp(300px, 38vw, 420px);
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18), 0 1px 3px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.marquee-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(11, 92, 173, 0.15);
}

.marquee-card-featured {
    background: linear-gradient(160deg, #FFFFFF 0%, var(--primary-subtle) 100%);
    border-color: rgba(11, 92, 173, 0.25);
}

.marquee-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent-color), #B8860B);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.7rem;
    border-radius: 2rem;
}

.marquee-card-quote {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.35;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.marquee-card-rating {
    display: flex;
    gap: 0.15rem;
    margin-bottom: 1rem;
    color: #FBBF24;
    font-size: 0.85rem;
}

.marquee-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    min-height: 5.5rem;
}

.marquee-card-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.marquee-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(11, 92, 173, 0.3);
}

.marquee-author-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-main);
}

.marquee-author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Stats bar below marquee */
.testimonials-marquee-section .testimonials-stats {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
}

.testimonials-marquee-section .testimonial-stat strong {
    color: white;
}

.testimonials-marquee-section .testimonial-stat span {
    color: rgba(255, 255, 255, 0.55);
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.testimonial-stat {
    text-align: center;
}

.testimonial-stat strong {
    display: block;
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-stat span {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Mobile Navigation — CSS-based */
@media (max-width: 768px) {
    .trust-top-bar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .hero {
        padding-top: calc(var(--nav-height) + 2rem);
    }

    .service-hero {
        padding-top: calc(var(--nav-height) + 1.75rem);
    }

    .checkout-section,
    .privacy-policy-section,
    .terms-section {
        padding-top: calc(var(--nav-height) + 1.5rem);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.25rem;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--border-color);
        z-index: 999;
        animation: slideDown 0.3s ease;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a:not(.btn) {
        padding: 0.85rem 1rem;
        border-radius: var(--radius-md);
        width: 100%;
    }

    .nav-links a:not(.btn):hover {
        background: var(--primary-subtle);
    }

    .nav-links .btn {
        width: 100%;
        margin-top: 0.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-sticky-cta {
        display: block;
    }

    body:has(#check) {
        padding-bottom: 70px;
    }

    .trust-top-inner {
        gap: 1rem;
    }

    .trust-top-item:not(.trust-top-highlight) {
        display: none;
    }

    .footer-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-marquee-section {
        padding: 4rem 0;
    }

    .testimonials-marquee-header {
        margin-bottom: 2.5rem;
    }

    .testimonials-marquee-arena {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .marquee-row-forward .marquee-track {
        animation-duration: 40s;
    }

    .marquee-row-reverse .marquee-track {
        animation-duration: 45s;
    }

    .testimonials-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .checkout-progress {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .progress-line {
        display: none;
    }

    .progress-step {
        min-width: auto;
        font-size: 0.7rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .hero-trust-badges {
        flex-direction: column;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .footer-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .marquee-card {
        width: 280px;
        padding: 1.5rem;
    }

    .marquee-card-text {
        min-height: auto;
        font-size: 0.9rem;
    }

    .marquee-row-forward .marquee-track {
        animation-duration: 32s;
    }

    .marquee-row-reverse .marquee-track {
        animation-duration: 36s;
    }

    .testimonials-marquee-section .testimonials-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .footer-trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-partners-grid {
        gap: 0.75rem;
    }

    .partner-badge {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .marquee-row {
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .marquee-track {
        animation: none !important;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .marquee-group[aria-hidden="true"] {
        display: none;
    }

    .marquee-edge {
        display: none;
    }
}

/* Scroll reveal animation base */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced form focus states */
.form-group input:focus,
.form-group textarea:focus,
.checkout-form .form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--primary-subtle);
}

/* Badge pill refinement */
.badge-pill {
    background: var(--primary-subtle);
    border-color: rgba(11, 92, 173, 0.15);
}

.text-highlight::after {
    background: var(--primary-subtle);
}

/* Step number refinement */
.step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 0 0 10px var(--primary-subtle);
}

/* Plan card refinement */
.plan-card {
    background: linear-gradient(135deg, var(--primary-subtle) 0%, white 100%);
    border-color: var(--primary-color);
}

/* Contact form card */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

/* Legal pages header refinement */
.privacy-header h1,
.terms-header h1 {
    background: linear-gradient(135deg, var(--text-main), var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   Service Inner Pages
   ============================================ */

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-subtle);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: none;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: white;
    transform: translateY(-2px);
}

.service-hero {
    position: relative;
    padding-top: calc(var(--trust-bar-height) + var(--nav-height) + 2.75rem);
    padding-bottom: 5rem;
    overflow: visible;
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--service-gradient);
    z-index: 0;
}

.service-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
}

.service-hero .container {
    position: relative;
    z-index: 1;
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    margin-bottom: 2.25rem;
}

.service-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.service-breadcrumb a:hover {
    color: white;
}

.service-breadcrumb span {
    color: white;
    font-weight: 500;
}

.service-breadcrumb i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.625rem;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr minmax(340px, 430px);
    gap: 3rem 4rem;
    align-items: center;
}

.service-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 580px;
    padding-top: 0.25rem;
}

.service-hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.25rem;
    width: 100%;
}

.service-hero-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.45;
}

.service-hero-highlights i {
    color: #86efac;
    font-size: 0.8125rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.service-hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 2rem;
}

.service-meta-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 0.875rem 1rem;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.service-meta-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
}

.service-meta-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9375rem;
}

.service-meta-price .service-meta-icon {
    background: rgba(255, 255, 255, 0.22);
}

.service-meta-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}

.service-meta-text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.service-meta-price .service-meta-text strong {
    font-size: 1.375rem;
}

.service-meta-text span {
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.service-hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
}

.service-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    white-space: nowrap;
}

.service-trust-pill i {
    color: #86efac;
    font-size: 0.6875rem;
}

.service-hero-visual {
    width: 100%;
}

.service-hero-form .vin-search-card {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 28px 64px rgba(11, 92, 173, 0.22);
}

.service-hero-form .vin-search-card-header {
    padding: 1.125rem 1.375rem;
}

.service-hero-form .vin-search-card-body {
    padding: 1.375rem 1.375rem 1.5rem;
}

.service-hero-form .vin-field-group {
    gap: 0.5rem;
}

.service-hero-form .vin-search-actions {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    gap: 1rem;
}

.state-select-wrap.is-locked {
    background: #F1F5F9;
    cursor: default;
}

.locked-field-value {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 0.875rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-main);
    height: 100%;
    min-width: 0;
}

.service-hero-form .vin-search-fields-row {
    grid-template-columns: 1fr;
    gap: 0.875rem;
}

.service-hero-form .state-select-wrap select {
    font-size: 0.875rem;
    padding-right: 2rem;
}

.service-hero-form .state-field-group,
.service-hero-form .vehicle-type-field-group {
    min-width: 0;
}

.service-hero-form .field-hint {
    margin-top: 0.5rem;
    font-size: 0.78125rem;
}

.service-hero-form .vin-check-btn {
    height: 52px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.section-desc {
    max-width: 640px;
    margin: 1rem auto 0;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Service action buttons */
.btn-service-action,
.btn-service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.9375rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(11, 92, 173, 0.35);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, gap 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-service-action::before,
.btn-service-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.12) 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.btn-service-action:hover,
.btn-service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(11, 92, 173, 0.45);
    color: white;
    gap: 0.875rem;
}

.btn-service-action:hover::before,
.btn-service-cta:hover::before {
    opacity: 1;
}

.btn-service-action i,
.btn-service-cta i {
    transition: transform 0.2s ease;
}

.btn-service-action:hover i,
.btn-service-cta:hover i {
    transform: translateX(4px);
}

.btn-service-cta {
    padding: 1.0625rem 2rem;
    font-size: 1.0625rem;
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-service-cta:hover {
    background: #f8fafc;
    color: var(--primary-dark);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

.vin-check-btn {
    position: relative;
    overflow: hidden;
}

.vin-check-btn i {
    transition: transform 0.2s ease;
}

.vin-check-btn:hover i {
    transform: translateX(4px);
}

.vin-check-btn span {
    position: relative;
    z-index: 1;
}

.service-hero-badge {
    display: inline-flex !important;
    margin-bottom: 1.25rem;
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.service-hero-content h1 {
    color: white;
    font-size: clamp(1.875rem, 3.5vw, 2.625rem);
    line-height: 1.18;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.service-hero-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.0625rem;
    line-height: 1.65;
    max-width: 520px;
    margin-bottom: 1.75rem;
}

.service-stats-bar {
    background: var(--bg-body);
    padding: 2.5rem 0;
    position: relative;
    z-index: 1;
}

.service-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--border-color);
    padding: 1.75rem 2rem;
    margin: 0;
}

.service-stat {
    text-align: center;
    padding: 0.5rem 1rem;
    position: relative;
}

.service-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: var(--border-color);
}

.service-stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.75rem;
    background: var(--primary-subtle);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.service-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    line-height: 1.2;
}

.service-stat span {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 500;
}

.service-includes {
    background: var(--bg-body);
    padding-top: 0;
}

.service-includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-include-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.service-include-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-include-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(11, 92, 173, 0.2);
}

.service-include-card:hover::before {
    transform: scaleX(1);
}

.service-include-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-subtle);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-include-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.service-include-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.service-benefits {
    background: white;
}

.service-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-benefits-content h2 {
    font-size: 2rem;
    margin: 1rem 0;
    color: var(--text-main);
}

.service-benefits-content > p {
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.service-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.service-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.625rem 0;
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.5;
}

.benefit-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    margin-top: 0.125rem;
}

.service-benefits-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-step-card {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.5rem 1.5rem 5rem;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-step-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(11, 92, 173, 0.2);
}

.service-step-card .step-icon {
    position: absolute;
    left: 1.25rem;
    top: 1.35rem;
    width: 36px;
    height: 36px;
    background: var(--primary-subtle);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
}

.service-step-card .step-num {
    position: absolute;
    right: 1.25rem;
    top: 1rem;
    left: auto;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
}

.service-step-card h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.375rem;
    color: var(--text-main);
}

.service-step-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

.service-faq {
    background: var(--bg-body);
}

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

.service-faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background 0.2s;
}

.service-faq-item summary::-webkit-details-marker {
    display: none;
}

.service-faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.service-faq-item[open] summary::after {
    content: '−';
}

.service-faq-item summary:hover {
    background: var(--primary-subtle);
}

.service-faq-item p {
    padding: 0 1.5rem 1.25rem;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.9375rem;
}

.service-cta {
    padding: 0 0 5rem;
    background: var(--bg-body);
}

.service-cta-inner {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
    border-radius: var(--radius-2xl);
    padding: 3rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-cta-content h2 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.service-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 480px;
    line-height: 1.6;
}

.service-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
}

.footer-brand .logo img {
    margin-top: 0;
    max-width: 100%;
    margin-left: -15px;
}

@media (max-width: 992px) {
    .service-hero {
        padding-top: calc(var(--trust-bar-height) + var(--nav-height) + 2rem);
        padding-bottom: 3.5rem;
    }

    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
        display: flex;
        flex-direction: column;
    }

    .service-hero-visual {
        order: -1;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }

    .service-hero-content {
        max-width: 100%;
        order: 1;
    }

    .service-hero-meta {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-stats-bar {
        padding: 2rem 0;
    }

    .service-stat:not(:last-child)::after {
        display: none;
    }

    .service-includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-benefits-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding-bottom: 3rem;
    }

    .service-breadcrumb {
        margin-bottom: 1.5rem;
    }

    .service-hero-meta {
        grid-template-columns: 1fr;
        gap: 0.625rem;
        margin-bottom: 1.75rem;
    }

    .service-hero-highlights {
        grid-template-columns: 1fr;
        margin-bottom: 1.75rem;
    }

    .service-stats-bar {
        padding: 1.75rem 0;
    }

    .service-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.25rem;
    }

    .service-stat {
        padding: 0.75rem;
    }

    .service-stat:not(:last-child)::after {
        display: none;
    }

    .service-includes-grid {
        grid-template-columns: 1fr;
    }

    .service-cta-inner {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .service-cta-actions {
        justify-content: center;
        width: 100%;
    }

    .service-cta-actions .btn-service-cta {
        width: 100%;
    }

    .reports-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MOBILE-FIRST POLISH
   Phone-first layout & touch UX (≤768 / ≤480)
   ============================================ */

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
        --section-padding: 3.5rem 0;
    }

    .section-padding {
        padding: var(--section-padding);
    }

    .logo {
        width: auto;
        max-width: 158px;
    }

    .footer-brand .logo {
        max-width: 165px;
    }

    .footer-brand {
        max-width: 100%;
    }

    /* iOS Safari: 16px inputs prevent auto-zoom on focus */
    input,
    select,
    textarea,
    .vin-input-wrap input,
    .state-select-wrap select,
    .checkout-form .form-group input,
    .checkout-select-wrap select,
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 16px !important;
    }

    .hero {
        padding-top: calc(var(--nav-height) + 1.5rem);
        padding-bottom: 3.5rem;
    }

    .hero-bg-glow {
        width: 420px;
        height: 420px;
        right: -30%;
    }

    .hero-stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 0.75rem;
        max-width: 100%;
    }

    .centered h2 {
        font-size: 1.85rem;
    }

    .centered {
        margin-bottom: 2rem;
    }

    .testimonials-stats,
    .testimonials-marquee-section .testimonials-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-trust-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .footer-trust-item {
        padding: 0.25rem 0;
    }

    .service-hero-trust-row {
        flex-direction: column;
        align-items: stretch;
    }

    .service-trust-pill {
        justify-content: center;
        text-align: center;
    }

    .service-hero-content h1 {
        font-size: 2rem;
        word-break: break-word;
    }

    .checkout-header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-progress {
        padding: 1rem 0.75rem;
    }

    .progress-step {
        font-size: 0.65rem;
        min-width: 0;
        flex: 1;
    }

    .progress-dot {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .order-summary-modern .summary-price-hero {
        padding: 1.25rem 1rem 1.1rem;
    }

    .order-summary-modern .summary-price-amount {
        font-size: 2rem;
    }

    .order-summary-modern .summary-plan-chip,
    .order-summary-modern .summary-info-modern,
    .order-summary-modern .summary-features-modern {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .order-summary-modern .features-grid {
        grid-template-columns: 1fr;
    }

    .order-summary-modern .summary-guarantee-bar {
        margin: 1rem;
    }

    .order-summary-modern .summary-info-row {
        padding: 0.75rem;
    }

    .btn,
    .nav-links a:not(.btn),
    .vin-check-btn,
    .checkout-btn {
        min-height: 44px;
    }

    .mobile-sticky-cta {
        padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    }

    body:has(#check) {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }

    body:not(:has(#check)) {
        padding-bottom: 0;
    }

    body:not(:has(#check)) .mobile-sticky-cta {
        display: none !important;
    }

    .trusted-main-image {
        width: 100%;
    }

    .floating-badge {
        right: 0.5rem;
        top: 1rem;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .excellence-trust-banner {
        padding: 1rem 1.25rem;
    }

    .contact-form-wrapper {
        padding: 1.25rem;
    }

    .privacy-content,
    .terms-content {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 2.75rem 0;
    }

    .container {
        padding: 0 0.875rem;
    }

    .logo {
        max-width: 142px;
    }

    .hero-left h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-left p {
        font-size: 0.9375rem;
    }

    .hero-content {
        gap: 2rem;
    }

    .hero-feature-item {
        font-size: 0.875rem;
    }

    .hero-feature-item i {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .testimonials-stats,
    .testimonials-marquee-section .testimonials-stats {
        grid-template-columns: 1fr;
    }

    .testimonial-stat strong {
        font-size: 1.5rem;
    }

    .centered h2 {
        font-size: 1.625rem;
    }

    .service-hero-content h1 {
        font-size: 1.75rem;
    }

    .excellence-content h2,
    .trusted-content h2 {
        font-size: 1.75rem !important;
    }

    .cta-content h2 {
        font-size: 1.5rem !important;
    }

    .checkout-title {
        font-size: 1.375rem;
    }

    .checkout-form-card {
        padding: 1rem;
    }

    .order-summary-modern .summary-price-amount {
        font-size: 1.75rem;
    }

    .report-card {
        height: 260px;
    }

    .reports-grid-4 {
        gap: 1rem;
    }

    .partner-badge {
        flex: 1 1 calc(50% - 0.5rem);
        justify-content: center;
        min-width: 0;
    }

    .trust-partners-grid {
        justify-content: stretch;
    }

    .marquee-card {
        width: 260px;
    }

    .footer-trust-strip {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }

    .progress-step {
        font-size: 0.6rem;
    }

    .vin-char-count {
        font-size: 0.625rem;
        right: 0.5rem;
        padding: 0.2rem 0.4rem;
    }

    .summary-plan-badge {
        font-size: 0.625rem;
        padding: 0.25rem 0.5rem;
    }
}