@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400,500,600,700,800&display=swap');

:root {
    /* 2026 Modern, Light, Fresh Palette */
    --primary: #00c9a7; /* Vibrant yet soft teal-green */
    --primary-dark: #00a88f;
    --primary-light: #e0f7f3; /* Light tint for backgrounds */
    --secondary: #7c3aed; /* Soft violet */
    --secondary-dark: #6d28d9;
    --accent: #f472b6; /* Soft pink accent */
    --dark: #1e293b; /* Lighter slate instead of heavy #0f172a */
    --dark-secondary: #334155;
    --dark-tertiary: #475569;
    --light: #f8fafc; /* Clean light background */
    --light-secondary: #f1f5f9;
    --text: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-reverse: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.04); /* Softer shadows */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 25px 80px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 60px rgba(0, 201, 167, 0.15); /* Reduced glow */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Consistent Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 201, 167, 0.2); }
    50% { box-shadow: 0 4px 30px rgba(0, 201, 167, 0.3); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* Uniform Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { color: var(--text-secondary); }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Uniform Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 201, 167, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 201, 167, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-large { padding: 18px 48px; font-size: 1.125rem; }

/* Uniform Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 41, 59, 0.8); /* Lighter dark */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar { padding: 12px 0; }

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}

.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-login {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 201, 167, 0.2);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Uniform Hero */
.hero {
    padding: 180px 0 120px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 10% 90%, rgba(0, 201, 167, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 90% 10%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.badge {
    display: inline-block;
    background: rgba(0, 201, 167, 0.15);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 201, 167, 0.25);
    margin-bottom: 20px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.hero-buttons { display: flex; gap: 15px; }

/* Uniform Email Preview */
.email-preview {
    background: var(--dark-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.email-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.email-dots { display: flex; gap: 8px; }

.email-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.email-dots span:nth-child(1) { background: #ef4444; }
.email-dots span:nth-child(2) { background: #eab308; }
.email-dots span:nth-child(3) { background: #22c55e; }

.email-subject { color: var(--text-light); font-size: 0.9rem; }

.email-body { padding: 35px; }

.ad-card {
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border: 1px solid rgba(0, 201, 167, 0.3);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
}

.ad-card h3 { color: var(--white); font-size: 1.75rem; margin-bottom: 10px; }
.ad-card p { color: var(--text-light); margin-bottom: 20px; }

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
}

/* Uniform Benefits Section */
.benefits {
    padding: var(--space-xl) 0;
    background: var(--white);
}

.benefits h2 { text-align: center; margin-bottom: 15px; }

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 201, 167, 0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: var(--radius);
}

.benefit-card h3 {
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 1.15rem;
}

.benefit-card p { font-size: 0.95rem; }

/* Uniform How It Works */
.how-it-works {
    padding: var(--space-xl) 0;
    background: var(--dark);
}

.how-it-works h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.5;
    line-height: 1;
}

.feature-content h3 { color: var(--white); margin-bottom: 10px; }
.feature-content p { color: var(--text-light); }

/* Uniform Pricing */
.pricing {
    padding: var(--space-xl) 0;
    background: var(--light);
}

.pricing h2 { text-align: center; margin-bottom: 15px; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    background: linear-gradient(145deg, var(--dark-secondary) 0%, var(--dark) 100%);
    transform: scale(1.05);
    border: 1px solid rgba(0, 201, 167, 0.3);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-12px);
    box-shadow: var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--dark);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header h3 { font-size: 1.75rem; margin-bottom: 10px; }
.pricing-header p { margin-bottom: 20px; }

.pricing-card.popular .pricing-header h3,
.pricing-card.popular .pricing-header p { color: var(--white); }

.pricing-price { margin-bottom: 30px; }

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
}

.pricing-card.popular .price { color: var(--white); }

.period { color: var(--text-secondary); font-size: 1rem; }
.pricing-card.popular .period { color: var(--text-light); }

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-secondary);
    color: var(--text-secondary);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-card .btn { width: 100%; }

.guarantee {
    text-align: center;
    margin-top: 30px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Uniform FAQ */
.faq {
    padding: var(--space-xl) 0;
    background: var(--white);
}

.faq h2 { text-align: center; margin-bottom: 15px; }

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--light);
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-item[open] summary::after { content: '-'; }

.faq-item p {
    padding: 0 25px 20px;
    color: var(--text-secondary);
}

/* Uniform Payment Methods */
.payment-methods {
    padding: var(--space-xl) 0;
    background: var(--dark);
}

.payment-methods h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
}

.payment-methods .section-subtitle { color: var(--text-light); }

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.payment-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.payment-icon { font-size: 2.5rem; margin-bottom: 15px; }
.payment-card h3 { color: var(--white); margin-bottom: 10px; }
.payment-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 15px; }

