:root {
    --primary-blue: #1B1E3F;
    /* Dark Navy Blue */
    --ocher-yellow: #D4A34B;
    /* Ocher Yellow */
    --vibrant-gold: #FFD700;
    /* Vibrant Gold for CTAs */
    --icon-green: #2ecc71;
    /* Fresh Green for icons */
    --text-white: #ffffff;
    --dark-overlay: rgba(27, 30, 63, 0.85);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    /* Clean, modern font */
    line-height: 1.6;
    color: var(--text-white);
    background: linear-gradient(to bottom, var(--ocher-yellow) 0%, var(--primary-blue) 20%, var(--primary-blue) 100%);
    background-attachment: fixed;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-white);
}

.container {
    width: 90%;
    max-width: 1100px;
    /* Slightly tighter for better readability */
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 60px 0;
}

.text-center {
    text-align: center;
}

/* Scarcity Bar */
.scarcity-bar {
    background-color: #d90429;
    /* Urgent Red */
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('hero_bg.png') no-repeat center center/cover;
    position: relative;
    padding: 40px 20px;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(27, 30, 63, 0.7), var(--primary-blue));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.pre-title {
    background-color: var(--ocher-yellow);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    /* Mobile first adjustment, bigger on desktop */
    line-height: 1.25;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--vibrant-gold);
    /* Gold headline for status */
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: var(--vibrant-gold);
    color: var(--primary-blue);
    padding: 20px 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-decoration: none;
    border-radius: 8px;
    /* Slightly squarer modern look */
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: #ffe600;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
}

.crypto-text {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Pain Section Grid */
.pain-section {
    background-color: var(--primary-blue);
    padding-top: 40px;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pain-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
}

.pain-item i {
    font-size: 2.5rem;
    color: #e63946;
    /* Pain color */
    margin-bottom: 15px;
}

/* Story Section */
.story-section {
    background-color: #161933;
    /* Slightly darker than primary blue */
}

.story-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--ocher-yellow);
}

.story-content {
    flex: 1.5;
    min-width: 300px;
}

.badge {
    color: var(--ocher-yellow);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.story-content h2 {
    font-size: 2rem;
    margin: 10px 0 20px;
    color: var(--text-white);
}

.story-content p {
    margin-bottom: 15px;
    color: #e0e0e0;
}

/* Modules Section */
.modules-section {
    background-color: var(--primary-blue);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.module-card {
    background: #1F2347;
    /* Card bg */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: var(--ocher-yellow);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 163, 75, 0.1);
    /* Low opacity gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--ocher-yellow);
    font-size: 1.5rem;
}

.module-image {
    width: 100%;
    height: 160px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--ocher-yellow);
}

.module-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.module-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.module-card p {
    font-size: 0.95rem;
    color: #ccc;
}

.bonus-box {
    background: linear-gradient(135deg, var(--ocher-yellow), #b8860b);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: var(--primary-blue);
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.bonus-box h3 {
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 10px;
}

.bonus-box p {
    color: var(--primary-blue);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background-color: #161933;
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--ocher-yellow);
}

.faq-item h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4 i {
    color: var(--ocher-yellow);
}

.faq-item p {
    color: #ccc;
    font-size: 1rem;
    margin: 0;
    padding-left: 30px;
    /* Indent text */
}

/* Final CTA */
.final-section {
    text-align: center;
    background: var(--primary-blue);
    padding-bottom: 80px;
}

.cta-wrapper {
    background: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.price-box {
    margin: 30px 0;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.2rem;
    display: block;
}

.new-price {
    color: var(--vibrant-gold);
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    display: block;
}

.payment-icons {
    margin-top: 20px;
    font-size: 2rem;
    color: #888;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
    color: #666;
}

.footer-note {
    font-size: 0.75rem;
    margin-top: 10px;
    opacity: 0.6;
}

/* Animations */
.pulse-big {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Media Queries */
/* Floating Button Styles (Default Hidden) */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 20px;
    animation: slideUp 0.8s ease-out forwards;
}

.btn-floating {
    display: block;
    background: var(--vibrant-gold);
    color: var(--primary-blue);
    text-align: center;
    padding: 18px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid white;
    text-transform: uppercase;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Media Queries */
@media (min-width: 769px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {

    /* Global Mobile Adjustments */
    body {
        font-size: 16px;
        /* Minimum legible size */
    }

    .container {
        width: 100%;
        padding: 0 20px;
    }

    /* Typography */
    .hero h1 {
        font-size: 2rem;
        /* Better fit for mobile */
        line-height: 1.2;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Layout - Enforce Single Column */
    .hero-content,
    .pain-grid,
    .modules-grid,
    .faq-grid,
    .story-container {
        display: flex;
        flex-direction: column;
    }

    .pain-grid,
    .modules-grid {
        grid-template-columns: 1fr;
        /* Force 1 column grid if display grid is kept */
    }

    .story-container {
        gap: 30px;
    }

    /* Hero Section Specifics */
    .hero {
        min-height: auto;
        padding-top: 100px;
        /* Space for top spacing */
        padding-bottom: 60px;
        background-attachment: scroll;
        /* Better performance on mobile */
    }

    /* Finger-Friendly Buttons */
    .cta-button {
        display: block;
        width: 100%;
        padding: 22px;
        /* Taller touch target */
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    /* Floating CTA Visibility */
    .floating-cta {
        display: block;
    }

    /* Spacing adjustments */
    .section {
        padding: 40px 0;
    }

    /* Image Responsiveness */
    .story-image img,
    .module-image img {
        width: 100%;
        height: auto;
    }

    /* Modules Look */
    .module-card {
        padding: 20px;
    }

    /* Final Section padding for floating button */
    .final-section {
        padding-bottom: 100px;
        /* Ensure content isn't covered by floating button */
    }
}