:root {
    --primary-emerald: #064e3b;
    --secondary-green: #15803d;
    --accent-gold: #f8b60e;
    --bg-cream: #fdfaf3;
    --bg-sage: #e6f2f0;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Core Styles */
.lp-body-wrap {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Premium Header */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 99999;
    background: var(--primary-emerald); 
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.lp-header .flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-logo img {
    height: 70px;
    width: auto;
}

.lp-header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-free-trial {
    background: var(--white);
    color: var(--primary-emerald) !important;
    border: 2px solid var(--accent-gold);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-free-trial:hover {
    transform: translateY(-2px);
    background: var(--accent-gold);
    color: var(--primary-emerald) !important;
    box-shadow: 0 5px 15px rgba(251, 255, 252, 0.3);
}

.hamburger-menu {
    font-size: 24px;
    cursor: pointer;
    color: var(--white);
    display: flex;
    align-items: center;
    margin-left: 10px;
}

/* Sidebar Menu */
.show-site-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #064e3b; /* Deep Emerald */
    z-index: 2000;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px 20px;
    color: white;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
}

.show-site-menu.active {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1500;
    display: none;
    backdrop-filter: blur(4px);
}

.close-sidebar {
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
}

.nav-menu-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
}

.nav-menu-list li { 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
}

.nav-menu-list li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu-list .menu-item-has-children > a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    transition: transform 0.3s;
}

/* Sidebar Submenu Logic */
.nav-menu-list .sub-menu {
    display: none;
    list-style: none; 
    margin: 0;
}

.nav-menu-list li.active-dropdown > .sub-menu,
.nav-menu-list li.active-dropdown .site-submenu-dropdown {
    display: block !important;
}

.nav-menu-list li.active-dropdown > a {
    background: rgba(255,255,255,0.08);
    padding: 12px 15px;
    border-radius: 12px;
    margin: -12px -15px 15px -15px;
}

.nav-menu-list li.active-dropdown > a::after {
    transform: rotate(180deg);
}

.nav-menu-list .sub-menu li { 
    border: none;
    padding: 0;
}

.nav-menu-list .sub-menu li a {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
}

/* User Dropdown */
.user-avatar-container {
    position: relative;
    display: flex;
    align-items: center;
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--primary-emerald); 
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: none;
    z-index: 1100;
    margin-top: 10px;
    overflow: hidden;
}

.user-avatar-container.active-dropdown .user-dropdown-menu {
    display: block;
}

.user-dropdown-menu ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.user-dropdown-menu ul li a {
    display: block;
    padding: 12px 20px;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.user-dropdown-menu ul li a:hover {
    background: var(--white);
    color: var(--primary-emerald);
}

.avatar-trigger img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-emerald);
    cursor: pointer;
}

@media (max-width: 768px) {
    .lp-logo img {
        height: 60px;
    }
    .hide-mobile {
        display: none !important;
    }
    .btn-free-trial {
        padding: 8px 15px;
        font-size: 12px;
        border-radius: 12px;
        text-align: center;
        line-height: 1.2;
    }
}

/* Hero Section */
.lp-hero {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-sage) 0%, var(--white) 100%);
    text-align: left;
}

.hero-flex {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-emerald);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-emerald);
    margin-bottom: 15px;
}

.hero-title span {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-image-wrap {
    position: relative;
    margin-bottom: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 10px solid var(--white);
    transition: var(--transition);
}

.hero-image-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.lp-app-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.lp-app-badges img {
    height: 35px;
    width: auto;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.hero-features div:last-child {
    grid-column: span 2;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--white);
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
    .hero-features {
        gap: 12px;
    }
    .feature-tag {
        gap: 10px;
        font-size: 14px;
        padding: 10px 15px;
    }
}

.feature-tag i {
    color: var(--secondary-green);
    font-size: 18px;
}

/* Sticky CTA Bar */
.sticky-cta-bar {
    background: var(--primary-emerald);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    color: var(--white);
}

.sticky-cta-bar h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.btn-explore {
    background: var(--white);
    color: var(--primary-emerald) !important;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

/* Social Proof / Reviews */
.social-proof {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    max-width: 280px;
    margin: 0 auto 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.learner-avatars {
    display: flex;
    margin-right: -10px;
}

.learner-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-right: -10px;
    object-fit: cover;
}

.proof-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.proof-text .stars {
    color: var(--accent-gold);
    font-size: 12px;
    display: block;
    margin-top: 2px;
}

/* Problems Grid */
.problems-section {
    background: var(--bg-cream);
    padding: 60px 0;
    border-radius: 40px 40px 0 0;
}

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

.section-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-emerald);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.problem-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.problem-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.problem-item span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

/* Features Split Section (Daughter + Promise) */
.split-features-section {
    padding: 80px 0;
    background: #fff5f7; /* Very soft pink */
}

.split-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.daughter-column, .promise-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.daughter-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.daughter-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.daughter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.daughter-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-emerald);
}

