/* ==========================================================================
   ENERGY TAPPING WORKSHOP - DESIGN SYSTEM & COLOR PSYCHOLOGY
   
   Psychological Mapping:
   - Primary: Deep Purple / Indigo (#4B2E83) -> Transformation, Subconscious Depth, Authority
   - Background: Warm Cream (#FFF9F1) -> Safety, Comfort, Personal & Warm
   - CTA: Vibrant Coral/Orange (#F97345) -> Action, Vitality, Momentum
   - Highlights: Soft Lavender (#EEE7FF) -> Calming Structure & Emotional Space
   - Bonuses: Warm Pale Yellow (#FFF3C7) -> Value, Warmth & Exclusivity
   - Success: Fresh Green (#3DAA78) -> Transformation Outcomes & Trust
   - Body Text: Charcoal (#25232B) -> Soft, Premium Readability
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    /* Primary Brand: Deep Purple / Indigo */
    --purple-primary: #4B2E83;
    --purple-deep: #351D63;
    --purple-secondary: #7251B5;
    --purple-light: #9B7AE0;
    --purple-glow: rgba(75, 46, 131, 0.25);
    
    /* Backgrounds */
    --bg-cream: #FFF9F1;
    --bg-cream-alt: #FFF4E5;
    --bg-cream-card: #FFFFFF;
    
    /* CTA / Action: Vibrant Coral/Orange */
    --cta-orange: #F97345;
    --cta-orange-hover: #E85D34;
    --cta-orange-glow: rgba(249, 115, 69, 0.35);
    
    /* Secondary Highlight: Soft Lavender */
    --lavender-soft: #EEE7FF;
    --lavender-subtle: #F7F3FF;
    --lavender-border: #D8CAFF;
    
    /* Bonus Highlight: Warm Pale Yellow */
    --bonus-yellow-bg: #FFF3C7;
    --bonus-yellow-soft: #FFF9E6;
    --bonus-yellow-border: #FFE082;
    
    /* Success / Trust: Fresh Green */
    --success-green: #3DAA78;
    --success-green-bg: rgba(61, 170, 120, 0.12);
    --success-green-border: rgba(61, 170, 120, 0.3);
    
    /* Subtle Gold Accent: Authority & Awards */
    --gold-accent: #C89B3C;
    --gold-bg: rgba(200, 155, 60, 0.12);
    
    /* Problem Recognition Soft Cards */
    --peach-soft: #FFF5EE;
    --peach-border: #FED7C3;
    
    /* Typography: Charcoal & Whites */
    --text-charcoal: #25232B;
    --text-body: #3E3B46;
    --text-muted: #6B6775;
    --text-light-cream: #FFF9F1;
    --text-white: #FFFFFF;
    
    /* Borders & Radius */
    --border-subtle: rgba(75, 46, 131, 0.1);
    --border-medium: rgba(75, 46, 131, 0.18);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(75, 46, 131, 0.05);
    --shadow-card: 0 10px 30px rgba(75, 46, 131, 0.07);
    --shadow-card-hover: 0 16px 40px rgba(75, 46, 131, 0.13);
    --shadow-cta: 0 8px 24px rgba(249, 115, 69, 0.38);
    --shadow-cta-hover: 0 12px 32px rgba(249, 115, 69, 0.5);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-cream);
    color: var(--text-charcoal);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    background-color: var(--bg-cream);
    color: var(--text-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--purple-primary);
    letter-spacing: -0.02em;
}

p {
    color: var(--text-body);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section-padding {
    padding: 90px 0;
    position: relative;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 55px 0;
    }
    .container {
        padding: 0 16px;
    }
}

.bg-cream-alt {
    background-color: var(--bg-cream-alt);
}

.bg-lavender-section {
    background-color: #F8F5FF;
}

