/* ═══════════════════════════════════════════════════════════════
   PREMIUM PRICING PAGE - LUXURY EDITION
   Inspired by Antigravity & ElevenLabs Design Language
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────── */
/* CSS VARIABLES - Premium Color Palette */
/* ─────────────────────────────────────────────────────────────── */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    overflow-y: auto;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

/* Fix double scrollbar by ensuring body grows with content */
body {
    height: auto;
    overflow-y: visible;
    margin: 0 !important;
    padding: 0 !important;
}

/* Force removal of footer gaps */
.footer {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.main-content {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

:root {
    /* Background Colors */
    --bg-primary: #0A0E1A;
    --bg-secondary: #0F1419;
    --bg-tertiary: #1A1F2E;

    /* Card Colors */
    --card-bg-base: rgba(255, 255, 255, 0.02);
    --card-bg-hover: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.06);
    --card-border-hover: rgba(255, 255, 255, 0.15);

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-tertiary: #64748B;

    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    --gradient-premium: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    --gradient-danger: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);

    /* Accent Colors */
    --accent-primary: #667EEA;
    --accent-success: #10B981;
    --accent-gold: #F59E0B;
    --accent-purple: #8B5CF6;
    --accent-danger: #EF4444;

    /* Glow Effects */
    --glow-primary: 0 0 30px rgba(102, 126, 234, 0.3);
    --glow-success: 0 0 30px rgba(16, 185, 129, 0.3);
    --glow-gold: 0 0 30px rgba(245, 158, 11, 0.3);
    --glow-danger: 0 0 30px rgba(239, 68, 68, 0.3);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-2xl: 0 30px 80px rgba(0, 0, 0, 0.4);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─────────────────────────────────────────────────────────────── */
/* GLOBAL CONTAINER */
/* ─────────────────────────────────────────────────────────────── */
.pricing-container {
    position: relative;
    /* min-height: 100vh; REMOVED to fix double wrapper scrollbar */
    background: var(--bg-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    /* overflow-x: hidden handled by body */
    padding-bottom: 0rem;
    /* Removed gap before footer */
}

/* Animated Background */
.pricing-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Background Blur Shapes */
.bg-blur-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
    animation: floatShape 20s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
}

.bg-shape-1 {
    top: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    animation-delay: 0s;
}

.bg-shape-2 {
    bottom: -10%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    animation-delay: 7s;
}

@keyframes floatShape {

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

    33% {
        transform: translate(30px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.95);
    }
}

/* ─────────────────────────────────────────────────────────────── */
/* HERO SECTION */
/* ─────────────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 8rem 2rem 5rem;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: #A5B4FC;
    text-decoration: none;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
    margin-bottom: 1.5rem;
    animation: bounceIn 1s ease-out 0.2s both;
}

.hero-badge:hover {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.4);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-badge i {
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

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

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

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

    70% {
        transform: scale(0.95);
    }

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

/* Hero Title */
.hero-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #A5B4FC 50%, #818CF8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 60px rgba(165, 180, 252, 0.3);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.375rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ─────────────────────────────────────────────────────────────── */
/* ROLE TOGGLE */
/* ─────────────────────────────────────────────────────────────── */
.role-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.role-toggle {
    position: relative;
    display: inline-flex;
    background: var(--card-bg-base);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-full);
    padding: 0.5rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    width: 380px;
    transition: all var(--transition-base);
}

.role-toggle:hover {
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.role-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 2;
    transition: all var(--transition-base);
    user-select: none;
    position: relative;
}

.role-option:hover {
    color: rgba(255, 255, 255, 0.9);
}

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

.role-option i {
    font-size: 1.125rem;
    transition: transform var(--transition-base);
}

.role-option:hover i {
    transform: scale(1.1);
}

.role-slider {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: calc(50% - 0.5rem);
    height: calc(100% - 1rem);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 1;
}

/* ─────────────────────────────────────────────────────────────── */
/* CURRENCY TOGGLE */
/* ─────────────────────────────────────────────────────────────── */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-base);
    cursor: default;
    user-select: none;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.toggle-switch:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--card-border-hover);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.toggle-switch.usd::after {
    transform: translateX(28px);
}