.payment-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Uniform Credit Packages */
.credit-packages {
    padding: var(--space-xl) 0;
    background: var(--light);
}

.credit-packages h2 { text-align: center; margin-bottom: 15px; }

.credit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.credit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.credit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.credit-card.popular {
    background: var(--dark);
    transform: scale(1.05);
}

.credit-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.credit-badge-pack {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--dark);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.credit-card h3 { font-size: 1.5rem; margin: 15px 0 10px; }
.credit-card.popular h3 { color: var(--white); }

.credit-price { margin-bottom: 10px; }

.credit-price .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
}

.credit-card.popular .price { color: var(--white); }

.credit-price .per { color: var(--text-secondary); }
.credit-card.popular .per { color: var(--text-light); }

.credit-note {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.credit-features {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.credit-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-secondary);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.credit-features li:last-child { border-bottom: none; }

.credit-card .btn { width: 100%; }

/* Uniform Testimonials */
.testimonials {
    padding: var(--space-xl) 0;
    background: var(--dark);
}

.testimonials h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
}

.testimonials .section-subtitle { color: var(--text-light); }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
}

.author-info h4 { color: var(--white); font-size: 1rem; }
.author-info p { color: var(--text-light); font-size: 0.85rem; }

/* Uniform Bonus Offers */
.bonus-offers {
    padding: 60px 0;
    background: var(--gradient);
}

.bonus-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 40px 50px;
    gap: 40px;
}

.bonus-content { flex: 1; }

.bonus-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.bonus-content h2 { color: var(--white); margin-bottom: 15px; }
.bonus-content p { color: var(--text-light); margin-bottom: 20px; }

.bonus-timer { margin-bottom: 25px; }

.timer-label {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.timer-countdown { display: flex; gap: 10px; }

.timer-block {
    background: rgba(0, 201, 167, 0.2);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 10px 15px;
    text-align: center;
    min-width: 65px;
}

.timer-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.timer-text {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.bonus-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-light {
    background: var(--white);
    color: var(--dark);
}

.btn-light:hover { background: var(--primary-light); }

.bonus-note {
    color: var(--text-light);
    font-size: 0.85rem;
}

.bonus-visual { flex-shrink: 0; }

.credits-pile {
    background: var(--gradient);
    border-radius: var(--radius-lg);
    padding: 40px 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pile-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
}

.pile-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 1px;
}

/* Uniform Affiliate Program */
.affiliate-program {
    padding: var(--space-xl) 0;
    background: var(--light);
}

.affiliate-program h2 { text-align: center; margin-bottom: 15px; }

.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.affiliate-tier {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.affiliate-tier:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tier-header { margin-bottom: 15px; }

.tier-header h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.tier-rate {
    display: inline-block;
    background: var(--gradient);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.affiliate-tier > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.tier-header h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto;
}

.affiliate-tier ul {
    list-style: none;
    text-align: left;
}

.affiliate-tier ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-secondary);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.affiliate-tier ul li:last-child { border-bottom: none; }

.affiliate-cta {
    text-align: center;
    margin-top: 40px;
}

/* Uniform Leaderboard */
.leaderboard {
    padding: var(--space-xl) 0;
    background: var(--dark);
}

.leaderboard h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
}

.leaderboard .section-subtitle { color: var(--text-light); }