.bg-purple-deep {
    background: linear-gradient(160deg, #4B2E83 0%, #351D63 100%);
    color: var(--text-light-cream);
}

.bg-purple-deep h1, 
.bg-purple-deep h2, 
.bg-purple-deep h3, 
.bg-purple-deep h4 {
    color: var(--text-white);
}

.bg-purple-deep p {
    color: #E2D7F7;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-2 { margin-top: 0.75rem; }
.mt-3 { margin-top: 1.25rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.75rem; }
.mb-3 { margin-bottom: 1.25rem; }
.mb-4 { margin-bottom: 2rem; }
.max-w-700 { max-width: 720px; margin-left: auto; margin-right: auto; }
.max-w-850 { max-width: 850px; margin-left: auto; margin-right: auto; }

/* Gradients & Accents */
.gradient-text-coral {
    background: linear-gradient(135deg, #FF8D66 0%, #F97345 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-purple {
    background: linear-gradient(135deg, #4B2E83 0%, #7251B5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-orange { color: var(--cta-orange); }
.highlight-green { color: var(--success-green); }
.highlight-purple { color: var(--purple-primary); }

/* Badges & Pills */
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-soft);
}

.pill-lavender {
    background: var(--lavender-soft);
    color: var(--purple-primary);
    border: 1px solid var(--lavender-border);
}

.pill-coral-light {
    background: rgba(249, 115, 69, 0.15);
    color: #F97345;
    border: 1px solid rgba(249, 115, 69, 0.3);
}

.pill-green {
    background: var(--success-green-bg);
    color: var(--success-green);
    border: 1px solid var(--success-green-border);
}

.pulsing-dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--success-green);
    box-shadow: 0 0 10px var(--success-green);
    animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement-bar {
    background: #351D63;
    color: var(--text-light-cream);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-family: var(--font-heading);
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(53, 29, 99, 0.2);
}

.top-announcement-bar strong {
    color: #FFE58F;
}

.top-announcement-bar .badge-price {
    background: var(--cta-orange);
    color: #FFFFFF;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 800;
    margin: 0 4px;
}

/* ==========================================================================
   HERO SECTION (Transformation Deep Purple + Cream + Coral Action)
   ========================================================================== */
.hero-section {
    background: linear-gradient(165deg, #4B2E83 0%, #351D63 60%, #2A1452 100%);
    color: var(--text-light-cream);
    padding: 60px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-glow-aura {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(circle, rgba(114, 81, 181, 0.25) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(60px);
}

.hero-header-content {
    text-align: center;
    max-width: 960px;
    margin: 0 auto 40px auto;
}

.hero-workshop-badge {
    margin-bottom: 20px;
}

.hero-main-title {
    font-size: clamp(1.7rem, 5vw, 3.3rem);
    font-weight: 900;
    line-height: 1.18;
    margin-bottom: 20px;
    color: #FFFFFF;
    letter-spacing: -0.03em;
}

.hero-sub-title {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #F5EFFF;
    line-height: 1.65;
    margin-bottom: 28px;
    font-weight: 600;
}

.hero-trust-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(14px);
    font-size: 0.94rem;
    color: #F1EAFF;
    margin-bottom: 10px;
    max-width: 900px;
    line-height: 1.5;
}

.trust-rating-head {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.trust-highlight strong {
    color: #FFFFFF;
}

.trust-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.hero-trust-bar .star-rating {
    color: #FFC107;
    display: inline-flex;
    gap: 2px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.trust-subtext {
    color: #E2D7F7;
    font-size: 0.92rem;
}

@media (max-width: 768px) {
    .hero-trust-bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 12px 16px;
        border-radius: var(--radius-md);
        gap: 6px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-divider {
        display: none;
    }
    
    .trust-rating-head {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 0.92rem;
    }
    
    .trust-subtext {
        font-size: 0.84rem;
        line-height: 1.45;
        color: #E6DCFA;
    }
}

/* Hero Cards Grid */
.hero-grid-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: stretch;
    margin-top: 35px;
}

@media (max-width: 960px) {
    .hero-grid-block {
        grid-template-columns: 1fr;
        max-width: 580px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Trainer Hero Card */
.trainer-hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(216, 202, 255, 0.25);
    border-radius: var(--radius-xl);
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    backdrop-filter: blur(16px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.trainer-photo-wrap {
    position: relative;
    width: 210px;
    height: 210px;
    margin-bottom: 20px;
}

.trainer-aura-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9B7AE0, #F97345);
    opacity: 0.6;
    filter: blur(8px);
}

.trainer-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.trainer-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #FFFFFF;
}

.trainer-role {
    color: #E2D7F7;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.trainer-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 8px;
}

.trainer-tag {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.76rem;
    padding: 4px 11px;
    border-radius: var(--radius-full);
    color: #FFFFFF;
    font-weight: 500;
}

/* Event Details & Offer Card - Center Aligned & Elegant */
.event-offer-card {
    background: #FFFFFF;
    color: var(--text-charcoal);
    border-radius: var(--radius-xl);
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    border: 2px solid #EEE7FF;
}

.offer-card-top {
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.offer-card-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--purple-primary);
    margin-bottom: 6px;
    line-height: 1.25;
}

.offer-card-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* 2x2 Event Details Grid (2 above in one row, 2 below in one row) */
.event-details-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 22px;
    width: 100%;
}

.detail-box-card {
    background: var(--lavender-subtle);
    border: 1px solid var(--lavender-border);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    box-shadow: 0 2px 6px rgba(75, 46, 131, 0.04);
    transition: var(--transition-fast);
}

.detail-box-card:hover {
    border-color: var(--purple-secondary);
    background: #FFFFFF;
}

.detail-box-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--purple-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.detail-box-val {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--purple-primary);
    line-height: 1.35;
}

.detail-box-card.highlight {
    background: var(--bonus-yellow-bg);
    border-color: var(--bonus-yellow-border);
}

.detail-box-card.highlight .detail-box-label {
    color: #92400E;
}

.detail-box-card.highlight .detail-box-val {
    color: #92400E;
}

/* Pricing Action Box (Centered) */
.pricing-action-box {
    border-top: 1px solid rgba(75, 46, 131, 0.1);
    padding-top: 20px;
    width: 100%;
    text-align: center;
}

.pricing-badge-row {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.price-container-centered {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.current-price {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--purple-primary);
    font-family: var(--font-heading);
    line-height: 1;
}

.original-price {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--success-green-bg);
    border: 1px solid var(--success-green-border);
    color: var(--success-green);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

@media (max-width: 600px) {
    .event-offer-card {
        padding: 24px 14px;
    }
    .event-details-2x2 {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 above, 2 below on mobile */
        gap: 8px;
    }
    .detail-box-card {
        padding: 10px 8px;
        border-radius: 12px;
    }
    .detail-box-label {
        font-size: 0.68rem;
    }
    .detail-box-val {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   CALL TO ACTION BUTTON (VIBRANT CORAL/ORANGE #F97345)
   - Psychologically represents ACTION & MOMENTUM.
   - Repeated consistently across the entire funnel.
   ========================================================================== */
.cta-btn-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 28px;
    background: var(--cta-orange);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow-cta);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-btn-action:hover {
    background: var(--cta-orange-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-cta-hover);
    color: var(--text-white);
}

.cta-btn-action .cta-sub-text {
    font-size: 0.78rem;
    font-weight: 600;
    opacity: 0.95;
    text-transform: none;
    letter-spacing: normal;
    margin-top: 3px;
    color: #FFFFFF;
}

.bonus-pill-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--purple-secondary);
    margin-top: 10px;
    font-weight: 600;
}

.card-trust-box {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed rgba(75, 46, 131, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.card-trust-stars {
    color: #FFC107;
    font-size: 1rem;
    letter-spacing: 2px;
}

.card-trust-text {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.45;
}

.card-trust-text strong {
    color: var(--purple-primary);
    font-weight: 700;
}

/* Social Proof Bar on Cream */
.social-proof-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 45px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 22px 30px;
    backdrop-filter: blur(12px);
}

@media (max-width: 680px) {
    .social-proof-bar {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
        padding: 20px;
    }
}

.proof-stat-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-stat-item:last-child {
    border-right: none;
}

@media (max-width: 680px) {
    .proof-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-bottom: 12px;
    }
    .proof-stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.stat-number {
    font-size: 1.85rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: #FFFFFF;
}

.stat-desc {
    font-size: 0.85rem;
    color: #E2D7F7;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 2px;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header-block {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 50px auto;
}

.section-pre-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--purple-secondary);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.65rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.25;
    color: var(--purple-primary);
}

.section-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   PAIN POINTS SECTION ("BREAK FREE FROM" - Soft Peach & Lavender)
   - Gentle emotional recognition without harsh red boxes!
   ========================================================================== */
.pain-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

@media (max-width: 640px) {
    .pain-grid-6 {
        grid-template-columns: 1fr;
    }
}

.pain-card-item {
    background: #FFFFFF;
    border: 1px solid var(--peach-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition-base);
    position: relative;
    box-shadow: var(--shadow-soft);
}

.pain-card-item:hover {
    transform: translateY(-4px);
    border-color: #F97345;
    box-shadow: var(--shadow-card-hover);
}

.pain-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--peach-soft);
    border: 1px solid var(--peach-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.pain-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: 10px;
}

.pain-card-desc {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ==========================================================================
   3-STEP FRAMEWORK SECTION ("LEARN A SIMPLE TOOL")
   ========================================================================== */
.framework-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    margin-top: 30px;
}

@media (max-width: 900px) {
    .framework-steps-grid {
        grid-template-columns: 1fr;
    }
}

.framework-step-card {
    background: #FFFFFF;
    border: 1px solid var(--lavender-border);
    border-radius: var(--radius-xl);
    padding: 34px 28px;
    position: relative;
    transition: var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.framework-step-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple-secondary);
    box-shadow: var(--shadow-card-hover);
}

.step-num-pill {
    position: absolute;
    top: -14px;
    left: 28px;
    background: var(--purple-primary);
    color: #FFFFFF;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(75, 46, 131, 0.25);
    font-family: var(--font-heading);
}

.step-card-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--lavender-soft);
    border: 1px solid var(--lavender-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.step-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--purple-primary);
    margin-bottom: 12px;
}