/* ─────────────────────────────────────────────────────────────── */
/* PREMIUM "TRY IT FIRST" CARD */
/* ─────────────────────────────────────────────────────────────── */
.try-it-container {
    max-width: 950px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.pricing-card.premium-card {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1.5px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(40px);
    box-shadow:
        var(--shadow-2xl),
        0 0 60px rgba(16, 185, 129, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all var(--transition-slow);
}

.pricing-card.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(102, 126, 234, 0.06) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.pricing-card.premium-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(16, 185, 129, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card.premium-card:hover::before {
    opacity: 1;
}

/* Premium Ribbon - HIDDEN (was overlapping with price) */
.premium-ribbon {
    display: none;
}

/* Animation no longer needed */
@keyframes slideInRight {
    from {
        opacity: 0;
        right: -100px;
    }

    to {
        opacity: 1;
        right: -45px;
    }
}

/* Horizontal Layout */
.pricing-card.premium-card.horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2rem 2.5rem;
}

.premium-left-pane {
    flex: 1;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.premium-features.horizontal-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.25rem;
}

.pricing-card.premium-card.horizontal .premium-feature {
    font-size: 0.8rem;
    line-height: 1.2;
}

.pricing-card.premium-card.horizontal .premium-feature i {
    width: 20px;
    height: 20px;
    font-size: 0.65rem;
    margin-right: 0.5rem;
}

.premium-right-pane {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

/* Badges Row */
.badges-row {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.badges-row.left-align {
    justify-content: flex-start;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.premium-badge.red-limited {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.15) 100%);
    border-color: rgba(248, 113, 113, 0.5);
    color: #FECACA;
    box-shadow:
        0 0 20px rgba(239, 68, 68, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: pulseBadge 2.5s ease-in-out infinite;
}

.premium-badge.red-limited i {
    animation: boltPulse 1.5s ease-in-out infinite;
}

@keyframes pulseBadge {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(239, 68, 68, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 30px rgba(239, 68, 68, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

@keyframes boltPulse {

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

    50% {
        transform: scale(1.15);
    }
}

/* Premium Title & Description */
.premium-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 100%;
}

/* Premium Features Grid */
.premium-body {
    width: 100%;
}

.premium-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.premium-feature {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.premium-feature:hover {
    transform: translateX(4px);
    color: #FFFFFF;
}

.premium-feature i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    background: var(--gradient-success);
    color: #FFFFFF;
    border-radius: 6px;
    font-size: 0.7rem;
    flex-shrink: 0;
    box-shadow:
        0 2px 8px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
    position: relative;
}

.premium-feature i::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-success);
    border-radius: 7px;
    opacity: 0;
    filter: blur(6px);
    transition: opacity var(--transition-base);
    z-index: -1;
}

.premium-feature:hover i {
    box-shadow:
        0 4px 16px rgba(16, 185, 129, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: scale(1.12) rotate(-5deg);
}

.premium-feature:hover i::before {
    opacity: 0.6;
}

/* Premium Price Block */
.premium-price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.price-row {
    display: flex;
    align-items: baseline;
}

.price-row .currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: 0;
    position: relative;
    top: -0.5rem;
}

.price-row .amount {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    line-height: 1;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.premium-price-block .period {
    font-size: 1.125rem;
    color: var(--text-tertiary);
    margin-top: 0.5rem;
    text-align: center;
}

/* Premium Button */
.premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    width: 100%;
}

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

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

.premium-btn.primary {
    background: var(--gradient-success);
    color: #FFFFFF;
    box-shadow:
        0 4px 20px rgba(16, 185, 129, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.premium-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 30px rgba(16, 185, 129, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.premium-btn.primary:active {
    transform: translateY(-1px);
}

.premium-btn.disabled {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-tertiary);
    cursor: not-allowed;
    box-shadow: none;
}

.premium-btn.disabled:hover {
    transform: none;
}

.premium-btn i {
    font-size: 1.125rem;
    transition: transform var(--transition-base);
}

.premium-btn:hover i {
    transform: translateX(4px);
}

.premium-subtext {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    margin-top: 0.875rem;
    text-align: right;
}

/* ─────────────────────────────────────────────────────────────── */
/* PRICING CARDS GRID */
/* ─────────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────── */
/* PRICING CARDS GRID */
/* ─────────────────────────────────────────────────────────────── */
.pricing-cards-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Elite Plan Styling */
.pricing-card.elite {
    border: 1px solid rgba(139, 92, 246, 0.5);
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.15);
    transform: scale(1.02);
    position: relative;
}

.pricing-card.elite::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(45deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    z-index: -1;
    border-radius: inherit;
    animation: borderGlow 4s linear infinite;
}

.pricing-card.elite .plan-name {
    color: #A78BFA;
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.4);
}

.pricing-card.elite .plan-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    border: none;
    color: white;
}

.pricing-card.elite .plan-btn:hover {
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
}

/* Secondary Button Contrast Fix */
.plan-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.plan-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #FFF 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #F8FAFC;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-question i {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.faq-answer {
    color: #94A3B8;
    line-height: 1.6;
    font-size: 0.95rem;
    padding-left: 1.65rem;
}

.pricing-cards-grid.active {
    display: grid;
    animation: fadeIn 0.6s ease-out;
}

.role-view {
    display: none;
}

.role-view.active {
    display: grid;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─────────────────────────────────────────────────────────────── */
/* PRICING CARD DESIGN */
/* ─────────────────────────────────────────────────────────────── */
.pricing-card {
    position: relative;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.7) 100%);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(40px);
    box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: all var(--transition-slow);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--card-border-hover);
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.pricing-card:hover::before {
    opacity: 1;
}

/* Popular Card */
.pricing-card.popular {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1.5px solid rgba(245, 158, 11, 0.4);
    box-shadow:
        var(--shadow-2xl),
        0 0 60px rgba(245, 158, 11, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: scale(1.03);
}

.pricing-card.popular::before {
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.6), transparent);
    opacity: 1;
}