.daughter-list li i {
    color: #ec4899;
}

/* Promise Section */
.promise-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Trust Stats */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
    background: #f0fdf4; /* Light green background */
    border: 1px solid #dcfce7;
    border-radius: 20px;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-item:hover {
    transform: translateY(-3px);
    background: #dcfce7;
}

.stat-icon {
    font-size: 20px;
    margin-bottom: 5px;
}

.stat-num {
    display: block;
    font-size: 20px; /* Bigger font */
    font-weight: 700;
    color: var(--primary-emerald);
    line-height: 1.2;
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.stat-sublabel {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f0fdf4; /* Consistent colorful background */
    border: 1px solid #dcfce7;
    border-radius: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.promise-item i {
    color: var(--secondary-green);
    font-size: 20px;
}

/* Category Choice */
.category-section {
    padding: 60px 0;
    background: var(--bg-sage);
}

.course-sub-card {
    background: var(--white);
    border-radius: 30px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
}

.cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d1fae5;
    color: #065f46;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.cat-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.cat-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.cat-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.cat-features li::before {
    content: "→";
    color: var(--secondary-green);
}

/* Add-ons Grid */
.add-ons-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

@media (min-width: 1024px) {
    .add-ons-grid {
        flex-direction: row;
        align-items: stretch;
    }
    .add-ons-grid .course-sub-card {
        flex: 1;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
    }
    .add-ons-grid .course-sub-card .btn-explore {
        margin-top: auto;
    }
}

/* Kaise Kaam Karta Hai */
.how-it-works {
    padding: 60px 0;
    background: var(--white);
}

.steps-list {
    max-width: 500px;
    margin: 0 auto;
}
.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.step-num {
    width: 35px;
    height: 35px;
    background: var(--secondary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.step-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Bottom Nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-emerald);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 2000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
}

.nav-item.active {
    color: var(--accent-gold);
}

.nav-item i {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .problem-item {
        padding: 20px;
    }
    .problem-item img {
        width: 35px;
        height: 35px;
    }
    .problem-item span {
        font-size: 10px;
    }
}

@media (min-width: 1024px) {
    .hero-flex {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    .hero-text { flex: 1; }
    .hero-visual { flex: 1; }
    
    .problems-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .daughter-text {
        text-align: left;
    }

    .split-flex {
        flex-direction: row;
        align-items: stretch;
        gap: 40px;
    }

    .feature-card {
        padding: 25px;
    }
}

/* Courses Category Grid */
.courses-category-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .courses-category-grid {
        flex-direction: row;
        align-items: flex-start;
        gap: 50px;
    }
    .category-column {
        flex: 1;
    }
}

/* Sub Courses List Fix */
.sub-courses-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.course-mini-card {
    background: var(--white);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: transform 0.2s;
}

.course-mini-card:hover {
    transform: translateY(-2px);
}

/* Premium Interactive Elements & Animations */
.pricing-card-premium {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 30px;
    padding: 40px 30px;
    box-shadow: 0 20px 50px rgba(6, 78, 59, 0.12);
    border: 3px solid var(--accent-gold);
    position: relative;
    text-align: center;
    transition: var(--transition);
    animation: pulseBorder 3s infinite alternate;
}

@keyframes pulseBorder {
    0% {
        box-shadow: 0 20px 50px rgba(6, 78, 59, 0.12);
        border-color: var(--accent-gold);
    }
    100% {
        box-shadow: 0 20px 50px rgba(248, 182, 14, 0.25);
        border-color: #f59e0b;
    }
}

.btn-cta-pulse {
    background: var(--secondary-green);
    color: var(--white) !important;
    width: 100%;
    max-width: none;
    font-size: 18px;
    padding: 16px;
    border-radius: 50px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(21, 128, 61, 0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-cta-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn-cta-pulse:hover::after {
    left: 125%;
}

.btn-cta-pulse:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(21, 128, 61, 0.6);
    background: var(--primary-emerald);
}

/* Offline vs Online Comparison styles */
.comparison-grid {
    display: grid;
    gap: 20px;
}

@media(min-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* FAQ Section styles */
.faq-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    color: var(--primary-emerald);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-muted);
    font-size: 14px;
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question i {
    transition: transform 0.3s;
}

/* Upgraded Premium Pricing Layout CSS */
.pricing-section-upgraded {
    padding: 80px 0 120px;
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

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

.premium-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fffbeb;
    color: #b45309;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 1px solid #fde68a;
    box-shadow: 0 2px 4px rgba(217, 119, 6, 0.05);
}

.pricing-title-premium {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-emerald);
    line-height: 1.2;
    margin: 0 0 12px 0;
}

@media(min-width: 768px) {
    .pricing-title-premium {
        font-size: 38px;
    }
}

.pricing-title-premium span {
    color: var(--accent-gold);
}

.pricing-subtitle-premium {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.5;
}

.pricing-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1050px;
    margin: 0 auto;
}

