/* Global Styles */
:root {
    --bg-color: #05050a;
    --card-bg: #101018;
    --text-color: #ffffff;
    --text-muted: #8b8b9e;
    
    /* Theme Colors */
    --theme-blue: #4e5dff;
    --theme-blue-glow: rgba(78, 93, 255, 0.4);
    
    --theme-purple: #9d4eff;
    --theme-purple-glow: rgba(157, 78, 255, 0.4);
    
    --theme-pink: #ff4e91;
    --theme-pink-glow: rgba(255, 78, 145, 0.4);

    --gradient-main: linear-gradient(135deg, #4e5dff 0%, #9d4eff 100%);
    
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    /* Background Gradient Mesh Effect (Subtle) */
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(78, 93, 255, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(157, 78, 255, 0.08) 0%, transparent 25%);
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, p { margin: 0; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.highlight-purple { color: #b57aff; font-weight: bold; }

/* Header & Nav */
header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon { font-size: 1.4rem; }

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover, .nav-links a.active {
    color: white;
}

.btn-login {
    background: linear-gradient(90deg, #ff4e50 0%, #f9d423 100%); /* Just a placeholder gradient or red */
    background: #ff4e50;
    padding: 6px 16px;
    border-radius: 20px;
    color: white !important;
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: center;
    position: relative;
}

/* Glow effect behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(78, 93, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.logo-large {
    margin-bottom: 20px;
    animation: float 6s ease-in-out infinite;
}

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

.rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stars { color: #FFD700; font-size: 0.9rem; }
.rating-text { font-size: 0.85rem; font-weight: 600; color: #ccc; }

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    text-shadow: 0 0 40px rgba(78, 93, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 30, 40, 0.6);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #a0a0b0;
}

.badge-icon { color: var(--theme-purple); }

.join-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.btn-hero {
    display: inline-block;
    background: linear-gradient(90deg, #9d4eff 0%, #4e5dff 100%);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(78, 93, 255, 0.3);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(78, 93, 255, 0.5);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(78, 93, 255, 0.1);
    color: #8b9dff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(78, 93, 255, 0.2);
}

.pricing-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.pricing-toggles {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.toggle-group {
    background: #0f0f16;
    padding: 4px;
    border-radius: 30px;
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
}

.toggle-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Reuse existing Pricing Card Styles but tweak */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    padding: 0 10px;
}

.plan-card {
    background: rgba(13, 13, 18, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

/* Neon Glows based on plan type */
.plan-basic {
    border-top: 1px solid rgba(78, 93, 255, 0.5);
    box-shadow: 0 0 20px rgba(78, 93, 255, 0.1);
}
.plan-basic:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(78, 93, 255, 0.2);
    border-color: rgba(78, 93, 255, 0.8);
}

.plan-premium {
    border-top: 1px solid rgba(157, 78, 255, 0.5);
    box-shadow: 0 0 20px rgba(157, 78, 255, 0.1);
}
.plan-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(157, 78, 255, 0.2);
    border-color: rgba(157, 78, 255, 0.8);
}

.plan-ultimate {
    border-top: 1px solid rgba(255, 78, 145, 0.5);
    box-shadow: 0 0 20px rgba(255, 78, 145, 0.1);
}
.plan-ultimate:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 78, 145, 0.2);
    border-color: rgba(255, 78, 145, 0.8);
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.plan-basic .discount-badge { background: linear-gradient(90deg, #4e5dff, #2333cc); }
.plan-premium .discount-badge { background: linear-gradient(90deg, #9d4eff, #6a1b9a); }
.plan-ultimate .discount-badge { background: linear-gradient(90deg, #ff4e91, #c2185b); }

.card-header { 
    margin-bottom: 30px; 
    text-align: center;
    position: relative;
    z-index: 1;
}

.plan-name { 
    font-size: 2rem; 
    font-weight: 900; 
    margin-bottom: 10px; 
    letter-spacing: -1px;
}

.plan-subtitle { 
    font-size: 0.7rem; 
    letter-spacing: 3px; 
    text-transform: uppercase; 
    font-weight: 800; 
    color: var(--text-muted);
    margin-bottom: 0;
}

.plan-price-container { 
    margin-bottom: 30px; 
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.plan-price { font-size: 4rem; font-weight: 800; line-height: 1; color: white; text-shadow: 0 5px 20px rgba(0,0,0,0.5); }
.currency { font-size: 2rem; vertical-align: top; margin-right: 5px; color: #ccc; }
.decimals { font-size: 1.5rem; color: #999; }
.price-period { font-size: 0.85rem; color: #888; font-weight: 600; margin-top: 10px; letter-spacing: 1px; }
.old-price { text-decoration: line-through; opacity: 0.5; margin-right: 5px; }

.plan-features { 
    flex-grow: 1; 
    margin-bottom: 40px; 
    padding: 0 10px;
}
.plan-features li { 
    margin-bottom: 18px; 
    font-size: 0.95rem; 
    color: #e0e0e0; 
    display: flex; 
    align-items: center;
    gap: 15px;
}

.check-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.plan-basic .check-icon { color: #4e5dff; background: rgba(78, 93, 255, 0.1); }
.plan-premium .check-icon { color: #9d4eff; background: rgba(157, 78, 255, 0.1); }
.plan-ultimate .check-icon { color: #ff4e91; background: rgba(255, 78, 145, 0.1); }

.btn-glow {
    width: 100%;
    display: block;
    text-align: center;
    padding: 18px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
    margin-top: 3px;
    color: #0d0d12 !important; /* Checkmark black */
    font-weight: 900;
}

.btn-glow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 18px 0;
    border-radius: 50px; /* Capsule shape */
    color: white;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.btn-glow:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* Theme Specific Styles */

/* Basic (Blue) */
.plan-basic {
    border: 2px solid rgba(78, 93, 255, 0.3);
    box-shadow: 0 0 30px rgba(78, 93, 255, 0.1);
}
.plan-basic:hover {
    border-color: rgba(78, 93, 255, 0.8);
    box-shadow: 0 0 50px rgba(78, 93, 255, 0.2);
}
.plan-basic .plan-name { color: white; }
.plan-basic .plan-subtitle { color: #4e5dff; }
.plan-basic .discount-badge { background: #4e5dff; }
.plan-basic .check-icon { background: #4e5dff; box-shadow: 0 0 10px rgba(78, 93, 255, 0.4); }

.plan-basic .btn-glow {
    background: linear-gradient(90deg, #4e5dff 0%, #7b88ff 100%);
    box-shadow: 0 10px 30px -5px rgba(78, 93, 255, 0.5);
}

/* Premium (Purple) */
.plan-premium {
    border: 2px solid rgba(157, 78, 255, 0.3);
    box-shadow: 0 0 30px rgba(157, 78, 255, 0.1);
    transform: scale(1.02);
    z-index: 2;
}
.plan-premium:hover {
    transform: scale(1.05);
    border-color: rgba(157, 78, 255, 0.8);
    box-shadow: 0 0 50px rgba(157, 78, 255, 0.2);
}
.plan-premium .plan-name { color: white; }
.plan-premium .plan-subtitle { color: #9d4eff; }
.plan-premium .discount-badge { background: #9d4eff; }
.plan-premium .check-icon { background: #9d4eff; box-shadow: 0 0 10px rgba(157, 78, 255, 0.4); }

.plan-premium .btn-glow {
    background: linear-gradient(90deg, #9d4eff 0%, #c48aff 100%);
    box-shadow: 0 10px 30px -5px rgba(157, 78, 255, 0.5);
}

/* Ultimate (Pink) */
.plan-ultimate {
    border: 2px solid rgba(255, 78, 145, 0.3);
    box-shadow: 0 0 30px rgba(255, 78, 145, 0.1);
}
.plan-ultimate:hover {
    border-color: rgba(255, 78, 145, 0.8);
    box-shadow: 0 0 50px rgba(255, 78, 145, 0.2);
}
.plan-ultimate .plan-name { color: white; }
.plan-ultimate .plan-subtitle { color: #ff4e91; }
.plan-ultimate .discount-badge { background: #ff4e91; }
.plan-ultimate .check-icon { background: #ff4e91; box-shadow: 0 0 10px rgba(255, 78, 145, 0.4); }

.plan-ultimate .btn-glow {
    background: linear-gradient(90deg, #ff4e91 0%, #ff8dbb 100%);
    box-shadow: 0 10px 30px -5px rgba(255, 78, 145, 0.5);
}
    background: linear-gradient(90deg, #ff4e91 0%, #ff8dbb 100%);
    box-shadow: 0 10px 25px -5px rgba(255, 78, 145, 0.6), inset 0 2px 2px rgba(255, 255, 255, 0.2);
}
.plan-ultimate .btn-glow:hover {
    box-shadow: 0 15px 35px -5px rgba(255, 78, 145, 0.8), inset 0 2px 2px rgba(255, 255, 255, 0.2);
}


/* Fix layout inside card */
.card-header { margin-bottom: 20px; }
.plan-name { font-size: 1.5rem; }
.plan-subtitle { font-size: 0.7rem; letter-spacing: 1px; opacity: 0.8; }
.plan-price { font-size: 3rem; }
.currency { font-size: 1.5rem; }
.decimals { font-size: 1.2rem; }

.plan-features li { margin-bottom: 12px; font-size: 0.9rem; color: #ccc; }

/* Payment Methods */
.payment-methods {
    text-align: center;
    opacity: 0.6;
}
.payment-methods p { font-size: 0.75rem; letter-spacing: 1px; margin-bottom: 15px; text-transform: uppercase; }
.payment-icons { display: flex; justify-content: center; gap: 20px; font-size: 0.9rem; font-weight: 600; }

/* Why Join Us */
.why-join {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
}

.features-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #0e0e14;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: 0.3s;
}

.feature-card:hover {
    background: #13131c;
    border-color: rgba(255, 255, 255, 0.08);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-icon-box.blue { background: rgba(78, 93, 255, 0.1); color: var(--theme-blue); }
.feature-icon-box.purple { background: rgba(157, 78, 255, 0.1); color: var(--theme-purple); }
.feature-icon-box.pink { background: rgba(255, 78, 145, 0.1); color: var(--theme-pink); }

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0 120px;
}

.faq-badge {
    text-align: center;
    display: inline-block;
    background: rgba(157, 78, 255, 0.1);
    color: #b57aff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    /* Centering trick for inline-block */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.faq-section .section-title { margin-bottom: 10px; }
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #0e0e14;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.toggle-icon {
    background: rgba(255, 255, 255, 0.05);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--theme-purple);
    transition: 0.3s;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
    background: var(--theme-purple);
    color: white;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.support-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, #151520 0%, #0e0e14 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.support-card h3 { margin-bottom: 10px; }
.support-card p { color: var(--text-muted); margin-bottom: 25px; }

.btn-support {
    display: inline-block;
    background: var(--theme-purple);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    background: #020205;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.footer-links {
    margin-bottom: 40px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0 10px;
}

.copyright {
    color: #444;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .nav-links { display: none; } /* Simplified mobile nav for now */
    .pricing-toggles { flex-direction: column; align-items: center; }
}