.pricing-card.popular:hover {
    transform: translateY(-8px) scale(1.04);
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(245, 158, 11, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Popular Ribbon */
.pricing-card.popular::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: 2rem;
    right: -3rem;
    background: var(--gradient-gold);
    color: #000000;
    padding: 0.5rem 3.75rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Plan Header */
.plan-header {
    margin-bottom: 1.5rem;
}

.plan-name {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    min-height: 2.5rem;
}

/* Price Container */
.price-container {
    display: flex;
    align-items: baseline;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.price-container::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all var(--transition-slow);
}

.pricing-card:hover .price-container::after {
    opacity: 1;
    width: 120px;
}

.currency-symbol {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: 0.375rem;
}

.price-value {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.price-period {
    font-size: 1rem;
    color: var(--text-tertiary);
    margin-left: 0.75rem;
}

/* Feature List */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition-base);
}

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

.feature-item:hover {
    padding-left: 0.5rem;
    color: #FFFFFF;
}

.feature-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    color: #FFFFFF;
    font-size: 0.7rem;
    flex-shrink: 0;
    background: var(--gradient-success);
    border-radius: 6px;
    box-shadow:
        0 2px 8px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
    position: relative;
}

.feature-item i::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-success);
    border-radius: 7px;
    opacity: 0;
    filter: blur(6px);
    transition: opacity var(--transition-base);
    z-index: -1;
}

