:root {
    --primary: #e71f64;
    --primary-dark: #cc1b58;
    --bg-dark: #530c24;
    --bg-black: #000000;
    --text-white: #ffffff;
    --font-title: 'Akira Expanded', 'Inter', sans-serif;
    --font-text: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 20px;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    background-color: #000;
    color: var(--text-white);
    font-family: var(--font-text);
    line-height: 1.4;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

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

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

.w-full {
    width: 100%;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo img {
    height: 35px;
}

.nav-cta {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 900;
    transition: var(--transition);
}

.nav-cta:hover {
    transform: scale(1.05);
    background: #fff;
    color: var(--primary);
}

/* --- HERO V2 --- */
.hero-v2 {
    min-height: 100vh;
    padding: 140px 0 80px;
    background: radial-gradient(circle at center, #2a040d 0%, #000 70%);
    display: flex;
    align-items: center;
    position: relative;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-badge-img {
    margin-bottom: 25px;
}

.hero-badge-img img {
    height: 60px;
    width: auto;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(2.8rem, 8vw, 6rem);
    line-height: 0.95;
    margin-bottom: 30px;
    font-weight: 900;
}

.text-outline {
    display: block;
    color: var(--primary);
    font-size: 1.1em;
    margin-top: 10px;
}

.hero-usp-bullets {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    align-items: center;
}

.usp-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.usp-bullet i {
    color: var(--primary);
    width: 24px;
    height: 24px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 10px;
    font-family: var(--font-title);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 31, 100, 0.4);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-title);
    font-weight: 900;
    transition: var(--transition);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* CARS STACK */
.cars-stack {
    position: relative;
    height: 480px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 50px;
    width: 100%;
}

.car-main {
    width: 90%;
    z-index: 3;
    position: relative;
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.9));
}

.car-back {
    position: absolute;
    width: 65%;
    bottom: 25px;
    opacity: 0.8;
    z-index: 1;
}

.car-back.left {
    left: -35%;
    transform: rotate(-15deg);
}

.car-back.right {
    right: -35%;
    transform: rotate(15deg);
}

/* --- TRIAD SECTION --- */
.triad-section {
    padding: 100px 0;
    background: var(--bg-black);
}

.triad-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.triad-card {
    background: #0a0a0a;
    padding: 50px 30px;
    border: 1px solid #aaa;
    border-radius: 20px;
    transition: var(--transition);
    flex: 1 1 350px;
    max-width: 450px;
}

.triad-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, #1a040b 0%, #0a0a0a 100%);
}