.step-card-text {
    font-size: 0.96rem;
    color: var(--text-body);
    line-height: 1.65;
}

/* ==========================================================================
   3-HOUR LIVE CURRICULUM SECTION (Visual Progression)
   - Progression: Hour 1 Purple -> Hour 2 Violet -> Hour 3 Warm Orange/Coral
   - Subconsciously moves from Inner Work -> Release -> Action!
   ========================================================================== */
.curriculum-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 960px) {
    .curriculum-grid-3 {
        grid-template-columns: 1fr;
    }
}

.curriculum-card {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    padding: 34px 28px;
    position: relative;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.curriculum-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

/* Hour 1: Deep Purple (Inner Work) */
.curriculum-card.hour-1 {
    border: 2px solid #E0D4FC;
}
.curriculum-card.hour-1:hover {
    border-color: var(--purple-primary);
}

/* Hour 2: Violet / Lavender (Release) */
.curriculum-card.hour-2 {
    border: 2px solid #DDD0F7;
}
.curriculum-card.hour-2:hover {
    border-color: var(--purple-secondary);
}

/* Hour 3: Warm Orange / Coral (Action & Momentum) */
.curriculum-card.hour-3 {
    border: 2px solid #FED7C3;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F5 100%);
}
.curriculum-card.hour-3:hover {
    border-color: var(--cta-orange);
}

.curriculum-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    width: fit-content;
    font-family: var(--font-heading);
}

