/**
 * Premium Membership Page Styles
 * Ultra-modern pricing page with glassmorphism, cosmic effects and neon animations
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --premium-gradient: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 50%, #10b981 100%);
    --pro-gradient: linear-gradient(135deg, #8b5cf6, #7c3aed);
    --elite-gradient: linear-gradient(135deg, #fbbf24, #f59e0b);
    --neon-purple: #a855f7;
    --neon-cyan: #22d3ee;
    --neon-gold: #fbbf24;
    --glass-bg: rgba(15, 15, 25, 0.8);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* ============================================
   Cosmic Background
   ============================================ */
.premium-page {
    background: linear-gradient(135deg, #0a0a0f 0%, #0d0d18 50%, #0a0a12 100%);
    min-height: 100vh;
    position: relative;
}

.premium-page::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(168, 85, 247, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(34, 211, 238, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(251, 191, 36, 0.5), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(168, 85, 247, 0.3), transparent);
    background-size: 200px 200px;
    animation: starTwinkle 4s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes starTwinkle {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.6;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.premium-hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    min-height: 600px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(6, 182, 212, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(16, 185, 129, 0.12) 0%, transparent 50%);
    animation: heroGradientPulse 6s ease-in-out infinite alternate;
}

@keyframes heroGradientPulse {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 450px;
    height: 450px;
    background: var(--pro-gradient);
    top: -120px;
    right: -120px;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #06b6d4, #10b981);
    bottom: -80px;
    left: -80px;
    animation-delay: -7s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--elite-gradient);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    25% {
        transform: translate(40px, -40px) scale(1.15) rotate(90deg);
    }

    50% {
        transform: translate(-30px, 30px) scale(0.85) rotate(180deg);
    }

    75% {
        transform: translate(25px, 35px) scale(1.1) rotate(270deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 50px;
    margin-bottom: 32px;
    backdrop-filter: blur(20px);
    animation: badgeGlow 2.5s ease-in-out infinite;
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
    }

    50% {
        box-shadow: 0 0 50px rgba(139, 92, 246, 0.7), 0 0 80px rgba(139, 92, 246, 0.3);
    }
}

.badge-icon {
    font-size: 22px;
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    background: var(--pro-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-shadow: 0 0 60px rgba(139, 92, 246, 0.3);
}

.title-gradient {
    display: block;
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 3s ease-in-out infinite;
}

@keyframes titleShimmer {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(15, 15, 25, 0.9), rgba(20, 20, 35, 0.8));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-feature:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
}

.feature-icon {
    font-size: 22px;
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing-section {
    padding: 100px 0 120px;
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 17px;
    color: var(--color-text-secondary);
    margin-bottom: 36px;
}

/* Billing Toggle */
.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 10px 28px;
    background: linear-gradient(135deg, rgba(15, 15, 25, 0.9), rgba(20, 20, 35, 0.8));
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    backdrop-filter: blur(20px);
}

.billing-option {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.billing-option.active {
    color: var(--color-text);
}

.save-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 5px 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked+.toggle-slider {
    background: var(--pro-gradient);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.toggle-switch input:checked+.toggle-slider::before {
    transform: translateX(26px);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1000px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

.pricing-card {
    position: relative;
    background: linear-gradient(145deg, rgba(15, 15, 25, 0.95), rgba(20, 20, 35, 0.9));
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 36px;
    backdrop-filter: blur(40px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    border-color: rgba(139, 92, 246, 0.5);
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.35);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 24px;
    background: var(--pro-gradient);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 24px;
    white-space: nowrap;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
    animation: popularPulse 2s ease-in-out infinite;
}

@keyframes popularPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
    }

    50% {
        box-shadow: 0 8px 45px rgba(139, 92, 246, 0.7);
    }
}

.card-header {
    text-align: center;
    margin-bottom: 28px;
}

.plan-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 18px;
    filter: drop-shadow(0 4px 20px rgba(139, 92, 246, 0.3));
}

.plan-name {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.card-price {
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-amount {
    font-size: 54px;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: priceGlow 3s ease-in-out infinite alternate;
}

@keyframes priceGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
    }

    100% {
        filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.6));
    }
}

