/* ================================
   CSS VARIABLES - Easy Customization
   ================================ */

:root {
    /* Color System - Deeper Filmic Palette with Yellow/Orange Accents */
    --primary-dark: #0d4a6b;
    --primary-light: #1a7299;
    --primary-lightest: #5eb5d9;
    --primary-gradient: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);

    /* Primary Accents - Warm Yellow/Orange */
    --accent-gold: #F5A623;
    --accent-amber: #FFBE0B;
    --accent-orange: #FF9500;
    --accent-warm: #FFD166;
    --accent-sunset: #FB8500;

    /* Secondary Colors (limited use) */
    --accent-green: #10b981;
    --accent-green-light: #34d399;

    /* Text Colors */
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --text-muted: #9ca3af;

    /* Backgrounds */
    --background-white: #ffffff;
    --background-off-white: #fafbfc;
    --background-light: #f8fafc;
    --background-subtle: #f1f5f9;
    --border-light: #e2e8f0;
    --border-lighter: #f1f5f9;
    --border-focus: var(--primary-light);

    /* Filmic Warm Tints */
    --film-warm-tint: rgba(255, 200, 150, 0.03);
    --film-grain-opacity: 0.025;
    --glass-warm: rgba(255, 245, 235, 0.08);

    /* Class Type Colors */
    --manifesting-lab-color: #1a7299;
    --manifesting-lab-gradient: linear-gradient(135deg, #0d4a6b 0%, #1a7299 100%);
    --community-night-color: #F5A623;
    --community-night-gradient: linear-gradient(135deg, #b06a10 0%, #d4890f 100%);

    /* Glass Panel System - Tiered Hierarchy */
    /* Tier 1: Primary - Products & CTAs (most prominent) */
    --glass-primary-bg: rgba(255, 255, 255, 0.12);
    --glass-primary-bg-hover: rgba(255, 255, 255, 0.18);
    --glass-primary-border: rgba(255, 255, 255, 0.25);
    --glass-primary-border-hover: rgba(255, 255, 255, 0.35);

    /* Tier 2: Accent - Premium/Upsell (golden warmth) */
    --glass-accent-bg: rgba(255, 200, 120, 0.12);
    --glass-accent-bg-hover: rgba(255, 200, 120, 0.18);
    --glass-accent-border: rgba(255, 180, 100, 0.35);
    --glass-accent-glow: 0 0 30px rgba(255, 180, 100, 0.20);

    /* Tier 3: Secondary - Containers (subtle framing) */
    --glass-secondary-bg: rgba(255, 255, 255, 0.04);
    --glass-secondary-border: rgba(255, 255, 255, 0.08);

    /* Tier 4: Tertiary - Supporting content (most subtle) */
    --glass-tertiary-bg: rgba(255, 255, 255, 0.02);
    --glass-tertiary-border: rgba(255, 255, 255, 0.05);

    /* Legacy compatibility */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-bg-active: rgba(255, 255, 255, 0.10);
    --glass-border: rgba(255, 255, 255, 0.10);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    --glass-highlight: rgba(255, 255, 255, 0.08);

    /* Enhanced Shadow System with Warm Tones */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(29, 122, 175, 0.25);
    --shadow-glow-hover: 0 0 60px rgba(29, 122, 175, 0.35);
    --shadow-glow-warm: 0 0 40px rgba(245, 166, 35, 0.25);
    --shadow-glow-amber: 0 0 30px rgba(255, 190, 11, 0.3);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1);

    /* Spacing System */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ================================
   BASE RESET & TYPOGRAPHY
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-dark);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 0;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--accent-green);
    outline-offset: 2px;
}

body {
    background: linear-gradient(135deg, #051a25 0%, #0d4a6b 30%, #1a7299 50%, #0d4a6b 70%, #051a25 100%);
    background-size: 300% 300%;
    animation: gradientFlow 20s ease infinite;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

/* Filmic Grain Overlay - Multi-layered Nostalgic Effect */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        /* Fine grain layer */
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain1'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain1)'/%3E%3C/svg%3E"),
        /* Medium grain layer */
        url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain2)'/%3E%3C/svg%3E");
    background-size: 256px 256px, 512px 512px;
    opacity: 0.035;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: overlay;
    animation: grainShift 0.5s steps(4) infinite;
}

@keyframes grainShift {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-2px, 1px); }
    50% { transform: translate(1px, -1px); }
    75% { transform: translate(-1px, 2px); }
}

/* Warm Film Tint + Vignette Overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background:
        /* Vignette effect */
        radial-gradient(ellipse at center,
            transparent 0%,
            transparent 50%,
            rgba(0, 0, 0, 0.15) 100%
        ),
        /* Warm film tint */
        linear-gradient(180deg,
            rgba(255, 200, 150, 0.025) 0%,
            transparent 30%,
            transparent 70%,
            rgba(255, 180, 120, 0.035) 100%
        );
    pointer-events: none;
    z-index: 9999;
}

/* ================================
   MAIN CONTAINER
   ================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    overflow: hidden;
    animation: slideIn 0.6s ease-out;
    padding-bottom: 120px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   HEADER SECTION
   ================================ */

.header {
    color: white;
    padding: 60px 24px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    margin-bottom: 0;
}

/* Noise texture overlay for depth */
.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

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

/* Enhanced Aurora orbs */
.header-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    mix-blend-mode: soft-light;
}

.header-orb-1 {
    top: -20%;
    left: -10%;
    width: 50%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(41, 171, 226, 0.5) 0%, transparent 60%);
    animation: orbFloat1 12s ease-in-out infinite;
}

.header-orb-2 {
    bottom: -30%;
    right: -10%;
    width: 60%;
    height: 130%;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.4) 0%, transparent 60%);
    animation: orbFloat2 15s ease-in-out infinite;
}

.header-orb-3 {
    top: 20%;
    right: 20%;
    width: 30%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.25) 0%, transparent 60%);
    animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(40px, -30px) scale(1.15); opacity: 0.7; }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    50% { transform: translate(-30px, 20px) scale(1.1); opacity: 0.6; }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(20px, -15px) scale(0.9); opacity: 0.5; }
}

