:root {
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --accent-cyan: #fa5c06;
    --accent-blue: #e04300;
    --accent-purple: #8b5cf6;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glow-cyan: rgba(250, 92, 6, 0.4);
    --glow-blue: rgba(224, 67, 0, 0.4);
}

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

body {
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Gradient Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(250, 92, 6, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(224, 67, 0, 0.06) 0%, transparent 50%);
    z-index: -1;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

section {
    padding: 5rem 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Logo Styles */
.logo-header {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0 2rem;
    width: 100%;
    position: relative;
    z-index: 100;
}

.main-logo {
    height: 52px;
    width: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    transition: all 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(250, 92, 6, 0.3));
}



/* === HERO SECTION - VSL FIRST === */
.hero-vsl {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Title - Large and Bold */
.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-align: center;
}

/* Hero Subtitle - Larger */
.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.3;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* VSL Wrapper - MASSIVE AND CENTERED */
.vsl-wrapper {
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 24px;
    border: 2px solid var(--glass-border);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px var(--glow-cyan);
    position: relative;
    overflow: hidden;
    margin: 0 auto 1rem;
    transition: all 0.4s ease;
}

.vsl-wrapper:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 140px var(--glow-cyan);
}

/* Animated Border Glow */
.vsl-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg,
            var(--accent-cyan),
            var(--accent-blue),
            var(--accent-purple),
            var(--accent-cyan));
    border-radius: 24px;
    opacity: 0.6;
    filter: blur(20px);
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.4;
    }
}

/* Play Button - Premium */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 24px solid white;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 6px;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 40px var(--glow-cyan);
}

/* Hero Text - Below Video */
.hero-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(250, 92, 6, 0.1);
    border: 1px solid rgba(250, 92, 6, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
}

.warning-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
}

.warning-badge span {
    color: #ef4444;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.trust-badge i {
    color: var(--accent-cyan);
}

/* CTA Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

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

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--glow-cyan);
}

/* Scarcity Badge */
.scarcity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ef4444;
}

/* === SECTIONS === */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Mechanism Cards */
.mechanism-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.mechanism-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.mechanism-card:hover::before {
    transform: translateX(100%);
}

.mechanism-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(250, 92, 6, 0.2);
}

.mechanism-number {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(250, 92, 6, 0.1);
    border: 1px solid rgba(250, 92, 6, 0.3);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}

/* Case Study Cards */
.case-study-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
}

.case-study-image {
    width: 100%;
    height: 200px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
}

.case-study-stats {
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--accent-cyan);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.case-study-stats div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.case-study-stats div:last-child {
    margin-bottom: 0;
}

/* Offer Stack */
.stack-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.stack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.stack-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.stack-value {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-weight: 600;
}

.price-card {
    background: linear-gradient(135deg, rgba(250, 92, 6, 0.1), rgba(59, 130, 246, 0.1));
    border: 2px solid var(--accent-cyan);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
}

