/* ========================================
   GOLD RUSH ALGO - STYLES
   ======================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4AF37;
    --gold-dark: #B8941E;
    --gold-light: #F4E4B7;
    --dark-bg: #0A0A0A;
    --dark-card: #1A1A1A;
    --dark-border: #2A2A2A;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --accent-green: #10B981;
    --accent-red: #EF4444;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--dark-border);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 75px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-gold);
}

.cta-button-small {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: #000000 !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    color: #000000 !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    border-bottom: 1px solid var(--dark-border);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 10px;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--primary-gold);
}

/* ========================================
   LIVE NOTIFICATION POPUP
   ======================================== */
.notification-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--dark-card);
    border: 1px solid var(--primary-gold);
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    z-index: 9999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s ease;
    max-width: 350px;
}

.notification-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-icon {
    font-size: 24px;
}

.notification-text strong {
    color: var(--primary-gold);
    font-weight: 600;
}

.notification-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 140px 0 80px;
    text-align: center;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    margin: 40px 0 20px;
}

.hero-note {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Video Section */
.video-container {
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-cta {
    text-align: center;
    margin-top: 40px;
}

.video-cta p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-weight: 500;
}

/* ========================================
   BUTTONS & CTA
   ======================================== */
.cta-button {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: #000000 !important;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    color: #000000 !important;
}

.cta-button-large {
    padding: 20px 50px;
    font-size: 20px;
}

.cta-button-full {
    width: 100%;
    padding: 18px;
}

.pulse {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
}

/* ========================================
   SECTIONS
   ======================================== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
}

/* Social Proof Section */
.social-proof {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 50%, var(--dark-bg) 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-bg);
}

.reviewer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.reviewer-location {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.review-stars {
    font-size: 1.2rem;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 500;
}

/* Problem Section */
.problem-section {
    background: var(--dark-card);
    text-align: center;
}

.problem-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 20px auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.problem-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.problem-icon {
    font-size: 3rem;
}

.problem-item p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.solution-text {
    font-size: 1.3rem;
    color: var(--text-primary);
    max-width: 800px;
    margin: 40px auto 0;
}

/* Features Section */
.features-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 20px auto 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.cta-center {
    text-align: center;
    margin-top: 60px;
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

/* Love Section */
.love-section {
    background: var(--dark-card);
}

.love-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.love-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.love-item:hover {
    border-color: var(--primary-gold);
    transform: translateX(5px);
}

.check-icon {
    font-size: 1.5rem;
    color: var(--accent-green);
    flex-shrink: 0;
}

.love-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 50%, var(--dark-bg) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--dark-card);
    border: 2px solid var(--dark-border);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.pricing-card-premium {
    border-color: var(--primary-gold);
    background: linear-gradient(180deg, var(--dark-card) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-badge-premium {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: var(--dark-bg);
}

.pricing-title {
    font-size: 2rem;
    margin: 20px 0;
    text-align: center;
}

.pricing-price {
    text-align: center;
    margin: 30px 0 10px;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.pricing-yearly {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.save-badge {
    color: var(--accent-green);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--dark-border);
}

.pricing-bonuses {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--primary-gold);
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
}

.bonuses-title {
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.pricing-bonuses ul {
    list-style: none;
}

.pricing-bonuses li {
    padding: 5px 0;
    color: var(--text-secondary);
}

.pricing-scarcity {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--accent-red);
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    text-align: center;
}

.pricing-scarcity p {
    margin: 10px 0;
}

.scarcity-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cta-button-premium {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
}

.pricing-notice {
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--accent-red);
    border-radius: 8px;
}

/* What You Get Section */
.what-you-get-section {
    background: var(--dark-card);
}

.get-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.get-item {
    text-align: center;
    padding: 30px;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.get-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.get-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.get-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.get-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.get-cta-text {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.get-note {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    background: var(--dark-bg);
}

.faq-grid {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-gold);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 30px 25px 30px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer ul {
    list-style-position: inside;
    margin-top: 10px;
}

.faq-answer li {
    margin: 5px 0;
}

.faq-answer a {
    color: var(--primary-gold);
    text-decoration: underline;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, var(--dark-card) 100%);
    text-align: center;
}

.final-cta-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 20px auto 40px;
}

.final-cta-note {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin: 10px 0;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--dark-border);
    color: var(--text-secondary);
}

/* ========================================
   PAYMENT SECTION
   ======================================== */
.payment-section {
    background: linear-gradient(180deg, var(--dark-card) 0%, var(--dark-bg) 100%);
    padding: 100px 0;
}

.plan-selector-container {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
    padding: 30px;
    margin: 30px auto 50px;
    text-align: center;
    max-width: 600px;
}

.plan-selector-container label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.plan-selector-container select {
    width: 100%;
    max-width: 400px;
    padding: 18px 20px;
    background: var(--dark-bg);
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-selector-container select:hover {
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.plan-selector-container select:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.payment-form-inline {
    max-width: 900px;
    margin: 0 auto;
}

.form-section {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
}

.form-section h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--dark-border);
}

.billing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.radio-option {
    display: block;
    background: var(--dark-bg);
    border: 2px solid var(--dark-border);
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.radio-option:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-option input[type="radio"]:checked + .radio-content {
    color: var(--primary-gold);
}

.radio-option input[type="radio"]:checked ~ * {
    border-color: var(--primary-gold);
}

.radio-option:has(input:checked) {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.radio-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.radio-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-gold);
}

.save-tag {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 8px;
}

.radio-option-recommended {
    position: relative;
}

.radio-option-recommended::before {
    content: "⭐ BEST VALUE";
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.payment-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--dark-border);
}