.header-tagline {
    font-size: 0.75em;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 1;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header-tagline::before,
.header-tagline::after {
    content: '✦';
    font-size: 0.7em;
    opacity: 0.7;
}

.header h1 {
    font-size: clamp(2.2em, 5vw, 3.5em);
    margin-bottom: 14px;
    font-weight: 800;
    position: relative;
    z-index: 2;
    letter-spacing: -1.5px;
    line-height: 1.1;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.25);
    background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header p {
    font-size: 1.15em;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.header-subtitle {
    font-size: 1.25em;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* Countdown Timer */
.countdown-container {
    margin-top: 28px;
    position: relative;
    z-index: 2;
}

.countdown-label {
    display: block;
    font-size: 0.9em;
    opacity: 0.9;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.countdown-unit {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 20px;
    border-radius: var(--radius-lg);
    min-width: 80px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.countdown-unit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.countdown-unit:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.countdown-value {
    display: block;
    font-size: 2.2em;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.countdown-text {
    display: block;
    font-size: 0.7em;
    opacity: 0.8;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Selection Counter in Header */
.selection-counter {
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(16, 185, 129, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9em;
    animation: pulseGlow 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.5); }
}

/* ================================
   CART RECOVERY NOTICE
   ================================ */

.cart-recovery-notice {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 15px 20px;
    margin: 0 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideIn 0.3s ease;
}

.cart-recovery-notice p {
    color: #92400e;
    font-weight: 500;
    margin: 0;
}

.clear-cart-btn {
    background: transparent;
    border: 1px solid #92400e;
    color: #92400e;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85em;
    transition: all 0.2s ease;
}

.clear-cart-btn:hover {
    background: #92400e;
    color: white;
}
/* ================================
   TESTIMONIALS SECTION
   ================================ */

.testimonials-section {
    margin: 50px 0 40px;
    padding: 50px 24px;
    background: linear-gradient(180deg, var(--background-subtle) 0%, var(--background-off-white) 100%);
    border-radius: var(--radius-xl);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(29, 122, 175, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-title {
    text-align: center;
    font-size: 1.6em;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.testimonials-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1em;
    margin-bottom: 36px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--background-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    opacity: 0;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--primary-lightest);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.testimonial-card:hover::before {
    opacity: 1;
}

/* Star rating */
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-gold);
    filter: drop-shadow(0 1px 2px rgba(245, 166, 35, 0.4));
}

.testimonial-quote-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-lightest) 0%, rgba(161, 215, 247, 0.5) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.testimonial-quote-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-dark);
}

.testimonial-text {
    color: var(--text-medium);
    font-style: normal;
    line-height: 1.75;
    margin-bottom: 24px;
    font-size: 0.95em;
    position: relative;
    z-index: 1;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border-lighter);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1em;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(29, 122, 175, 0.25);
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95em;
}

.author-detail {
    font-size: 0.8em;
    color: var(--text-light);
    line-height: 1.4;
}

/* ================================
   FAQ SECTION
   ================================ */

.faq-section {
    margin: 50px 0 30px;
    padding: 40px 0;
    border-top: none;
}

.faq-title {
    text-align: center;
    font-size: 1.6em;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.faq-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.faq-item.active {
    border-color: rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 1em;
    font-weight: 600;
    color: white;
    text-align: left;
    transition: var(--transition-fast);
    font-family: inherit;
}

.faq-question span {
    flex: 1;
}

.faq-question:hover {
    color: rgba(255, 255, 255, 0.9);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: var(--transition-smooth);
    stroke: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 4px;
}

.faq-item:hover .faq-icon {
    stroke: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    stroke: white;
    background: rgba(255, 255, 255, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    padding-top: 16px;
    font-size: 0.95em;
}

/* ================================
   CLASS TYPE TABS
   ================================ */

.class-type-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--background-white);
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 30px;
}

.tab-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    border: none;
    background: var(--background-light);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.tab-button:first-child::before {
    background: var(--manifesting-lab-color);
    opacity: 0;
}

.tab-button:last-child::before {
    background: var(--community-night-color);
    opacity: 0;
}

.tab-button:hover {
    background: var(--background-white);
}

.tab-button.active {
    background: var(--background-white);
}

.tab-button.active::before {
    opacity: 1;
}

.tab-icon {
    font-size: 2em;
    margin-bottom: 8px;
}

.tab-title {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.tab-subtitle {
    font-size: 0.85em;
    color: var(--text-light);
    margin-bottom: 8px;
}

.tab-price {
    font-size: 0.9em;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--background-light);
}

.tab-button[data-tab="manifesting-lab"] .tab-price {
    color: var(--manifesting-lab-color);
}

.tab-button[data-tab="community-night"] .tab-price {
    color: var(--community-night-color);
}

.tab-button.active .tab-price {
    color: white;
}

.tab-button[data-tab="manifesting-lab"].active .tab-price {
    background: var(--manifesting-lab-gradient);
}

.tab-button[data-tab="community-night"].active .tab-price {
    background: var(--community-night-gradient);
}

/* ================================
   CLASS SECTIONS
   ================================ */

.class-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.class-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-header {
    background: var(--background-white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}

.section-header h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.manifesting-lab-header h2 {
    color: var(--manifesting-lab-color);
}

.community-night-header h2 {
    color: var(--community-night-color);
}

.section-description {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.pricing-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.price-tag {
    background: var(--manifesting-lab-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1em;
}

.price-tag.pwyw {
    background: var(--community-night-gradient);
}

.bundle-offer {
    color: var(--accent-green);
    font-weight: 500;
    font-size: 0.9em;
}

.pwyw-note {
    color: var(--text-light);
    font-size: 0.9em;
    font-style: italic;
}

/* ================================
   BUNDLE CARD - Premium Design
   ================================ */

.bundle-card {
    background: linear-gradient(145deg,
        rgba(255, 200, 150, 0.18) 0%,
        rgba(255, 180, 120, 0.14) 50%,
        rgba(255, 160, 100, 0.10) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 180, 100, 0.40);
    border-radius: var(--radius-2xl);
    padding: 0;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    box-shadow:
        0 8px 32px rgba(255, 160, 100, 0.25),
        0 0 40px rgba(255, 180, 100, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Subtle inner glow for warmth */
.bundle-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg,
        rgba(255, 200, 150, 0.1) 0%,
        transparent 50%,
        rgba(255, 180, 120, 0.05) 100%);
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.bundle-card:hover::before {
    opacity: 0.8;
}

.bundle-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 40px rgba(255, 160, 100, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 200, 150, 0.45);
}

.bundle-card.selected {
    border-color: rgba(255, 180, 120, 0.6);
    box-shadow:
        0 15px 45px rgba(255, 160, 100, 0.3),
        0 0 0 2px rgba(255, 180, 120, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(145deg,
        rgba(255, 200, 150, 0.22) 0%,
        rgba(255, 180, 120, 0.18) 50%,
        rgba(255, 160, 100, 0.12) 100%);
}

.bundle-card.selected::before {
    opacity: 1;
}

/* Decorative elements */
.bundle-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 200, 150, 0.15) 0%, transparent 60%);
    pointer-events: none;
    transition: var(--transition-slow);
}

.bundle-card:hover::after {
    transform: scale(1.2);
    opacity: 0.8;
}

.bundle-content {
    padding: 40px 45px;
    position: relative;
    z-index: 1;
}

.bundle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.bundle-header h3 {
    font-size: 1.6em;
    color: white;
    margin: 0;
    flex: 1;
    font-weight: 700;
    letter-spacing: -0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.bundle-price {
    text-align: right;
    position: relative;
}

.bundle-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background: linear-gradient(135deg, #f5a623 0%, #e8940f 100%);
    color: white;
    font-size: 0.75em;
    font-weight: 700;
    padding: 8px 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
    z-index: 10;
}

.bundle-price-original {
    font-size: 1.2em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-right: 8px;
    display: block;
    margin-bottom: 4px;
}

.bundle-price-amount {
    font-size: 3.0em;
    font-weight: 800;
    color: #fff8f0;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(255, 200, 120, 0.3);
    letter-spacing: -2px;
    display: block;
}

.bundle-savings {
    display: inline-block;
    background: rgba(76, 175, 80, 0.25);
    color: #7dde83;
    font-size: 0.85em;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 8px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.bundle-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05em;
    margin-bottom: 28px;
    line-height: 1.7;
}

.bundle-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
}

.bundle-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: white;
    font-size: 0.95em;
    line-height: 1.5;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.bundle-features li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.bundle-features .check-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    margin-top: 1px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.bundle-select-btn {
    width: 100%;
    padding: 20px 35px;
    font-size: 1.15em;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(29, 122, 175, 0.3);
}

/* Shimmer effect on button */
.bundle-select-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.bundle-select-btn:hover::before {
    left: 100%;
}

.bundle-select-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 122, 175, 0.4);
}

.bundle-select-btn:active {
    transform: translateY(-1px);
}

.bundle-card.selected .bundle-select-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.35);
}

.bundle-card.selected .bundle-select-btn:hover {
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.45);
}

