/* static/css/landing.css — Vhyora Authentic Landing */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --primary-dark: #6d28d9;
    --primary-fade: rgba(124, 58, 237, 0.06);
    --accent-pink: #f9a8d4;
    --bg-white: #ffffff;
    --bg-offwhite: #fafafa;
    --bg-soft: #fdf8ff;
    --text-main: #4a4a4a;
    --text-muted: #8e8e8e;
    --text-light: #b0b0b0;
    --border-color: #efefef;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --container-width: 1140px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Baloo 2', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- Containers --- */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Navigation --- */
.landing-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 14px 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 17px;
    font-weight: 700;
    transition: all 0.2s;
    display: inline-block;
}

.nav-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-links a:active {
    transform: translateY(1px);
    opacity: 0.8;
}

.btn-primary {
    background: var(--primary);
    color: #fff !important;
    padding: 6px 20px;
    border-radius: 12px;
    font-weight: 800 !important;
    font-size: 16px;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    border: none;
    box-shadow: 0 4px 0 #5b21b6; /* Peangkatkan shadow utama */
}

.nav-links .btn-primary:hover {
    background: #8b5cf6;
    transform: translateY(2px);
    box-shadow: 0 2px 0 #5b21b6, 0 8px 16px -4px rgba(124, 58, 237, 0.3);
}

.nav-links .btn-primary:active {
    transform: translateY(4px);
    box-shadow: 0 0px 0 #5b21b6;
}

.btn-outline {
    border: 1.5px solid var(--border-color);
    padding: 6px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    background: #fff;
    box-shadow: 0 4px 0 #cbd5e1; /* Pekatkan shadow outline */
}

.nav-links .btn-outline:hover {
    background: var(--bg-offwhite);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(2px);
    box-shadow: 0 2px 0 #94a3b8, 0 4px 10px rgba(124,58,237,0.1);
}

.nav-links .btn-outline:active {
    transform: translateY(4px);
    box-shadow: 0 0px 0 #94a3b8;
}

/* --- Hero Section --- */
.hero-section {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-fade);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    color: #3c3c3c;
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-hero {
    background: var(--primary);
    color: #fff !important;
    padding: 8px 36px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 19px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    border: none;
    box-shadow: 0 4px 0 #5b21b6; /* Pekatkan shadow hero primary */
}

.btn-hero:hover {
    background: #8b5cf6;
    transform: translateY(2px);
    box-shadow: 0 2px 0 #5b21b6, 0 8px 24px -6px rgba(124, 58, 237, 0.35);
}

.btn-hero:active {
    transform: translateY(4px);
    box-shadow: 0 0px 0 #5b21b6;
}

.btn-hero-outline {
    padding: 8px 36px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 19px;
    text-decoration: none;
    color: var(--text-main);
    border: 2px solid var(--border-color);
    transition: all 0.2s;
    background: #fff;
    box-shadow: 0 4px 0 #cbd5e1; /* Pekatkan shadow hero outline */
}

.btn-hero-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(2px);
    box-shadow: 0 2px 0 #94a3b8, 0 4px 12px rgba(124,58,237,0.1);
}

.btn-hero-outline:active {
    transform: translateY(4px);
    box-shadow: 0 0px 0 #94a3b8;
}

.hero-img {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-img img {
    width: 100%;
    max-width: 460px;
    border-radius: var(--radius-xl);
}

/* --- Modules Section --- */
.modules-section {
    padding: 100px 0 80px;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.module-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 36px 24px;
    border: none;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px -8px rgba(124, 58, 237, 0.12);
}

.module-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.module-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #3c3c3c;
}

.module-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Value Proposition Section --- */
.value-section {
    padding: 100px 0;
}

.value-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.value-block:last-child {
    margin-bottom: 0;
}

.value-block.reversed {
    direction: rtl;
}

.value-block.reversed>* {
    direction: ltr;
}

.value-text .value-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-fade);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.value-text .value-label img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.value-text h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #3c3c3c;
}

.value-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.value-text ul {
    list-style: none;
    padding: 0;
}

.value-text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
}

.value-text ul li i {
    color: var(--primary);
    font-size: 16px;
}

.value-img {
    text-align: center;
}

.value-img img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-xl);
}

/* --- How It Works Section --- */
.process-section {
    padding: 100px 0;
    background: #faf8ff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.step-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    border: none;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    margin: 0 auto 16px;
}