.triad-num {
    font-family: var(--font-title);
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.triad-card h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.triad-card p {
    font-size: 1.05rem;
    opacity: 0.8;
}

/* --- BENEFITS V2 --- */
.benefits-v2 {
    padding: 120px 0;
    background: var(--bg-black);
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.micro-copy {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.giant-title {
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 6vw, 4.8rem);
    line-height: 1;
    margin-bottom: 15px;
}

.sub-title {
    font-size: 1.2rem;
    opacity: 0.6;
}

.benefits-v2-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.benefit-v2-box {
    background: #0f0f0f;
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid #1a1a1a;
    transition: var(--transition);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
}

.benefit-v2-box.highlighted-outline {
    border-color: rgba(231, 31, 100, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.benefit-v2-box:hover {
    background: #151515;
    border-color: var(--primary);
}

.icon-wrap i {
    color: var(--primary);
    margin-bottom: 25px;
    width: 45px;
    height: 45px;
}

.benefit-v2-box.highlighted {
    background: var(--primary);
    color: #fff;
    border: none;
}

.benefit-v2-box.highlighted i {
    color: #fff;
}

.benefit-v2-box.highlighted .text-link {
    color: #fff;
    font-weight: 900;
    text-decoration: underline;
    font-family: var(--font-title);
    font-size: 0.8rem;
    display: inline-block;
    margin-top: 15px;
}

/* --- HOW IT WORKS --- */
.how-it-works {
    padding: 120px 0;
    background: #050505;
}

.how-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    gap: 20px;
    flex-wrap: wrap;
}

.how-step {
    flex: 1 1 250px;
    text-align: center;
}

.how-icon {
    width: 80px;
    height: 80px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 1px solid #222;
    transition: var(--transition);
}

.how-step:hover .how-icon {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.how-icon i {
    color: var(--primary);
    width: 32px;
    height: 32px;
}

.how-content span {
    display: block;
    font-family: var(--font-title);
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #fff;
}

.how-content p {
    font-size: 0.9rem;
    opacity: 0.5;
    line-height: 1.6;
}

.how-arrow i {
    color: rgba(255, 255, 255, 0.1);
    width: 30px;
}

/* --- TRUST SECTION --- */
.trust-section {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.trust-flex {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.trust-item i {
    color: var(--primary);
    width: 18px;
}

/* --- FORM V2 --- */
.form-v2 {
    padding: 120px 0;
    background: #000;
}

.form-v2-grid {
    display: flex;
    gap: 80px;
    align-items: start;
    flex-wrap: wrap;
}

.form-info {
    flex: 1 1 400px;
}

.form-lead {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 30px;
}

.info-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.form-v2-card {
    background: #0a0a0a;
    padding: 2em;
    border-radius: 30px;
    border: 1px solid #1a1a1a;
    flex: 1 1 500px;
}

.form-v2-grid-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.form-v2-group {
    flex: 1 1 calc(50% - 20px);
    min-width: 200px;
}

.form-v2-group.full {
    flex: 1 1 100%;
}

.form-v2-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

.form-v2-group input,
.form-v2-group select {
    width: 100%;
    padding: 18px;
    background: #000;
    border: 1px solid #aaa;
    color: #fff;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
}

/* Checkboxes */
.form-v2-checkboxes {
    margin-bottom: 30px;
    text-align: left;
}

.form-v2-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    cursor: pointer;
}

.form-v2-checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-v2-checkbox-group label {
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition);
}

.privacy-link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.marketing-trigger {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.form-v2-checkbox-group:hover label {
    color: #fff;
}

.marketing-info-box {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary);
    padding: 0 15px;
    margin-top: 0;
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.marketing-info-box.show {
    max-height: 250px;
    opacity: 1;
    padding: 15px;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .benefit-v2-box {
        flex: 1 1 calc(50% - 20px);
    }

    .form-v2-grid {
        text-align: center;
    }

    .info-list {
        align-items: center;
    }

    .how-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 18px;
    }

    .nav-flex {
        justify-content: center;
    }

    .nav-cta {
        display: none;
    }

    .benefit-v2-box {
        flex: 1 1 100%;
    }

    .hero-badge-img img {
        height: 45px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-btns a {
        width: 100%;
        justify-content: center;
    }

    .cars-stack {
        height: 350px;
    }

    .car-back.left {
        left: -5%;
    }

    .car-back.right {
        right: -5%;
    }

    .form-v2-group {
        flex: 1 1 100%;
    }

    .form-v2-group input,
    .form-v2-group select {
        padding: 15px;
    }

    .form-v2-checkbox-group label {
        font-size: 0.8rem;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .footer-legal-links .separator {
        display: none;
    }

    .car-main {
        width: 65%;
    }

    .trust-flex {
        gap: 30px;
    }
}

/* UTILS */
.banner-cta {
    padding: 80px 0;
    background: var(--primary);
    color: #fff;
}

.banner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.banner-text h2 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.banner-text p {
    opacity: 0.9;
}

.btn-black {
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-family: var(--font-title);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-black:hover {
    background: #222;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.footer-v2 {
    padding: 100px 0 60px;
    border-top: 1px solid #1a1a1a;
    background: #000;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-legal-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.8rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-legal-links .separator {
    color: rgba(255, 255, 255, 0.1);
}

/* LOADER */
.btn-primary.loading {
    pointer-events: none;
    opacity: 0.8;
}

.loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

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