/* ============================================
   RESET & BASE STYLES
   ============================================ */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* European SaaS palette — deep navy, calm neutrals, teal CTA */
    --ink: #0A2540;
    --ink-soft: #1e3a8a;
    --primary: #0A2540;
    --primary-dark: #061829;
    --secondary: #5b21b6;
    --accent: #0d9488;
    --accent-hover: #0f766e;
    --accent-2: #6366f1;
    --success: #059669;
    --warning: #d97706;
    --dark: #1e293b;
    --dark-2: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --gray-lighter: #e2e8f0;
    --surface-muted: #f1f5f9;
    --white: #ffffff;

    /* Gradients — soft blue → indigo / cyan highlights */
    --gradient-primary: linear-gradient(135deg, #0A2540 0%, #312e81 55%, #0e7490 100%);
    --gradient-primary-soft: linear-gradient(135deg, rgba(10, 37, 64, 0.08) 0%, rgba(99, 102, 241, 0.06) 100%);
    --gradient-accent: linear-gradient(135deg, #0d9488 0%, #6366f1 100%);
    --gradient-success: linear-gradient(135deg, #059669 0%, #0d9488 100%);
    --gradient-warning: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    --gradient-hero: linear-gradient(160deg, #f8fafc 0%, #eef2ff 45%, #f0fdfa 100%);

    /* Shadows — soft, layered */
    --shadow-xs: 0 1px 2px rgba(10, 37, 64, 0.04);
    --shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.06), 0 1px 2px rgba(10, 37, 64, 0.04);
    --shadow-md: 0 4px 12px rgba(10, 37, 64, 0.07), 0 2px 4px rgba(10, 37, 64, 0.04);
    --shadow-lg: 0 12px 32px rgba(10, 37, 64, 0.1), 0 4px 8px rgba(10, 37, 64, 0.04);
    --shadow-xl: 0 24px 48px rgba(10, 37, 64, 0.12), 0 8px 16px rgba(10, 37, 64, 0.06);
    --shadow-2xl: 0 32px 64px rgba(10, 37, 64, 0.14);
    --shadow-glow: 0 0 0 1px rgba(10, 37, 64, 0.06), 0 12px 40px rgba(13, 148, 136, 0.18);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 16px;
    --space-unit: 8px;

    --container-max: 1160px;
    --section-padding: 96px;

    --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

    --font-display: 'Manrope', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: #f8fafc;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .hero-title, .section-title, .contact-title, .checkout-title,
.legal-page-title, .footer-col h4 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 calc(var(--space-unit) * 3);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(10, 37, 64, 0.07);
    transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(10, 37, 64, 0.06);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(var(--space-unit) * 2);
    padding: calc(var(--space-unit) * 1.5) 0;
    min-height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    flex: 0 1 auto;
    min-width: 0;
    margin: 0;
}

.logo svg {
    width: 100%;
    height: auto;
    margin-right: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: calc(var(--space-unit) * 0.5);
}

.nav-links a {
    color: var(--dark-2);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color var(--transition-fast), background var(--transition-fast);
    position: relative;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
}

.nav-links a:hover {
    color: var(--ink);
    background: rgba(10, 37, 64, 0.05);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 28px);
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: transform var(--transition-base);
}

.nav-links a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.btn-nav {
    padding: 10px 22px;
    background: var(--gradient-accent);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.btn-nav::after {
    display: none;
}

.lang-toggle {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    padding: 4px;
    background: var(--surface-muted);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(10, 37, 64, 0.06);
}

.lang-toggle span,
.lang-toggle a {
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
    display: inline-block;
    text-decoration: none;
    color: var(--gray);
    min-height: 40px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lang-toggle span.active,
.lang-toggle a:hover {
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-xs);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    pointer-events: auto;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all var(--transition-base);
}

@media (max-width: 768px) {
    .report-text h2 {
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(88vw, 320px);
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: calc(72px + var(--space-unit) * 3) calc(var(--space-unit) * 3) calc(var(--space-unit) * 3);
        box-shadow: var(--shadow-xl);
        border-left: 1px solid rgba(10, 37, 64, 0.08);
        transition: right var(--transition-base);
        z-index: 1000;
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-lighter);
    }

    .nav-links a::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
        pointer-events: auto;
        cursor: pointer;
    }

    /* Add overlay when menu is open */
    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        pointer-events: auto;
        animation: fadeIn 0.3s ease-out;
        display: none;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    isolation: isolate;
    min-height: min(100vh, 980px);
    display: flex;
    align-items: center;
    padding: calc(var(--space-unit) * 6) 0 calc(var(--space-unit) * 24);
    overflow: hidden;
    /* Hero photo: single full-bleed image in .hero-visual (see index markup); file under /img */
    background:
        radial-gradient(ellipse 100% 80% at 50% -30%, rgba(241, 245, 249, 0.95) 0%, transparent 55%),
        radial-gradient(ellipse 70% 55% at 100% 0%, rgba(224, 231, 255, 0.55) 0%, transparent 50%),
        radial-gradient(ellipse 55% 50% at 0% 30%, rgba(236, 253, 245, 0.65) 0%, transparent 48%),
        linear-gradient(180deg, #f8fafc 0%, #fafbfc 45%, #ffffff 100%);
}

/* Split hero: copy (left) + visual card (right) on large screens */
.hero .container.hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(var(--space-unit) * 4);
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.hero-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-visual {
    position: relative;
    order: -1;
    min-height: clamp(200px, 48vw, 300px);
    border-radius: 20px;
    overflow: hidden;
    background: #e2e8f0;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 24px 56px -16px rgba(15, 23, 42, 0.12);
}

.hero-visual__media {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    animation: hero-visual-reveal 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero-visual__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 46%;
    transform: scale(1.03);
}

.hero-visual__edge {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(
        100deg,
        rgba(248, 250, 252, 0.55) 0%,
        rgba(248, 250, 252, 0.1) 30%,
        transparent 54%
    );
}

@media (min-width: 1024px) {
    .hero .container.hero-layout {
        grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
        gap: clamp(1.75rem, 4.5vw, 3.75rem);
        align-items: center;
        min-height: min(72vh, 640px);
    }

    .hero-visual {
        order: 0;
        min-height: min(52vh, 460px);
        align-self: stretch;
    }

    .hero-visual .hero-visual__img {
        object-position: 50% 44%;
    }

    .hero-content {
        text-align: left;
        margin: 0;
        max-width: 540px;
    }

    .hero-badge {
        margin-left: 0;
        margin-right: auto;
    }

    .hero-title {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-description {
        margin-left: 0;
        margin-right: 0;
        max-width: 34rem;
    }

    .search-box {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 520px;
    }

    .hero-features {
        justify-content: flex-start;
        width: 100%;
        max-width: 100%;
    }

    .hero-features .feature-item {
        justify-content: flex-start;
    }
}

@keyframes hero-visual-reveal {
    from {
        opacity: 0;
        transform: translate3d(16px, 12px, 0) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.028) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 78% 68% at 50% 30%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 78% 68% at 50% 30%, #000 0%, transparent 75%);
    opacity: 0.4;
}

.hero-spotlight {
    position: absolute;
    top: -28%;
    left: 50%;
    transform: translateX(-50%);
    width: min(120vw, 1000px);
    height: 78%;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 26%, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0) 58%);
    animation: hero-spot-drift 16s ease-in-out infinite alternate;
}