.curriculum-badge.badge-hour-1 {
    background: #EDE4FF;
    color: var(--purple-primary);
    border: 1px solid #D8CAFF;
}

.curriculum-badge.badge-hour-2 {
    background: #F2ECFC;
    color: var(--purple-secondary);
    border: 1px solid #D6C4F5;
}

.curriculum-badge.badge-hour-3 {
    background: #FFE8DF;
    color: #E85D34;
    border: 1px solid #FED7C3;
}

.curriculum-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--purple-primary);
    margin-bottom: 14px;
    line-height: 1.3;
}

.curriculum-desc {
    font-size: 0.98rem;
    color: var(--text-body);
    line-height: 1.65;
}

/* ==========================================================================
   TRANSFORMATION MINDSET SECTION ("STOP WAITING FOR MOTIVATION")
   ========================================================================== */
.transformation-box {
    background: #FFFFFF;
    border: 1px solid var(--lavender-border);
    border-radius: var(--radius-xl);
    padding: 44px;
    margin-top: 40px;
    box-shadow: var(--shadow-card);
}

@media (max-width: 768px) {
    .transformation-box {
        padding: 26px 20px;
    }
}

.cycle-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 20px;
    align-items: center;
    margin: 35px 0;
}

@media (max-width: 820px) {
    .cycle-comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.cycle-panel {
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
}

.cycle-panel.old-cycle {
    background: #FDF4F5;
    border: 1px solid #F8D7DA;
}

.cycle-panel.new-cycle {
    background: #F4FBF7;
    border: 1px solid #C3E6CB;
}

.cycle-panel-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.cycle-panel-tag.red { color: #C53030; }
.cycle-panel-tag.green { color: var(--success-green); }

.cycle-panel-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--purple-primary);
}

