/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Color Palette */
    --purple-deep: #2d1b4e;      /* Primary Text & Dark Cards */
    --purple-mid: #6b4c9a;       /* Accents */
    --purple-light: #f3e5f5;     /* Background Tints */
    --pink-hot: #d63384;         /* CTAs, Urgency */
    --pink-soft: #f8bbd0;        /* Decorative */
    --gold: #ffc107;             /* Bonus Highlights */
    --gold-gradient: linear-gradient(135deg, #fff9c4 0%, #ffca28 100%);
    --bg-gradient: linear-gradient(to bottom, #f3e5f5, #ffffff, #e1bee7);
    --white: #ffffff;
    --success: #2e7d32;
    --danger: #d32f2f;

    /* Shadows */
    --card-shadow: 0 10px 30px rgba(45, 27, 78, 0.08);
    --pop-shadow: 0 15px 35px rgba(45, 27, 78, 0.15);

    /* Spacing */
    --mobile-width: 480px;
    --border-radius-card: 20px;
    --border-radius-btn: 50px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: #fdfbfd;
    color: var(--purple-deep);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

/* Typography Overrides */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.25;
}

/* =========================================
   2. BACKGROUND AMBIENCE
   ========================================= */
.dream-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-gradient);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatOrb 10s infinite ease-in-out alternate;
}

.top-orb {
    background: #e0b2f7;
    width: 300px;
    height: 300px;
    top: -100px;
    left: -50px;
}

.mid-orb {
    background: #fff9c4;
    width: 200px;
    height: 200px;
    top: 40%;
    right: -50px;
    animation-delay: -2s;
}

.bottom-orb {
    background: #ffcdd2;
    width: 350px;
    height: 350px;
    bottom: 100px;
    left: -100px;
    animation-delay: -5s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 40px); }
}

/* =========================================
   3. LAYOUT WRAPPER
   ========================================= */
.mobile-wrapper {
    width: 100%;
    max-width: var(--mobile-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* =========================================
   4. HEADER & HERO
   ========================================= */
.header {
    text-align: center;
    padding: 20px 0;
}

.logo {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.hero {
    text-align: center;
    margin-bottom: 35px;
}

.headline {
    font-size: 2.2rem;
    color: var(--purple-deep);
    margin-bottom: 10px;
}

.subhead {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Video Styling */
.video-cta-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--pink-hot);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.bounce {
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

.video-frame {
    border: 4px solid var(--white);
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.shadow-pop {
    box-shadow: var(--pop-shadow);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* =========================================
   5. BONUS CARD (THE GOLDEN CARD)
   ========================================= */
.bonus-section {
    margin-bottom: 35px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gold-card {
    background: var(--gold-gradient);
    border-radius: var(--border-radius-card);
    padding: 25px 20px;
    border: 2px solid #fff;
    position: relative;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    overflow: hidden;
    color: #4e342e;
}

.badge-pill {
    background: var(--danger);
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.gold-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.price-row {
    font-size: 1.2rem;
    font-weight: 800;
    color: #3e2723;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1rem;
    font-weight: 600;
}

.free-tag {
    background: #000;
    color: #ffca28;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.terms-text {
    font-size: 0.7rem;
    opacity: 0.85;
    margin-top: 8px;
    line-height: 1.4;
}

/* Shimmer Animation */
.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-20deg);
    animation: shim 2.5s infinite;
}

@keyframes shim {
    100% { left: 200%; }
}

/* =========================================
   6. PAIN POINTS & PROBLEMS
   ========================================= */
.problem-section {
    margin-bottom: 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 25px;
}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--purple-deep);
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--pink-hot);
    margin: 8px auto 0;
    border-radius: 2px;
}

.pain-card {
    border-radius: var(--border-radius-card);
    padding: 25px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.dark-theme {
    background: var(--purple-deep);
    color: #fff;
    position: relative;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
}

.warning i { color: #ffab91; }

.pain-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.pain-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    font-style: italic;
    font-weight: 300;
}

/* =========================================
   7. SOCIAL DETOX (FIXED)
   ========================================= */
.social-pain-section {
    margin-bottom: 30px;
}

/* This targets the specific card with both classes */
.social-pain-section .glass-card.gradient-border {
    position: relative;
    /* This creates the Gradient Border effect compatible with Border-Radius */
    border: 3px solid transparent;
    border-radius: var(--border-radius-card);
    background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #d63384, #6b4c9a); 
    background-origin: border-box;
    background-clip: padding-box, border-box;
    /* Reset padding/shadow */
    padding: 0; 
    box-shadow: 0 10px 25px rgba(214, 51, 132, 0.15); /* Pinkish shadow glow */
    text-align: center;
}

.card-body {
    padding: 25px 20px;
}

.icon-inline {
    font-size: 2.2rem;
    background: -webkit-linear-gradient(45deg, #d63384, #6b4c9a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    display: inline-block;
}

.social-pain-section h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--purple-deep);
}

.social-pain-section p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.soft-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(107, 76, 154, 0.2), transparent);
    margin: 15px 0;
}

.highlight-text {
    font-weight: 700;
    color: var(--purple-mid);
    font-size: 1rem;
    font-style: italic;
    margin-top: 5px;
    display: block;
}
/* =========================================
   8. SOLUTION & BUSY SECTION
   ========================================= */
.solution-section, .busy-section {
    margin-bottom: 30px;
}

.white-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--card-shadow);
    text-align: center;
}