.price-large {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin: 1rem 0;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-question span {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Countdown */
.countdown-box {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
}

.time-unit {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    min-width: 100px;
    text-align: center;
}

.time-val {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
}

.time-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* Guarantee Section */
.guarantee-card {
    background: linear-gradient(135deg, rgba(250, 92, 6, 0.05), rgba(59, 130, 246, 0.05));
    border: 2px solid var(--accent-cyan);
    border-radius: 24px;
    padding: 4rem;
}

/* Two Paths */
.path-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.path-negative {
    border-color: rgba(239, 68, 68, 0.3);
}

.path-positive {
    border-color: rgba(250, 92, 6, 0.3);
    background: linear-gradient(135deg, rgba(250, 92, 6, 0.05), transparent);
}

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

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0;
    text-align: center;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .price-card {
        position: static;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

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

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

    .vsl-wrapper {
        max-width: 100%;
    }

    .trust-badges {
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }
}

/* Scroll Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mt-4 {
    margin-top: 4rem;
}

/* === PAYMENT MODAL === */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.payment-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.payment-modal-content {
    background: var(--bg-dark);
    border: 2px solid var(--glass-border);
    border-radius: 24px;
    max-width: 550px;
    width: 95%;
    max-height: 95vh;
    overflow-y: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-modal-content::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Safari */
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.payment-modal-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-modal-header h2 {
    font-size: 1.4rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.payment-modal-body {
    padding: 1rem 1.5rem 1.5rem;
}

.modal-step {
    display: none !important;
    animation: fadeIn 0.4s ease forwards;
}

.modal-step.active {
    display: block !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

input:focus {
    outline: none;
    border-color: var(--accent-cyan) !important;
    background: rgba(250, 92, 6, 0.08) !important;
    box-shadow: 0 0 15px rgba(250, 92, 6, 0.1);
}


.payment-option {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    /* Remove underline for links */
    color: var(--text-primary);
    /* Ensure white text */
}

/* Force links in payment options to be bright white */
a.payment-option,
a.payment-option:visited,
a.payment-option:hover,
a.payment-option:active {
    color: #ffffff !important;
    text-decoration: none !important;
}

.payment-option:hover {
    border-color: #fa5c06;
    background: rgba(250, 92, 6, 0.08);
    /* Slightly brighter hover */
    transform: translateX(4px);
}

/* Hide icon container styles if we are removing icons */
.payment-option-icon {
    display: none;
}

.payment-option-content {
    flex: 1;
}

.payment-option-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    /* Bright white */
}

.payment-option-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    /* Clear secondary text */
}

.payment-option-badge {
    background: var(--accent-cyan);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

footer {
    background: #050505;
    padding: 5rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-branding {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 30px;
    width: auto;
    margin-bottom: 2rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(250, 92, 6, 0.2));
}

/* Responsive Spacing Utilities */
.mt-responsive {
    margin-top: 4rem;
}

.mb-responsive {
    margin-bottom: 4rem;
}

.mt-large-responsive {
    margin-top: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}


.copy-btn {
    background: rgba(250, 92, 6, 0.1);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-btn:hover {
    background: rgba(250, 92, 6, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 992px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .logo-header {
        padding: 1rem 0 0;
        display: flex;
        justify-content: center;
    }

    .main-logo {
        height: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-branding {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 1.8rem;
        padding: 0 0.5rem;
    }

    .warning-badge {
        padding: 0.6rem 1.2rem;
    }

    .warning-badge span {
        font-size: 0.7rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .glass-card {
        padding: 1.5rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        margin-bottom: 1.8rem;
    }

    .btn {
        width: 100%;
        padding: 1.1rem 1.5rem;
        font-size: 0.9rem;
    }

    .vsl-wrapper {
        border-radius: 12px;
        max-width: 100%;
        width: calc(100% + 1rem);
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }

    .trust-badges {
        display: none;
    }

    .price-large {
        font-size: 3.5rem;
    }

    .mt-responsive {
        margin-top: 2rem;
    }

    .mb-responsive {
        margin-bottom: 2rem;
    }

    .mt-large-responsive {
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

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

    section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

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

/* Crypto Payment Styles */
.crypto-details {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    margin-top: 1rem;
    text-align: center;
    display: none;
    /* Hidden until crypto option is clicked */
}

.crypto-details.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.qr-code {
    width: 200px;
    height: 200px;
    margin: 1rem auto;
    border-radius: 12px;
    background: white;
    padding: 10px;
}

.address-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 1px dashed var(--accent-cyan);
    font-family: monospace;
    font-size: 0.9rem;
    word-break: break-all;
    margin: 1rem 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.address-box:hover {
    background: rgba(250, 92, 6, 0.1);
}

.copy-hint {
    font-size: 0.75rem;
    color: var(--accent-cyan);
    margin-top: 0.5rem;
}

/* Mobile Modal Optimization */
@media (max-width: 768px) {
    .payment-modal-content {
        width: 98%;
        max-height: 98vh;
        border-radius: 16px;
    }

    .payment-modal-header {
        padding: 1.25rem 1.5rem;
    }

    .payment-modal-header h2 {
        font-size: 1.4rem;
    }

    .payment-modal-body {
        padding: 1rem 1.5rem 1.5rem;
    }

    .payment-option {
        padding: 1rem;
    }

    .payment-option-title {
        font-size: 1rem;
    }

    .payment-option-desc {
        font-size: 0.85rem;
    }

    .crypto-details {
        padding: 1rem;
    }

    .qr-code {
        width: 150px;
        height: 150px;
    }
}