.feature-item:hover i {
    box-shadow:
        0 4px 16px rgba(16, 185, 129, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: scale(1.12) rotate(-5deg);
}

.feature-item:hover i::before {
    opacity: 0.6;
}

/* Plan Buttons */
.plan-btn {
    width: 100%;
    padding: 1.125rem;
    border-radius: var(--radius-md);
    font-size: 1.0625rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

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

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

.plan-btn.primary {
    background: var(--gradient-premium);
    color: #FFFFFF;
    box-shadow:
        0 4px 16px rgba(99, 102, 241, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.plan-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 30px rgba(99, 102, 241, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.plan-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.plan-btn:active {
    transform: translateY(-1px);
}

/* ─────────────────────────────────────────────────────────────── */
/* CREDITS EXPLAINER SECTION */
/* ─────────────────────────────────────────────────────────────── */
.credits-explainer-section {
    max-width: 1100px;
    margin: 6rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.credits-explainer-container {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    backdrop-filter: blur(40px);
    box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Credits Header */
.credits-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.credits-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    color: #C4B5FD;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.credits-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.credits-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Credits Cards Grid */
.credits-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.credits-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.credits-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.credits-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.credits-card:hover::before {
    opacity: 1;
}

.credits-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-base);
}

.credits-card-icon.purple {
    background: var(--gradient-premium);
    color: #FFFFFF;
}

.credits-card-icon.green {
    background: var(--gradient-success);
    color: #FFFFFF;
}

.credits-card-icon.blue {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #FFFFFF;
}

.credits-card:hover .credits-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.credits-card h3 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.credits-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.credits-card .interview-duration {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0.75rem 0;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    border-left: 3px solid currentColor;
}

.credits-card .interview-duration strong {
    color: #10B981;
    font-weight: 800;
}

/* Credits Usage Box */
.credits-usage-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-md);
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.credits-usage-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #C4B5FD;
    margin-bottom: 1.5rem;
    text-align: center;
}

.credits-usage-title i {
    font-size: 1.25rem;
}

.credits-usage-content {
    display: grid;
    gap: 1.25rem;
}

.usage-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.usage-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.usage-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.usage-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.usage-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-left: 3px solid #8B5CF6;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.usage-note i {
    color: #C4B5FD;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────── */
/* ENTERPRISE SECTION */
/* ─────────────────────────────────────────────────────────────── */
.pay-as-you-go {
    max-width: 900px;
    margin: 6rem auto 0;
    padding: 6rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    position: relative;
}

.pay-as-you-go::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gradient-premium), transparent);
}

/* Enterprise Card Container */
.pay-as-you-go>div {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.7) 100%);
    border: 1.5px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    backdrop-filter: blur(40px);
    box-shadow:
        var(--shadow-2xl),
        0 0 60px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.pay-as-you-go>div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.pay-as-you-go>div:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(139, 92, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.pay-as-you-go>div:hover::before {
    opacity: 1;
}

/* Enterprise Feature Grid */
.pay-as-you-go .plan-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem 2rem;
    margin: 3rem auto 3rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 600px;
    text-align: left;
}

.pay-as-you-go .feature-item {
    border-bottom: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
}

.pay-as-you-go .feature-item i {
    color: #C4B5FD;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
}