.flow-step-chain {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.flow-pill {
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.flow-pill.red {
    background: #FFFFFF;
    border: 1px solid #F5C6CB;
    color: #9E2B2B;
}

.flow-pill.green {
    background: #FFFFFF;
    border: 1px solid #A3D9B5;
    color: #2D7A56;
}

.flow-arrow {
    color: var(--text-muted);
    font-weight: 800;
    font-size: 1.1rem;
}

.cycle-vs-divider {
    text-align: center;
}

.vs-pill {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--lavender-soft);
    border: 1px solid var(--lavender-border);
    color: var(--purple-primary);
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.motivation-copy-wrap {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 25px;
}

.motivation-copy-wrap p {
    margin-bottom: 16px;
}

.motivation-copy-wrap strong {
    color: var(--purple-primary);
}

/* ==========================================================================
   BONUSES SECTION (₹12,000 WORTH FREE - Warm Pale Yellow #FFF3C7)
   - Feels valuable & exciting without looking like a discount store!
   ========================================================================== */
.bonuses-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .bonuses-grid-4 {
        grid-template-columns: 1fr;
    }
}

.bonus-card-item {
    background: var(--bonus-yellow-bg);
    border: 1px solid var(--bonus-yellow-border);
    border-radius: var(--radius-xl);
    padding: 30px;
    position: relative;
    transition: var(--transition-base);
    display: flex;
    gap: 22px;
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(200, 155, 60, 0.1);
}

.bonus-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(200, 155, 60, 0.18);
    border-color: #F59E0B;
}

@media (max-width: 520px) {
    .bonus-card-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
}

.bonus-icon-visual {
    width: 74px;
    height: 74px;
    border-radius: 20px;
    background: #FFFFFF;
    border: 1px solid var(--bonus-yellow-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.bonus-card-body {
    flex-grow: 1;
}

.bonus-tag-val {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

@media (max-width: 520px) {
    .bonus-tag-val {
        justify-content: center;
        gap: 12px;
    }
}

.bonus-badge-title {
    font-size: 0.78rem;
    font-weight: 800;
    color: #92400E;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.bonus-worth-tag {
    background: #FFFFFF;
    border: 1px solid rgba(61, 170, 120, 0.4);
    color: var(--success-green);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: var(--radius-full);
}

.bonus-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--purple-primary);
    margin-bottom: 8px;
}

.bonus-desc-text {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.55;
}

/* Bonus Summary Banner */
.bonus-summary-banner {
    background: #FFFFFF;
    border: 2px solid var(--bonus-yellow-border);
    border-radius: var(--radius-xl);
    padding: 35px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.bonus-sum-title {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--purple-primary);
}

.bonus-val-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 1.1rem;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.val-item strong {
    color: var(--purple-primary);
}

/* ==========================================================================
   TRAINER BIO SECTION (Authority + Warmth)
   - Deep purple heading + neutral cream background + subtle gold #C89B3C
   ========================================================================== */
.trainer-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 45px;
    align-items: center;
}

@media (max-width: 920px) {
    .trainer-section-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

.trainer-image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 2px solid var(--lavender-border);
}