@keyframes hero-spot-drift {
    0% {
        opacity: 0.88;
        transform: translateX(-50%) translateY(0) scale(1);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(14px) scale(1.02);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(88px);
    opacity: 0.65;
    animation: float 22s infinite ease-in-out;
}

.orb-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.26), rgba(10, 37, 64, 0.06));
    top: -220px;
    left: -180px;
    animation-delay: 0s;
}

.orb-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 70% 50%, rgba(45, 212, 191, 0.22), rgba(49, 46, 129, 0.08));
    bottom: -160px;
    right: -120px;
    animation-delay: 5s;
}

.orb-3 {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle at 50% 50%, rgba(10, 37, 64, 0.1), transparent 72%);
    top: 36%;
    right: 4%;
    animation-delay: 10s;
}

.hero-orb-glow {
    position: absolute;
    width: min(90vw, 520px);
    height: 240px;
    left: 50%;
    bottom: 6%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(13, 148, 136, 0.28) 0%, transparent 68%);
    filter: blur(70px);
    opacity: 0.55;
    pointer-events: none;
    animation: hero-orb-pulse 10s ease-in-out infinite;
}

@keyframes hero-orb-pulse {
    0%, 100% {
        opacity: 0.45;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.65;
        transform: translateX(-50%) scale(1.06);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(28px, -26px) scale(1.08);
    }
    66% {
        transform: translate(-18px, 18px) scale(0.94);
    }
}

.hero-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: calc(var(--space-unit) * 1) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px 8px 14px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    color: #334155;
    font-weight: 600;
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: calc(var(--space-unit) * 4);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
    animation: hero-badge-pulse 4.5s ease-in-out infinite;
}

@keyframes hero-badge-pulse {
    0%, 100% {
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.9) inset,
            0 1px 2px rgba(15, 23, 42, 0.04);
    }
    50% {
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.9) inset,
            0 8px 24px rgba(15, 23, 42, 0.06),
            0 0 0 1px rgba(13, 148, 136, 0.12);
    }
}

.hero-badge:hover {
    transform: translateY(-1px);
    border-color: rgba(13, 148, 136, 0.2);
}

.hero-title {
    font-size: 43px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: calc(var(--space-unit) * 4);
    color: var(--ink);
    letter-spacing: -0.042em;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
}

.gradient-text {
    background: linear-gradient(115deg, #312e81 0%, #4338ca 35%, #0d9488 70%, #4338ca 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hero-gradient-flow 12s ease infinite;
}

@keyframes hero-gradient-flow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: clamp(1.05rem, 2.05vw, 1.1875rem);
    color: #475569;
    margin-bottom: calc(var(--space-unit) * 6);
    line-height: 1.68;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
    letter-spacing: -0.011em;
    font-weight: 450;
}

/* Search Box — product-style field */
.search-box {
    position: relative;
    max-width: 100%;
    width: min(100%, 540px);
    margin: 0 auto calc(var(--space-unit) * 7);
}

.search-frame {
    padding: 1px;
    border-radius: 14px;
    background: linear-gradient(
        145deg,
        rgba(15, 23, 42, 0.12) 0%,
        rgba(99, 102, 241, 0.15) 42%,
        rgba(13, 148, 136, 0.18) 100%
    );
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.65) inset,
        0 22px 48px -18px rgba(15, 23, 42, 0.14),
        0 12px 24px -12px rgba(15, 23, 42, 0.08);
    position: relative;
}

.search-frame::after {
    content: '';
    position: absolute;
    inset: -35%;
    background: radial-gradient(circle at 50% 0%, rgba(13, 148, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    opacity: 0.75;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: #ffffff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 13px;
    padding: 6px 6px 6px 4px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 1) inset;
    border: none;
    transition: box-shadow var(--transition-base), transform var(--transition-base);
    position: relative;
    overflow: hidden;
}

.search-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.06), transparent);
    transition: left 0.65s ease;
}

.search-wrapper:focus-within {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 1) inset,
        0 0 0 3px rgba(13, 148, 136, 0.22),
        0 18px 40px -16px rgba(15, 23, 42, 0.12);
    transform: translateY(-2px);
}

.search-wrapper:focus-within::before {
    left: 100%;
}