.bundle-btn-selected {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    color: white;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

.section-divider span {
    padding: 0 20px;
    font-size: 0.9em;
    font-style: italic;
    text-transform: lowercase;
}

/* Bundle Section Wrapper */
.bundle-section-wrapper {
    margin-bottom: 10px;
}

/* Individual Classes Section */
.individual-classes-section {
    transition: opacity 0.3s ease;
}

.individual-classes-section.dimmed,
.class-section-wrapper.dimmed {
    opacity: 0.4;
    pointer-events: none;
    filter: grayscale(30%);
}

.individual-classes-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.individual-note {
    color: var(--text-light);
    font-size: 0.9em;
}

/* Mobile adjustments for bundle card */
@media (max-width: 768px) {
    .bundle-content {
        padding: 25px 20px;
    }

    .bundle-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .bundle-price {
        text-align: left;
    }

    .bundle-price-amount {
        font-size: 1.8em;
    }

    .bundle-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bundle-select-btn {
        padding: 14px 20px;
        font-size: 1.05em;
    }
}

@media (max-width: 480px) {
    .bundle-header h3 {
        font-size: 1.2em;
    }

    .bundle-features li {
        font-size: 0.9em;
    }
}

/* ================================
   FORM SECTIONS
   ================================ */

.form-section {
    padding: 10px;
}

.section-title {
    font-size: 1.5em;
    color: var(--text-dark);
    margin-bottom: 20px;
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 30px;
    background: var(--primary-light);
    margin-right: 15px;
    border-radius: 2px;
}

/* ================================
   DATE SELECTION GRID
   ================================ */

.date-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-bottom: 30px;
    perspective: 1000px;
}