.trainer-full-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.trainer-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(0deg, rgba(53, 29, 99, 0.95) 0%, rgba(53, 29, 99, 0.6) 70%, transparent 100%);
    text-align: center;
}

.trainer-bio-name {
    font-size: 1.65rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.trainer-bio-designation {
    color: #E2D7F7;
    font-size: 0.92rem;
    font-weight: 600;
}

.trainer-bio-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--purple-primary);
}

.trainer-lead-intro {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}

.trainer-highlights-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.bio-point-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.96rem;
    color: var(--text-body);
    line-height: 1.6;
}

.point-icon {
    width: 22px;
    height: 22px;
    color: var(--purple-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.bio-point-item strong {
    color: var(--purple-primary);
}

.award-highlight-box {
    background: var(--gold-bg);
    border: 1px solid rgba(200, 155, 60, 0.35);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.92rem;
    color: #784E07;
    font-weight: 600;
}

/* ==========================================================================
   TESTIMONIALS & REAL BREAKTHROUGHS (Trust & Safety - Soft Lavender #EEE7FF)
   ========================================================================== */
.testimonials-scroll-wrapper {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 20px 0 30px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--purple-secondary) transparent;
    -webkit-overflow-scrolling: touch;
}

.testimonials-scroll-wrapper::-webkit-scrollbar {
    height: 7px;
}

.testimonials-scroll-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--purple-secondary);
    border-radius: 10px;
}

.testimonial-img-card {
    flex: 0 0 290px;
    scroll-snap-align: start;
    background: #FFFFFF;
    border: 1px solid var(--lavender-border);
    border-radius: var(--radius-lg);
    padding: 10px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
}

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

.testimonial-screen-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
}

/* ==========================================================================
   FAQ SECTION ACCORDION (Soft Lavender & Cream)
   ========================================================================== */
.faq-accordion-container {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-card {
    background: #FFFFFF;
    border: 1px solid var(--lavender-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.faq-item-card.active {
    border-color: var(--purple-secondary);
    box-shadow: var(--shadow-card);
}

.faq-question-btn {
    width: 100%;
    padding: 22px 26px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    color: var(--purple-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}

.faq-chevron {
    width: 22px;
    height: 22px;
    color: var(--purple-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item-card.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 26px;
    color: var(--text-body);
    font-size: 0.98rem;
    line-height: 1.7;
}

.faq-item-card.active .faq-answer-content {
    max-height: 400px;
    padding-bottom: 24px;
}

/* ==========================================================================
   FINAL HIGH-ENERGY CTA SECTION (Deep Purple + White Headline + Orange Button)
   ========================================================================== */
.final-stack-box {
    background: #FFFFFF;
    border: 2px solid var(--bonus-yellow-border);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 820px;
    margin: 40px auto 0 auto;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    position: relative;
}

@media (max-width: 768px) {
    .final-stack-box {
        padding: 30px 20px;
    }
}

.value-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    max-width: 620px;
    margin: 0 auto 30px auto;
}

.value-check-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: var(--lavender-subtle);
    border: 1px solid var(--lavender-border);
    border-radius: var(--radius-md);
    font-size: 0.98rem;
    color: var(--text-charcoal);
}

.value-check-row .check-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-check-row .check-val {
    color: #92400E;
    font-weight: 800;
    font-size: 0.88rem;
}

.value-check-icon {
    width: 20px;
    height: 20px;
    color: var(--success-green);
    flex-shrink: 0;
}

.final-pricing-callout {
    margin: 25px 0 20px 0;
}

.final-price-headline {
    font-size: 3rem;
    font-weight: 900;
    color: var(--purple-primary);
    font-family: var(--font-heading);
    line-height: 1;
}

.final-price-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-section {
    padding: 40px 0 110px 0;
    border-top: 1px solid var(--lavender-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
    background-color: #F8F5FF;
}

/* ==========================================================================
   STICKY MOBILE CTA BAR
   ========================================================================== */
.sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #351D63;
    border-top: 1px solid rgba(216, 202, 255, 0.3);
    padding: 12px 20px;
    z-index: 9999;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35);
    display: block;
}

.sticky-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sticky-left-info {
    display: flex;
    flex-direction: column;
}

.sticky-urgency-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: #FFE58F;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sticky-date-tag {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
}

.sticky-btn-wrap {
    flex-shrink: 0;
}

.sticky-cta-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--cta-orange);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 18px rgba(249, 115, 69, 0.45);
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.sticky-cta-btn:hover {
    background: var(--cta-orange-hover);
    color: #FFFFFF;
}