.search-icon {
    color: #94a3b8;
    margin: 0 16px 0 18px;
    flex-shrink: 0;
    transition: color var(--transition-base), transform var(--transition-base);
}

.search-wrapper:focus-within .search-icon {
    color: var(--accent);
    transform: scale(1.04);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.0625rem;
    padding: 17px 8px 17px 0;
    color: #0f172a;
    background: transparent;
    font-weight: 500;
    min-width: 0;
    letter-spacing: -0.02em;
}

.search-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    background: #0a2540;
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-fast);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(10, 37, 64, 0.2);
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transition: left 0.5s ease;
}

.search-btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #0c3354 0%, #0a2540 100%);
    box-shadow:
        0 4px 12px rgba(10, 37, 64, 0.28),
        0 0 0 1px rgba(13, 148, 136, 0.35);
}

.search-btn:hover::before {
    left: 100%;
}

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

.search-btn svg {
    transition: transform var(--transition-base);
}

.search-btn:hover svg {
    transform: translateX(3px);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    max-width: 100%;
    width: min(100%, 640px);
    margin: 0 auto;
    padding-top: calc(var(--space-unit) * 2);
}

.hero-features .feature-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: -0.015em;
    padding: 10px 16px 10px 12px;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.07);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), background var(--transition-fast);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    text-align: center;
}

.hero-features .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    border-color: rgba(13, 148, 136, 0.22);
    background: rgba(255, 255, 255, 0.92);
}

.hero-features .feature-item svg {
    color: #0d9488;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    padding: 4px;
    border-radius: 50%;
    background: rgba(13, 148, 136, 0.12);
    box-sizing: content-box;
    transition: transform var(--transition-base), background var(--transition-fast);
}

.hero-features .feature-item:hover svg {
    transform: scale(1.05);
    background: rgba(13, 148, 136, 0.18);
}

@media (min-width: 640px) {
    .hero-features {
        gap: 12px;
    }

    .hero-features .feature-item {
        font-size: 0.875rem;
        padding: 11px 18px 11px 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gradient-text {
        animation: none;
        background-size: 100% 100%;
    }

    .hero-badge {
        animation: none;
    }

    .hero-spotlight {
        animation: none;
    }

    .hero-orb-glow {
        animation: none;
    }

    .hero-visual__media {
        animation: none;
    }

    .stat-item.stat-card {
        transition: none;
    }

    .stat-item.stat-card:hover {
        transform: none;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: calc(var(--section-padding) + var(--space-unit) * 2) 0;
    background: linear-gradient(180deg, #ecfeff 0%, #f8fafc 28%, #ffffff 72%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.features-section::before {
    content: '';
    position: absolute;
    width: min(85vw, 920px);
    height: min(85vw, 920px);
    top: -42%;
    right: -22%;
    background: radial-gradient(circle at 40% 40%, rgba(99, 102, 241, 0.22) 0%, rgba(13, 148, 136, 0.08) 42%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.features-section::after {
    content: '';
    position: absolute;
    width: min(55vw, 560px);
    height: min(55vw, 560px);
    bottom: -8%;
    left: -12%;
    background: radial-gradient(circle at center, rgba(13, 148, 136, 0.16) 0%, transparent 62%);
    pointer-events: none;
    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: calc(var(--space-unit) * 8);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-header--features .section-title {
    position: relative;
}

.section-header--features .section-title::before {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    margin: 0 auto calc(var(--space-unit) * 3);
    border-radius: 4px;
    background: var(--gradient-accent);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: calc(var(--space-unit) * 2);
    color: var(--ink);
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--gray);
    line-height: 1.65;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: calc(var(--space-unit) * 3);
    align-items: stretch;
}

/* Bento layout — wide screens */
.features-grid--bento {
    gap: calc(var(--space-unit) * 2.5) calc(var(--space-unit) * 3);
}

@media (min-width: 1100px) {
    .features-grid--bento {
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: minmax(0, auto);
        align-items: stretch;
    }

    .features-grid--bento .feature-card:nth-child(1) {
        grid-column: 1 / span 7;
        grid-row: 1;
        min-height: 100%;
    }

    .features-grid--bento .feature-card:nth-child(2) {
        grid-column: 8 / span 5;
        grid-row: 1;
    }

    .features-grid--bento .feature-card:nth-child(3) {
        grid-column: 1 / span 7;
        grid-row: 2;
    }

    .features-grid--bento .feature-card:nth-child(4) {
        grid-column: 8 / span 5;
        grid-row: 2;
    }
}

@media (min-width: 700px) and (max-width: 1099px) {
    .features-grid--bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid--bento .feature-card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }
}

.feature-card {
    --card-glow: rgba(13, 148, 136, 0.12);
    background:
        radial-gradient(120% 80% at 100% 0%, var(--card-glow) 0%, transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    padding: calc(var(--space-unit) * 4.5) calc(var(--space-unit) * 4);
    border-radius: calc(var(--radius-lg) + 4px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.8) inset,
        var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    border: 1px solid rgba(10, 37, 64, 0.09);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card--accent-indigo {
    --card-glow: rgba(49, 46, 129, 0.14);
}

.feature-card--accent-rose {
    --card-glow: rgba(219, 39, 119, 0.1);
}

.feature-card--accent-teal {
    --card-glow: rgba(13, 148, 136, 0.14);
}

.feature-card--accent-amber {
    --card-glow: rgba(217, 119, 6, 0.12);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
    z-index: 2;
}

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

.feature-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.9) inset,
        var(--shadow-xl);
    border-color: rgba(13, 148, 136, 0.28);
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
    pointer-events: none;
    z-index: 0;
}

.feature-card:hover::after {
    transform: translateX(120%);
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: calc(var(--space-unit) * 2);
    margin-bottom: calc(var(--space-unit) * 2);
}

.feature-index {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: rgba(10, 37, 64, 0.07);
    user-select: none;
    flex-shrink: 0;
}

.feature-icon {
    margin-bottom: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 28px rgba(10, 37, 64, 0.1);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: inherit;
    opacity: 0.08;
    filter: blur(16px);
    transition: opacity var(--transition-base), transform var(--transition-base);
    z-index: -1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.06) translateY(-3px);
    box-shadow: 0 14px 36px rgba(10, 37, 64, 0.14);
}

.feature-card:hover .feature-icon::after {
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(1.15);
}

.feature-icon svg {
    display: block;
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 6px 12px rgba(10, 37, 64, 0.12));
    transition: filter var(--transition-base), transform var(--transition-base);
}

.feature-card:hover .feature-icon svg {
    filter: drop-shadow(0 10px 20px rgba(10, 37, 64, 0.18));
}

.feature-card h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.35;
    transition: color var(--transition-base);
    overflow-wrap: anywhere;
}

.feature-card:hover h3 {
    color: var(--ink);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.75;
    font-size: 1rem;
    flex-grow: 1;
    max-width: 52ch;
}

@media (min-width: 1100px) {
    .features-grid--bento .feature-card p {
        font-size: 1.02rem;
    }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {

    padding:50px 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(ellipse 100% 70% at 8% 25%, rgba(99, 102, 241, 0.38) 0%, transparent 52%),
        radial-gradient(ellipse 85% 65% at 92% 75%, rgba(13, 148, 136, 0.32) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(15, 23, 42, 0.55) 0%, transparent 45%),
        linear-gradient(158deg, #040a14 0%, #0b1f33 42%, #0f2840 72%, #134e4a 100%);
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.04"><circle cx="30" cy="30" r="1.5"/></g></svg>');
    opacity: 0.9;
    pointer-events: none;
}

.stats-section__mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 0%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 0%, transparent 72%);
    opacity: 0.55;
}

.stats-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
}

