/* ================= GLOBAL RESETS & LUXURY TYPOGRAPHY ================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.gold-text {
    color: #FFD54F;
    font-weight: 700;
}

/* ================= COMPACT PREMIUM NAVIGATION ================= */
.premium-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px 20px 5px 20px; /* Reduced bottom padding to pull content up */
    background: #000000;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-sub-tag {
    font-size: 1.125rem; /* Increased by 50% */
    font-weight: 600;
    letter-spacing: 5px;
    color: #FFD54F; 
    margin-bottom: 6px;
    text-transform: uppercase;
}

.logo-main-brand {
    font-size: 2.4rem; /* Increased by 50% */
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: uppercase;
}

/* ================= VSL ARCHITECTURE & HEADLINE FIXES ================= */
.vsl-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 20px 20px 20px; /* Minimized top padding to snap close to the logo */
    text-align: center;
}

/* Main bold introductory hook */
.vsl-headline {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 25px;
    letter-spacing: -0.3px;
}

/* Premium sapphire blue typography color assignment */
.custom-blue-headline {
    color: #29B6F6 !important;
}

/* Paragraph text continuation */
.vsl-sub-headline {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    color: #aaaaaa;
    margin-top: 12px;
    line-height: 1.6;
}

/* Luxury Video Frame Minimalist Edge */
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #111;
    border-radius: 8px;
    box-shadow: 0px 20px 40px rgba(0,0,0,0.8);
    overflow: hidden;
    margin: 30px 0;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* High-Converting Golden Landing Button */
.action-block {
    margin: 20px 0 40px 0;
}

.gold-cta-btn {
    background-color: #FFB300;
    color: #000000;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 40px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: auto;
}

.gold-cta-btn:hover {
    background-color: #FFD54F;
    transform: scale(1.02);
}

/* ================= STEPS & SCARCITY LIST ================= */
.onboarding-section {
    max-width: 650px;
    margin: 40px auto 60px auto;
    padding: 0 25px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 30px;
    border-bottom: 1px solid #111;
    padding-bottom: 10px;
}

.steps-list {
    list-style: none;
}

.steps-list li {
    position: relative;
    font-size: 1.05rem;
    color: #cccccc;
    margin-bottom: 24px;
    padding-left: 25px;
    line-height: 1.6;
}

.steps-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 1.5rem;
    top: -4px;
}

.steps-list strong {
    color: #ffffff;
}

.steps-list a {
    color: #ffffff;
    text-decoration: underline;
}

/* ================= MODAL INTERFACE (5 INPUT FIELDS) ================= */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.open {
    opacity: 1;
}

.modal-content {
    background: #0d0d0d;
    border: 1px solid #222;
    padding: 40px 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: #fff;
}

.warning-tag {
    color: #ff4444;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.modal-content h2 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.modal-subheadings h3 {
    color: #FFB300;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.modal-subheadings h4 {
    color: #888;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 25px;
}

/* Form Fields Styling */
.input-group {
    position: relative;
    margin-bottom: 18px;
    text-align: left;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
}

.input-group input {
    width: 100%;
    background: #141414;
    border: 1px solid #2a2a2a;
    padding: 15px 15px 15px 45px;
    color: #fff;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.input-group input:focus {
    border-color: #FFB300;
}

.input-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.submit-btn {
    width: 100%;
    background: #FFB300;
    color: #000;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background-color: #FFD54F;
}

.form-footer-note {
    font-size: 0.85rem;
    color: #555;
    margin-top: 15px;
}

/* ================= TRUST SECTIONS & FOOTER ================= */
.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 25px;
    border-top: 1px solid #111;
    flex-wrap: wrap;
    background: #050505;
}

.card {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
}

footer {
    text-align: center;
    padding: 40px 20px;
    color: #444;
    font-size: 0.85rem;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #444;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    color: #666;
}

/* Floating WhatsApp Utility Element */
.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}

.whatsapp:hover {
    transform: scale(1.05);
}

/* ================= HARD RESPONSIVE MEDIA OVERRIDES ================= */
@media (max-width: 768px) {
    .premium-nav {
        padding: 25px 20px 0px 20px; /* Zero space beneath header on mobile layout views */
    }

    .vsl-container {
        padding-top: 0px; /* Snaps main body content up directly beneath logo elements */
    }

    .logo-sub-tag {
        font-size: 0.975rem; /* Scaled down proportionally for mobile viewports */
        letter-spacing: 3px;
    }

    .logo-main-brand {
        font-size: 1.875rem; /* Scaled down proportionally for mobile viewports */
        letter-spacing: 2px;
    }

    .vsl-headline {
        font-size: 1.15rem; 
        padding: 0 10px;
        margin-bottom: 15px;
    }
    
    .vsl-sub-headline {
        font-size: 0.95rem;
        margin-top: 8px;
    }

    .gold-cta-btn {
        width: 100%; 
        font-size: 1rem;
        padding: 16px 20px;
    }

    .input-row-split {
        grid-template-columns: 1fr; 
        gap: 0;
    }
    
    .onboarding-section {
        margin: 20px auto 40px auto;
    }
    
    .section-title {
        font-size: 1.5rem;
    }

    .steps-list li {
        font-size: 0.95rem;
    }
}