.sticky-cta-btn .btn-sub {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: none;
    opacity: 0.95;
    color: #FFFFFF;
}

@media (max-width: 580px) {
    .sticky-left-info {
        display: none;
    }
    .sticky-btn-wrap {
        width: 100%;
    }
    .sticky-cta-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

/* ==========================================================================
   12. THANK YOU PAGE SPECIFIC STYLES
   ========================================================================== */

.thank-you-page-body {
    background-color: var(--bg-cream);
    color: var(--text-body);
}

.max-w-900 {
    max-width: 900px !important;
}

/* TY Hero Header */
.ty-hero-section {
    position: relative;
    background: linear-gradient(145deg, var(--purple-deep) 0%, var(--purple-primary) 100%);
    padding: 70px 20px 60px;
    color: #FFFFFF;
    overflow: hidden;
    border-bottom: 3px solid var(--purple-secondary);
}

.ty-success-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.ty-check-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3DAA78 0%, #2E8B57 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    box-shadow: 0 0 35px rgba(61, 170, 120, 0.5);
    animation: pulseCheck 2.5s infinite;
}

.ty-check-circle svg {
    width: 44px;
    height: 44px;
}

@keyframes pulseCheck {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 25px rgba(61, 170, 120, 0.4);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 0 45px rgba(61, 170, 120, 0.7);
    }
}

.ty-badge-pill {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #FFE58F;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.ty-hero-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #FFFFFF;
}

.ty-hero-subtitle {
    font-size: 1.15rem;
    color: #E2D7F7;
    max-width: 680px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.ty-hero-subtitle strong {
    color: #FFFFFF;
}

/* Hero Direct WhatsApp CTA */
.ty-hero-whatsapp-box {
    margin: 0 auto 36px;
    max-width: 640px;
}

.cta-btn-whatsapp-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 900;
    padding: 18px 30px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    transition: var(--transition-fast);
    text-transform: uppercase;
    animation: waPulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-whatsapp-hero:hover {
    background: linear-gradient(135deg, #1EBE5D 0%, #0F6E62 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
}

.ty-hero-wa-reassurance {
    font-size: 0.88rem;
    color: #FFE58F;
    margin-top: 10px;
    letter-spacing: 0.02em;
}

@media (max-width: 640px) {
    .cta-btn-whatsapp-hero {
        font-size: 0.95rem;
        padding: 15px 20px;
    }
}


/* Order Summary Box */
.ty-order-summary-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 18px 25px;
    max-width: 780px;
    margin: 0 auto;
    gap: 15px;
}

.ty-summary-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.ty-sum-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #CBB9EC;
    margin-bottom: 4px;
}

.ty-sum-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
}

.ty-sum-val.highlight-green {
    color: #5CF2A8;
}

.ty-summary-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 640px) {
    .ty-summary-divider {
        display: none;
    }
    .ty-order-summary-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        text-align: left;
    }
    .ty-summary-item {
        text-align: left;
    }
    .ty-hero-title {
        font-size: 2.1rem;
    }
}

/* TY Step Cards */
.ty-main-content {
    background-color: var(--bg-cream);
}

.ty-step-card {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    padding: 36px 36px;
    margin-bottom: 30px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(75, 46, 131, 0.06);
    transition: var(--transition-normal);
}

.ty-step-card:hover {
    box-shadow: 0 15px 40px rgba(75, 46, 131, 0.1);
}

.ty-step-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.step-num-pill.step-urgent {
    background: #E53E3E;
    color: #FFFFFF;
}

.urgency-live-pill {
    font-size: 0.78rem;
    font-weight: 700;
    color: #C53030;
    background: #FFF5F5;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid #FEB2B2;
}