.price-period {
    font-size: 17px;
    color: var(--color-text-secondary);
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s;
}

.feature-item:hover {
    padding-left: 8px;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item.excluded {
    opacity: 0.5;
}

.feature-item.highlight {
    color: var(--color-positive);
}

.feature-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-positive);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.feature-x {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-negative);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Plan Buttons */
.plan-btn {
    width: 100%;
    padding: 18px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.plan-btn:not(.primary):not(.secondary) {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--color-text-secondary);
}

.plan-btn:not(.primary):not(.secondary):hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.plan-btn.primary {
    background: var(--pro-gradient);
    color: white;
    box-shadow: 0 10px 35px rgba(139, 92, 246, 0.5);
}

.plan-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.6);
}

.plan-btn.secondary {
    background: var(--elite-gradient);
    color: #000;
    box-shadow: 0 10px 35px rgba(251, 191, 36, 0.4);
}

.plan-btn.secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(251, 191, 36, 0.5);
}

/* ============================================
   Comparison Table
   ============================================ */
.comparison-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.03), transparent);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 50px;
    background: linear-gradient(145deg, rgba(15, 15, 25, 0.95), rgba(20, 20, 35, 0.9));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(40px);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 22px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.03);
}

.comparison-table th.featured {
    background: rgba(139, 92, 246, 0.12);
    color: #a78bfa;
}

.comparison-table td.featured {
    background: rgba(139, 92, 246, 0.06);
}

.feature-col {
    text-align: left !important;
    font-weight: 600;
}

.category-row td {
    background: rgba(255, 255, 255, 0.04) !important;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-secondary);
    text-align: left !important;
}

.table-check {
    color: var(--color-positive);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.table-x {
    color: var(--color-text-secondary);
    opacity: 0.5;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-section {
    padding: 100px 0;
}

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

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(15, 15, 25, 0.95), rgba(20, 20, 35, 0.9));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(40px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(139, 92, 246, 0.1);
}

.testimonial-content {
    margin-bottom: 24px;
}

.stars {
    font-size: 18px;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.author-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.author-title {
    font-size: 12px;
    color: var(--color-text-secondary);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 800px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: linear-gradient(145deg, rgba(15, 15, 25, 0.95), rgba(20, 20, 35, 0.9));
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(30px);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.05);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--color-text-secondary);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--neon-purple);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 26px 22px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.08), rgba(139, 92, 246, 0.12));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 60%);
    filter: blur(80px);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(139, 92, 246, 0.4);
}

.cta-subtitle {
    font-size: 19px;
    color: var(--color-text-secondary);
    margin-bottom: 44px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.cta-btn.primary {
    background: var(--pro-gradient);
    color: white;
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
}

.cta-btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.6);
}

.cta-btn.secondary {
    background: linear-gradient(145deg, rgba(15, 15, 25, 0.95), rgba(20, 20, 35, 0.9));
    border: 1px solid var(--glass-border);
    color: var(--color-text);
    backdrop-filter: blur(20px);
}

.cta-btn.secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-5px);
}

.cta-note {
    font-size: 14px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-note span {
    margin-right: 4px;
}

/* ============================================
   Checkout Modal
   ============================================ */
.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.checkout-modal.active {
    opacity: 1;
    visibility: visible;
}

.checkout-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.checkout-content {
    position: relative;
    background: linear-gradient(145deg, rgba(15, 15, 25, 0.98), rgba(20, 20, 35, 0.95));
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(40px);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5), 0 0 60px rgba(139, 92, 246, 0.15);
}

.checkout-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    font-size: 24px;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.3s;
}

.checkout-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 36px;
    }

    .hero-features {
        gap: 12px;
    }

    .hero-feature {
        padding: 12px 18px;
    }

    .pricing-card {
        padding: 28px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-btn {
        padding: 16px 32px;
        font-size: 15px;
    }
}