.stats-section__orb--1 {
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    top: -12%;
    right: -8%;
    background: rgba(45, 212, 191, 0.35);
}

.stats-section__orb--2 {
    width: min(380px, 50vw);
    height: min(380px, 50vw);
    bottom: -18%;
    left: -6%;
    background: rgba(99, 102, 241, 0.4);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 2.2vw, 1.5rem);
    position: relative;
    z-index: 1;
}

@media (max-width: 1099px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.stat-item.stat-card {
    position: relative;
    text-align: center;
    padding: calc(var(--space-unit) * 5) calc(var(--space-unit) * 3) calc(var(--space-unit) * 4);
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.04) 48%,
        rgba(15, 23, 42, 0.35) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.12) inset,
        0 24px 48px -20px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.stat-item.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--stat-accent-gradient, linear-gradient(90deg, #6366f1, #0d9488));
    opacity: 0.95;
    z-index: 2;
}

.stat-item.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.16) inset,
        0 32px 64px -24px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}

.stat-card--accent-indigo {
    --stat-accent-gradient: linear-gradient(90deg, #818cf8, #4338ca);
    --stat-icon-bg: linear-gradient(145deg, rgba(129, 140, 248, 0.35), rgba(49, 46, 129, 0.45));
    --stat-icon-color: rgba(224, 231, 255, 0.95);
}

.stat-card--accent-teal {
    --stat-accent-gradient: linear-gradient(90deg, #2dd4bf, #0f766e);
    --stat-icon-bg: linear-gradient(145deg, rgba(45, 212, 191, 0.35), rgba(13, 148, 136, 0.5));
    --stat-icon-color: rgba(204, 251, 241, 0.95);
}

.stat-card--accent-rose {
    --stat-accent-gradient: linear-gradient(90deg, #fb7185, #be185d);
    --stat-icon-bg: linear-gradient(145deg, rgba(251, 113, 133, 0.35), rgba(190, 24, 93, 0.4));
    --stat-icon-color: rgba(255, 228, 230, 0.95);
}

.stat-card--accent-amber {
    --stat-accent-gradient: linear-gradient(90deg, #fbbf24, #d97706);
    --stat-icon-bg: linear-gradient(145deg, rgba(251, 191, 36, 0.38), rgba(217, 119, 6, 0.45));
    --stat-icon-color: rgba(254, 243, 199, 0.98);
}

.stat-index {
    position: absolute;
    top: 14px;
    right: 16px;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.22);
    user-select: none;
    z-index: 3;
}

.stat-card__shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.stat-card__icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--stat-icon-bg);
    color: var(--stat-icon-color);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.stat-item.stat-card .stat-number {
    position: relative;
    z-index: 1;
    font-size: clamp(2.35rem, 5.5vw, 3.35rem);
    font-weight: 800;
    line-height: 1.02;
    font-variant-numeric: tabular-nums;
    font-family: var(--font-display);
    margin-bottom: 10px;
    color: #f8fafc;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 36px rgba(45, 212, 191, 0.18);
}

.stat-item.stat-card .stat-label {
    position: relative;
    z-index: 1;
    font-size: 0.9375rem;
    color: rgba(226, 232, 240, 0.92);
    font-weight: 500;
    line-height: 1.5;
    max-width: 18ch;
    margin: 0 auto;
}

/* ============================================
   COMPREHENSIVE CHECKS SECTION
   ============================================ */
.comprehensive-checks-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8fafc 100%);
}

.checks-visual-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.checks-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    margin: 60px 0 40px;
    gap: 60px;
}

.check-car-image {
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.car-top-view {
    width: 280px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    animation: floatCar 6s ease-in-out infinite;
}

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

.check-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    max-width: 380px;
    justify-content: center;
}

.check-features-left {
    align-items: flex-end;
}

.check-features-right {
    align-items: flex-start;
}