.payment-footer p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.payment-footer a {
    color: var(--primary-gold);
    font-weight: 600;
    text-decoration: underline;
}

.payment-instructions-toggle {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.payment-instructions-toggle summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-gold);
    list-style: none;
    user-select: none;
}

.payment-instructions-toggle summary::-webkit-details-marker {
    display: none;
}

.payment-instructions-toggle ol {
    margin-top: 20px;
    padding-left: 25px;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: left;
}

.payment-instructions-toggle li {
    margin: 10px 0;
}

/* ========================================
   SUCCESS MODAL (Keep Simple)
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--dark-card);
    border: 2px solid var(--primary-gold);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-gold);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Payment Method Selector */
.payment-method-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.payment-method-option {
    display: block;
    background: var(--dark-bg);
    border: 2px solid var(--dark-border);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.payment-method-option:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.payment-method-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-method-option:has(input:checked) {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.payment-method-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.payment-method-icon {
    font-size: 2.5rem;
}

.payment-method-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.payment-method-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* PayPal Section */
.paypal-info-box {
    background: rgba(0, 112, 240, 0.05);
    border: 1px solid #0070f3;
    border-radius: 8px;
    padding: 25px;
    margin-top: 20px;
}

.paypal-info-box h4 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.paypal-info-box p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 8px 0;
}

.paypal-button-container {
    margin: 25px 0;
    min-height: 50px;
    text-align: center;
}

.paypal-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Crypto Details */
.crypto-details {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--primary-gold);
    border-radius: 8px;
    padding: 25px;
    margin: 25px 0;
}

.crypto-info p {
    margin: 12px 0;
    font-size: 1rem;
}

.address-box {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.address-box input {
    flex: 1;
}

.copy-btn {
    padding: 14px 24px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.copy-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.payment-instruction {
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid var(--accent-red);
    padding: 15px;
    margin-top: 15px;
    font-size: 0.95rem;
    border-radius: 4px;
}

/* Success Modal */
.success-modal-content {
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.success-list {
    text-align: left;
    list-style: none;
    margin: 25px 0;
}

.success-list li {
    padding: 10px;
    margin: 5px 0;
    color: var(--text-secondary);
}

.success-note {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    color: var(--text-secondary);
}

.success-contact {
    margin: 20px 0;
}

.success-contact a {
    color: var(--primary-gold);
    font-weight: 600;
    text-decoration: underline;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .love-grid,
    .get-grid {
        grid-template-columns: 1fr;
    }

    .notification-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }

    .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-section {
        padding: 25px 20px;
    }

    .billing-options {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .address-box {
        flex-direction: column;
    }

    .copy-btn {
        width: 100%;
    }

    .logo img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .cta-button-large {
        padding: 16px 30px;
        font-size: 16px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .video-cta p {
        font-size: 1.1rem;
    }

    .video-cta .cta-button {
        width: 100%;
    }
}

/* ========================================
   BACKTEST DOWNLOAD MODAL
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--dark-card);
    margin: 5% auto;
    padding: 0;
    border: 1px solid var(--primary-gold);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideDown 0.3s ease;
}

.backtest-modal-content {
    max-width: 450px;
}

.modal-header {
    text-align: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--dark-border);
}

.modal-header h2 {
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-size: 1.75rem;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.close-modal {
    color: var(--text-secondary);
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-gold);
}

.backtest-form {
    padding: 30px;
}

.backtest-form .form-group {
    margin-bottom: 20px;
}

.backtest-form label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.backtest-form input,
.backtest-form select {
    width: 100%;
    padding: 12px 15px;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.backtest-form input:focus,
.backtest-form select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.backtest-form .cta-button {
    width: 100%;
    margin-top: 10px;
}

.form-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 15px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   BACKTEST SECTION
   ======================================== */
.backtest-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.backtest-header {
    text-align: center;
    margin-bottom: 50px;
}

.backtest-content {
    max-width: 900px;
    margin: 0 auto;
}

.backtest-video-wrapper {
    /* No background or border - clean look */
}

.backtest-button-wrapper {
    text-align: center;
    margin-top: 30px;
}

/* Backtest CTA Simple */
.backtest-cta-simple {
    padding: 50px 20px;
    text-align: center;
    background: var(--dark-bg);
}

.backtest-cta-simple h3 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.backtest-cta-simple .cta-button {
    margin: 0 auto;
}

/* Responsive Backtest Section */
@media (max-width: 968px) {
    .backtest-cta-simple h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .backtest-section {
        padding: 50px 20px;
    }

    .backtest-video-wrapper {
        padding: 0;
    }

    .backtest-button-wrapper .cta-button-large {
        width: 100%;
    }

    .backtest-cta-simple {
        padding: 40px 20px;
    }

    .backtest-cta-simple h3 {
        font-size: 1.25rem;
    }

    .backtest-cta-simple .cta-button {
        width: 100%;
    }
}

