.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS *//* --- GOOGLE FONT IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- GLOBAL VARIABLES & RESETS --- */
:root {
    /* HypnoQiGong Brand Colors */
    --primary: #22546C;
    --secondary: #479FCC;
    --accent-pink: #F4989C;
    --accent-purple: #DAC4F7;
    --accent-green: #D6F6DD;
    
    /* Neutrals */
    --bg-light: #F8FAFB;
    --text-dark: #1a2332;
    --text-light: #6B7280;
    --border-color: #E0E8F0;
    --white: #FFFFFF;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(34, 84, 108, 0.08);
    --shadow-md: 0 8px 24px rgba(34, 84, 108, 0.12);
    --shadow-lg: 0 20px 40px rgba(34, 84, 108, 0.2);
    --shadow-xl: 0 30px 60px rgba(34, 84, 108, 0.25);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
}

p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.lead {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}


/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: white;
    position: relative;
}

/* Pricing Grid Base */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 32px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
    border-color: var(--secondary);
    border-width: 3px;
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
}

.pricing-amount {
    text-align: center;
    margin: 2rem 0;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.price-period {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 600;
}

.price-note {
    color: var(--accent-pink);
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.pricing-features {
    flex-grow: 1;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-icon {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
}

/* --- FIX: Ensure BOLD/STRONG tags work inside feature spans --- */
.feature-text strong {
    font-weight: 700 !important; /* Forces bold weight */
    color: var(--primary); /* Keeps strong text dark primary color */
}

.pricing-bonus {
    background: var(--accent-green);
    padding: 1.25rem;
    border-radius: 16px;
    margin: 1rem 0 2rem;
}

.pricing-bonus p {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0;
}

.pricing-cta {
    text-align: center;
}


/* --- NEW CSS FOR MONTHLY/YEARLY SELECTOR --- */
.billing-cycle-switch {
    display: flex;
    justify-content: center;
    gap: 1rem;
    background: var(--white);
    padding: 8px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    max-width: 450px;
    margin: 0 auto 3rem;
    border: 2px solid var(--border-color);
}

.cycle-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    font-family: 'Inter', sans-serif;
}

.cycle-btn.active {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.save-badge {
    position: absolute;
    top: -10px;
    right: 5px;
    background: var(--accent-pink);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* CRITICAL VISIBILITY STYLES */
.pricing-plan-group {
    display: none; /* Hides groups that are not active */
}

.pricing-plan-group.active {
    display: block; 
}

#monthlyPlans .pricing-grid,
#yearlyPlans .pricing-grid {
    display: grid;
}


/* --- RESPONSIVE STYLES --- */
@media (max-width: 1024px) {
    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .billing-cycle-switch {
        max-width: 100%;
    }

    .pricing-card {
        padding: 2rem;
    }
}/* End custom CSS */