.check-item {
    display: flex;
    align-items: center;
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-lighter);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.check-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-accent);
    transition: width var(--transition-base);
}

.check-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 148, 136, 0.22);
}

.check-item:hover::before {
    width: 4px;
}

.check-item-left {
    flex-direction: row-reverse;
}

.check-item-right {
    flex-direction: row;
}

.check-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0A2540 0%, #312e81 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.125rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-display);
}

.check-item:hover .check-number {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.check-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
    margin: 0 18px;
    flex: 1;
    transition: color var(--transition-base);
}

.check-item:hover .check-text {
    color: var(--ink);
}

.check-line-left,
.check-line-right {
    display: none;
}

.checks-cta {
    text-align: center;
    margin-top: 60px;
}

.checks-cta-btn {
    padding: 16px 40px;
    background: linear-gradient(135deg, #0d9488 0%, #4338ca 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.0625rem;
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    box-shadow: var(--shadow-md);
    font-family: var(--font-display);
}

.checks-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.checks-cta-btn:active {
    transform: translateY(-1px);
}

/* ============================================
   REPORT SECTION
   ============================================ */
.report-section {
    padding: var(--section-padding) 0;
    background: var(--white);
    border-block: 1px solid rgba(10, 37, 64, 0.06);
}

.report-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.report-text h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--ink);
    line-height: 1.2;
}

.report-text p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.report-list {
    display: grid;
    gap: 16px;
}

.report-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    font-weight: 500;
}

.report-item svg {
    color: var(--success);
    flex-shrink: 0;
}

.report-visual {
    display: flex;
    justify-content: center;
}

.report-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: calc(var(--space-unit) * 4);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(10, 37, 64, 0.08);
    max-width: 400px;
    width: 100%;
    animation: floatCard 6s ease-in-out infinite;
}

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

.report-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-lighter);
}

.report-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.report-card-status {
    padding: 6px 12px;
    background: rgba(5, 150, 105, 0.12);
    color: var(--success);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.report-card-content {
    display: grid;
    gap: 16px;
}

.report-card-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-lighter);
}

.report-card-item span:first-child {
    color: var(--gray);
}

.report-card-item span:last-child {
    color: var(--dark);
    font-weight: 600;
}

.status-good {
    color: var(--success) !important;
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands-section {
    padding: var(--section-padding) 0;
    background: #f8fafc;
    overflow: hidden;
}

/* Desktop Marquee Carousel */
.brands-marquee-wrapper {
    width: 100%;
    /* overflow: hidden; */
    position: relative;
    margin: 0;
    padding: 0;
    /* background: linear-gradient(to bottom, rgba(99, 102, 241, 0.02), transparent); */
}

.brands-marquee-wrapper::before,
.brands-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc, transparent);
}

.brands-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc, transparent);
}

.brands-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    gap: 32px;
    width: fit-content;
    animation: marquee 60s linear infinite;
    will-change: transform;
}

.brands-track:hover {
    animation-play-state: paused;
}

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

.brand-card {
    background: var(--white);
    border: 1px solid rgba(10, 37, 64, 0.07);
    border-radius: var(--radius-md);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    cursor: pointer;
    flex-shrink: 0;
    width: 180px;
    height: 132px;
    box-shadow: var(--shadow-xs);
    margin-top: calc(var(--space-unit) * 2);
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 148, 136, 0.25);
    background: var(--white);
}

.brand-logo {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%) opacity(0.8);
    transition: all var(--transition-base);
}

.brand-card:hover .brand-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.15);
}

/* Mobile Grid (No Slider) */
.brands-grid-mobile {
    display: none;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8fafc 40%, var(--white) 100%);
}

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

.testimonial-card {
    background: var(--white);
    padding: calc(var(--space-unit) * 4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 37, 64, 0.07);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(10, 37, 64, 0.1);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.4) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.65s ease;
    pointer-events: none;
    z-index: 0;
}

.testimonial-card:hover::after {
    transform: translateX(100%);
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.avatar-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}

.testimonial-name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.testimonial-badge {
    font-size: 14px;
    color: var(--gray);
}