.bonus-value-unlocked-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: #975A16;
    background: var(--bonus-yellow-bg);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid var(--bonus-yellow-border);
}

.ty-step-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--purple-primary);
    margin-bottom: 10px;
}

.ty-step-desc {
    font-size: 1.02rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Step 1 Priority WhatsApp Card */
.ty-whatsapp-priority-card {
    border: 2px solid #25D366;
    background: linear-gradient(180deg, #FFFFFF 0%, #F4FAF6 100%);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.15);
}

.ty-step-inner-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.whatsapp-card-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #E8F9EE;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #C4F3D3;
}

.whatsapp-card-text .ty-step-title {
    margin-bottom: 6px;
}

.whatsapp-card-text .ty-step-desc {
    margin-bottom: 0;
}

.whatsapp-cta-action-box {
    text-align: center;
}

.cta-btn-whatsapp-pulse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 600px;
    background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    padding: 18px 28px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
    transition: var(--transition-fast);
    text-transform: uppercase;
    animation: waPulse 2s infinite;
}

.cta-btn-whatsapp-pulse:hover {
    background: linear-gradient(135deg, #1EBE5D 0%, #169E4C 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(37, 211, 102, 0.55);
}

.btn-wa-icon {
    width: 28px;
    height: 28px;
    fill: #FFFFFF;
    flex-shrink: 0;
}

@keyframes waPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
}

.wa-reassurance {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-top: 12px;
}

@media (max-width: 640px) {
    .ty-step-inner-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .cta-btn-whatsapp-pulse {
        font-size: 0.98rem;
        padding: 16px 20px;
    }
}

/* Step 2 Bonuses Download Grid */
.ty-bonuses-download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.ty-bonus-box {
    background: var(--bonus-yellow-bg);
    border: 1px solid var(--bonus-yellow-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ty-b-icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
}

.ty-b-worth {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    color: #8D5B00;
    background: #FFF9E6;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
}

.ty-b-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-charcoal);
    margin-bottom: 4px;
}

.ty-b-text {
    font-size: 0.88rem;
    color: var(--text-body);
    margin-bottom: 8px;
    line-height: 1.4;
}

.ty-b-status {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2E8B57;
}

@media (max-width: 680px) {
    .ty-bonuses-download-grid {
        grid-template-columns: 1fr;
    }
}

/* Step 3 Calendar Card */
.ty-cal-details-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: var(--lavender-subtle);
    border: 1px solid var(--lavender-border);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.cal-detail-item {
    font-size: 0.95rem;
    color: var(--text-charcoal);
}

.ty-cal-buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-cal-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.btn-gcal {
    background: var(--purple-primary);
    color: #FFFFFF;
    border: 1px solid var(--purple-primary);
}

.btn-gcal:hover {
    background: var(--purple-deep);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-ical {
    background: #FFFFFF;
    color: var(--purple-primary);
    border: 1px solid var(--purple-primary);
}

.btn-ical:hover {
    background: var(--lavender-subtle);
    color: var(--purple-deep);
    transform: translateY(-2px);
}

.cal-icon {
    width: 20px;
    height: 20px;
}

/* Step 4 Preparation Checklist */
.prep-checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 15px;
}

.prep-check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #FDFBF7;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 18px;
}

.prep-icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
}

.prep-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-charcoal);
    margin-bottom: 4px;
}

.prep-info p {
    font-size: 0.86rem;
    color: var(--text-body);
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 680px) {
    .prep-checklist-grid {
        grid-template-columns: 1fr;
    }
}

/* Support Banner */
.ty-support-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--lavender-soft);
    border: 1px solid var(--lavender-border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-top: 25px;
}

.support-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.support-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--purple-primary);
    margin-bottom: 4px;
}

.support-text p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin: 0;
}

.support-text a {
    color: var(--purple-primary);
    text-decoration: underline;
}

/* Back Link */
.ty-back-home-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--purple-primary);
    transition: var(--transition-fast);
}

.ty-back-home-link:hover {
    color: var(--cta-orange);
    text-decoration: underline;
}