.solution-card h2 {
    color: var(--purple-deep);
    margin-bottom: 15px;
}

.lead-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.highlight-box {
    background: var(--purple-light);
    border: 1px dashed var(--purple-mid);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.highlight-box i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.highlight-box strong {
    color: var(--purple-deep);
    font-size: 1.2rem;
}

.check-list {
    text-align: left;
    margin-top: 20px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.check-item i {
    color: var(--success);
    font-size: 1.3rem;
    margin-top: 2px;
}

/* =========================================
   9. TRANSFORMATION (GRID)
   ========================================= */
.transformation-section {
    margin-bottom: 35px;
    text-align: center;
}

.section-title {
    font-size: 1.8rem;
    color: var(--purple-deep);
    margin-bottom: 5px;
}

.subtitle-center {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.compare-col {
    padding: 15px 10px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: left;
}

.before {
    border-top: 4px solid var(--danger);
    background: #fff5f5;
}

.after {
    border-top: 4px solid var(--success);
    background: #f1f8e9;
}

.compare-col h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.before h4 { color: var(--danger); }
.after h4 { color: var(--success); }

.compare-col ul {
    list-style: none;
    padding-left: 5px;
}

.compare-col li {
    font-size: 0.8rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* =========================================
   10. COMMUNITY & FEATURES
   ========================================= */
.community-section, .accountability-section {
    margin-bottom: 30px;
}

.community-card {
    background: linear-gradient(135deg, #7e57c2 0%, #512da8 100%);
    color: #fff;
    padding: 30px 20px;
    border-radius: var(--border-radius-card);
    text-align: center;
    position: relative;
    box-shadow: var(--pop-shadow);
}

.live-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.3);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #ff1744;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.avatar-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.avatar-stack img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -12px;
}

.avatar-stack img:first-child { margin-left: 0; }

.avatar-count {
    background: #fff;
    color: var(--purple-deep);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 20px;
    margin-left: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* =========================================
   11. ASK DR PURVI (INTERACTION)
   ========================================= */
.ask-feature-section {
    margin-bottom: 30px;
}

.interaction-card {
    border-bottom: 4px solid var(--purple-mid);
}

.chat-icon {
    font-size: 2.5rem;
    color: var(--purple-mid);
    margin-bottom: 12px;
}

.disclaimer-box {
    background: #f3e5f5;
    border-radius: 8px;
    padding: 12px;
    margin-top: 15px;
    text-align: left;
    display: flex;
    gap: 10px;
    color: #555;
    font-size: 0.8rem;
    line-height: 1.4;
}

.disclaimer-box i {
    color: var(--purple-mid);
    margin-top: 3px;
}

/* =========================================
   12. SHORTS GRID
   ========================================= */
.shorts-section {
    margin-bottom: 35px;
}

.shorts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.short-item {
    width: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    aspect-ratio: 9/16; /* Perfect size for shorts */
}

.short-item iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* =========================================
   13. MENTOR (DETAILED)
   ========================================= */
.mentor-section {
    margin-bottom: 35px;
}

.mentor-card-detailed {
    background: #fff;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.mentor-header {
    background: linear-gradient(135deg, #2d1b4e 0%, #4a2b7a 100%);
    padding: 30px 20px;
    text-align: center;
    color: #fff;
}

.mentor-profile-pic {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    margin-bottom: 15px;
}

.mentor-titles h2 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.designation {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 1rem;
}

.mentor-body {
    padding: 25px 20px;
}

.highlight-p {
    text-align: center;
    color: var(--purple-mid);
    margin-bottom: 15px;
}

.achievements-box {
    background: #f9f9f9;
    border-left: 4px solid var(--gold);
    padding: 15px;
    margin: 15px 0;
}

.achievements-box ul {
    list-style: none;
}

.achievements-box li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.achievements-box i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.bio-story {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* =========================================
   14. VALUE STACK & PRICING
   ========================================= */
.pricing-section {
    margin-bottom: 35px;
}

.value-stack-card {
    background: #fff;
    border: 2px solid var(--purple-mid);
    border-radius: var(--border-radius-card);
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--pop-shadow);
}

.life-value-anchor .anchor-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--pink-hot);
    letter-spacing: 1px;
}

.life-value-anchor h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--purple-deep);
    margin: 5px 0;
}

.anchor-desc {
    font-size: 0.8rem;
    color: #666;
}

.dashed-divider {
    border: 0;
    border-top: 2px dashed #e0e0e0;
    margin: 20px 0;
}

.cost-breakdown {
    text-align: left;
    margin-bottom: 25px;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.95rem;
    color: #444;
}

.total-row {
    font-weight: 700;
    color: #999;
    border-bottom: none;
}

.strike {
    text-decoration: line-through;
}

.final-offer-box {
    background: var(--purple-light);
    padding: 20px;
    border-radius: 12px;
}

.you-pay-label {
    background: var(--success);
    color: #fff;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-big {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--purple-deep);
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.duration {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
}

.daily-cost {
    font-size: 0.9rem;
    color: var(--purple-mid);
    font-weight: 600;
    margin-top: 5px;
}

/* =========================================
   15. FAQ SECTION
   ========================================= */
.faq-section {
    margin-bottom: 30px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 15px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: var(--purple-deep);
    font-size: 0.95rem;
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--purple-mid);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 15px 15px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    display: none; /* Hidden by default */
}

.faq-answer p { margin: 0; }

/* =========================================
   16. FOOTER STYLES
   ========================================= */
.scarcity-footer-msg {
    text-align: center;
    font-size: 0.8rem;
    color: var(--danger);
    padding: 0 10px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.footer-spacer {
    height: 280px; /* Essential to prevent content cut-off */
}

.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 15px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #f0f0f0;
}

/* Footer Row 1: Expiry */
.row-expiry {
    font-size: 0.8rem;
    color: var(--pink-hot);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Row 2: Timer */
.countdown-theme {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f3f0f7;
    padding: 8px 15px;
    border-radius: 12px;
    border: 1px solid #e1bee7;
}

.c-box {
    text-align: center;
    line-height: 1;
    min-width: 35px;
}

.c-box span {
    font-family: 'Manrope', monospace;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--purple-deep);
    display: block;
}

.c-box label {
    font-size: 0.5rem;
    color: #888;
    letter-spacing: 1px;
    font-weight: 700;
}

.c-sep {
    font-weight: 700;
    color: #aaa;
    margin-top: -10px;
}

.text-pink span { color: var(--pink-hot); }

/* Footer Row 3: Support */
.row-support {
    font-size: 0.8rem;
    color: #777;
}

.row-support a {
    color: var(--purple-mid);
    font-weight: 700;
    text-decoration: none;
}

/* Footer Row 4: Button */
.cta-btn-main {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(90deg, #6b4c9a, #d63384);
    color: #fff;
    text-decoration: none;
    padding: 16px;
    border-radius: 50px;
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(214, 51, 132, 0.4);
    transition: transform 0.2s;
    animation: pulse 2s infinite;
}

.cta-btn-main:active {
    transform: scale(0.98);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(214, 51, 132, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(214, 51, 132, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(214, 51, 132, 0); }
}

/* =========================================
   17. ANIMATION UTILITIES
   ========================================= */
.fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Stagger Animations */
.hero { animation-delay: 0.1s; }
.bonus-section { animation-delay: 0.3s; }
.problem-section { animation-delay: 0.5s; }