.testimonial-rating {
    margin-bottom: 16px;
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-text {
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: calc(var(--space-unit) * 2);
    overflow: hidden;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(13, 148, 136, 0.28);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: var(--dark);
    user-select: none;
}

.faq-icon {
    color: var(--accent);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: calc(var(--space-unit) * 12) 0;
    background: linear-gradient(155deg, #0A2540 0%, #312e81 50%, #115e59 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.04"><circle cx="30" cy="30" r="1.5"/></g></svg>');
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(248, 250, 252, 0.92);
    margin-bottom: 40px;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-search {
    display: flex;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    min-height: 52px;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.cta-input::placeholder {
    color: rgba(248, 250, 252, 0.55);
}

.cta-input:focus {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.18);
}

.cta-btn {
    padding: 16px 28px;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    color: var(--ink);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    min-height: 52px;
    white-space: nowrap;
    font-family: var(--font-display);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

/* Button press effect */
button:active,
.search-btn:active {
    transform: scale(0.98);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: calc(var(--space-unit) * 12) 0;
    background: linear-gradient(180deg, #f8fafc 0%, var(--white) 35%);
    position: relative;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    margin: 0 auto 24px;
    display: flex;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.contact-badge svg {
    width: 16px;
    height: 16px;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: calc(var(--space-unit) * 2.5);
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(10, 37, 64, 0.08);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 148, 136, 0.22);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0A2540 0%, #4338ca 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.3;
}

.contact-card-text {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 10px;
    line-height: 1.5;
    margin-left: 52px;
}

.contact-card-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    transition: color var(--transition-fast), gap var(--transition-fast);
    margin-left: 52px;
}

.contact-card-link:hover {
    color: var(--ink-soft);
    gap: 6px;
}

.contact-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 52px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.status-text {
    color: var(--success);
    font-weight: 600;
    font-size: 13px;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: calc(var(--space-unit) * 4);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 37, 64, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

.contact-form-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    position: relative;
}

.form-icon {
    position: absolute;
    left: 14px;
    top: 14px;
    bottom: auto;
    transform: none;
    color: var(--accent);
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: color var(--transition-base);
}

.form-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.form-icon-top {
    top: 18px;
    transform: none;
}

.form-input {
    width: 100%;
    padding: 14px 14px 14px 46px;
    border: 1px solid rgba(10, 37, 64, 0.12);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    color: var(--dark);
    background: #fafbfc;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-fast);
    outline: none;
    min-height: 48px;
}

.form-input:focus {
    border-color: rgba(13, 148, 136, 0.55);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
    background: var(--white);
}

.form-input::placeholder {
    color: var(--gray-light);
}

/* Form Validation Styles */
.form-input.error,
.search-input.error,
.cta-input.error {
    border-color: #ef4444;
    background-color: #fef2f2;
    padding-right: 40px;
}

.form-input.error:focus,
.search-input.error:focus,
.cta-input.error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.success,
.search-input.success,
.cta-input.success {
    border-color: var(--success);
    background-color: #f0fdf4;
}

.form-input.success:focus,
.search-input.success:focus,
.cta-input.success:focus {
    border-color: var(--success);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-error-message {
    display: none;
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
    margin-left: 0;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.form-error-message.show {
    display: block;
}

.form-group.has-error {
    border-color: #ef4444;
}

.form-group.has-error .form-icon {
    color: #ef4444;
    top: 14px;
    transform: none;
}

.form-group.has-success .form-icon {
    color: var(--success);
    top: 14px;
    transform: none;
}

/* Ensure icon alignment for textarea in error/success states */
.form-group.has-error .form-icon-top,
.form-group.has-success .form-icon-top {
    top: 18px;
    transform: none;
}

/* Error message styling matching homepage registration field */
.form-group.has-error .form-error-message {
    display: block;
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
    margin-left: 0;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

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

/* Search input error styles */
.search-wrapper.has-error,
.cta-search.has-error {
    border-color: #ef4444;
}

.search-wrapper.has-error .search-input,
.cta-search.has-error .cta-input {
    border-color: #ef4444;
}

.search-error-message,
.cta-error-message {
    display: none;
    color: #ef4444;
    font-size: 13px;
    margin-top: 8px;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

.search-error-message.show,
.cta-error-message.show {
    display: block;
}

.form-textarea {
    padding-top: 14px;
    padding-left: 44px;
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    padding: 16px 28px;
    background: linear-gradient(135deg, #0d9488 0%, #4338ca 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    box-shadow: var(--shadow-md);
    margin-top: 4px;
    font-family: var(--font-display);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.form-submit-btn svg {
    transition: transform var(--transition-base);
}

.form-submit-btn:hover svg {
    transform: translateX(4px);
}

/* Thank You Message */
.thank-you-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    animation: fadeInScale 0.5s ease-out;
}

.thank-you-message.show {
    display: flex;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    animation: checkmarkAnimation 0.6s ease-out 0.3s both;
}

@keyframes checkmarkAnimation {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.thank-you-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.thank-you-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.thank-you-text {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 400px;
}

.thank-you-btn {
    padding: 12px 24px;
    background: var(--ink);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.thank-you-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, #0A2540 0%, #020617 100%);
    color: var(--white);
    padding: calc(var(--space-unit) * 10) 0 calc(var(--space-unit) * 4);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p {
    color: var(--gray-light);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray-light);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
/* Below 1024px only: avoids clashing with @media (min-width: 1024px) hero grid */
@media (max-width: 1023px) {
    .hero-features {
        flex-direction: column;
        align-items: center;
        max-width: 380px;
    }

    .hero-features .feature-item {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 40px;
    }

    .checks-visual {
        flex-direction: column;
        gap: 50px;
        min-height: auto;
    }

    .check-features {
        max-width: 100%;
        width: 100%;
        gap: 18px;
    }

    .check-features-left {
        align-items: stretch;
    }

    .check-features-right {
        align-items: stretch;
    }

    .check-item {
        width: 100%;
    }

    .check-item-left {
        flex-direction: row;
    }

    .car-top-view {
        width: 250px;
    }

    .report-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .report-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }


    .mobile-menu-toggle {
        display: flex;

    }

    .hero {
        padding: calc(var(--space-unit) * 10) 0 calc(var(--space-unit) * 16);
        min-height: auto;
    }

    .hero-pattern {
        opacity: 0.35;
    }

    .hero-spotlight {
        opacity: 0.75;
    }

    .hero-orb-glow {
        opacity: 0.35;
    }

    .hero-visual {
        min-height: clamp(180px, 52vw, 260px);
    }

    .hero-visual .hero-visual__img {
        object-position: 50% 48%;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        line-height: 1.15;
        max-width: none;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: calc(var(--space-unit) * 5);
    }

    .search-box {
        margin-bottom: calc(var(--space-unit) * 5);
    }

    .search-frame {
        border-radius: 15px;
    }

    .search-wrapper {
        flex-direction: column;
        padding: 12px;
        border-radius: 14px;
    }

    .search-input {
        width: 100%;
        margin-bottom: 12px;
        padding: 16px 12px;
        text-align: center;
    }

    .search-icon {
        display: none;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }

    .hero-features {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        max-width: 100%;
        width: 100%;
    }

    .hero-features .feature-item {
        justify-content: center;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .section-title {
        font-size: 32px;
    }

    .checks-visual {
        gap: 35px;
        margin: 40px 0 30px;
    }

    .check-features {
        gap: 16px;
    }

    .check-item {
        padding: 14px 16px;
    }

    .check-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .check-text {
        font-size: 15px;
        margin: 0 14px;
    }

    .car-top-view {
        width: 220px;
    }

    .checks-cta-btn {
        padding: 16px 36px;
        font-size: 16px;
    }

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

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

    .features-grid--bento .feature-card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .feature-card {
        padding: 36px 28px;
    }

    .feature-card:hover {
        transform: translateY(-4px);
    }

    .feature-card h3 {
        font-size: 22px;
    }

    .feature-card-head {
        margin-bottom: 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item.stat-card {
        padding: calc(var(--space-unit) * 4) calc(var(--space-unit) * 2.5) calc(var(--space-unit) * 3);
        border-radius: 18px;
    }

    .stat-item.stat-card .stat-number {
        font-size: clamp(2rem, 7vw, 2.65rem);
    }

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

    /* Hide marquee on tablet/mobile */
    .brands-marquee-wrapper {
        display: none;
    }

    /* Show mobile grid */
    .brands-grid-mobile {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        max-width: 1200px;
        margin: 40px auto 0;
        padding: 0 24px;
    }

    .brands-grid-mobile .brand-card {
        width: 100%;
        height: 100px;
        padding: 16px;
    }

    .brands-grid-mobile .brand-logo {
        max-height: 50px;
    }

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

    .cta-btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-header {
        margin-bottom: 32px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form-card {
        padding: 28px 24px;
        min-height: 450px;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .thank-you-message {
        padding: 32px 24px;
    }

    .thank-you-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: calc(var(--space-unit) * 11) 0 calc(var(--space-unit) * 14);
    }

    .hero-visual {
        min-height: 200px;
        border-radius: 16px;
    }

    .hero-visual .hero-visual__img {
        object-position: 50% 50%;
    }

    .hero-title {
        font-size: clamp(1.6rem, 8vw, 2rem);
        line-height: 1.18;
    }

    .hero-description {
        font-size: 0.9375rem;
        margin-bottom: calc(var(--space-unit) * 4);
    }

    .hero-badge {
        padding: 7px 14px;
        font-size: 0.625rem;
        margin-bottom: 24px;
    }

    .search-box {
        margin-bottom: calc(var(--space-unit) * 4);
    }

    .search-frame {
        border-radius: 16px;
    }

    .search-wrapper {
        padding: 10px;
        border-radius: 13px;
    }

    .search-input {
        font-size: 16px;
        padding: 14px 8px;
    }

    .search-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .hero-features {
        gap: 10px;
    }

    .hero-features .feature-item {
        padding: 10px 14px;
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 28px;
    }

    .checks-visual {
        gap: 30px;
        margin: 30px 0 20px;
    }

    .check-features {
        gap: 14px;
    }

    .check-item {
        padding: 12px 14px;
    }

    .check-number {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .check-text {
        font-size: 14px;
        margin: 0 12px;
    }

    .car-top-view {
        width: 180px;
    }

    .checks-cta {
        margin-top: 40px;
    }

    .checks-cta-btn {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stat-item.stat-card {
        padding: calc(var(--space-unit) * 4) calc(var(--space-unit) * 2) calc(var(--space-unit) * 3);
    }

    .stat-card__icon {
        width: 46px;
        height: 46px;
        margin-bottom: 0.75rem;
    }

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

    .container {
        padding: 0 16px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .contact-card {
        padding: 18px;
    }

    .contact-card-header {
        gap: 10px;
        margin-bottom: 10px;
    }

    .contact-card-icon {
        width: 36px;
        height: 36px;
    }

    .contact-card-title {
        font-size: 17px;
    }

    .contact-card-text,
    .contact-card-link,
    .contact-status {
        margin-left: 46px;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-header {
        margin-bottom: 28px;
    }

    .contact-title {
        font-size: 26px;
    }

    .contact-subtitle {
        font-size: 15px;
    }

    .contact-form-card {
        padding: 24px 20px;
        min-height: 420px;
    }

    .contact-form-title {
        font-size: 22px;
    }

    .contact-form-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .contact-form {
        gap: 16px;
    }

    .form-input {
        padding: 12px 12px 12px 40px;
        font-size: 14px;
    }

    .form-textarea {
        padding-left: 40px;
        min-height: 90px;
    }

    .form-submit-btn {
        padding: 14px 20px;
        font-size: 15px;
    }

    .thank-you-message {
        padding: 28px 20px;
    }

    .thank-you-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .thank-you-title {
        font-size: 22px;
    }

    .thank-you-text {
        font-size: 14px;
    }

    .feature-card,
    .testimonial-card {
        padding: 24px;
    }

    .brands-grid-mobile {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 16px;
    }

    .brands-grid-mobile .brand-card {
        height: 80px;
        padding: 12px;
    }

    .brands-grid-mobile .brand-logo {
        max-height: 40px;
    }
}

/* ============================================
   CHECKOUT PAGE STYLES
   ============================================ */
.checkout-section {
    padding: 100px 0 60px;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 50%);
    min-height: 100vh;
    position: relative;
}

.checkout-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.04) 0%, rgba(13, 148, 136, 0.04) 100%);
    pointer-events: none;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.checkout-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 24px;
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.checkout-back-link:hover {
    gap: 12px;
    color: var(--ink);
}

.checkout-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.checkout-subtitle {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 32px;
}

.checkout-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-lighter);
    position: relative;
    transition: all var(--transition-base);
}

.checkout-form-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.checkout-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 20px 20px 0 0;
}

.checkout-form-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

.checkout-summary-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-lighter);
    position: sticky;
    top: 100px;
    height: fit-content;
    transition: all var(--transition-base);
}

.checkout-summary-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.checkout-summary-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-lighter);
}

.checkout-plan-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #0A2540 0%, #4338ca 100%);
    color: var(--white);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.checkout-plan-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.checkout-plan-description {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

.checkout-delivery-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    padding: 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--gray-lighter);
    margin-top: 20px;
}

.checkout-total-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.checkout-total-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
}

.checkout-features-list {
    list-style: none;
    margin-bottom: 24px;
}

.checkout-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--gray);
    font-size: 14px;
}

.checkout-features-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 16px;
}

.checkout-security-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-lighter);
}