.step-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #3c3c3c;
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Pricing Preview Section --- */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.pricing-card {
    background: linear-gradient(#ffffff, #fcfcfe) padding-box,
                linear-gradient(145deg, #e5e7eb, #d1d5db) border-box;
    border: 3px solid transparent;
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
    border: 4px solid transparent;
    background: linear-gradient(#ffffff, #f8f5ff) padding-box,
                linear-gradient(160deg, #4f46e5 0%, #8b5cf6 40%, #f59e0b 100%) border-box;
    box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.1);
}

.pricing-card.elite {
    border: 4px solid transparent;
    background: linear-gradient(160deg, #fffdf5, #ffffff, #fffdf5) padding-box,
                linear-gradient(160deg, #f59e0b 0%, #d97706 50%, #b45309 100%) border-box;
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
}

.pricing-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #3c3c3c;
}

.pricing-card .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.pricing-card .price-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    text-align: left;
}

.pricing-card .features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}

.pricing-card .features-list li i {
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

.pricing-card .features-list li.locked i {
    color: var(--text-light);
}

.pricing-card .features-list li.locked span {
    color: var(--text-light);
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
}

.btn-pricing.primary {
    background: var(--primary);
    color: #fff;
}

.btn-pricing.primary:hover {
    background: var(--primary-light);
}

.btn-pricing.outline {
    background: transparent;
    color: var(--text-main);
    border: 1.5px solid var(--border-color);
}

.btn-pricing.outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* --- CTA Section --- */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    padding: 72px 48px;
    border-radius: 32px;
    text-align: center;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.cta-box h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-box p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-white {
    background: #fff;
    color: var(--primary) !important;
    padding: 12px 36px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}

.btn-cta-white:hover {
    background: #f8fafc;
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.btn-cta-white:active {
    transform: translateY(4px);
    box-shadow: 0 0px 0 rgba(0, 0, 0, 0.1);
}

/* --- Footer --- */
.landing-footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.footer-brand img {
    height: 28px;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 15px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-img {
        margin-top: 40px;
    }

    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-block {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .value-block.reversed {
        direction: ltr;
    }

    .value-text ul {
        display: inline-block;
        text-align: left;
    }

    .value-img {
        margin-top: 32px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .nav-links {
        display: none;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 30px;
    }

}

/* =========================================================================
   ABOUT PAGE CONTENT
   ========================================================================= */

.about-main-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: var(--text-main);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.about-story-section h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.about-story-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Founder / Team Cards */
.founder-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    border-bottom: 6px solid #e5e7eb;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.founder-card:hover {
    transform: translateY(2px);
    border-bottom-width: 4px;
    margin-bottom: 22px;
    /* Compensate for lost border */
    border-color: var(--primary-light);
    border-bottom-color: var(--primary);
}

.founder-info {
    flex: 1;
}

.founder-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
}

.founder-role {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: color 0.2s;
}

.instagram-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.founder-image-wrapper {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e5e7eb;
    background-color: var(--bg-soft);
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
}

/* Mockup Display */
.v1-mockup-container {
    margin: 40px 0;
    text-align: left;
    background-color: var(--bg-offwhite);
    padding: 30px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
}

.v1-mockup-img {
    max-width: 100%;
    width: 350px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    display: block;
}

.v1-caption {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 991px) {
    .about-main-title {
        font-size: 2.2rem;
    }

    .sticky-sidebar {
        position: static;
        margin-top: 40px;
    }
}

/* --- Lobby Hero Design applied to Landing --- */
.hero-welcome {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    margin-bottom: 20px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content {
    max-width: 520px;
}

.hero-title {
    color: #3c3c3c;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.hero-title-main {
    font-size: 3.2rem;
    font-weight: 850;
    display: block;
}

.purple-text {
    color: #8b5cf6;
}

.hero-features {
    list-style: none;
    padding: 0 0 0 15px;
    margin: 0 0 35px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #4b4b4b;
    margin-bottom: 15px;
}

.hero-features li i {
    color: #8b5cf6;
    font-size: 1.4rem;
}

.hero-cta-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-hero-practice {
    background: #8b5cf6;
    color: white;
    border: none;
    padding: 18px 0;
    width: 300px;
    border-radius: 16px;
    font-weight: 850;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.15s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2),
        0 5px 0 #7c3aed;
    margin-bottom: 5px;
}

.btn-hero-practice:hover {
    background: #a78bfa;
    transform: translateY(2px);
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.2),
        0 3px 0 #7c3aed;
    color: white;
}

.btn-hero-practice:active {
    transform: translateY(5px);
    box-shadow: none;
}

.hero-mascot-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    min-height: 550px;
    margin-left: -140px;
    margin-top: -20px;
}

.hero-mascot-ground {
    position: absolute;
    bottom: 40px;
    width: 320px;
    height: 20px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    filter: blur(8px);
}

.hero-mascot {
    width: 540px;
    height: 540px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .hero-welcome {
        flex-direction: column-reverse;
        padding: 10px 0 !important;
        text-align: center;
        gap: 15px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .hero-title-main {
        font-size: 2.1rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
        font-weight: 850 !important;
        display: block !important;
    }

    .hero-title-main br {
        display: none !important;
    }

    .hero-title-main .purple-text {
        font-size: inherit !important;
        display: inline !important;
    }

    .hero-mascot-container {
        height: auto;
        min-height: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 0;
    }

    .hero-mascot {
        width: 300px;
        height: auto;
        position: relative;
        bottom: auto;
        right: auto;
    }

    .hero-mascot-ground {
        width: 260px;
    }

    .hero-features {
        display: none;
    }

    .hero-cta-container {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .btn-hero-practice {
        width: 100%;
        max-width: 320px;
        padding: 18px 20px;
        font-size: 1.1rem;
    }
}
/* --- Plan Cards (Synced from Subscription Page) --- */
:root {
    --plan-radius: 20px;
    --plan-border: #e5e7eb;
    --plan-bg: #ffffff;
    --plan-text: #111827;
    --plan-muted: #6b7280;
    --plan-check: #10b981;
    --plan-accent: #4f46e5;
    --plan-gold: #d97706;
    --plan-gold-light: #fef3c7;
    --plan-gold-border: #f59e0b;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 48px auto 3rem;
    align-items: stretch;
}

/* --- BILLING TOGGLE (Synced) --- */
.billing-toggle {
    display: flex;
    justify-content: center;
    margin: 2rem 0 2.5rem;
}

.billing-toggle-inner {
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border-radius: 16px;
    padding: 4px;
    gap: 8px;
    border: 1px solid #e5e7eb;
}

.billing-toggle-btn {
    padding: 8px 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--plan-muted);
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 0 #e5e7eb;
    margin-bottom: 3px;
    font-family: 'Baloo 2', sans-serif;
}

.billing-toggle-btn.active {
    background: #ffffff;
    color: #4f46e5;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    font-weight: 850;
    transform: translateY(3px);
}

.billing-toggle-btn:active {
    transform: translateY(2px);
    box-shadow: 0 0px 0 #cbd5e1;
}

.billing-toggle-btn:hover:not(.active) {
    color: var(--plan-text);
}

.save-badge {
    font-size: 0.65rem;
    font-weight: 700;
    background: #dcfce7;
    color: #16a34a;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
}


.plan-card {
    background: linear-gradient(#ffffff, #fcfcfe) padding-box,
                linear-gradient(135deg, #e5e7eb, #d1d5db) border-box;
    border: 1.5px solid transparent;
    border-radius: var(--plan-radius);
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
    text-align: left;
}

.plan-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.plan-card.popular {
    border: 2.2px solid transparent;
    background: linear-gradient(#ffffff, #f8f5ff) padding-box,
                linear-gradient(135deg, #4f46e5 0%, #8b5cf6 40%, #f59e0b 100%) border-box;
}

.plan-card.elite {
    border: 2.2px solid transparent;
    background: linear-gradient(160deg, #fffdf5, #ffffff, #fffdf5) padding-box,
                linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%) border-box;
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.plan-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plan-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.plan-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--plan-text);
    line-height: 1.2;
}

.popular-badge {
    font-size: 0.6rem;
    font-weight: 700;
    background: #dcfce7;
    color: #16a34a;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.plan-subtitle {
    font-size: 0.85rem;
    color: var(--plan-muted);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.plan-price {
    margin-bottom: 0.25rem;
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.plan-price .currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--plan-text);
    line-height: 1;
}

.plan-price .amount, .plan-price .amount-free {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--plan-text);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.plan-price-period {
    font-size: 0.8rem;
    color: var(--plan-muted);
    margin-bottom: 1.75rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
}

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

.plan-features li i {
    font-size: 1rem;
    color: var(--plan-check);
    margin-top: 2px;
    flex-shrink: 0;
}

.plan-features li.locked i {
    color: #d1d5db;
}

.plan-features li.locked span {
    color: #9ca3af;
}

.plan-cta {
    width: 100%;
    padding: 12px 18px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 850;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--plan-bg);
    color: var(--plan-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 0 #e5e7eb;
    margin-bottom: 4px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Baloo 2', sans-serif;
}

.plan-cta:hover {
    background: #f8fafc;
    transform: translateY(2px);
    box-shadow: 0 2px 0 #e5e7eb;
    color: var(--plan-text);
    text-decoration: none !important;
}

.plan-cta:active {
    transform: translateY(4px);
    box-shadow: 0 0px 0 #e5e7eb;
}



.plan-cta.primary {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    border-color: rgba(0, 0, 0, 0.1);
    color: #ffffff !important;
    box-shadow: 0 4px 0 #3730a3;
}

.plan-cta.primary:hover {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    transform: translateY(2px);
    box-shadow: 0 2px 0 #3730a3, 0 8px 20px rgba(79, 70, 229, 0.2);
    color: #ffffff !important;
}

.plan-cta.primary:active {
    transform: translateY(4px);
    box-shadow: 0 0px 0 #3730a3;
}

.plan-cta.elite-cta {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    border-color: rgba(0, 0, 0, 0.1);
    color: #ffffff !important;
    font-weight: 850;
    box-shadow: 0 3px 0 #ba5d16;
}

.plan-cta.elite-cta:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #fcd34d 100%);
    transform: translateY(2px);
    box-shadow: 0 1.5px 0 #ba5d16, 0 8px 20px rgba(245, 158, 11, 0.2);
    color: #ffffff !important;
}

.plan-cta.elite-cta:active {
    transform: translateY(4px);
    box-shadow: 0 0px 0 #ba5d16;
}

@media (max-width: 991px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}
