/* ============================================
   VROOM PREMIUM LANDING PAGE - DESIGN SYSTEM
   ============================================ */

:root {
    --bg-dark: #0a0a0f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --accent-orange: #ff4d00;
    --accent-orange-light: #ff8c00;
    --accent-red: #ff1744;
    --accent-green: #00e676;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-orange: rgba(255, 77, 0, 0.3);
    --shadow-premium: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(255, 77, 0, 0.15);
    --gradient-orange: linear-gradient(135deg, #ff4d00, #ff8c00);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
    --radius: 16px;
    --radius-sm: 10px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
.font-racing {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
}

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

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.4rem, 4vw, 2rem);
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.highlight {
    color: var(--accent-orange);
    text-shadow: 0 0 20px rgba(255, 77, 0, 0.4);
}

.required {
    color: var(--accent-red);
}

.hidden {
    display: none !important;
}

/* ============ GLASSMORPHISM ============ */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-premium);
    transition: all 0.3s ease;
}

.glass:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.12);
}

/* ============ TIMER BAR ============ */
.timer-bar {
    background: var(--gradient-orange);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-size: 0.95rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.4);
}

.timer-digits {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    letter-spacing: 3px;
}

/* ============ SOCIAL PROOF ============ */
.social-proof {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    animation: slideInLeft 0.5s ease;
}

.social-proof-content {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-orange);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-glow);
}

.social-proof-content i {
    color: var(--accent-orange);
}

@keyframes slideInLeft {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ============ VIEWER COUNT ============ */
.viewer-count {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at 30% 50%, #1a1018 0%, var(--bg-dark) 70%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('assets/Gemini_Generated_Image_b8libvb8libvb8li.webp') no-repeat center center/cover;
    opacity: 0.25;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem 0;
}

.badge-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.badge {
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-fire {
    background: rgba(255, 77, 0, 0.2);
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
}

.badge-verified {
    background: rgba(0, 230, 118, 0.15);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* ============ BUTTONS ============ */
.btn-primary {
    display: inline-block;
    background: var(--gradient-orange);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 77, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 77, 0, 0.5);
}

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

.btn-pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(255, 77, 0, 0.3);
    }

    50% {
        box-shadow: 0 4px 40px rgba(255, 77, 0, 0.6);
    }
}

.btn-secondary {
    background: linear-gradient(135deg, #333, #555);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 8px 30px rgba(100, 100, 100, 0.3);
}

.btn-cancel {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* ============ WARNING BOXES ============ */
.warning-box {
    border-color: var(--accent-red) !important;
    background: rgba(255, 23, 68, 0.05) !important;
}

.warning-box h3 {
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.warning-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.caution-box {
    border-color: var(--accent-orange) !important;
}

.caution-box h3 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.warning-list {
    list-style: none;
    margin-top: 1rem;
}

.warning-list li {
    padding: 6px 0;
    font-size: 1rem;
}

/* ============ PAIN POINTS ============ */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pain-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.pain-card.full-width {
    grid-column: 1 / -1;
}

.pain-icon {
    color: var(--accent-orange);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.danger-callout {
    margin-top: 3rem;
    text-align: center;
    border-color: var(--accent-red) !important;
    background: rgba(255, 23, 68, 0.08) !important;
}

.danger-callout h3 {
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.danger-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-red);
}

/* ============ DANGER SECTION ============ */
.section-danger {
    background: linear-gradient(180deg, rgba(255, 23, 68, 0.03) 0%, transparent 100%);
}

.danger-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.danger-card h4 {
    margin: 1rem 0 0.5rem;
    font-size: 1rem;
}

.danger-icon {
    font-size: 3rem;
}

.loss-calculator {
    margin-top: 3rem;
    text-align: center;
    border-color: var(--accent-red) !important;
}

.loss-list {
    list-style: none;
    margin: 1rem 0;
}

.loss-list li {
    padding: 4px 0;
    font-size: 1.05rem;
}

.loss-total {
    font-size: 1.4rem;
    font-weight: 800;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-glass);
}

/* ============ SOLUTION ============ */
.solution-img {
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 20px;
    box-shadow: var(--shadow-glow);
}

.solution-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    text-align: center;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--accent-orange);
}