.checkout-security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
}

.checkout-security-item svg {
    color: var(--success);
    flex-shrink: 0;
}

/* ============================================
   CHECKOUT SECURITY FEATURES - NEW DESIGN
   ============================================ */
.checkout-security-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-lighter);
}

.checkout-security-features-left {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-lighter);
    border-radius: 0;
    width: 100%;
}

.checkout-container > div:first-child {
    display: flex;
    flex-direction: column;
}

.checkout-feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-lighter);
    position: relative;
    overflow: hidden;
}

.checkout-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, transparent);
    transition: all var(--transition-base);
}

.checkout-feature-secure::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.checkout-feature-delivery::before {
    background: linear-gradient(90deg, #0A2540, #312e81);
}

.checkout-feature-support::before {
    background: linear-gradient(90deg, #5b21b6, #4338ca);
}

.checkout-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.checkout-feature-card:hover::before {
    height: 4px;
}

.checkout-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.checkout-feature-card:hover .checkout-feature-icon {
    transform: scale(1.05);
}

.checkout-feature-secure .checkout-feature-icon {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

.checkout-feature-delivery .checkout-feature-icon {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #312e81;
}

.checkout-feature-support .checkout-feature-icon {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: #5b21b6;
}

.checkout-feature-icon svg {
    width: 24px;
    height: 24px;
}

.checkout-feature-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.checkout-feature-subtitle {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* Responsive Design for Checkout Features */
@media (max-width: 768px) {
    .checkout-security-features {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
        padding-top: 24px;
    }

    .checkout-feature-card {
        padding: 20px;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .checkout-feature-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .checkout-feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .checkout-feature-title {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .checkout-feature-subtitle {
        font-size: 13px;
    }
}

.checkout-registration-display {
    background: rgba(10, 37, 64, 0.06);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(10, 37, 64, 0.08);
}

.checkout-registration-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.checkout-registration-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 768px) {
    .checkout-section {
        padding: 80px 0 40px;
    }

    .checkout-container {
        padding: 0 16px;
        gap: 24px;
    }

    .checkout-form-card,
    .checkout-summary-card {
        padding: 24px;
    }

    .checkout-title {
        font-size: 28px;
    }

    .checkout-security-features-left {
        margin-top: 24px;
        padding-top: 24px;
    }
}

/* ============================================
   LEGAL/CONTENT PAGES STYLES
   ============================================ */
.legal-page-section {
    padding: 120px 0 80px;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 50%);
    min-height: 100vh;
}

.legal-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-page-header {
    margin-bottom: 48px;
    text-align: center;
}

.legal-page-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.legal-page-content {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-lighter);
    line-height: 1.8;
}

.legal-page-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-lighter);
}

.legal-page-content h1:first-child {
    margin-top: 0;
}

.legal-page-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-page-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page-content p {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page-content ul,
.legal-page-content ol {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--gray);
}

.legal-page-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-page-content strong {
    color: var(--dark);
    font-weight: 600;
}

.legal-page-content a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.legal-page-content a:hover {
    color: var(--ink);
    text-decoration: underline;
}

.legal-page-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 32px;
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.legal-page-back-link:hover {
    gap: 12px;
    color: var(--ink);
}

@media (max-width: 768px) {
    .legal-page-section {
        padding: 100px 0 60px;
    }

    .legal-page-container {
        padding: 0 16px;
    }

    .legal-page-title {
        font-size: 32px;
    }

    .legal-page-content {
        padding: 32px 24px;
    }

    .legal-page-content h1 {
        font-size: 28px;
    }

    .legal-page-content h2 {
        font-size: 22px;
    }

    .legal-page-content h3 {
        font-size: 18px;
    }
}

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

/* Focus styles for accessibility */
button:focus-visible,
input:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    .search-box,
    .cta-section,
    .footer {
        display: none;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger animation for grid items */
.features-grid .feature-card:nth-child(1) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.4s; }

.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.3s; }
.testimonials-grid .testimonial-card:nth-child(4) { transition-delay: 0.4s; }

