/* ============================================================
   DESIGN SYSTEM
   ============================================================ */
:root {
    --bg-dark: #050810;
    --surface-dark: rgba(15, 20, 35, 0.7);
    --surface-light: rgba(255, 255, 255, 0.03);
    --surface-border: rgba(255, 255, 255, 0.08);

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    --primary: #a88bfc;
    --secondary: #4facfe;
    --accent: #ff9a9e;

    --primary-gradient: linear-gradient(135deg, #a88bfc 0%, #4facfe 100%);
    --surface-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);

    --font-family: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body.dark-theme {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(90deg, #a88bfc, #4facfe, #ff9a9e, #a88bfc);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flowGradient 8s linear infinite;
}

@keyframes flowGradient {
    to {
        background-position: 300% center;
    }
}

/* ============================================================
   BACKGROUND EFFECTS (The Wow Factor)
   ============================================================ */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.12;
    animation: pulse 12s infinite alternate;
}

.glow-1 {
    top: -200px;
    left: -200px;
    background: var(--primary);
}

.glow-2 {
    bottom: -200px;
    right: -200px;
    background: var(--secondary);
    animation-delay: -3s;
}

.glow-3 {
    top: 40%;
    left: 60%;
    width: 400px;
    height: 400px;
    background: var(--accent);
    opacity: 0.08;
}

@keyframes pulse {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(5, 8, 16, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--surface-border);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: white;
    padding: 3px;
    box-shadow: 0 0 20px rgba(168, 139, 252, 0.3);
    flex-shrink: 0;
    object-fit: contain;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.ai-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

.nav-cta {
    margin-left: 10px;
    background: #7C3AED !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 12px 28px;
    border-radius: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(168, 139, 252, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 139, 252, 0.4);
}

.btn-secondary {
    background: var(--surface-light);
    color: white;
    border: 1px solid var(--surface-border);
    padding: 12px 28px;
    border-radius: 14px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    padding: 180px 5% 100px;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    min-height: 100vh;
}

.hero-content {
    flex: 1.2;
}

.hero-media {
    flex: 1;
    display: flex;
    justify-content: center;
    align-self: stretch;
    /* Stretch to fill height */
    align-items: flex-end;
    /* Align mockup to bottom */
}

.badge-row {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.badge {
    padding: 6px 16px;
    background: rgba(168, 139, 252, 0.1);
    border: 1px solid rgba(168, 139, 252, 0.2);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.badge.secondary {
    background: rgba(79, 172, 254, 0.1);
    border-color: rgba(79, 172, 254, 0.2);
    color: var(--secondary);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 600px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--surface-border);
}

/* --- Premium Floating Mockup --- */
.hero-media.relative {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-mockup {
    width: 100%;
    max-width: 550px;
    height: 100%;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 40px rgba(168, 139, 252, 0.15);
}

.glass-mockup::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(168, 139, 252, 0.4), rgba(67, 233, 123, 0.1), rgba(168, 139, 252, 0));
    z-index: -1;
    border-radius: 22px;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

.glass-mockup {
    animation: floatAnim 6s ease-in-out infinite;
}

.mockup-header-new {
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    position: relative;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #febc2e;
}

.dot.green {
    background: #28c840;
}

.mockup-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.window-actions {
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

/* --- Chat Body --- */
.mockup-body-new {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-grow: 1;
    overflow: hidden;
}

.chat-row {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    opacity: 0;
}

.ai-row {
    align-items: flex-start;
}

.user-row {
    flex-direction: row-reverse;
}

.avatar-wrapper {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #a88bfc, #43e97b, #a88bfc);
    background-size: 200% 200%;
    border-radius: 50%;
    z-index: -1;
    animation: spinGlow 3s linear infinite;
    opacity: 0.8;
}

.chat-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    background: var(--surface-dark);
}

@keyframes spinGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.chat-bubble {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.glass-bubble {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-top-left-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gradient-bubble {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-top-right-radius: 4px;
    box-shadow: 0 8px 24px rgba(168, 139, 252, 0.3);
}

.code-preview-box {
    margin-top: 12px;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(67, 233, 123, 0.2);
    font-family: monospace;
    font-size: 0.8rem;
    color: #43e97b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-spin {
    animation: spinIcon 2s linear infinite;
    font-size: 16px;
}

@keyframes spinIcon {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --- Input Area --- */
.mockup-footer-new {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-input-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.input-icon {
    color: var(--text-muted);
    font-size: 20px;
}

.typing-text {
    flex-grow: 1;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.typing-text::after {
    content: '|';
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.send-btn-new {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--text-light);
    color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.send-btn-new .material-icons-outlined {
    font-size: 18px;
}

/* --- Large Background Face Image --- */
.hero-large-face {
    position: absolute;
    width: 320px;
    height: auto;
    top: -50px;
    right: -200px;
    opacity: 0.15;
    z-index: 5;
    transform: rotate(15deg);
    animation: slowDrift 15s ease-in-out infinite alternate;
    pointer-events: none;
    filter: drop-shadow(0 0 30px rgba(168, 139, 252, 0.5));
}

@keyframes slowDrift {
    0% {
        transform: rotate(10deg) translateY(0);
    }

    100% {
        transform: rotate(20deg) translateY(-20px);
    }
}

/* --- Chat Animations --- */
.msg-anim-1 {
    animation: slideInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s forwards;
}

.msg-anim-2 {
    animation: slideInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 2.0s forwards;
}

.msg-anim-3 {
    animation: slideInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 3.5s forwards;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ============================================================
   PREVIEW SECTION
   ============================================================ */
.section {
    padding: 120px 0;
}

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

.subheading {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.feature-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.preview-card {
    background: var(--surface-dark);
    border: 1px solid var(--surface-border);
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition);
}

.preview-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.icon-box span {
    font-size: 30px;
    color: white;
}

.icon-box.purple {
    background: linear-gradient(135deg, #a88bfc, #6d3efc);
}

.icon-box.blue {
    background: linear-gradient(135deg, #4facfe, #0084ff);
}

.icon-box.green {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.icon-box.orange {
    background: linear-gradient(135deg, #f6d365, #fda085);
}

.preview-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.preview-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   PLATFORM CTA
   ============================================================ */
.platform-cta {
    padding-bottom: 80px;
}

.cta-card {
    background: linear-gradient(135deg, rgba(80, 50, 200, 0.15), rgba(30, 100, 200, 0.15));
    border: 1px solid rgba(168, 139, 252, 0.25);
    padding: 56px 64px;
    border-radius: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 139, 252, 0.08), transparent 70%);
    pointer-events: none;
}

.cta-info h2 {
    font-size: 2.4rem;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cta-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.cta-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.p-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--surface-border);
    border-radius: 100px;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: default;
    white-space: nowrap;
}

.p-icon:hover {
    background: rgba(168, 139, 252, 0.1);
    border-color: var(--primary);
    color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 139, 252, 0.15);
}

.p-icon span.material-icons-outlined {
    font-size: 20px;
}

.p-icon-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ============================================================
   FOOTER — Premium Redesign
   ============================================================ */
.vividly-footer {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, rgba(5, 8, 16, 0.0) 0%, rgba(5, 8, 16, 0.98) 8%);
    border-top: 1px solid transparent;
    position: relative;
}

.vividly-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 139, 252, 0.5), rgba(79, 172, 254, 0.5), transparent);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--surface-border);
}

.footer-col-brand {
    flex: 1.5;
}

.footer-col-brand .brand {
    margin-bottom: 20px;
}

.footer-col-brand .brand-logo,
.footer-logo {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
    background: white;
    padding: 3px;
    box-shadow: 0 0 16px rgba(168, 139, 252, 0.25);
}

.footer-brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(168, 139, 252, 0.15), rgba(79, 172, 254, 0.15));
    border: 1px solid rgba(168, 139, 252, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(168, 139, 252, 0.2);
}

.brand-desc {
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 280px;
    font-size: 0.92rem;
}

.footer-nav-groups {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.nav-group h4 {
    font-size: 0.78rem;
    color: var(--text-main);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.nav-group a {
    display: block;
    color: var(--text-dim);
    margin-bottom: 14px;
    transition: var(--transition);
    font-size: 0.92rem;
}

.nav-group a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: var(--transition);
}

.social-link .material-icons-outlined {
    font-size: 18px;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(168, 139, 252, 0.3);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero {
        gap: 40px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(5, 8, 16, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--surface-border);
        padding: 20px 5%;
        gap: 8px;
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links .nav-cta {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
        width: fit-content;
    }

    .mobile-menu-btn {
        display: block;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 40px;
    }

    .footer-nav-groups {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
    padding: 180px 0 120px;
    background: radial-gradient(circle at top center, rgba(168, 139, 252, 0.05), transparent 50%);
}

.billing-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.switch-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
}

.switch-label.active {
    color: var(--text-main);
}

.switch-control {
    width: 60px;
    height: 32px;
    background: var(--surface-light);
    border: 1px solid var(--surface-border);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.switch-control::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(168, 139, 252, 0.4);
}

.switch-control.annual::after {
    left: 32px;
}

.save-badge {
    padding: 4px 10px;
    background: rgba(67, 233, 123, 0.1);
    border: 1px solid rgba(67, 233, 123, 0.2);
    border-radius: 6px;
    color: #43e97b;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.pricing-card {
    background: var(--surface-dark);
    border: 1px solid var(--surface-border);
    border-radius: 32px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(20px);
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: rgba(168, 139, 252, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pricing-card.popular {
    background: linear-gradient(180deg, rgba(168, 139, 252, 0.08) 0%, rgba(15, 20, 35, 0.7) 100%);
    border-color: rgba(168, 139, 252, 0.4);
}

.popular-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--primary-gradient);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card-header .plan-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.price {
    margin: 24px 0 32px;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 4px;
}

.price .period {
    color: var(--text-muted);
    font-size: 1rem;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.features-list li .material-icons-outlined {
    font-size: 18px;
    color: var(--primary);
}

.features-list li.disabled {
    opacity: 0.5;
}

.features-list li.disabled .material-icons-outlined {
    color: var(--text-dim);
}

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