.date-option {
    background: var(--glass-primary-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid var(--glass-primary-border);
    border-radius: 16px;
    padding: 26px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

/* Manifesting Lab - Clear blue identity */
.manifesting-lab-option {
    background: rgba(20, 90, 140, 0.40);
    border-color: rgba(60, 160, 220, 0.50);
    box-shadow:
        0 8px 32px rgba(20, 90, 140, 0.25),
        0 0 20px rgba(60, 160, 220, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Community Nights - Warm amber identity */
.community-night-option {
    background: rgba(180, 100, 30, 0.40);
    border-color: rgba(240, 160, 60, 0.50);
    box-shadow:
        0 8px 32px rgba(180, 100, 30, 0.25),
        0 0 20px rgba(240, 160, 60, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.date-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.manifesting-lab-option::before {
    background: var(--manifesting-lab-gradient);
}

.community-night-option::before {
    background: var(--community-night-gradient);
}

.date-option:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.manifesting-lab-option:hover {
    background: rgba(25, 100, 160, 0.55);
    border-color: rgba(80, 180, 240, 0.65);
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 16px 48px rgba(20, 90, 140, 0.35),
        0 0 30px rgba(60, 160, 220, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.community-night-option:hover {
    background: rgba(200, 120, 40, 0.55);
    border-color: rgba(255, 180, 80, 0.65);
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 16px 48px rgba(180, 100, 30, 0.35),
        0 0 30px rgba(240, 160, 60, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.date-option.selected {
    transform: translateY(-2px);
}

.manifesting-lab-option.selected {
    border-color: rgba(29, 122, 175, 0.6);
    box-shadow:
        0 15px 35px rgba(29, 122, 175, 0.25),
        0 0 0 1px rgba(29, 122, 175, 0.3);
}

.community-night-option.selected {
    border-color: rgba(245, 166, 35, 0.6);
    box-shadow:
        0 15px 35px rgba(245, 166, 35, 0.25),
        0 0 0 1px rgba(245, 166, 35, 0.3);
}

.date-option.selected::before {
    opacity: 1;
}

.date-option.selected .date-info {
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.date-option input[type="checkbox"] {
    display: none;
}

.date-info h3 {
    font-size: 1.35em;
    margin-bottom: 6px;
    transition: color 0.3s ease;
    color: white;
    font-weight: 700;
    letter-spacing: -0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.date-info p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.date-info p.instructor {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
    font-style: italic;
}

.date-info p.class-title {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Price Badge on Cards */
.price-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.95em;
    font-weight: 700;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.20);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.30);
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pwyw-badge {
    background: rgba(245, 166, 35, 0.2);
    color: white;
    border: 1px solid rgba(245, 166, 35, 0.3);
}

.date-option.selected .price-badge {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

/* Past Date Styling */
.date-option.past-date {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(100%);
}

.date-option.past-date::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128, 128, 128, 0.3);
    border-radius: 12px;
}

.past-badge {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: 600;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================
   PAY WHAT YOU WANT SECTION
   ================================ */

.pwyw-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 16px;
    padding: 25px;
    margin-top: 20px;
    animation: slideUp 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.pwyw-header {
    text-align: center;
    margin-bottom: 20px;
}

.pwyw-header h3 {
    color: white;
    font-size: 1.3em;
    margin-bottom: 8px;
    font-weight: 600;
}

.pwyw-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
}

.pwyw-options {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.pwyw-preset {
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.pwyw-preset:hover {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.2);
}

.pwyw-preset.selected {
    background: var(--community-night-gradient);
    border-color: var(--community-night-color);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.pwyw-custom {
    text-align: center;
    margin-top: 20px;
}

.pwyw-custom label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
}

.custom-amount-input {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 5px 15px;
    transition: border-color 0.3s ease;
}

.custom-amount-input:focus-within {
    border-color: var(--community-night-color);
    background: rgba(255, 255, 255, 0.15);
}

.currency-symbol {
    font-size: 1.3em;
    font-weight: 600;
    color: white;
    margin-right: 5px;
}

.custom-amount-input input {
    border: none;
    background: transparent;
    font-size: 1.5em;
    font-weight: 600;
    width: 100px;
    text-align: center;
    outline: none;
    color: white;
}

.custom-amount-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.pwyw-free-note {
    text-align: center;
    margin-top: 15px;
    color: #6ee7b7;
    font-size: 0.9em;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ================================
   FREE REGISTRATION MESSAGE
   ================================ */

.free-registration-message {
    background: rgba(16, 185, 129, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.free-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.free-registration-message h3 {
    color: #6ee7b7;
    font-size: 1.5em;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.free-registration-message p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1em;
    line-height: 1.6;
}

/* ================================
   FORM INPUTS
   ================================ */

.customer-info, .billing-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 6px;
}

label .required {
    color: #ef4444;
    font-size: 0.9em;
}

input[type="text"], input[type="email"] {
    padding: 16px 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 1em;
    transition: var(--transition-smooth);
    background: var(--background-white);
    font-family: inherit;
    color: var(--text-dark);
}

input[type="text"]::placeholder, input[type="email"]::placeholder {
    color: var(--text-muted);
}

input[type="text"]:hover, input[type="email"]:hover {
    border-color: var(--primary-lightest);
}

input[type="text"]:focus, input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(41, 171, 226, 0.12), var(--shadow-soft);
    background: var(--background-white);
}

/* Input with icon */
.input-with-icon {
    position: relative;
}

.input-with-icon input {
    padding-left: 48px;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

.input-with-icon input:focus + .input-icon,
.input-with-icon input:not(:placeholder-shown) + .input-icon {
    color: var(--primary-light);
}

/* Enhanced Focus Indicators for Accessibility */
input[type="text"]:focus-visible,
input[type="email"]:focus-visible,
input[type="number"]:focus-visible,
button:focus-visible,
.date-option:focus-visible,
.pwyw-preset:focus-visible,
.checkout-button:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

/* Checkbox focus indicators */
input[type="checkbox"]:focus-visible + span,
input[type="checkbox"]:focus-visible + label {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Billing Same As Participant */
.billing-same-container {
    margin-bottom: 20px;
}

.billing-same-container .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
}

.billing-same-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-light);
    cursor: pointer;
}

/* Secure Checkout Notice */
.secure-checkout-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #86efac;
    border-radius: 10px;
    margin-top: 15px;
    color: #166534;
    font-size: 0.9em;
    font-weight: 500;
}

.secure-checkout-notice svg {
    stroke: #16a34a;
    flex-shrink: 0;
}

#card-element {
    padding: 16px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
    background: var(--background-white);
}

#card-element:focus-within {
    border-color: var(--border-focus);
}

/* ================================
   CHECKOUT BUTTON - Premium
   ================================ */

.checkout-button {
    background: linear-gradient(135deg, #1D7AAF 0%, #29ABE2 50%, #1D7AAF 100%);
    background-size: 200% 200%;
    animation: buttonGradient 4s ease infinite;
    color: white;
    border: none;
    padding: 20px 32px;
    font-size: 1.15em;
    font-weight: 700;
    border-radius: var(--radius-lg);
    cursor: pointer;
    width: 100%;
    transition: var(--transition-smooth);
    margin-top: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow:
        0 8px 24px rgba(29, 122, 175, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: 0.3px;
    font-family: inherit;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

/* Shimmer effect */
.checkout-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.1) 25%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0.1) 75%,
        transparent 100%
    );
    transition: left 0.7s ease;
}

/* Inner border glow */
.checkout-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.checkout-button:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow:
        0 16px 40px rgba(29, 122, 175, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.checkout-button:hover:not(:disabled)::before {
    left: 100%;
}

.checkout-button:active:not(:disabled) {
    transform: translateY(-1px);
    box-shadow:
        0 8px 20px rgba(29, 122, 175, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

.checkout-button:disabled {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
    background-size: 100% 100%;
    animation: none;
    cursor: not-allowed;
    transform: none;
    box-shadow: var(--shadow-soft);
    opacity: 0.8;
}

/* Button icon animation */
.checkout-button .button-icon {
    transition: transform var(--transition-smooth);
}

.checkout-button:hover:not(:disabled) .button-icon {
    transform: translateX(4px);
}

.button-text {
    display: inline;
}

.button-spinner {
    display: none;
    align-items: center;
    gap: 10px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ================================
   ERROR HANDLING
   ================================ */

.error-message {
    color: #dc3545;
    margin-top: 10px;
    padding: 12px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    display: none;
    font-size: 0.95em;
}

/* ================================
   FIXED BOTTOM PRICING BAR
   ================================ */

.pricing-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background-white);
    border-top: 3px solid var(--primary-light);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.pricing-bar.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.pricing-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-breakdown {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.pricing-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.pricing-label {
    font-size: 0.75em;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-value {
    font-size: 1.1em;
    color: var(--text-dark);
    font-weight: 600;
}

.pricing-item.total .pricing-label {
    font-size: 0.85em;
    color: var(--primary-dark);
}

.pricing-item.total .pricing-value {
    font-size: 1.6em;
    color: var(--primary-light);
    font-weight: 700;
}

.pricing-item-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

#discount-text {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.discount-badge {
    background: var(--accent-green);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ================================
   FLOATING CHECKOUT BUTTON
   ================================ */

.floating-checkout {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    animation: slideInUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-checkout-content {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    padding: 12px 16px 12px 20px;
    border-radius: 50px;
    box-shadow:
        0 8px 32px rgba(29, 122, 175, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-checkout-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.floating-checkout-count {
    font-size: 0.75em;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.floating-checkout-total {
    font-size: 1.1em;
    color: white;
    font-weight: 700;
}

.floating-checkout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary-dark);
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.floating-checkout-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.floating-checkout-btn svg {
    transition: transform 0.3s ease;
}

.floating-checkout-btn:hover svg {
    transform: translateX(3px);
}

/* Mobile adjustments for floating checkout */
@media (max-width: 600px) {
    .floating-checkout {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }

    .floating-checkout-content {
        width: 100%;
        justify-content: space-between;
        padding: 10px 12px 10px 16px;
        border-radius: 16px;
    }

    .floating-checkout-btn {
        padding: 10px 16px;
        font-size: 0.9em;
    }
}

.pricing-bar.has-discount {
    border-top-color: var(--accent-green);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .header {
        padding: 20px 15px;
        border-radius: 12px 12px 0 0;
    }

    .header h1 {
        font-size: 1.8em;
    }

    /* Countdown Timer Mobile */
    .countdown-timer {
        gap: 10px;
    }

    .countdown-unit {
        padding: 8px 10px;
        min-width: 55px;
    }

    .countdown-value {
        font-size: 1.4em;
    }

    /* Cart Recovery Mobile */
    .cart-recovery-notice {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        padding: 30px 15px;
        margin: 40px 0 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 22px 20px;
    }

    .testimonial-card::before {
        font-size: 3em;
        top: 10px;
        left: 15px;
    }

    /* FAQ Mobile */
    .faq-question {
        padding: 15px;
        font-size: 0.95em;
    }

    .class-type-tabs {
        grid-template-columns: 1fr;
        border-radius: 0 0 12px 12px;
    }

    .tab-button {
        padding: 20px 15px;
    }

    .tab-button::before {
        width: 4px;
        height: auto;
        top: 0;
        bottom: 0;
        left: 0;
        right: auto;
    }

    .customer-info, .billing-info {
        grid-template-columns: 1fr;
    }

    .date-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        padding: 20px;
    }

    .pricing-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .pwyw-options {
        gap: 8px;
    }

    .pwyw-preset {
        padding: 10px 18px;
        font-size: 1em;
    }

    /* Mobile-optimized pricing bar */
    .pricing-bar-content {
        padding: 12px 15px;
        gap: 10px;
        justify-content: center;
    }

    .pricing-breakdown {
        gap: 15px;
    }

    .pricing-item {
        gap: 1px;
    }

    .pricing-label {
        font-size: 0.65em;
    }

    .pricing-value {
        font-size: 0.95em;
    }

    .pricing-item.total .pricing-label {
        font-size: 0.75em;
    }

    .pricing-item.total .pricing-value {
        font-size: 1.4em;
    }

    #discount-text {
        font-size: 0.75em;
        top: -30px;
    }

    .container {
        padding-bottom: 100px;
    }

    .section-title {
        font-size: 1.3em;
        margin-top: 25px;
    }

    .checkout-button {
        padding: 16px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.5em;
    }

    .tab-title {
        font-size: 1em;
    }

    .tab-subtitle {
        font-size: 0.8em;
    }

    .pwyw-preset {
        padding: 8px 14px;
        font-size: 0.9em;
    }

    .custom-amount-input input {
        font-size: 1.3em;
        width: 80px;
    }
}

/* ================================
   SCROLL REVEAL ANIMATIONS
   ================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered reveal for grid items */
.stagger-reveal > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-reveal.active > *:nth-child(1) { transition-delay: 0s; }
.stagger-reveal.active > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-reveal.active > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-reveal.active > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-reveal.active > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-reveal.active > *:nth-child(6) { transition-delay: 0.5s; }

.stagger-reveal.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   AMBIENT FLOATING ELEMENTS
   ================================ */

.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatOrb 20s ease-in-out infinite;
}

.ambient-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(29, 122, 175, 0.4) 0%, transparent 70%);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.ambient-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.3) 0%, transparent 70%);
    top: 40%;
    right: -5%;
    animation-delay: -7s;
}

.ambient-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 190, 11, 0.25) 0%, transparent 70%);
    bottom: 20%;
    left: 10%;
    animation-delay: -14s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -30px) scale(1.1);
    }
    50% {
        transform: translate(20px, 40px) scale(0.95);
    }
    75% {
        transform: translate(-30px, 20px) scale(1.05);
    }
}

/* ================================
   PRICING BAR ENHANCEMENTS
   ================================ */

.pricing-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* ================================
   REDUCED MOTION SUPPORT
   ================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .stagger-reveal > * {
        opacity: 1;
        transform: none;
    }
}

/* ================================
   SOCIAL PROOF BANNER
   ================================ */

.social-proof-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 25px;
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.proof-number {
    font-size: 1.8em;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.proof-stars {
    font-size: 1.2em;
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    letter-spacing: 2px;
}

.proof-label {
    font-size: 0.75em;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .social-proof-banner {
        flex-wrap: wrap;
        gap: 20px;
        padding: 15px 20px;
        border-radius: 20px;
    }

    .proof-divider {
        display: none;
    }

    .proof-number {
        font-size: 1.4em;
    }
}

/* ================================
   INSTRUCTOR SECTION
   ================================ */

.instructor-section {
    background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
    border-radius: 24px;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-medium);
}

.instructor-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.instructor-image {
    position: relative;
    flex-shrink: 0;
}

.instructor-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(29, 122, 175, 0.3);
    border: 4px solid white;
}

.instructor-initials {
    font-size: 3.5em;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.instructor-badge {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.instructor-badge svg {
    color: #FFD700;
}

.instructor-info {
    flex: 1;
}

.instructor-name {
    font-size: 1.8em;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.instructor-title {
    font-size: 1.1em;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.instructor-bio {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1em;
}

.instructor-stats {
    display: flex;
    gap: 30px;
}

.instructor-stats .stat {
    text-align: center;
    padding: 15px 20px;
    background: rgba(29, 122, 175, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.instructor-stats .stat:hover {
    background: rgba(29, 122, 175, 0.12);
    transform: translateY(-2px);
}

.instructor-stats .stat-number {
    display: block;
    font-size: 1.6em;
    font-weight: 700;
    color: var(--primary-dark);
}

.instructor-stats .stat-label {
    font-size: 0.8em;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .instructor-section {
        padding: 25px 20px;
    }

    .instructor-content {
        flex-direction: column;
        text-align: center;
    }

    .instructor-placeholder {
        width: 120px;
        height: 120px;
    }

    .instructor-initials {
        font-size: 2.5em;
    }

    .instructor-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .instructor-stats .stat {
        padding: 12px 16px;
    }
}

/* ================================
   TRANSFORMATION SECTION (What You'll Learn)
   ================================ */

.transformation-section {
    margin: 50px 0;
    padding: 50px 0;
    position: relative;
}

.transformation-title {
    text-align: center;
    font-size: 1.7em;
    color: var(--text-dark);
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.transformation-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.transformation-item {
    background: var(--background-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Gradient accent on hover */
.transformation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

/* Background glow effect */
.transformation-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(29, 122, 175, 0.04) 0%, transparent 50%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform var(--transition-slow);
    pointer-events: none;
}

.transformation-item:hover {
    border-color: var(--primary-lightest);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.transformation-item:hover::before {
    transform: scaleX(1);
}

.transformation-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Different accent colors - Blue and Gold/Orange palette */
.transformation-item:nth-child(1)::before { background: linear-gradient(135deg, #1D7AAF, #29ABE2); }
.transformation-item:nth-child(2)::before { background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber)); }
.transformation-item:nth-child(3)::before { background: linear-gradient(135deg, #29ABE2, #1D7AAF); }
.transformation-item:nth-child(4)::before { background: linear-gradient(135deg, var(--accent-amber), var(--accent-orange)); }

.transformation-icon {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(145deg, var(--background-subtle) 0%, var(--background-light) 100%);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.transformation-item:hover .transformation-icon {
    background: linear-gradient(145deg, var(--primary-lightest) 0%, rgba(161, 215, 247, 0.5) 100%);
    transform: scale(1.08);
}

.transformation-icon svg {
    color: var(--primary-dark);
    stroke: var(--primary-dark);
    transition: var(--transition-smooth);
}

.transformation-item:hover .transformation-icon svg {
    transform: scale(1.1);
}

.transformation-item h4 {
    font-size: 1.15em;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.transformation-item p {
    font-size: 0.9em;
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .transformation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .transformation-item {
        padding: 25px 20px;
    }
}

/* ================================
   ENHANCED SECURE CHECKOUT SECTION
   ================================ */

.secure-checkout-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #86efac;
    border-radius: 16px;
    padding: 25px 30px;
    margin-top: 20px;
    text-align: center;
}

.secure-checkout-section .secure-checkout-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #166534;
    font-weight: 600;
    font-size: 1.05em;
    margin-bottom: 15px;
    background: none;
    border: none;
    padding: 0;
}

.secure-checkout-section .secure-checkout-notice svg {
    stroke: #16a34a;
}

.payment-methods {
    margin-bottom: 15px;
}

.payment-label {
    display: block;
    font-size: 0.85em;
    color: #166534;
    margin-bottom: 12px;
    font-weight: 500;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icon {
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.payment-icon svg {
    color: #374151;
}

.checkout-note {
    font-size: 0.8em;
    color: #166534;
    opacity: 0.8;
    margin: 0;
}

/* ================================
   FLOATING CTA BUTTON
   ================================ */

.floating-cta {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    box-shadow:
        0 10px 30px rgba(29, 122, 175, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: floatPulse 2s ease-in-out infinite;
}

@keyframes floatPulse {
    0%, 100% {
        box-shadow:
            0 10px 30px rgba(29, 122, 175, 0.4),
            0 4px 10px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow:
            0 15px 40px rgba(29, 122, 175, 0.5),
            0 6px 15px rgba(0, 0, 0, 0.15);
    }
}

.floating-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 15px 40px rgba(29, 122, 175, 0.5),
        0 6px 15px rgba(0, 0, 0, 0.15);
}

.floating-cta-btn svg {
    animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 85px;
        right: 15px;
    }

    .floating-cta-btn {
        padding: 14px 22px;
        font-size: 0.9em;
    }

    .floating-cta-text {
        display: none;
    }

    .floating-cta-btn svg {
        margin: 0;
    }
}

/* ================================
   HEADER SUBTITLE ENHANCEMENT
   ================================ */

.header-subtitle {
    font-size: 1.2em;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* ================================
   CHECKOUT CONTAINER - Premium Box Design
   ================================ */

.checkout-container {
    background: var(--background-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: 0;
    margin: 40px 0 30px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.checkout-container:hover {
    box-shadow: var(--shadow-card-hover);
}

.checkout-container-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: white;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15em;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.checkout-container-header .checkout-icon {
    opacity: 0.9;
}

.checkout-section-inner {
    padding: 35px 40px;
}

.section-title-inline {
    font-size: 1.2em;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title-inline::before {
    content: '';
    width: 4px;
    height: 22px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.checkout-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-light) 20%, var(--border-light) 80%, transparent 100%);
    margin: 32px 0;
}

.form-hint {
    color: var(--text-light);
    font-size: 0.85em;
    margin-top: 6px;
    display: block;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 8px;
    padding: 16px;
    background: var(--background-subtle);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-lighter);
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-light);
    cursor: pointer;
    flex-shrink: 0;
}

.consent-checkbox label {
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--text-medium);
    font-size: 0.9em;
    cursor: pointer;
}

.checkout-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 30px;
    background: linear-gradient(180deg, var(--background-subtle) 0%, var(--background-white) 100%);
    border-top: 1px solid var(--border-lighter);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.85em;
    font-weight: 500;
}

.trust-item svg {
    color: var(--accent-green);
    stroke: var(--accent-green);
    flex-shrink: 0;
}

.button-lock-icon {
    flex-shrink: 0;
}

/* Checkout Container Mobile Styles */
@media (max-width: 768px) {
    .checkout-container {
        margin: 30px 0 20px;
    }

    .checkout-container-header {
        padding: 14px 20px;
        font-size: 1em;
    }

    .checkout-section-inner {
        padding: 25px 20px;
    }

    .checkout-trust-badges {
        gap: 15px;
        padding: 15px 20px;
    }

    .trust-item {
        font-size: 0.75em;
    }
}

/* ================================
   TESTIMONIALS CAROUSEL - Clean & Professional
   ================================ */

.testimonials-carousel-section {
    margin: 50px 0 40px;
    padding: 60px 24px;
    position: relative;
    text-align: center;
}

.testimonials-carousel-header {
    margin-bottom: 50px;
    position: relative;
}

.quote-decoration {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-light);
}

.testimonials-carousel-title {
    font-size: 1.8em;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.testimonials-carousel-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05em;
    font-weight: 400;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 320px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.98);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    position: relative;
}

.testimonial-slide.exiting {
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
}

.testimonial-content {
    background: transparent;
    padding: 30px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-stars-carousel {
    display: none;
}

.testimonial-stars-carousel svg {
    display: none;
}

.testimonial-quote {
    font-size: 1.2em;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin-bottom: 35px;
    position: relative;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.testimonial-author-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-author-carousel .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1em;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-author-carousel .author-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 2px;
}

.testimonial-author-carousel .author-name {
    font-weight: 600;
    color: white;
    font-size: 1em;
}

.testimonial-author-carousel .author-title {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.15);
}

.indicator.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Progress Bar */
.carousel-progress {
    max-width: 200px;
    margin: 20px auto 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.carousel-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, white 100%);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 3px;
}

/* Carousel Mobile Styles */
@media (max-width: 768px) {
    .testimonials-carousel-section {
        padding: 40px 15px;
        margin: 40px 0 30px;
    }

    .testimonials-carousel-title {
        font-size: 1.5em;
    }

    .testimonial-carousel {
        min-height: 380px;
    }

    .testimonial-content {
        padding: 30px 25px;
    }

    .testimonial-quote {
        font-size: 1em;
    }

    .testimonial-author-carousel {
        flex-direction: column;
        gap: 12px;
    }

    .testimonial-author-carousel .author-info {
        text-align: center;
    }

    .carousel-indicators {
        margin-top: 25px;
        gap: 10px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .testimonial-carousel {
        min-height: 420px;
    }

    .testimonial-content {
        padding: 25px 20px;
    }

    .testimonial-quote {
        font-size: 0.95em;
        line-height: 1.7;
    }
}

/* ================================
   PREMIUM HERO SECTION
   ================================ */

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 40px 100px;
    min-height: 70vh;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8em;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title-main {
    display: block;
    font-size: 3.5em;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #e0f4ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.hero-title-accent {
    display: block;
    font-size: 1.5em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 8px;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.15em;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 500px;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    color: var(--primary-dark);
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-xl);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 10px 40px rgba(29, 122, 175, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(29, 122, 175, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 20px 60px rgba(29, 122, 175, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-cta-primary:hover::before {
    opacity: 1;
}

.hero-cta-price {
    padding: 6px 14px;
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.95em;
}

.hero-cta-secondary {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    transition: color 0.3s ease;
    text-align: center;
}

.hero-cta-secondary:hover {
    color: white;
}

/* Hero Social Proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-avatars {
    display: flex;
}

.hero-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-purple) 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.85em;
    margin-left: -12px;
}

.hero-avatar:first-child {
    margin-left: 0;
}

.hero-avatar:nth-child(2) {
    background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%);
}

.hero-avatar:nth-child(3) {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ea580c 100%);
}

.hero-avatar:last-child {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-size: 1em;
}

.hero-proof-text {
    display: flex;
    flex-direction: column;
}

.hero-proof-number {
    font-size: 1.3em;
    font-weight: 800;
    color: white;
}

.hero-proof-label {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Visual / Instructor Card */
.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-instructor-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: 32px;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-instructor-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.instructor-image-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 40px rgba(29, 122, 175, 0.4),
        inset 0 -4px 0 rgba(0, 0, 0, 0.1);
}

.instructor-initials {
    font-size: 2.5em;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
}

.instructor-info {
    margin-bottom: 16px;
}

.instructor-name {
    display: block;
    font-size: 1.4em;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.instructor-title {
    display: block;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}

.instructor-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    color: #6ee7b7;
    font-size: 0.8em;
    font-weight: 600;
}

.instructor-badge svg {
    fill: currentColor;
}

/* Hero Countdown */
.hero-countdown {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 24px 32px;
    text-align: center;
}

.hero-countdown .countdown-label {
    display: block;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero-countdown .countdown-timer {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.hero-countdown .countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-countdown .countdown-value {
    font-size: 2.5em;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.hero-countdown .countdown-text {
    font-size: 0.75em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Hero Mobile Responsive */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 60px 24px 80px;
        text-align: center;
    }

    .hero-title-main {
        font-size: 2.8em;
    }

    .hero-description {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        align-items: center;
    }

    .hero-social-proof {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 40px 16px 60px;
        min-height: auto;
    }

    .hero-title-main {
        font-size: 2.2em;
        letter-spacing: -1px;
    }

    .hero-title-accent {
        font-size: 1.2em;
    }

    .hero-description {
        font-size: 1em;
    }

    .hero-cta-primary {
        width: 100%;
        padding: 16px 28px;
    }

    .hero-countdown .countdown-value {
        font-size: 2em;
    }

    .instructor-image-placeholder {
        width: 100px;
        height: 100px;
    }

    .instructor-initials {
        font-size: 2em;
    }
}

/* ================================
   PREMIUM SECTION SPACING
   ================================ */

.pricing-section-anchor {
    scroll-margin-top: 20px;
}

.bundle-section-wrapper {
    margin-top: 20px;
    margin-bottom: 80px;
}

.class-section-wrapper {
    margin-bottom: 80px;
}

.transformation-section {
    margin: 100px 0;
    padding: 60px 40px;
}

.testimonials-carousel-section {
    margin: 100px 0;
    padding: 80px 24px;
}

.checkout-container {
    margin: 60px 0 40px;
}

.faq-section {
    margin-top: 80px;
    padding: 60px 24px 80px;
}

/* ================================
   ENHANCED GLASS MORPHISM
   ================================ */

/* Bundle card styles defined earlier - pastel orange glass theme */

/* Date option base styles - class-specific colors defined in DATE SELECTION GRID section */
.date-option {
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
}

/* Subtle pulse animation to draw attention */
@keyframes subtlePulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 4px 25px rgba(255, 255, 255, 0.2); }
}

/* Manifesting Lab - Lighter, more inviting blue */
.manifesting-lab-option {
    background: rgba(40, 120, 180, 0.35) !important;
    border: 2px solid rgba(80, 160, 220, 0.5) !important;
    box-shadow:
        0 4px 20px rgba(29, 122, 175, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    animation: subtlePulse 3s ease-in-out infinite;
}

/* Community Nights - Lighter, warmer amber */
.community-night-option {
    background: rgba(200, 120, 40, 0.35) !important;
    border: 2px solid rgba(240, 160, 60, 0.5) !important;
    box-shadow:
        0 4px 20px rgba(200, 120, 30, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    animation: subtlePulse 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Click indicator icon */
.date-option::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.date-option.selected::after {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Checkmark inside circle when selected */
.date-option.selected::after {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
}

.date-option:hover:not(.past-date) {
    transform: translateY(-4px) scale(1.02);
    animation: none;
}

.manifesting-lab-option:hover:not(.past-date) {
    background: rgba(25, 100, 160, 0.55) !important;
    border-color: rgba(80, 180, 240, 0.65) !important;
    box-shadow:
        0 16px 48px rgba(20, 90, 140, 0.35),
        0 0 30px rgba(60, 160, 220, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

.community-night-option:hover:not(.past-date) {
    background: rgba(200, 120, 40, 0.55) !important;
    border-color: rgba(255, 180, 80, 0.65) !important;
    box-shadow:
        0 16px 48px rgba(180, 100, 30, 0.35),
        0 0 30px rgba(240, 160, 60, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

.transformation-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 24px;
    border-radius: var(--radius-xl);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.transformation-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.10);
    transform: translateY(-3px);
}

.transformation-item h4 {
    color: white;
}

.transformation-item p {
    color: rgba(255, 255, 255, 0.8);
}

.transformation-icon {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.transformation-icon svg {
    color: white;
    stroke: white;
}

/* ================================
   SCROLL ANIMATIONS
   ================================ */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale-on-scroll {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale-on-scroll.revealed {
    opacity: 1;
    transform: scale(1);
}

.stagger-reveal > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.stagger-reveal.revealed > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-reveal.revealed > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-reveal.revealed > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-reveal.revealed > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* ================================
   PREMIUM MICRO-INTERACTIONS
   ================================ */

.checkout-button {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.checkout-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.checkout-button:hover::before {
    left: 100%;
}

.checkout-button:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow:
        0 15px 40px rgba(16, 185, 129, 0.4),
        0 5px 15px rgba(16, 185, 129, 0.2);
}

.bundle-select-btn {
    position: relative;
    overflow: hidden;
}

.bundle-select-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.bundle-select-btn:hover::after {
    transform: translateX(100%);
}

/* FAQ Hover Enhancement */
.faq-question {
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* ================================
   ENHANCED TYPOGRAPHY
   ================================ */

.transformation-title,
.testimonials-carousel-title,
.faq-title {
    font-size: 2.2em;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 1.8em;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Bundle header h3 styles defined earlier with white text for glass theme */

/* ================================
   ENHANCED CHECKOUT CONTAINER
   ================================ */

/* ================================
   CHECKOUT CONTAINER - Frosted Glass
   ================================ */

.checkout-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-2xl);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin: 60px 0 40px;
}

/* Subtle top accent line */
.checkout-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 200, 100, 0.4) 20%,
        rgba(255, 200, 100, 0.6) 50%,
        rgba(255, 200, 100, 0.4) 80%,
        transparent
    );
}

.checkout-container-header {
    background: linear-gradient(135deg, rgba(255, 180, 100, 0.15) 0%, rgba(255, 150, 80, 0.10) 100%);
    padding: 20px 35px;
    border-bottom: 1px solid rgba(255, 180, 100, 0.25);
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-container-header .checkout-icon {
    color: var(--accent-amber);
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(255, 190, 11, 0.4));
}

.checkout-container-header span {
    color: white;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.checkout-section-inner {
    padding: 35px 40px;
}

.section-title-inline {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.checkout-divider {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    margin: 30px 0;
}

/* Form styling for glass container */
.checkout-container .form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 8px;
}

.checkout-container input[type="text"],
.checkout-container input[type="email"] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 1em;
    transition: all 0.3s ease;
}

.checkout-container input[type="text"]::placeholder,
.checkout-container input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.checkout-container input[type="text"]:focus,
.checkout-container input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
    outline: none;
}

.checkout-container .form-hint {
    color: rgba(255, 255, 255, 0.6);
}

/* Checkbox styling */
.checkout-container .consent-checkbox {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 16px 18px;
}

.checkout-container .consent-checkbox label,
.checkout-container .checkbox-label span,
.checkout-container .consent-checkbox span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9em;
    line-height: 1.5;
}

.checkout-container .billing-same-container {
    padding: 12px 0;
}

.checkout-container .billing-same-container .checkbox-label,
.checkout-container .billing-same-container span {
    color: rgba(255, 255, 255, 0.9);
}

/* Checkout button in glass container */
.checkout-container .checkout-button {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 50%, var(--accent-sunset) 100%);
    background-size: 200% 200%;
    animation: buttonGradient 4s ease infinite;
    margin: 30px 45px 0;
    width: calc(100% - 90px);
}

.checkout-container .checkout-button:hover:not(:disabled) {
    box-shadow:
        0 16px 40px rgba(245, 166, 35, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Checkout Info Boxes - Polished glass containers */
.checkout-info-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.checkout-info-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.info-box-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-box-header svg {
    color: var(--accent-gold);
    opacity: 0.9;
}

.info-box-header span {
    color: white;
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.info-box-content {
    padding: 24px;
}

.info-box-content .customer-info,
.info-box-content .billing-info {
    margin-bottom: 0;
}

.info-box-content .billing-same-container {
    padding: 0;
}

/* Trust badges */
.checkout-trust-badges {
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 35px;
}

.trust-item {
    color: rgba(255, 255, 255, 0.8);
}

.trust-item svg {
    stroke: var(--accent-amber);
}

/* ================================
   FLOATING PARTICLES ENHANCEMENT
   ================================ */

.ambient-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.4;
}

.ambient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(41, 171, 226, 0.5) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: floatOrb1 25s ease-in-out infinite;
}

.ambient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.35) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation: floatOrb2 30s ease-in-out infinite;
}

.ambient-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 190, 11, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatOrb3 20s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, 50px) scale(1.1); }
    66% { transform: translate(-50px, 100px) scale(0.9); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-80px, -60px) scale(1.05); }
    66% { transform: translate(60px, -80px) scale(0.95); }
}

@keyframes floatOrb3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* ================================
   BOKEH LIGHT EFFECTS (Hexagonal)
   ================================ */

.bokeh-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bokeh {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    filter: blur(32px);
    opacity: 0;
    animation: bokehFloat 20s ease-in-out infinite;
}

/* Large bokeh lights */
.bokeh-1 {
    width: 140px;
    height: 160px;
    top: 15%;
    left: 10%;
    background: rgba(255, 255, 255, 0.12);
    animation-delay: 0s;
    animation-duration: 25s;
}

.bokeh-2 {
    width: 100px;
    height: 115px;
    top: 60%;
    right: 15%;
    background: rgba(255, 255, 255, 0.18);
    animation-delay: -5s;
    animation-duration: 22s;
}

.bokeh-3 {
    width: 160px;
    height: 185px;
    bottom: 20%;
    left: 5%;
    background: rgba(255, 255, 255, 0.08);
    animation-delay: -10s;
    animation-duration: 28s;
}

/* Medium bokeh lights */
.bokeh-4 {
    width: 70px;
    height: 80px;
    top: 30%;
    right: 25%;
    background: rgba(255, 255, 255, 0.15);
    animation-delay: -3s;
    animation-duration: 18s;
}

.bokeh-5 {
    width: 85px;
    height: 98px;
    top: 75%;
    left: 30%;
    background: rgba(255, 255, 255, 0.1);
    animation-delay: -8s;
    animation-duration: 20s;
}

.bokeh-6 {
    width: 110px;
    height: 127px;
    top: 10%;
    right: 8%;
    background: rgba(255, 255, 255, 0.14);
    animation-delay: -12s;
    animation-duration: 24s;
}

/* Small bokeh lights - create depth */
.bokeh-7 {
    width: 45px;
    height: 52px;
    top: 45%;
    left: 20%;
    background: rgba(255, 255, 255, 0.2);
    animation-delay: -2s;
    animation-duration: 15s;
}

.bokeh-8 {
    width: 55px;
    height: 63px;
    top: 85%;
    right: 35%;
    background: rgba(255, 255, 255, 0.12);
    animation-delay: -7s;
    animation-duration: 17s;
}

.bokeh-9 {
    width: 35px;
    height: 40px;
    top: 25%;
    left: 45%;
    background: rgba(255, 255, 255, 0.22);
    animation-delay: -4s;
    animation-duration: 19s;
}

.bokeh-10 {
    width: 60px;
    height: 69px;
    bottom: 35%;
    right: 10%;
    background: rgba(255, 255, 255, 0.1);
    animation-delay: -9s;
    animation-duration: 21s;
}

.bokeh-11 {
    width: 75px;
    height: 86px;
    top: 55%;
    left: 60%;
    background: rgba(255, 255, 255, 0.16);
    animation-delay: -6s;
    animation-duration: 23s;
}

.bokeh-12 {
    width: 50px;
    height: 58px;
    bottom: 10%;
    left: 50%;
    background: rgba(255, 255, 255, 0.13);
    animation-delay: -11s;
    animation-duration: 16s;
}

@keyframes bokehFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0.8);
    }
    10% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.3;
        transform: translateY(-25px) scale(1);
    }
    90% {
        opacity: 0.2;
    }
}

/* ================================
   ENHANCED GLASS CONTAINERS
   ================================ */

/* Drop-in Classes Container - Groups ML and CN together */
.drop-in-classes-container {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: 50px 40px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.drop-in-classes-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 200, 100, 0.3), rgba(255, 200, 100, 0.6), rgba(255, 200, 100, 0.3));
    border-radius: 1px;
}

/* Warm glow behind drop-in container */
.drop-in-classes-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(255, 200, 100, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.drop-in-classes-header {
    text-align: center;
    margin-bottom: 50px;
}

.drop-in-classes-header h2 {
    font-size: 1.6em;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.drop-in-classes-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05em;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   CLASS TYPE BLOCKS - Collapsible
   ================================ */

.class-type-block {
    margin-bottom: 40px;
    position: relative;
}

.class-type-block:last-of-type {
    margin-bottom: 0;
}

.class-type-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.class-type-header:hover {
    border-bottom-color: rgba(255, 255, 255, 0.25);
}

.class-type-title {
    font-size: 1.5em;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: -0.3px;
    flex: 1;
}

/* Glass Price Badge */
.price-badge {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.30);
    color: white;
    font-size: 1.0em;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.class-type-header:hover .price-badge {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Expand Icon */
.class-type-header .expand-icon {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.class-type-header:hover .expand-icon {
    color: rgba(255, 255, 255, 0.8);
}

.class-type-block.expanded .expand-icon {
    transform: rotate(180deg);
}

/* Collapsible Description */
.class-type-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0;
}

.class-type-block.expanded .class-type-description,
.class-type-header:hover + .class-type-description {
    max-height: 150px;
    opacity: 1;
    margin-bottom: 24px;
}

.class-type-description p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95em;
    line-height: 1.7;
    margin: 0;
    padding: 0 0 16px 0;
}

/* Legacy styles - keep for backwards compatibility */
.section-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px 35px;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.section-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
}

.manifesting-lab-header::before {
    background: linear-gradient(180deg, var(--manifesting-lab-color), #1d5fa8);
}

.community-night-header::before {
    background: linear-gradient(180deg, var(--community-night-color), #8b5cf6);
}

/* Class Section Wrapper with Glass */
.class-section-wrapper {
    margin-bottom: 50px;
    position: relative;
}

.class-section-wrapper:last-of-type {
    margin-bottom: 0;
}

/* ================================
   SECTION DIVIDERS
   ================================ */

.section-divider-decorative {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 0;
    position: relative;
}

.section-divider-decorative::before,
.section-divider-decorative::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.section-divider-decorative .divider-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 200, 100, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 200, 100, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
    color: var(--accent-amber);
}

.section-divider-decorative .divider-icon svg {
    width: 24px;
    height: 24px;
}

/* Horizontal line divider */
.section-divider-line {
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.2) 80%,
        transparent
    );
    margin: 60px 0;
}

/* Wave divider */
.section-divider-wave {
    height: 60px;
    margin: 40px 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='rgba(255,255,255,0.05)' d='M0,30 C360,60 720,0 1080,30 C1260,45 1350,15 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E");
    background-size: cover;
}

/* Inner section divider (within containers) */
.inner-section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
    gap: 20px;
}

.inner-section-divider::before,
.inner-section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 200, 100, 0.25), transparent);
}