/* Enterprise Button */
.pay-as-you-go .plan-btn {
    max-width: 360px;
    margin: 0 auto;
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
    background: var(--gradient-premium);
    box-shadow:
        0 4px 20px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pay-as-you-go .plan-btn:hover {
    box-shadow:
        0 10px 30px rgba(139, 92, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Enterprise Sub-text */
.pay-as-you-go>div>p:last-child {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.ticket-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    color: #C4B5FD;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

/* ─────────────────────────────────────────────────────────────── */
/* MODALS */
/* ─────────────────────────────────────────────────────────────── */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.payment-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    max-width: 520px;
    width: 90%;
    text-align: center;
    color: var(--text-primary);
    box-shadow: var(--shadow-2xl), 0 0 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(40px);
    transform: scale(0.9);
    transition: transform var(--transition-slow);
}

.payment-modal.active .modal-content {
    transform: scale(1);
    animation: modalBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalBounce {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

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

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: iconPop 0.6s ease-out 0.3s both;
}

@keyframes iconPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

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

/* Loading Spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--accent-purple);
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Invoice Card */
.invoice-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
    backdrop-filter: blur(10px);
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.invoice-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.invoice-value {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
}

.invoice-value.highlight {
    color: #A5B4FC;
}

.invoice-divider {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

/* Download Button */
.download-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: var(--radius-md);
    color: #C4B5FD;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all var(--transition-base);
}

.download-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.8);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Modal Buttons */
.modal-btn {
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.modal-btn.primary {
    background: var(--gradient-primary);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.modal-btn.primary:hover {
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.modal-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ─────────────────────────────────────────────────────────────── */
/* RESPONSIVE DESIGN */
/* ─────────────────────────────────────────────────────────────── */

/* Tablets */
@media (max-width: 900px) {
    .pricing-card.premium-card.horizontal {
        flex-direction: column;
        padding: 2.5rem;
        text-align: center;
    }

    .premium-left-pane {
        padding-right: 0;
        padding-bottom: 2.5rem;
        margin-bottom: 2.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        align-items: center;
    }

    .premium-right-pane {
        padding-left: 0;
        border-left: none;
        align-items: center;
        min-width: auto;
        width: 100%;
    }

    .badges-row.left-align {
        justify-content: center;
    }

    .premium-desc {
        text-align: center;
    }

    .premium-price-block {
        align-items: center;
    }

    .premium-price-block .period {
        text-align: center;
    }

    .premium-subtext {
        text-align: center;
    }

    .premium-features.horizontal-grid {
        grid-template-columns: 1fr;
    }

    .premium-ribbon {
        right: -38px;
        padding: 0.5rem 4rem;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .hero-section {
        padding: 5rem 1.5rem 3rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .role-toggle {
        width: 100%;
        max-width: 340px;
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

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

    .plan-name {
        font-size: 1.5rem;
    }

    .price-value {
        font-size: 3.25rem;
    }

    .try-it-container {
        padding: 0 1.5rem;
    }

    .pricing-card.premium-card.horizontal {
        padding: 2rem;
    }

    .premium-title {
        font-size: 2rem;
    }

    .price-row .amount {
        font-size: 3.5rem;
    }

    .premium-ribbon {
        right: -45px;
        font-size: 0.7rem;
        padding: 0.5rem 3.5rem;
    }

    .modal-content {
        padding: 2.5rem 1.5rem;
    }

    .pricing-toggle {
        margin-bottom: 3.5rem;
    }

    .pay-as-you-go {
        margin-top: 4rem;
        padding-top: 4rem;
    }
}

/* Extra Small Devices */
@media (max-width: 420px) {
    .role-option {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .premium-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .price-row .amount {
        font-size: 3rem;
    }

    .premium-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* ─────────────────────────────────────────────────────────────── */
/* PERFORMANCE OPTIMIZATIONS */
/* ─────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* GPU Acceleration for Smooth Animations */
.pricing-card,
.premium-card,
.plan-btn,
.premium-btn,
.modal-content {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   ENTERPRISE COMPACT SECTION - NEW
   ═══════════════════════════════════════════════════════════════ */
.enterprise-compact-section {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 0 1.5rem;
    position: relative;
}

.enterprise-compact-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1.5px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(30px);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(139, 92, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all var(--transition-base);
}

.enterprise-compact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.enterprise-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #C4B5FD;
    margin-bottom: 1.25rem;
}

.enterprise-badge i {
    font-size: 0.875rem;
}

.enterprise-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #C4B5FD 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.enterprise-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.enterprise-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.875rem;
    margin-bottom: 2rem;
    text-align: left;
}

.ent-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.5rem;
    transition: all var(--transition-fast);
}

.ent-feature:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

.ent-feature i {
    color: #8B5CF6;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.enterprise-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    background: var(--gradient-premium);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow:
        0 4px 16px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.enterprise-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(139, 92, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.enterprise-contact-btn i {
    font-size: 1rem;
}

.enterprise-email {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: var(--text-tertiary);
}

.enterprise-email a {
    color: #8B5CF6;
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.enterprise-email a:hover {
    color: #A78BFA;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .enterprise-compact-section {
        margin: 3rem auto 2rem;
        padding: 0 1rem;
    }

    .enterprise-compact-card {
        padding: 1.5rem;
    }

    .enterprise-title {
        font-size: 1.75rem;
    }

    .enterprise-features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .enterprise-contact-btn {
        width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .enterprise-compact-card {
        padding: 1.25rem;
    }

    .enterprise-title {
        font-size: 1.5rem;
    }

    .enterprise-badge {
        font-size: 0.6875rem;
        padding: 0.375rem 0.75rem;
    }
}

/* ─────────────────────────────────────────────────────────────── */
/* SOCIAL PROOF BANNER */
/* ─────────────────────────────────────────────────────────────── */
.social-proof-banner {
    text-align: center;
    margin: 2rem auto 3rem;
    padding: 0.75rem 1.75rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(12px);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: fit-content;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.social-proof-banner:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow:
        0 10px 30px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(139, 92, 246, 0.6);
}

.social-proof-text {
    color: #CBD5E1;
    font-size: 0.95rem;
    font-weight: 500;
    padding-left: 0.5rem;
}

.social-proof-text strong {
    color: #FFFFFF;
    font-weight: 700;
}

.social-avatars {
    display: flex;
    align-items: center;
    padding-left: 8px;
    /* account for negative margin */
}

.social-avatars i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-left: -12px;
    border: 2px solid #0F172A;
    /* Match background for cutout effect */
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    color: #FFFFFF;
}

/* Distinct colors for avatars */
.social-avatars i:nth-child(1) {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    z-index: 4;
}

.social-avatars i:nth-child(2) {
    background: linear-gradient(135deg, #10B981, #059669);
    z-index: 3;
}

.social-avatars i:nth-child(3) {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    z-index: 2;
}

.social-avatars i:nth-child(4) {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    z-index: 1;
}

.social-avatars i:hover {
    transform: translateY(-4px) scale(1.1);
    z-index: 10;
    border-color: rgba(255, 255, 255, 0.5);
}

/* ─────────────────────────────────────────────────────────────── */
/* COMPARISON TABLE */
/* ─────────────────────────────────────────────────────────────── */
.comparison-section {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 2rem;
    overflow-x: auto;
}

.comparison-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #F8FAFC;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    /* Force scroll on small screens */
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #94A3B8;
}

.comparison-table th {
    text-align: left;
    color: #F8FAFC;
    font-size: 1.1rem;
    width: 25%;
}

.comparison-table th.plan-col {
    text-align: center;
    font-size: 1.2rem;
    color: #F8FAFC;
}

.comparison-table th.plan-col.elite-col {
    color: #A78BFA;
    text-shadow: 0 0 15px rgba(167, 139, 250, 0.4);
}

.comparison-table td.check-icon {
    color: var(--accent-primary);
    font-size: 1.1rem;
}

.comparison-table td.cross-icon {
    color: #475569;
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Elite Ribbon Styling */
.pricing-card.elite .premium-ribbon {
    position: absolute;
    top: 12px;
    right: -10px;
    /* Extend slightly */
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.3);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10px 50%);
    /* Arrow shape */
}

/* ═══════════════════════════════════════════════════════════════
   SCROLLBAR OVERRIDE
   ═══════════════════════════════════════════════════════════════ */
/* Force standard/minimal scrollbar to override any browser/theme defaults */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: transparent;
    /* Fixes white track */
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    border: 2px solid transparent;
    /* Creates padding */
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════════════════════════
   STUDENT VERIFICATION MODAL
   ═══════════════════════════════════════════════════════════════ */

.verify-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.verify-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.verify-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
    font-weight: 600;
}

.verify-tab-content {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#studentVerifyModal .modal-content {
    max-width: 450px;
}

#studentVerifyModal input[type="email"],
#studentVerifyModal input[type="text"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s;
}

#studentVerifyModal input[type="email"]:focus,
#studentVerifyModal input[type="text"]:focus {
    outline: none;
    border-color: var(--accent-primary);
}

#studentVerifyModal input[type="file"] {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

#studentVerifyModal input[type="file"]::file-selector-button {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    margin-right: 0.5rem;
    transition: background 0.3s;
}

#studentVerifyModal input[type="file"]::file-selector-button:hover {
    background: rgba(255, 255, 255, 0.2);
}