:root {
    --bg-primary: #060608;
    --bg-secondary: #0c0c10;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --accent: #e53935;
    --accent-hover: #ff5252;
    --accent-glow: rgba(229, 57, 53, 0.25);
    --accent-subtle: rgba(229, 57, 53, 0.08);
    --discord: #5865F2;
    --text-primary: #f0f0f0;
    --text-secondary: #8a8a9a;
    --text-muted: #55556a;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- LANGUAGE SWITCHER --- */
.lang-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 3px;
    gap: 2px;
    margin-right: 0;
    position: relative;
    height: 36px;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0 14px;
    height: 100%;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.lang-btn.active {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.lang-btn:not(.active):hover {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
}

/* --- NEW PRICING CARDS --- */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 80px;
    padding-bottom: 40px;
}

.price-card {
    background: rgba(14, 14, 18, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(20, 20, 25, 0.8);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.price-card.popular {
    border: 1.5px solid var(--accent);
    box-shadow: 0 0 40px rgba(229, 57, 53, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.4);
    z-index: 2;
}

.price-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.price-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    min-height: 40px;
}

.price-amount {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.amount {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1.5px;
}

.period {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-features {
    list-style: none !important;
    margin-bottom: 30px;
    flex-grow: 1;
    padding: 0;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.4;
}

.price-features li i {
    color: #10b981;
    font-size: 0.85rem;
    margin-top: 3px;
}

.price-btn {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
}

.price-btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 25px rgba(229, 57, 53, 0.3);
}

.price-btn-primary:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(229, 57, 53, 0.45);
}

.price-btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
}

.payment-crypto {
    text-align: center;
    margin-top: 15px;
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.7;
}

@media (max-width: 1200px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 992px) {
    .nav-actions {
        gap: 10px;
    }
    .lang-switcher {
        margin-right: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 650px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(6, 6, 8, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}
.navbar-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
}
.logo-img,
.logo-img-footer {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}
.logo-accent {
    color: var(--accent);
}
.nav-links {
    display: flex;
    gap: 32px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.nav-links a:hover {
    color: var(--text-primary);
}
.btn-cta-nav {
    background: var(--accent);
    color: white;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
}
.btn-cta-nav:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 20px var(--accent-glow);
    transform: translateY(-1px);
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 100px;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(229, 57, 53, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-subtle);
    border: 1px solid rgba(229, 57, 53, 0.2);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease both;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}
.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease 0.1s both;
}
.gradient-text {
    background: linear-gradient(135deg, var(--accent), #ff6b6b, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeUp 0.6s ease 0.2s both;
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeUp 0.6s ease 0.3s both;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 8px 30px var(--accent-glow);
    transform: translateY(-2px);
}
.glow-btn {
    box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    padding: 14px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--border);
    transition: all 0.2s;
}
.btn-ghost:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: fadeUp 0.6s ease 0.4s both;
}
.stat {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tag {
    display: inline-block;
    background: var(--accent-subtle);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}
.features-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.3s ease;
}
.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    border-radius: 12px;
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.how-section {
    padding: 120px 0;
}
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.step-card {
    flex: 1;
    max-width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
}
.step-card:hover {
    border-color: rgba(229, 57, 53, 0.3);
    box-shadow: 0 0 40px rgba(229, 57, 53, 0.05);
}
.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 16px;
    letter-spacing: -2px;
}
.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.step-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.step-connector {
    color: var(--text-muted);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.testimonials-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s;
}
.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}
.testimonial-stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial-card>p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-subtle);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}
.author-name {
    font-weight: 600;
    font-size: 0.9rem;
}
.author-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.cta-section {
    position: relative;
    padding: 140px 0;
    text-align: center;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(229, 57, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
}
.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.site-footer {
    border-top: 1px solid var(--border);
    padding: 50px 0 30px;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}
.footer-brand .logo {
    font-size: 1.15rem;
    justify-content: center;
}
.footer-tagline {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 8px;
}
.footer-links {
    display: flex;
    gap: 24px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.footer-links a:hover {
    color: var(--text-primary);
}
.footer-copy {
    font-size: 0.78rem;
    color: var(--text-muted);
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        flex-direction: column;
    }
    .step-connector {
        transform: rotate(90deg);
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    .hero-actions {
        flex-direction: column;
    }
}
#emberCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.navbar {
    z-index: 100;
}
.hero,
.features-section,
.how-section,
.testimonials-section,
.cta-section,
.site-footer {
    position: relative;
    z-index: 2;
}
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}
.feature-card[data-reveal] {
    transition-duration: 0.6s;
}
.step-card[data-reveal] {
    transition-duration: 0.6s;
}
.testimonial-card[data-reveal] {
    transition-duration: 0.6s;
}
.step-connector[data-reveal] {
    transform: translateX(-15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.step-connector[data-reveal].revealed {
    transform: translateX(0);
}
.navbar.scrolled {
    padding: 10px 0;
    background: rgba(6, 6, 8, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.protection-gate {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(4, 4, 6, 0.98) !important;
    backdrop-filter: blur(40px) !important;
    -webkit-backdrop-filter: blur(40px) !important;
    z-index: 999999 !important; 
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.gate-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.gate-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.gate-text {
    color: #8a8a9a;
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
}

#cf-turnstile-container {
    display: flex !important;
    justify-content: center !important;
    min-height: 65px;
}

.protection-gate.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.gate-modal {
    background: #0d0d12;
    border: 1px solid rgba(229, 57, 53, 0.5);
    border-radius: 28px;
    padding: 56px 40px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 1), 0 0 60px rgba(229, 57, 53, 0.2);
    animation: modalScaleIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    position: relative;
    z-index: 10001;
}

@keyframes modalScaleIn {
    from { opacity: 0; transform: scale(0.7) translateY(40px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.gate-icon {
    width: 80px;
    height: 80px;
    background: rgba(229, 57, 53, 0.12);
    color: var(--accent);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 32px;
    box-shadow: 0 0 40px rgba(229, 57, 53, 0.3);
    border: 1px solid rgba(229, 57, 53, 0.3);
}

.gate-modal h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 14px;
    color: #fff;
    letter-spacing: -0.5px;
}

.gate-modal p {
    color: #9ca3af;
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.6;
}

.turnstile-wrapper {
    display: flex;
    justify-content: center;
    margin: 24px 0;
    min-height: 65px;
}

.gate-footer {
    margin-top: 36px;
    font-size: 0.85rem;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.disabled-gate {
    pointer-events: none !important;
    opacity: 0.3 !important;
    filter: grayscale(1) blur(3px) !important;
    transition: all 0.6s ease;
}

.pricing-section {
    padding: 120px 0;
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    pointer-events: none;
}

.pricing-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.comparison-container {
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
    animation: fadeUp 0.8s ease both;
}

.comparison-table {
    width: 100%;
    background: rgba(14, 14, 18, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.comparison-table th {
    text-align: left;
    padding: 24px 30px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table th:nth-child(3) {
    color: var(--accent);
    text-shadow: 0 0 15px rgba(229, 57, 53, 0.3);
}

.comparison-table td {
    padding: 22px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
    color: var(--text-primary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .feature-name {
    font-weight: 700;
    color: var(--text-primary);
    width: 40%;
}

.comparison-table .status-check {
    color: #10b981;
    margin-right: 10px;
    font-weight: 900;
}

.comparison-table .status-cross {
    color: #ef4444;
    margin-right: 10px;
    font-weight: 900;
}

.badge-limited {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-performant {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.premium-cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.btn-premium-cta {
    background: var(--accent);
    color: white;
    padding: 18px 45px;
    border-radius: 18px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 15px 35px rgba(229, 57, 53, 0.35);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-discord-cta {
    background: #5865F2;
    color: white;
    padding: 18px 45px;
    border-radius: 18px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 15px 35px rgba(88, 101, 242, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-premium-cta:hover,
.btn-discord-cta:hover {
    transform: translateY(-5px) scale(1.02);
}

.btn-premium-cta:hover {
    background: var(--accent-hover);
    box-shadow: 0 20px 45px rgba(229, 57, 53, 0.5);
}

.btn-discord-cta:hover {
    background: #4752c4;
    box-shadow: 0 20px 45px rgba(88, 101, 242, 0.4);
}

@media (max-width: 768px) {
    .premium-cta-container {
        flex-direction: column;
        gap: 15px;
    }
    .comparison-table {
        font-size: 0.85rem;
    }
    .comparison-table th, 
    .comparison-table td {
        padding: 15px 20px;
    }
    .comparison-table .feature-name {
        width: 50%;
    }
    .btn-premium-cta,
    .btn-discord-cta {
        width: 100%;
        justify-content: center;
    }
}