.inner-section-divider span {
    color: var(--accent-amber);
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    padding: 8px 20px;
    background: rgba(255, 200, 100, 0.1);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 200, 100, 0.2);
}

/* ================================
   THIS MONTH'S TOPIC SECTION
   ================================ */

.monthly-topic-section {
    text-align: center;
    padding: 60px 40px;
    margin: 0 auto 40px;
    max-width: 800px;
    position: relative;
}

.monthly-topic-content {
    background: linear-gradient(135deg, rgba(255, 200, 120, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 200, 120, 0.20);
    border-radius: var(--radius-2xl);
    padding: 50px 40px;
    position: relative;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 0 40px rgba(255, 200, 120, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.monthly-topic-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), rgba(255, 200, 120, 0.8));
    border-radius: 2px;
}

.monthly-topic-title {
    font-size: 0.9em;
    font-weight: 600;
    color: rgba(255, 200, 120, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.monthly-topic-name {
    font-size: 2.4em;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.monthly-topic-description {
    font-size: 1.1em;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .monthly-topic-section {
        padding: 40px 20px;
        margin-bottom: 30px;
    }

    .monthly-topic-content {
        padding: 40px 24px;
    }

    .monthly-topic-name {
        font-size: 1.8em;
    }

    .monthly-topic-description {
        font-size: 1em;
    }
}

/* ================================
   ENHANCED FAQ SECTION
   ================================ */

.faq-section {
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-2xl);
    margin-top: 80px;
    padding: 50px 40px 60px;
    position: relative;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent-gold));
    border-radius: 2px;
}

