.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS */: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;
}

/* Badge/Tag */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-green);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, 
        rgba(34, 84, 108, 0.95) 0%, 
        rgba(71, 159, 204, 0.9) 100%);
    color: white;
    overflow: hidden;
}

.hero img {
    transition: var(--transition);
}

.hero img:hover {
    transform: scale(1.02);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(218, 196, 247, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(214, 246, 221, 0.2) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    color: white;
}

.hero .lead {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.hero-image-placeholder {
    aspect-ratio: 4 / 5;
    min-height: 500px;
}

.hero-highlight {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 2rem;
    margin: 2rem 0;
}

.hero-highlight h3 {
    color: white;
    margin-bottom: 1rem;
}

.hero-highlight ul {
    list-style: none;
}

.hero-highlight li {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.hero-highlight li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 900;
    color: var(--accent-green);
    font-size: 1.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Feature Image Section */
.feature-image-section {
    padding: 120px 0;
    background: white;
}

.feature-image-section img {
    transition: var(--transition);
}

.feature-image-section img:hover {
    transform: scale(1.03);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.feature-grid.reverse {
    direction: rtl;
}

.feature-grid.reverse > * {
    direction: ltr;
}

.feature-content h2 {
    margin-bottom: 1.5rem;
}

.feature-image-placeholder {
    aspect-ratio: 16 / 10;
}

/* Benefits Section */
.benefits {
    position: relative;
    padding: 120px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -400px;
    right: -400px;
    border-radius: 50%;
}

.how-it-works h2,
.how-it-works .lead {
    color: white;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--accent-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: var(--shadow-md);
}

.step-card h3 {
    color: white;
    margin: 1.5rem 0 1rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.how-it-works-conclusion {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.how-it-works-conclusion p {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.how-it-works-conclusion h3 {
    color: white;
    font-size: 1.5rem;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: white;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 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;
}

.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;
}

/* Comparison Table */
.comparison {
    margin-top: 5rem;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.comparison h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

thead th {
    background: var(--primary);
    color: white;
    padding: 1.25rem;
    font-weight: 700;
    font-size: 1.125rem;
}

thead th:first-child {
    border-top-left-radius: 12px;
}

thead th:last-child {
    border-top-right-radius: 12px;
}

tbody tr:nth-child(even) {
    background: var(--bg-light);
}

td, th {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

td:not(:first-child) {
    text-align: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(218, 196, 247, 0.3) 0%, 
        rgba(214, 246, 221, 0.3) 100%);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    border: 3px solid var(--accent-green);
}

.testimonial-avatar:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    color: var(--accent-purple);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: white;
}

.faq-grid {
    max-width: 900px;
    margin: 4rem auto 0;
}

.faq-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--secondary);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    background: var(--accent-green);
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 2rem;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(34, 84, 108, 0.97) 0%, 
        rgba(71, 159, 204, 0.95) 100%);
    color: white;
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(218, 196, 247, 0.2) 0%, transparent 70%);
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.final-cta .lead {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-note {
    margin-top: 2rem;
    font-size: 1.125rem;
    color: white;
    font-weight: 600;
}

/* Signup Modal */
.signup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0.95);
    z-index: 9999;
    padding: 2rem;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.signup-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.signup-modal-content {
    background: white;
    border-radius: 32px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.4s ease;
    overflow: hidden;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.signup-modal-header {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    padding: 3rem 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-weight: 300;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.signup-modal-header h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.signup-modal-header .price {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin: 1rem 0;
}

.signup-modal-header .trial-badge {
    display: inline-block;
    background: var(--accent-green);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1rem;
}

.signup-modal-body {
    padding: 2.5rem;
}

.signup-benefits {
    margin-bottom: 2rem;
}

.signup-benefit {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.signup-benefit-icon {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.signup-cta-button {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    display: block;
    text-align: center;
}

.signup-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.signup-note {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-card.popular {
        transform: scale(1);
    }

    .hero-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .steps-grid,
    .benefits-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .comparison {
        overflow-x: auto;
    }

    table {
        min-width: 600px;
    }

    .signup-modal {
        padding: 1rem;
    }

    .signup-modal-content {
        border-radius: 24px;
    }

    .signup-modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .signup-modal-header h3 {
        font-size: 1.5rem;
    }

    .signup-modal-header .price {
        font-size: 2.5rem;
    }

    .signup-modal-body {
        padding: 1.5rem;
    }

    .pricing .container > div:last-of-type {
        margin-top: 3rem !important;
        padding: 2px !important;
    }

    .pricing .container > div:last-of-type > div {
        padding: 2rem 1.5rem !important;
    }

    .pricing .container > div:last-of-type h3 {
        font-size: 1.5rem !important;
    }

    .pricing .container > div:last-of-type p {
        font-size: 1rem !important;
    }

    .pricing .container > div:last-of-type > div > div:last-child {
        flex-direction: column !important;
        padding: 0.75rem 1.5rem !important;
    }

    .pricing .container > div:last-of-type span:last-child {
        font-size: 1rem !important;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}/* End custom CSS */