@media(min-width: 992px) {
    .pricing-split-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
    }
}

.pricing-details-pane {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.04);
    border: 1px solid rgba(6, 78, 59, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media(min-width: 768px) {
    .pricing-details-pane {
        padding: 40px;
    }
}

.pricing-details-pane h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-emerald);
    margin-top: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.pricing-features-list li i {
    color: var(--secondary-green);
    font-size: 14px;
    background: #f0fdf4;
    padding: 4px;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    border: 1px solid #dcfce7;
}

.guarantee-card-premium {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.02);
}

.guarantee-card-premium i {
    font-size: 28px;
    color: #d97706;
    flex-shrink: 0;
    margin-top: 2px;
}

.guarantee-card-premium p {
    margin: 0;
    font-size: 13.5px;
    color: #92400e;
    font-weight: 600;
    line-height: 1.45;
}

.guarantee-card-premium strong {
    color: #78350f;
    font-weight: 800;
}

.pricing-checkout-card {
    background: var(--white);
    border-radius: 24px;
    padding: 35px 25px;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 20px 45px rgba(6, 78, 59, 0.08);
    position: relative;
    text-align: center;
    transition: var(--transition);
    animation: pulseBorderPremium 4s infinite alternate;
}

@media(min-width: 768px) {
    .pricing-checkout-card {
        padding: 45px 35px;
    }
}

@keyframes pulseBorderPremium {
    0% {
        border-color: var(--accent-gold);
        box-shadow: 0 20px 45px rgba(6, 78, 59, 0.08);
    }
    100% {
        border-color: #f59e0b;
        box-shadow: 0 20px 45px rgba(248, 182, 14, 0.2);
    }
}

.pricing-card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--primary-emerald);
    padding: 6px 22px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(248, 182, 14, 0.4);
    white-space: nowrap;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-highlight-premium {
    margin-bottom: 20px;
}

.price-label-top {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.trial-huge-price {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-emerald);
    line-height: 1.6;
    margin-bottom: 5px;
}

.trial-huge-price span {
    color: var(--accent-gold);
}

.trial-subtext {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-muted);
    display: block;
    margin-bottom: 20px;
}

.price-pill-after {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 100px;
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.01);
}

.price-pill-after .label {
    font-size: 11px;
    font-weight: 800;
    color: var(--secondary-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-pill-after .amount {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-emerald);
}

.price-pill-after .amount span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.luxury-countdown-container {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.countdown-urgency-title {
    font-size: 12px;
    font-weight: 700;
    color: #b45309;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-luxury-dials {
    display: flex;
    gap: 8px;
    align-items: center;
}

.countdown-dial {
    text-align: center;
}

.countdown-dial .digit {
    background: #d97706;
    color: white;
    font-size: 20px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 8px;
    font-family: monospace;
    display: inline-block;
    min-width: 36px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.countdown-dial.urgent .digit {
    background: #dc2626;
}

.countdown-dial .label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #b45309;
    margin-top: 4px;
    text-transform: uppercase;
}

.countdown-separator {
    font-size: 20px;
    font-weight: 800;
    color: #d97706;
    margin-top: -18px;
}

.trust-badges-premium {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.trust-badge-item {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-badge-item i {
    color: var(--secondary-green);
}

/* Dynamic Segment Selector */
.course-segment-container {
    margin: 20px 0 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.segment-label {
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.course-segment-control {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 100px;
    position: relative;
    width: 100%;
    max-width: 280px;
    border: 1px solid #e2e8f0;
}

.segment-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 2;
    outline: none;
}

.segment-btn.active {
    color: var(--primary-emerald) !important;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(6, 78, 59, 0.08);
}

.segment-btn i {
    font-size: 14px;
}

.segment-btn.kids-btn.active i {
    color: #d97706;
}

.segment-btn.adults-btn.active i {
    color: var(--secondary-green);
}