.faq-title {
    text-align: center;
    font-size: 1.8em;
    font-weight: 800;
    color: white;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.10);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    color: white;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 28px 22px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95em;
}

.faq-answer p strong {
    color: white;
    font-weight: 600;
}

/* ================================
   TRANSFORMATION SECTION GLASS
   ================================ */

.transformation-section {
    background: var(--glass-tertiary-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-tertiary-border);
    border-radius: var(--radius-2xl);
    margin: 100px 0;
    padding: 60px 40px;
    position: relative;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.transformation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-amber));
    border-radius: 2px;
}

.transformation-title {
    text-align: center;
    font-size: 1.8em;
    font-weight: 800;
    color: white;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

/* ================================
   TESTIMONIALS SECTION GLASS
   ================================ */

.testimonials-carousel-section {
    background: var(--glass-tertiary-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-tertiary-border);
    border-radius: var(--radius-2xl);
    margin: 100px 0;
    padding: 60px 40px;
    position: relative;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonials-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-amber), var(--accent-orange));
    border-radius: 2px;
}

/* ================================
   RESPONSIVE ADJUSTMENTS
   ================================ */

@media (max-width: 768px) {
    .drop-in-classes-container {
        padding: 35px 20px;
        border-radius: var(--radius-xl);
    }

    .drop-in-classes-header h2 {
        font-size: 1.3em;
    }

    .section-divider-decorative {
        margin: 50px 0;
    }

    .section-divider-decorative .divider-icon {
        width: 40px;
        height: 40px;
        margin: 0 20px;
    }

    .transformation-section,
    .testimonials-carousel-section,
    .faq-section {
        padding: 40px 20px;
        margin: 50px 0;
        border-radius: var(--radius-xl);
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.95em;
    }

    .faq-item.open .faq-answer {
        padding: 0 20px 18px;
    }
}
