/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #10a37f;
    --primary-dark: #0d8a6a;
    --secondary-color: #ff6b35;
    --accent-color: #6366f1;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #10a37f 0%, #0d8a6a 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-accent: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sticky CTA Bar */
.sticky-cta-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.sticky-cta-bar.show {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.sticky-offer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-price {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.sticky-original {
    font-size: 16px;
    text-decoration: line-through;
    opacity: 0.8;
}

.sticky-savings {
    background: var(--gradient-secondary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.sticky-cta-btn {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Header */
.header {
    background: var(--bg-primary);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 32px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-title .price {
    display: block;
    font-size: 36px;
    color: var(--secondary-color);
    margin-top: 16px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--text-primary);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.hero-cta {
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 16px;
}

.cta-btn.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.cta-note i {
    color: var(--primary-color);
}

/* Hero Right Side */
.countdown-container {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 32px;
    text-align: center;
}

.countdown-container h3 {
    margin-bottom: 24px;
    color: var(--text-primary);
    font-size: 20px;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    background: var(--bg-secondary);
    padding: 16px 8px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
}

.scarcity-indicator {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.scarcity-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    margin-bottom: 16px;
    overflow: hidden;
}

.scarcity-fill {
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 47%;
}

.scarcity-indicator p {
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.scarcity-indicator i {
    color: var(--secondary-color);
}

/* Trust Signals */
.trust-signals {
    padding: 60px 0;
    background: var(--bg-primary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.trust-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-secondary);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.trust-item p {
    color: var(--text-secondary);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 36px;
    color: white;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars i {
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-content p {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--text-primary);
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.pricing-card {
    background: white;
    max-width: 500px;
    margin: 0 auto;
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 2px solid var(--primary-color);
    position: relative;
}

.pricing-card::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.price-display {
    margin-bottom: 16px;
}

.current-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.original-price {
    font-size: 24px;
    text-decoration: line-through;
    color: var(--text-light);
    margin: 0 16px;
}

.savings {
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
}

.pricing-period {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 32px;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-align: left;
}

.pricing-feature i {
    color: var(--primary-color);
    font-size: 18px;
}

.pricing-cta {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto 24px;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-note {
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-note i {
    color: var(--secondary-color);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-secondary);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.show {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.final-cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.final-offer {
    margin-bottom: 32px;
}

.offer-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
}

.offer-price .current {
    font-size: 48px;
    font-weight: 800;
}

.offer-price .original {
    font-size: 24px;
    text-decoration: line-through;
    opacity: 0.7;
}

.offer-savings {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
}

.final-cta-btn {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.final-note {
    font-size: 16px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.final-note i {
    color: #fbbf24;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Exit Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.exit-popup.show {
    display: flex;
}

.exit-popup-content {
    background: white;
    padding: 48px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.exit-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-secondary);
}

.exit-popup h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.exit-popup p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.exit-offer {
    margin-bottom: 24px;
}

.exit-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

.exit-original {
    font-size: 18px;
    text-decoration: line-through;
    color: var(--text-light);
    margin-left: 16px;
}

.exit-cta {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.exit-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.exit-note {
    font-size: 14px;
    color: var(--text-secondary);
}

/* WhatsApp Chat Widget */
.whatsapp-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
    background: #128C7E;
}

.whatsapp-btn i {
    font-size: 24px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Trusted Payment Badges */
.trusted-payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 600; /* Increased font weight */
    color: #000; /* Ensure text is black and visible */
}

.badge-item i {
    color: var(--primary-color);
    font-size: 16px;
}

/* Hero Trusted Badges */
.hero-trusted-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge i {
    color: #fbbf24;
    font-size: 14px;
}

/* Sticky CTA Trusted Badges */
.sticky-trusted {
    display: flex;
    gap: 8px;
    align-items: center;
}

.sticky-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sticky-badge i {
    color: #fbbf24;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title .price {
        font-size: 28px;
    }
    
    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .countdown-number {
        font-size: 24px;
        padding: 12px 6px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .sticky-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .nav {
        display: none;
    }
    
    .whatsapp-chat-widget {
        right: 10px;
        bottom: 10px;
    }
    
    .whatsapp-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .whatsapp-btn i {
        font-size: 20px;
    }
    
    /* Mobile-specific referral program */
    .referral-program {
        padding: 30px 0;
    }
    
    .referral-card {
        padding: 20px 12px;
        margin: 0 4px;
        border-radius: 12px;
        border-width: 1px;
    }
    
    .referral-card::before {
        font-size: 9px;
        padding: 4px 12px;
        top: -6px;
        border-radius: 12px;
    }
    
    .referral-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 12px;
        border-radius: 10px;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto;
    }
    
    .benefit-icon i {
        font-size: 18px;
    }
    
    .benefit-text h3 {
        font-size: 16px;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    
    .benefit-text p {
        font-size: 13px;
        line-height: 1.4;
        margin: 0;
    }
    
    .referral-steps {
        margin-bottom: 20px;
    }
    
    .referral-steps h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        margin-bottom: 12px;
        padding: 12px;
        border-radius: 8px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .step-item p {
        font-size: 13px;
        line-height: 1.4;
        margin: 0;
    }
    
    .referral-btn {
        padding: 14px 20px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
        border-radius: 25px;
    }
    
    .referral-note {
        font-size: 11px;
        text-align: center;
        padding: 8px 12px;
        line-height: 1.3;
        margin: 0 8px;
    }
    
    /* Additional mobile optimizations for referral program */
    .referral-program {
        padding: 20px 0;
    }
    
    .referral-card {
        margin: 0 8px;
        border-width: 1px;
    }
    
    .referral-card::before {
        font-size: 8px;
        padding: 3px 10px;
        top: -5px;
    }
    
    .referral-benefits {
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .benefit-item {
        padding: 10px;
        gap: 8px;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
    }
    
    .benefit-icon i {
        font-size: 16px;
    }
    
    .benefit-text h3 {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .benefit-text p {
        font-size: 12px;
    }
    
    .referral-steps {
        margin-bottom: 16px;
    }
    
    .referral-steps h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .referral-steps h3::after {
        width: 40px;
        height: 2px;
    }
    
    .step-item {
        padding: 10px;
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .step-item p {
        font-size: 12px;
    }
    
    .referral-btn {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 20px;
    }
    
    /* Mobile section header optimization */
    .referral-program .section-header h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .referral-program .section-header p {
        font-size: 14px;
        padding: 0 16px;
    }
    
    /* Mobile trusted payment badges */
    .trusted-payment-badges {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    
    .badge-item {
        justify-content: center;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .hero-trusted-badges {
        gap: 8px;
        justify-content: center;
    }
    
    .trust-badge {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .sticky-trusted {
        display: none;
    }
    
    /* Mobile thank you page */
    .thank-you-content h1 {
        font-size: 28px;
    }
    
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .support-options {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile referral modal */
    .referral-modal-content {
        padding: 32px 24px;
        width: 95%;
    }
    
    .code-value {
        font-size: 20px;
        padding: 8px;
    }
    
    .referral-instructions ol {
        padding-left: 16px;
    }
    
    /* Mobile policy pages */
    .policy-content {
        padding: 40px 0;
    }
    
    .policy-header h1 {
        font-size: 32px;
        flex-direction: column;
        gap: 12px;
    }
    
    .policy-section {
        padding: 24px 16px;
        margin: 0 8px 24px 8px;
    }
    
    .policy-section h2 {
        font-size: 24px;
    }
    
    .policy-section h3 {
        font-size: 20px;
    }
    
    /* Mobile contact page */
    .contact-content {
        padding: 40px 0;
    }
    
    .contact-header h1 {
        font-size: 32px;
        flex-direction: column;
        gap: 12px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 0 8px 40px 8px;
    }
    
    .contact-form-section, .contact-info-section {
        padding: 24px 16px;
    }
    
    .contact-form-section h2, .contact-info-section h2 {
        font-size: 24px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .form-group input, .form-group select, .form-group textarea {
        padding: 14px;
        font-size: 16px;
    }
    
    .submit-btn {
        padding: 16px 24px;
        font-size: 16px;
        width: 100%;
    }
    
    .contact-methods {
        gap: 16px;
    }
    
    .contact-method {
        padding: 16px;
        gap: 16px;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
    }
    
    .method-icon i {
        font-size: 18px;
    }
    
    .method-content h3 {
        font-size: 16px;
    }
    
    .method-content p {
        font-size: 14px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .category-item {
        padding: 14px;
        gap: 10px;
    }
    
    .contact-faq {
        padding: 24px 16px;
        margin: 0 8px 24px 8px;
    }
    
    .contact-faq h2 {
        font-size: 24px;
        flex-direction: column;
        gap: 12px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item h3 {
        font-size: 16px;
    }
    
    .faq-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .cta-btn {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .pricing-card {
        padding: 24px 16px;
    }
    
    .current-price {
        font-size: 36px;
    }
    
    .whatsapp-chat-widget {
        right: 8px;
        bottom: 8px;
    }
    
    .whatsapp-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .whatsapp-btn i {
        font-size: 18px;
    }
    
    /* Extra small screen referral program optimization */
    .referral-program {
        padding: 16px 0;
    }
    
    .referral-card {
        padding: 16px 8px;
        margin: 0 4px;
    }
    
    .referral-benefits {
        gap: 6px;
    }
    
    .benefit-item {
        padding: 8px;
        gap: 6px;
    }
    
    .benefit-icon {
        width: 36px;
        height: 36px;
    }
    
    .benefit-icon i {
        font-size: 14px;
    }
    
    .benefit-text h3 {
        font-size: 13px;
    }
    
    .benefit-text p {
        font-size: 11px;
    }
    
    .step-item {
        padding: 8px;
        gap: 6px;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    
    .step-item p {
        font-size: 11px;
    }
    
    .referral-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .referral-note {
        font-size: 10px;
        padding: 6px 10px;
        margin: 0 4px;
    }
}

/* Landscape mobile optimization for referral program */
@media (max-width: 768px) and (orientation: landscape) {
    .referral-program {
        padding: 30px 0;
    }
    
    .referral-card {
        padding: 24px 20px;
    }
    
    .referral-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .benefit-item {
        padding: 16px;
        gap: 12px;
    }
    
    .referral-steps {
        margin-bottom: 24px;
    }
    
    .step-item {
        padding: 16px;
        gap: 12px;
    }
}

/* Tablet optimization for referral program */
@media (min-width: 769px) and (max-width: 1024px) {
    .referral-program {
        padding: 60px 0;
    }
    
    .referral-card {
        padding: 32px;
        max-width: 800px;
    }
    
    .referral-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .benefit-item {
        padding: 20px;
        gap: 16px;
    }
    
    .benefit-icon {
        width: 52px;
        height: 52px;
    }
    
    .benefit-icon i {
        font-size: 22px;
    }
    
    .benefit-text h3 {
        font-size: 18px;
    }
    
    .benefit-text p {
        font-size: 15px;
    }
    
    .referral-steps h3 {
        font-size: 22px;
    }
    
    .step-item {
        padding: 18px;
        gap: 16px;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .step-item p {
        font-size: 15px;
    }
    
    .referral-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .referral-note {
        font-size: 13px;
        padding: 10px 18px;
    }
}

/* Large screen optimization for referral program */
@media (min-width: 1025px) {
    .referral-program {
        padding: 100px 0;
    }
    
    .referral-card {
        padding: 56px;
        max-width: 1000px;
    }
    
    .referral-benefits {
        gap: 32px;
        margin-bottom: 48px;
    }
    
    .benefit-item {
        padding: 28px;
        gap: 24px;
    }
    
    .benefit-icon {
        width: 64px;
        height: 64px;
    }
    
    .benefit-icon i {
        font-size: 26px;
    }
    
    .benefit-text h3 {
        font-size: 22px;
    }
    
    .benefit-text p {
        font-size: 16px;
    }
    
    .referral-steps h3 {
        font-size: 26px;
        margin-bottom: 32px;
    }
    
    .step-item {
        padding: 24px;
        gap: 24px;
        margin-bottom: 24px;
    }
    
    .step-number {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .step-item p {
        font-size: 17px;
    }
    
    .referral-btn {
        padding: 20px 40px;
        font-size: 18px;
        border-radius: 30px;
    }
    
    .referral-note {
        font-size: 15px;
        padding: 16px 24px;
        max-width: 600px;
    }
}

/* Ultra-wide screen optimization for referral program */
@media (min-width: 1400px) {
    .referral-program {
        padding: 120px 0;
    }
    
    .referral-card {
        padding: 64px;
        max-width: 1200px;
    }
    
    .referral-benefits {
        gap: 40px;
        margin-bottom: 56px;
    }
    
    .benefit-item {
        padding: 32px;
        gap: 28px;
    }
    
    .benefit-icon {
        width: 72px;
        height: 72px;
    }
    
    .benefit-icon i {
        font-size: 28px;
    }
    
    .benefit-text h3 {
        font-size: 24px;
    }
    
    .benefit-text p {
        font-size: 18px;
    }
    
    .referral-steps h3 {
        font-size: 28px;
        margin-bottom: 36px;
    }
    
    .step-item {
        padding: 28px;
        gap: 28px;
        margin-bottom: 28px;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
    
    .step-item p {
        font-size: 18px;
    }
    
    .referral-btn {
        padding: 24px 48px;
        font-size: 20px;
        border-radius: 35px;
    }
    
    .referral-note {
        font-size: 16px;
        padding: 20px 28px;
        max-width: 700px;
    }
}

/* Print optimization for referral program */
@media print {
    .referral-program {
        padding: 40px 0;
        background: white !important;
    }
    
    .referral-card {
        box-shadow: none !important;
        border: 2px solid #000 !important;
        page-break-inside: avoid;
    }
    
    .referral-card::before {
        background: #000 !important;
        color: white !important;
    }
    
    .benefit-item {
        border: 1px solid #ccc !important;
        background: white !important;
    }
    
    .step-item {
        border: 1px solid #ccc !important;
        background: white !important;
    }
    
    .referral-btn {
        background: #000 !important;
        color: white !important;
        border: 2px solid #000 !important;
    }
    
    .referral-note {
        border: 1px solid #ccc !important;
        background: white !important;
    }
}

/* High contrast mode optimization for referral program */
@media (prefers-contrast: high) {
    .referral-program {
        background: white !important;
    }
    
    .referral-card {
        border: 3px solid #000 !important;
        background: white !important;
    }
    
    .referral-card::before {
        background: #000 !important;
        color: white !important;
        border: 2px solid #000 !important;
    }
    
    .benefit-item {
        border: 2px solid #000 !important;
        background: white !important;
    }
    
    .benefit-icon {
        background: #000 !important;
        border: 2px solid #000 !important;
    }
    
    .benefit-icon i {
        color: white !important;
    }
    
    .step-item {
        border: 2px solid #000 !important;
        background: white !important;
    }
    
    .step-number {
        background: #000 !important;
        border: 2px solid #000 !important;
    }
    
    .referral-btn {
        background: #000 !important;
        color: white !important;
        border: 3px solid #000 !important;
    }
    
    .referral-note {
        border: 2px solid #000 !important;
        background: white !important;
    }
}

/* Reduced motion optimization for referral program */
@media (prefers-reduced-motion: reduce) {
    .referral-card,
    .benefit-item,
    .step-item,
    .referral-btn,
    .referral-note,
    .benefit-icon,
    .step-number {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
    
    .referral-card:hover,
    .benefit-item:hover,
    .step-item:hover,
    .referral-btn:hover,
    .referral-note:hover,
    .benefit-item:hover .benefit-icon,
    .step-item:hover .step-number {
        transform: none !important;
        box-shadow: var(--shadow-md) !important;
    }
}

/* Dark mode optimization for referral program */
@media (prefers-color-scheme: dark) {
    .referral-program {
        background: #1a1a1a !important;
    }
    
    .referral-card {
        background: #2d2d2d !important;
        border-color: #4a4a4a !important;
        color: #ffffff !important;
    }
    
    .benefit-item {
        background: #3a3a3a !important;
        border-color: #4a4a4a !important;
        color: #ffffff !important;
    }
    
    .step-item {
        background: #3a3a3a !important;
        border-color: #4a4a4a !important;
        color: #ffffff !important;
    }
    
    .benefit-text h3,
    .step-item p {
        color: #ffffff !important;
    }
    
    .benefit-text p {
        color: #cccccc !important;
    }
    
    .referral-note {
        background: rgba(59, 130, 246, 0.1) !important;
        border-color: #4a4a4a !important;
        color: #ffffff !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.hidden { display: none; }
.visible { display: block; }

/* Referral Program Section */
.referral-program {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.referral-program::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    pointer-events: none;
}

.referral-card {
    background: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--accent-color);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #000; /* Ensure text is black and visible */
}

.referral-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.referral-card::before {
    content: 'REFERRAL BONUS';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.referral-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 24px;
    color: white;
}

.benefit-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.benefit-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.referral-steps {
    margin-bottom: 40px;
}

.referral-steps h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.referral-steps h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    padding: 18px;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.1);
}

.step-item:hover .step-number::before {
    opacity: 0.5;
}

.step-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.referral-cta {
    text-align: center;
}

.referral-btn {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-md);
}

.referral-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.referral-btn:active {
    transform: translateY(-1px);
}

.referral-note {
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.referral-note:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-1px);
}

.referral-note i {
    color: var(--accent-color);
    font-size: 16px;
}

/* Policy Pages */
.policy-content {
    padding: 80px 0;
    background: var(--bg-primary);
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.policy-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.policy-body {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
}

.policy-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 12px;
}

.policy-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 16px 0;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.policy-section ul, .policy-section ol {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 16px 0;
    padding-left: 24px;
}

.policy-section li {
    margin-bottom: 8px;
}

.policy-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.policy-footer {
    text-align: center;
    margin-top: 60px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
    background: var(--bg-primary);
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.contact-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.contact-form-section, .contact-info-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form-section h2, .contact-info-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input, .form-group select, .form-group textarea {
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 20px;
    color: white;
}

.method-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.method-content p {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 4px;
}

.method-content small {
    color: var(--text-secondary);
    font-size: 14px;
}

.support-categories h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.category-item:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.category-item i {
    font-size: 18px;
    color: var(--accent-color);
}

.category-item:hover i {
    color: white;
}

.contact-faq {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.contact-faq h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-footer {
    text-align: center;
}

/* Thank You Page */
.thank-you-page {
    display: none;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.thank-you-page.show {
    display: block;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    margin-bottom: 32px;
}

.success-icon i {
    font-size: 80px;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.thank-you-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.thank-you-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.order-details {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    text-align: left;
}

.order-details h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-align: center;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    font-weight: 600;
    color: var(--text-secondary);
}

.detail-row .value {
    font-weight: 700;
    color: var(--text-primary);
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
    text-align: left;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 20px;
    color: white;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.support-section {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
}

.support-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.support-section p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.support-options {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.support-btn {
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.referral-reminder {
    background: var(--gradient-accent);
    color: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
}

.referral-reminder h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.referral-reminder p {
    margin-bottom: 24px;
    opacity: 0.9;
}

.referral-share-btn {
    background: white;
    color: var(--accent-color);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.referral-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Referral Modal */
.referral-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.referral-modal-content {
    background: white;
    padding: 48px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-secondary);
}

.referral-modal h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-align: center;
}

.referral-modal p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    text-align: center;
}

.referral-code-display {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    text-align: center;
}

.code-label {
    display: block;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.code-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-family: monospace;
    background: white;
    padding: 12px;
    border-radius: 8px;
    border: 2px dashed var(--primary-color);
}

.copy-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.referral-instructions {
    margin-bottom: 24px;
}

.referral-instructions h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.referral-instructions ol {
    padding-left: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.referral-instructions li {
    margin-bottom: 8px;
}

.referral-email {
    text-align: center;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.referral-email p {
    margin-bottom: 12px;
}

.email-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.email-link:hover {
    text-decoration: underline;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