.leaderboard-table {
    max-width: 700px;
    margin: 50px auto 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.leaderboard-header {
    display: grid;
    grid-template-columns: 60px 1fr 100px 120px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leaderboard-row {
    display: grid;
    grid-template-columns: 60px 1fr 100px 120px;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
}

.leaderboard-row:last-child { border-bottom: none; }

.leaderboard-row.top { background: rgba(255, 215, 0, 0.05); }

.leaderboard-row .rank { font-size: 1.5rem; }

.leaderboard-row .member {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.member-name { color: var(--white); font-weight: 600; }
.member-country { font-size: 0.8rem; color: var(--text-light); }

.leaderboard-row .referrals,
.leaderboard-row .earnings { color: var(--white); font-weight: 600; }

.leaderboard-row .earnings { color: var(--primary); }

.leaderboard-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Uniform Live Demo */
.live-demo {
    padding: var(--space-xl) 0;
    background: var(--light);
}

.live-demo h2 { text-align: center; margin-bottom: 15px; }

.demo-container {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 40px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.demo-preview {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.demo-header {
    background: var(--dark);
    padding: 15px 20px;
}

.demo-label { color: var(--text-light); font-size: 0.9rem; }

.demo-email { padding: 25px; }

.demo-from, .demo-subject {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.demo-body {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-secondary);
}

.demo-ad {
    background: var(--light);
    border-radius: var(--radius);
    padding: 25px;
}

.demo-ad h3 { color: var(--dark); margin-bottom: 10px; }
.demo-ad p { color: var(--text-secondary); margin-bottom: 15px; }

.demo-cta {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
}

.demo-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--light-secondary);
}

.demo-footer small {
    color: var(--text-light);
    font-size: 0.75rem;
}

.demo-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.demo-stat {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.stat-txt {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.demo-cta {
    text-align: center;
    margin-top: 40px;
}

/* Uniform CTA */
.cta {
    padding: 120px 0;
    background: var(--gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 400px; height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -150px; right: -100px;
    width: 500px; height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 35px;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cta .btn-primary:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Uniform Trust Badges */
.trust-badges {
    padding: 40px 0;
    background: var(--dark);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-icon { font-size: 2rem; flex-shrink: 0; }

.trust-text h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 3px; }
.trust-text p { color: var(--text-light); font-size: 0.8rem; }

/* Uniform Promo */
.promo {
    padding: var(--space-xl) 0;
    background: var(--dark);
}

.promo h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
}

.promo .section-subtitle { color: var(--text-light); }

.promo-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-section h3 { color: var(--primary); margin-bottom: 15px; }

.promo-section > p { color: var(--text-light); margin-bottom: 25px; }

.promo-codes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promo-code {
    background: var(--dark-secondary);
    border-radius: var(--radius);
    padding: 20px;
}

.promo-code h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.promo-code code, .promo-code textarea {
    display: block;
    width: 100%;
    background: var(--dark-tertiary);
    color: var(--text-light);
    padding: 15px;
    border-radius: var(--radius-sm);
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.9rem;
    border: none;
    resize: none;
}

.promo-code textarea { min-height: 150px; }

.btn-copy {
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-copy:hover { background: var(--primary-light); }

/* Uniform Banner Previews */
.banner-sizes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.banner-preview {
    background: var(--dark-secondary);
    border-radius: var(--radius);
    padding: 20px;
}

.banner-preview h4 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.banner-demo {
    background: var(--gradient);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--dark);
}

.banner-demo.small {
    width: 125px; height: 125px;
    margin: 0 auto 15px;
}

.banner-demo.medium {
    width: 100%; max-width: 468px; height: 60px;
    margin: 0 auto 15px;
    flex-direction: row; gap: 15px;
}

.banner-demo.large {
    width: 100%; max-width: 600px; height: 300px;
    margin: 0 auto 15px;
}

.banner-demo .logo-text {
    font-size: 1.5rem; font-weight: 800;
}

.banner-demo .tagline {
    font-size: 0.9rem; font-weight: 500; margin: 5px 0;
}

.banner-demo .cta-btn {
    background: var(--dark);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-top: 10px;
}

.btn-small {
    background: var(--dark);
    color: var(--white);
    padding: 6px 15px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.8rem;
}

.banner-preview textarea {
    width: 100%;
    background: var(--dark-tertiary);
    color: var(--text-light);
    padding: 10px;
    border-radius: var(--radius-sm);
    font-family: monospace;
    font-size: 0.75rem;
    border: none;
    resize: none;
}

/* Uniform Mailing List Builder */
.mailing-list-builder {
    padding: var(--space-xl) 0;
    background: var(--light);
}

.mailing-list-builder h2 { text-align: center; margin-bottom: 15px; }

.builder-preview {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    margin-top: 50px;
    box-shadow: var(--shadow);
}

.builder-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.builder-feature { text-align: center; }

.builder-feature .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.builder-notify {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--light-secondary);
}

.builder-notify p {
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.notify-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.notify-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--light-secondary);
    border-radius: var(--radius);
    font-size: 1rem;
    outline: none;
}

.notify-form input:focus { border-color: var(--primary); }

/* Uniform Footer */
footer {
    background: linear-gradient(180deg, var(--dark) 0%, #0a0f1a 100%);
    padding: 80px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 1.75rem;
}

.footer-brand p {
    color: var(--text-light);
    max-width: 320px;
    line-height: 1.7;
}

.footer-links { display: flex; gap: 60px; }

.footer-column h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-column ul { list-style: none; }

.footer-column li { margin-bottom: 12px; }

.footer-column a { color: var(--text-light); }
.footer-column a:hover { color: var(--primary); }

.footer-bottom {
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Uniform Responsive Design */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; }
    .benefits-grid, .pricing-grid, .banner-sizes {
        grid-template-columns: repeat(2, 1fr);
    }
    .builder-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .nav-links { display: none; }
    .mobile-menu { display: flex; }
    
    .hero-stats { flex-wrap: wrap; gap: 30px; }
    .hero-buttons { flex-direction: column; }
    
    .benefits-grid, .pricing-grid, .features-list, .banner-sizes, .builder-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular { transform: none; }
    
    .footer-content { grid-template-columns: 1fr; }
    .footer-links { gap: 40px; }
    .notify-form { flex-direction: column; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero { padding: 140px 0 60px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .benefit-card, .pricing-card { padding: 25px; }
    .promo-section { padding: 25px; }
}