/* ============ PACKAGE CONTENTS ============ */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-img {
    border-radius: var(--radius-sm);
    margin: 1rem 0;
}

.package-list {
    list-style: none;
}

.package-list li {
    padding: 6px 0;
    font-size: 0.95rem;
}

/* ============ PRODUCT CARDS ============ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    position: relative;
    text-align: center;
    padding-top: 2.5rem;
}

.product-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-orange);
    color: white;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
}

.product-featured {
    border: 2px solid var(--accent-orange) !important;
}

.product-img {
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.product-card h3 {
    margin-bottom: 0.5rem;
}

.product-shipping {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.9rem;
}

.product-save {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.product-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin: 1rem 0;
    font-family: 'Orbitron', sans-serif;
}

.feature-list {
    list-style: none;
    text-align: left;
    margin: 1rem 0;
}

.feature-list li {
    padding: 5px 0;
    font-size: 0.9rem;
}

.why-more,
.mode-info {
    background: rgba(255, 77, 0, 0.08);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    margin-top: 1rem;
    text-align: left;
}

.why-more h5,
.mode-info h5 {
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

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

.testimonial-card {
    position: relative;
    padding-top: 2.5rem;
}

.testi-quote {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 2rem;
    color: var(--accent-orange);
    opacity: 0.3;
}

.testi-author {
    margin-top: 1rem;
    color: var(--accent-orange);
    font-weight: 600;
}

/* ============ HOW IT WORKS ============ */
.section-howworks {
    background: var(--gradient-dark);
}

.howworks-card {
    margin-bottom: 2rem;
}

.howworks-card h3 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.howworks-steps {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--text-muted);
}

.howworks-steps li {
    padding: 4px 0;
}

.result-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-top: 1rem;
}

.diagram-box {
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    margin: 1rem 0;
}

.diagram-bad {
    background: rgba(255, 23, 68, 0.08);
    border-left: 4px solid var(--accent-red);
}

.diagram-good {
    background: rgba(0, 230, 118, 0.08);
    border-left: 4px solid var(--accent-green);
}

.diagram-flow {
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    margin: 0.5rem 0;
    overflow-x: auto;
    white-space: nowrap;
}

.diagram-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

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

.mode-item {
    padding: 1.2rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid;
}

.mode-sport {
    border-color: #ff4d00;
    background: rgba(255, 77, 0, 0.08);
}

.mode-comfort {
    border-color: #64b5f6;
    background: rgba(100, 181, 246, 0.08);
}

.mode-eco {
    border-color: #81c784;
    background: rgba(129, 199, 132, 0.08);
}

.mode-normal {
    border-color: #9e9e9e;
    background: rgba(158, 158, 158, 0.08);
}

.mode-item h5 {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.mode-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.analogy-box {
    background: rgba(255, 77, 0, 0.06);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    margin: 1rem 0;
}

.analogy-box p {
    margin-bottom: 0.5rem;
}

.safe-list {
    list-style: none;
}

.safe-list li {
    padding: 6px 0;
}

.faq-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-glass);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-q {
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.3rem;
}

.faq-a {
    color: var(--text-muted);
}

/* ============ GUARANTEE ============ */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.guarantee-card {
    text-align: center;
    padding: 2rem;
}

.guarantee-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

/* ============ FORM ============ */
.form-glass {
    max-width: 700px;
    margin: 0 auto;
}

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

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.input-group label i {
    margin-right: 6px;
    color: var(--accent-orange);
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.15);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.input-group select option {
    background: #1a1a2e;
    color: white;
}

/* ============ PRICE SUMMARY ============ */
.price-summary {
    background: rgba(255, 77, 0, 0.06);
    border: 1px solid var(--border-orange);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin: 2rem 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.95rem;
}

.price-total {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-orange);
    border-top: 1px solid var(--border-orange);
    padding-top: 12px;
    margin-top: 8px;
}

/* ============ MODAL ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-content {
    max-width: 500px;
    text-align: center;
}

.modal-content h3 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.modal-warning {
    color: var(--accent-red);
    margin: 1rem 0;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .glass {
        padding: 1.5rem;
    }

    .btn-primary {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .product-price {
        font-size: 1.6rem;
    }

    .viewer-count {
        display: none;
    }

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

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

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

    .diagram-flow {
        font-size: 0.6rem;
    }
}