.brands-grid-mobile .brand-card:nth-child(1) { transition-delay: 0.05s; }
.brands-grid-mobile .brand-card:nth-child(2) { transition-delay: 0.1s; }
.brands-grid-mobile .brand-card:nth-child(3) { transition-delay: 0.15s; }
.brands-grid-mobile .brand-card:nth-child(4) { transition-delay: 0.2s; }
.brands-grid-mobile .brand-card:nth-child(5) { transition-delay: 0.25s; }
.brands-grid-mobile .brand-card:nth-child(6) { transition-delay: 0.3s; }
.brands-grid-mobile .brand-card:nth-child(7) { transition-delay: 0.35s; }
.brands-grid-mobile .brand-card:nth-child(8) { transition-delay: 0.4s; }

/* ============================================
   LOADING STATES
   ============================================ */
body:not(.loaded) .hero-badge,
body:not(.loaded) .hero-title,
body:not(.loaded) .hero-description,
body:not(.loaded) .search-box,
body:not(.loaded) .hero-features {
    opacity: 0;
    transform: translateY(20px);
}

.logo-img
{
    width: 158px;
    margin: -18px 0;
}



@media (max-width: 768px) {

    .logo-img
    {
        width: 94%;
    }

    .logo {
        width: 100%;
    }


    .search-icon
    {
        display: none;
    }

}


.form-group.has-error .form-icon
{
    top: 19% !important;
}