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

:root {
    /* ── Boss Mama Biz Palette ────────────────────────────────────
       Primary  : Hot Pink    #E8327A  (main accent, CTAs, borders)
       Plum     : Deep Plum   #2D1230  (card & sidebar backgrounds)
       Gold     : Honey Gold  #C9A84C  (prices, badges, secondary)
       Dark     : Near Black  #0D0D0D  (page background)
       Light    : Warm Cream  #F5F0E6  (alternating sections)
    ─────────────────────────────────────────────────────────── */

    --primary:        #E8327A;
    --primary-hover:  #C4285E;
    --primary-glow:   rgba(232, 50, 122, 0.25);

    --gold:           #C9A84C;
    --gold-glow:      rgba(201, 168, 76, 0.25);

    --plum:           #2D1230;
    --plum-light:     rgba(45, 18, 48, 0.75);

    --bg-dark:        #0D0D0D;
    --bg-header:      #160D1A;  /* deep plum-black for header/nav */
    --bg-card:        rgba(45, 18, 48, 0.65);  /* plum-tinted cards */
    --bg-card-hover:  rgba(55, 22, 58, 0.88);

    --border-color:   rgba(232, 50, 122, 0.15);
    --border-hover:   rgba(232, 50, 122, 0.38);

    --text-main:    #F5F0E6;
    --text-muted:   #C9A0B4;
    --text-inverse: #1A0A14;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Outfit', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(232, 50, 122, 0.07) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(45, 18, 48, 0.18) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='v'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95 0.08' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.02 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23v)'/%3E%3C/svg%3E");
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-weight: 300;
    color: var(--text-muted);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--text-main);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

.text-center {
    text-align: center;
}

.gold-text {
    color: var(--gold);
}

.pink-text {
    color: var(--primary);
}

.plum-text {
    color: #b07ab8;
}

.pill-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    background: rgba(232, 50, 122, 0.08);
    border: 1px solid rgba(232, 50, 122, 0.55);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg), 0 0 20px var(--primary-glow);
}

/* Interactive Elements (Buttons) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #F05595 0%, #E8327A 60%, #C4285E 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(232, 50, 122, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 50, 122, 0.5);
    background: linear-gradient(135deg, #ff6daa 0%, #F05595 60%, #E8327A 100%);
    color: #ffffff;
}

.btn-secondary {
    background: rgba(45, 18, 48, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: var(--text-main);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(232, 50, 122, 0.06);
    color: var(--primary);
}

/* Header / Navbar */
.nav-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(13, 5, 16, 0.88);
    background-image: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='v'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95 0.08' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.02 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23v)'/%3E%3C/svg%3E");
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ff85b3 0%, #E8327A 50%, #C9A84C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary);
    filter: drop-shadow(0 2px 8px rgba(232, 50, 122, 0.35));
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    background: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 0 8rem;
    text-align: center;
    overflow: hidden;
    background-color: #383838;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(232, 50, 122, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(45, 18, 48, 0.2) 0%, transparent 50%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Offers / Carousel Section */
#offers {
    background-color: #383838;
    background-image:
        radial-gradient(circle at 10% 60%, rgba(232, 50, 122, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 90% 30%, rgba(45, 18, 48, 0.18) 0%, transparent 50%);
    padding: 8rem 0;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    font-variant-numeric: lining-nums;
    font-feature-settings: 'lnum' 1;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
}

/* Quiz Section (Warm Cream Contrast) */
.quiz-section {
    background-color: #F5F0E6;
    background-image: 
        repeating-linear-gradient(90deg, rgba(26, 10, 20, 0.012) 0px, rgba(26, 10, 20, 0.012) 1px, transparent 1px, transparent 4px),
        repeating-linear-gradient(0deg, rgba(26, 10, 20, 0.006) 0px, rgba(26, 10, 20, 0.006) 1px, transparent 1px, transparent 6px);
    border-top: 1px solid rgba(232, 50, 122, 0.15);
    border-bottom: 1px solid rgba(232, 50, 122, 0.15);
    color: #1A0A14;
}

.quiz-section h2, 
.quiz-section h3, 
.quiz-section .quiz-question {
    color: #1A0A14;
}

.quiz-section p {
    color: #5A2E45;
}

.quiz-section .pill-tag {
    background: rgba(232, 50, 122, 0.08);
    border: 1px solid rgba(232, 50, 122, 0.3);
    color: #C4285E;
}

.quiz-container {
    max-width: 650px;
    margin: 0 auto;
}

/* Overwrite Glass Card for the Light Section */
.quiz-section .glass-card {
    background: #ffffff;
    border: 1px solid rgba(232, 50, 122, 0.12);
    box-shadow: 0 10px 30px rgba(26, 10, 20, 0.06);
    color: #1A0A14;
}

.quiz-section .glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(232, 50, 122, 0.12);
    border-color: rgba(232, 50, 122, 0.28);
}

.quiz-box {
    margin-top: 2rem;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quiz-question {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.quiz-option {
    background: #fdf7fa;
    border: 1px solid rgba(232, 50, 122, 0.12);
    padding: 1.2rem;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    text-align: left;
    transition: var(--transition-smooth);
    color: #5A2E45;
}

.quiz-option:hover {
    background: #fff0f6;
    border-color: var(--primary);
    color: #1A0A14;
    transform: translateX(4px);
}

.quiz-progress {
    width: 100%;
    height: 6px;
    background: rgba(232, 50, 122, 0.12);
    border-radius: 99px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #C9A84C);
    width: 0%;
    transition: var(--transition-smooth);
}

/* 3D Carousel Section */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 4rem auto 0;
    height: 820px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 720px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-card {
    position: absolute;
    width: 340px;
    height: 660px;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, border-color 0.4s ease;
    cursor: pointer;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.offer-card .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
}

/* Carousel States — flat 2D transforms only */
.offer-card.active {
    transform: translateX(0) scale(1.05);
    z-index: 10;
    opacity: 1;
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), 0 0 25px var(--primary-glow);
}

.offer-card.prev {
    transform: translateX(-260px) scale(0.88);
    z-index: 5;
    opacity: 0.4;
    pointer-events: none;
}

.offer-card.next {
    transform: translateX(260px) scale(0.88);
    z-index: 5;
    opacity: 0.4;
    pointer-events: none;
}

.offer-card.hidden-left {
    transform: translateX(-500px) scale(0.75);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

.offer-card.hidden-right {
    transform: translateX(500px) scale(0.75);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

/* Navigation Panel */
.carousel-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
    z-index: 20;
}

.carousel-arrow {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.carousel-arrow:hover {
    background: rgba(230, 195, 135, 0.1);
    border-color: var(--primary);
}

.carousel-dots {
    display: flex;
    gap: 1.2rem;
}

.carousel-dot-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    border-bottom: 2px solid transparent;
    padding-bottom: 0.2rem;
}

.carousel-dot-label.active {
    color: var(--primary);
    border-color: var(--primary);
}

/* Mobile Responsiveness for 3D Carousel */
@media (max-width: 768px) {
    /* Nav logo — keep on one line */
    .logo-wrapper .logo-text {
        font-size: 1.2rem !important;
        letter-spacing: 1.5px !important;
    }
    .logo-wrapper span:last-child {
        font-size: 0.55rem !important;
        letter-spacing: 3px !important;
    }

    .carousel-container {
        height: 690px;
    }

    .offer-card {
        width: 300px;
        height: 640px;
        padding: 1.5rem;
    }

    .offer-card.prev {
        transform: translate3d(-100px, 0, -50px) rotateY(20deg) scale(0.85);
        opacity: 0.25;
    }

    .offer-card.next {
        transform: translate3d(100px, 0, -50px) rotateY(-20deg) scale(0.85);
        opacity: 0.25;
    }

    /* Carousel nav — pull arrows in, shrink gaps */
    .carousel-nav {
        gap: 0.6rem;
        padding: 0 0.5rem;
        width: 100%;
        justify-content: center;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .carousel-dots {
        gap: 0.4rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .carousel-dot-label {
        font-size: 0.62rem;
        letter-spacing: 0.3px;
    }
}

.offer-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: var(--primary);
}

.offer-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
}

.offer-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.offer-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
}

.offer-features li svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Email Opt-in Form */
.optin-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 3rem auto 0;
}

.optin-form input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 1.1rem 1.5rem;
    border-radius: 12px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.optin-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 600px) {
    .optin-form {
        flex-direction: column;
    }
}

/* FAQ Section (Warm Cream Contrast) */
.faq-section {
    background-color: #F5F0E6;
    background-image: 
        repeating-linear-gradient(90deg, rgba(26, 10, 20, 0.012) 0px, rgba(26, 10, 20, 0.012) 1px, transparent 1px, transparent 4px),
        repeating-linear-gradient(0deg, rgba(26, 10, 20, 0.006) 0px, rgba(26, 10, 20, 0.006) 1px, transparent 1px, transparent 6px);
    border-top: 1px solid rgba(232, 50, 122, 0.15);
    border-bottom: 1px solid rgba(232, 50, 122, 0.15);
    color: #1A0A14;
}

.faq-section h2, 
.faq-section .faq-question {
    color: #1A0A14;
}

.faq-section p, 
.faq-section .faq-answer {
    color: #5A2E45;
}

.faq-section .pill-tag {
    background: rgba(232, 50, 122, 0.08);
    border: 1px solid rgba(232, 50, 122, 0.3);
    color: #C4285E;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(232, 50, 122, 0.15);
    padding: 1.5rem 0;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    color: #1A0A14;
}

.faq-question::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    color: #5A2E45;
    font-weight: 300;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 1rem;
}

/* Modal Checkout Simulator */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #1A0820;
    border: 1px solid var(--primary);
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 40px rgba(232, 50, 122, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-main);
}

.checkout-header {
    text-align: center;
    margin-bottom: 2rem;
}

.checkout-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.stripe-badge {
    background: #635bff;
    color: white;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.checkout-summary {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 2rem;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.checkout-summary-row.total {
    border-top: 1px solid var(--border-color);
    padding-top: 0.8rem;
    margin-top: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

/* Cross-sell checkbox (Order bump) */
.order-bump {
    background: rgba(201, 168, 76, 0.04);
    border: 1px dashed var(--gold);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    cursor: pointer;
}

.order-bump-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
    accent-color: var(--gold);
}

.order-bump-text h5 {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.order-bump-text p {
    font-size: 0.85rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0;
    text-align: center;
    background: var(--bg-dark);
}

footer p {
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ============================================================
   HERO STATS STRIP
   ============================================================ */
.hero-stats { display:flex; align-items:center; justify-content:center; gap:2rem; margin-top:3rem; flex-wrap:wrap; }
.hero-stat { text-align:center; }
.stat-number { display:block; font-family:var(--font-heading); font-size:2rem; font-weight:700; color:var(--primary); font-variant-numeric:lining-nums; font-feature-settings:'lnum' 1; }
.stat-label  { display:block; font-size:0.75rem; letter-spacing:2px; text-transform:uppercase; color:var(--text-muted); margin-top:0.2rem; }
.hero-stat-divider { width:1px; height:40px; background:var(--border-color); }

.pain-section { padding:5rem 0; background:var(--bg-dark); }
.pain-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.pain-card { background:rgba(45,18,48,0.5); border:1px solid var(--border-color); border-radius:14px; padding:1.5rem; display:flex; flex-direction:column; gap:0.5rem; transition:var(--transition-smooth); }
.pain-card:hover { border-color:var(--primary); background:rgba(45,18,48,0.8); transform:translateY(-3px); }
.pain-emoji { font-size:2rem; }
.pain-card p { font-size:0.95rem; font-style:italic; flex:1; }
.pain-fix { font-size:0.8rem; font-weight:700; color:var(--primary); }

.about-section { padding:5rem 0; background:linear-gradient(135deg,rgba(45,18,48,0.4) 0%,var(--bg-dark) 100%); border-top:1px solid var(--border-color); border-bottom:1px solid var(--border-color); }
.about-container { display:grid; grid-template-columns:320px 1fr; gap:4rem; align-items:center; }
.about-image-wrap { display:flex; justify-content:center; }
.about-photo-frame { width:280px; height:360px; border-radius:20px; border:2px solid var(--primary); background:rgba(45,18,48,0.6); display:flex; align-items:center; justify-content:center; box-shadow:0 0 40px var(--primary-glow); position:relative; overflow:hidden; }
.about-photo-frame img { width:100%; height:100%; object-fit:cover; object-position:center top; border-radius:18px; }
.about-photo-frame::before { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(45,18,48,0.4) 0%,transparent 40%); pointer-events:none; z-index:1; }
.about-photo-inner { display:flex; flex-direction:column; align-items:center; gap:1rem; z-index:2; }

/* NOTE: .offer-card base rule is defined above with position:absolute — do not re-declare here */
.offer-card-img { width:100%; height:110px; border-radius:10px; margin-bottom:1rem; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2px; }
.offer-img-title { font-family:var(--font-heading); font-size:1.3rem; letter-spacing:2px; color:#ffffff; text-align:center; }
.offer-img-sub   { font-size:0.65rem; letter-spacing:3px; color:rgba(255,255,255,0.6); text-align:center; }
.stacked-bg    { background:linear-gradient(135deg,#3d2030 0%,#1a0a14 100%); }
.boss-suite-bg { background:linear-gradient(135deg,#1a1a1a 0%,#2d2d2d 100%); }
.fes-bg        { background:linear-gradient(135deg,#0d1f3c 0%,#1a3a6e 100%); }
.plr-bg        { background:linear-gradient(135deg,#2d1230 0%,#4a1e50 100%); }
.alignment-bg  { background:radial-gradient(circle at center,#2d0a3a 0%,#1a0a2e 50%,#0d0510 100%); }
.offer-badge { display:inline-block; font-size:0.72rem; font-weight:700; padding:0.3rem 0.75rem; border-radius:20px; margin-bottom:0.75rem; width:fit-content; }
.offer-badge-starter { background:rgba(201,168,76,0.2); color:var(--gold); border:1px solid rgba(201,168,76,0.4); }
.offer-badge-popular { background:rgba(232,50,122,0.2); color:var(--primary); border:1px solid rgba(232,50,122,0.4); }
.offer-badge-hot     { background:rgba(255,100,50,0.2); color:#ff6432; border:1px solid rgba(255,100,50,0.4); }
.offer-badge-dfy     { background:rgba(74,222,128,0.15); color:#4ade80; border:1px solid rgba(74,222,128,0.3); }
.offer-badge-mindset { background:rgba(167,139,250,0.2); color:#a78bfa; border:1px solid rgba(167,139,250,0.35); }

.built-by-me-section { padding:5rem 0; background:linear-gradient(180deg,var(--bg-dark) 0%,rgba(45,18,48,0.3) 100%); border-top:1px solid var(--border-color); }
.own-product-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:2rem; max-width:920px; margin:0 auto; }
.own-product-card { display:flex; gap:1.5rem; align-items:flex-start; }
.own-product-img { width:120px; min-width:120px; height:140px; border-radius:12px; background:linear-gradient(135deg,#2d1230 0%,#3d1a40 100%); display:flex; align-items:center; justify-content:center; border:1px solid var(--border-color); }
.own-product-price-badge { display:inline-block; background:linear-gradient(135deg,var(--primary),#c4285e); color:#ffffff; font-weight:800; font-size:1.1rem; padding:0.3rem 0.9rem; border-radius:20px; font-family:var(--font-heading); }

.tools-section { padding:5rem 0; background:var(--bg-dark); border-top:1px solid var(--border-color); }
.tools-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
.tool-card { display:flex; flex-direction:column; gap:0.75rem; padding:2rem; text-align:center; transition:var(--transition-smooth); }
.tool-card:hover { transform:translateY(-4px); border-color:var(--primary); }
.tool-card-ai { border-color:rgba(167,139,250,0.35); }
.tool-card-ai:hover { border-color:#a78bfa; box-shadow:0 0 30px rgba(167,139,250,0.2); }
.tool-icon { font-size:2.5rem; }
.tool-card h3 { font-family:var(--font-heading); font-size:1.1rem; }
.tool-card p  { font-size:0.9rem; color:var(--text-muted); flex:1; }
.tool-usage-bar { width:100%; height:5px; background:rgba(255,255,255,0.1); border-radius:10px; overflow:hidden; margin-top:0.5rem; }
.tool-usage-fill { height:100%; width:0%; background:var(--primary); border-radius:10px; transition:width 0.4s ease; }
.tool-usage-label { font-size:0.75rem; color:var(--text-muted); }

.tool-modal { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.75); backdrop-filter:blur(6px); z-index:1000; align-items:center; justify-content:center; padding:1.5rem; }
.tool-modal.active { display:flex; }
.tool-modal-content { background:linear-gradient(135deg,#1a0a20 0%,#120814 100%); border:1px solid var(--border-color); border-radius:20px; padding:2rem; width:100%; max-width:550px; max-height:90vh; overflow-y:auto; position:relative; box-shadow:var(--shadow-lg); }
.tool-modal-content h3 { font-family:var(--font-heading); font-size:1.3rem; margin-bottom:0.5rem; }
.tool-form { display:flex; flex-direction:column; gap:1.2rem; }
.tool-form-group { display:flex; flex-direction:column; gap:0.4rem; }
.tool-form-group label { font-size:0.85rem; font-weight:700; color:var(--text-muted); text-transform:uppercase; letter-spacing:0.5px; }
.tool-select, .tool-input { background:rgba(45,18,48,0.7); border:1px solid var(--border-color); border-radius:10px; padding:0.75rem 1rem; color:var(--text-main); font-family:var(--font-body); font-size:0.95rem; width:100%; transition:border-color 0.3s; }
.tool-select:focus, .tool-input:focus { border-color:var(--primary); outline:none; }
.tool-select option { background:#1a0a20; }
.tool-slider { -webkit-appearance:none; appearance:none; width:100%; height:6px; background:rgba(255,255,255,0.1); border-radius:3px; outline:none; }
.tool-slider::-webkit-slider-thumb { -webkit-appearance:none; width:20px; height:20px; border-radius:50%; background:var(--primary); cursor:pointer; box-shadow:0 0 8px var(--primary-glow); }
.slider-label { text-align:center; font-size:0.9rem; color:var(--primary); font-weight:700; margin-top:0.3rem; }
.tool-results { margin-top:1.5rem; border-top:1px solid var(--border-color); padding-top:1.5rem; }
.tool-result-card { display:flex; flex-direction:column; gap:1rem; }
.result-income-range { text-align:center; background:rgba(232,50,122,0.1); border:1px solid rgba(232,50,122,0.3); border-radius:12px; padding:1.25rem; }
.result-label   { display:block; font-size:0.8rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:1px; margin-bottom:0.4rem; }
.result-range   { display:block; font-family:var(--font-heading); font-size:2rem; color:var(--primary); }
.result-timeline{ display:block; font-size:0.8rem; color:var(--text-muted); margin-top:0.3rem; }
.result-rec     { background:rgba(45,18,48,0.5); border:1px solid var(--border-color); border-radius:12px; padding:1.25rem; }
.result-rec-label { display:block; font-size:0.8rem; color:var(--primary); font-weight:700; margin-bottom:0.5rem; }
.result-rec strong { font-family:var(--font-heading); font-size:1.05rem; display:block; margin-bottom:0.5rem; }
.result-rec p   { font-size:0.88rem; color:var(--text-muted); }
.result-disclaimer { font-size:0.72rem; color:var(--text-muted); font-style:italic; }
.niche-result-header { display:flex; align-items:center; gap:1rem; }
.niche-product-list { list-style:none; display:flex; flex-direction:column; gap:0.4rem; padding:0; }
.niche-product-list li { font-size:0.9rem; padding:0.4rem 0.75rem; background:rgba(45,18,48,0.4); border-radius:8px; }
.niche-rec-box { text-align:center; background:rgba(232,50,122,0.1); border:1px solid rgba(232,50,122,0.3); border-radius:12px; padding:1.25rem; }
.plr-product-list { list-style:none; display:grid; grid-template-columns:1fr 1fr; gap:0.5rem; padding:0; }
.plr-product-list li { font-size:0.82rem; padding:0.4rem 0.6rem; background:rgba(45,18,48,0.4); border-radius:8px; }
.plr-vault-cta { text-align:center; background:rgba(232,50,122,0.1); border:1px solid rgba(232,50,122,0.3); border-radius:12px; padding:1.25rem; margin-top:0.75rem; }
.plr-vault-cta p { font-size:0.9rem; color:var(--text-muted); }

.boss-ai-chat-window { display:flex; flex-direction:column; max-width:500px; height:580px; max-height:90vh; overflow:hidden; padding:0; }
.boss-ai-header { display:flex; align-items:center; gap:1rem; padding:1.25rem 1.5rem; border-bottom:1px solid var(--border-color); background:rgba(45,18,48,0.8); border-radius:20px 20px 0 0; flex-shrink:0; }
.boss-ai-avatar { font-size:2rem; width:44px; height:44px; display:flex; align-items:center; justify-content:center; background:rgba(232,50,122,0.2); border-radius:50%; border:1px solid rgba(232,50,122,0.4); }
.boss-ai-messages { flex:1; overflow-y:auto; padding:1.25rem 1.5rem; display:flex; flex-direction:column; gap:1rem; }
.boss-ai-input-row { padding:1rem 1.5rem; border-top:1px solid var(--border-color); flex-shrink:0; }
.boss-ai-options { display:flex; flex-direction:column; gap:0.5rem; }
.ai-option-btn { background:rgba(45,18,48,0.6); border:1px solid var(--border-color); border-radius:10px; padding:0.65rem 1rem; color:var(--text-main); font-family:var(--font-body); font-size:0.875rem; cursor:pointer; text-align:left; transition:all 0.2s; }
.ai-option-btn:hover { border-color:var(--primary); background:rgba(232,50,122,0.15); color:var(--primary); }
.ai-message { display:flex; gap:0.75rem; align-items:flex-start; }
.ai-bubble { background:rgba(45,18,48,0.7); border:1px solid var(--border-color); border-radius:0 14px 14px 14px; padding:0.75rem 1rem; font-size:0.9rem; line-height:1.5; max-width:85%; }
.user-message { flex-direction:row-reverse; }
.user-bubble { background:rgba(232,50,122,0.2); border-color:rgba(232,50,122,0.4); border-radius:14px 0 14px 14px; }
.ai-result-bubble { max-width:100%; }
.boss-ai-bubble { position:fixed; bottom:2rem; right:2rem; background:linear-gradient(135deg,var(--primary),#c4285e); border-radius:50px; padding:0.85rem 1.25rem; display:flex; align-items:center; gap:0.5rem; cursor:pointer; box-shadow:0 4px 20px rgba(232,50,122,0.5); z-index:500; transition:all 0.3s; animation:bossAIPulse 3s ease infinite; }
.boss-ai-bubble:hover { transform:scale(1.08); }
.boss-ai-bubble-icon { font-size:1.3rem; }
.boss-ai-bubble-label { font-size:0.85rem; font-weight:700; color:#fff; white-space:nowrap; }
@keyframes bossAIPulse { 0%,100%{box-shadow:0 4px 20px rgba(232,50,122,0.5);}50%{box-shadow:0 4px 35px rgba(232,50,122,0.8);} }
.bmb-toast { position:fixed; bottom:5rem; left:50%; transform:translateX(-50%) translateY(20px); background:linear-gradient(135deg,#1a4d2e,#2d7a46); color:#fff; padding:0.85rem 1.5rem; border-radius:30px; font-size:0.9rem; font-weight:600; z-index:9999; opacity:0; transition:all 0.3s; white-space:nowrap; }
.bmb-toast.visible { opacity:1; transform:translateX(-50%) translateY(0); }

@media (max-width:1024px) {
    .pain-grid { grid-template-columns:repeat(2,1fr); }
    .about-container { grid-template-columns:1fr; text-align:center; }
    .about-image-wrap { order:-1; }
    .plr-product-list { grid-template-columns:1fr; }
}
@media (max-width:768px) {
    .hero-stats { gap:1rem; }
    .hero-stat-divider { display:none; }
    .pain-grid { grid-template-columns:1fr; }
    .tools-grid { grid-template-columns:1fr; }
    .own-product-grid { grid-template-columns:1fr; }
    .own-product-card { flex-direction:column; }
    .own-product-img { width:100%; min-width:unset; height:100px; }
    .boss-ai-bubble-label { display:none; }
    .boss-ai-bubble { padding:0.85rem; border-radius:50%; }
    .boss-ai-chat-window { height:70vh; }
}
/* ============================================================
   BRIDGE MODAL — Email Capture Before Affiliate Redirect
   ============================================================ */
.bridge-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.bridge-overlay.active { display: flex; }
.bridge-box {
    background: linear-gradient(145deg, #140810 0%, #2d1230 50%, #1a0a14 100%);
    border: 1px solid rgba(232,50,122,0.4);
    border-radius: 24px;
    padding: 3rem 2.5rem 2rem;
    max-width: 480px;
    width: 92%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 100px rgba(232,50,122,0.18), 0 40px 80px rgba(0,0,0,0.7);
    animation: bridgeIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes bridgeIn {
    from { transform: scale(0.85) translateY(24px); opacity: 0; }
    to   { transform: scale(1) translateY(0); opacity: 1; }
}
.bridge-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: 220px;
    background: radial-gradient(ellipse, rgba(232,50,122,0.22) 0%, transparent 70%);
    pointer-events: none;
}
.bridge-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
    z-index: 1;
}
.bridge-close:hover { color: var(--primary); transform: scale(1.1); }
.bridge-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #c44b6b);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.38rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.1rem;
}
.bridge-title {
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 0.35rem;
    line-height: 1.25;
}
.bridge-tagline {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 1.3rem;
    font-weight: 500;
    font-style: italic;
}
.bridge-perks {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--border-color);
}
.bridge-perks span {
    font-size: 0.86rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.bridge-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}
.bridge-form input {
    width: 100%;
    padding: 0.82rem 1.1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
    font-family: var(--font-body);
}
.bridge-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.07);
}
.bridge-form input::placeholder { color: rgba(255,255,255,0.3); }
.bridge-submit { width: 100%; font-size: 1.05rem; padding: 1rem; margin-top: 0.1rem; }
.bridge-skip {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.82rem;
    text-align: center;
    cursor: pointer;
    padding: 0.6rem;
    transition: color 0.2s;
    font-family: var(--font-body);
}
.bridge-skip:hover { color: var(--text-light); text-decoration: underline; }
.bridge-fine-print {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.2);
    margin: 0.5rem 0 0;
}

/* ============================================================
   BONUS BAR — Evergreen Sticky Countdown
   ============================================================ */
.bonus-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1500;
    background: linear-gradient(135deg, #1a0014 0%, #3d0030 50%, #1a0014 100%);
    border-bottom: 1px solid rgba(232,50,122,0.45);
    padding: 0.65rem 1.5rem;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 4px 30px rgba(232,50,122,0.18);
}
.bonus-bar.visible { transform: translateY(0); }
.bonus-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}
.bonus-bar-left {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.88);
    flex: 1;
}
.bonus-bar-left strong { color: var(--primary); }
.bonus-fire { font-size: 1.1rem; flex-shrink: 0; }
.bonus-bar-center { display: flex; align-items: center; gap: 0.3rem; flex-shrink: 0; }
.bonus-clock-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(232,50,122,0.12);
    border: 1px solid rgba(232,50,122,0.32);
    border-radius: 6px;
    padding: 0.28rem 0.6rem;
    min-width: 46px;
}
.bonus-clock-block span {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.bonus-clock-block small {
    font-size: 0.57rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 2px;
}
.bonus-clock-sep {
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}
.bonus-bar-right { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.bonus-bar-cta { font-size: 0.83rem !important; padding: 0.5rem 1.1rem !important; white-space: nowrap; }
.bonus-bar-dismiss {
    background: none; border: none;
    color: rgba(255,255,255,0.35);
    font-size: 1.5rem; cursor: pointer; line-height: 1;
    transition: color 0.2s; padding: 0;
}
.bonus-bar-dismiss:hover { color: rgba(255,255,255,0.75); }

/* Bridge modal mini-timer */
.bridge-bonus-timer {
    font-size: 0.82rem;
    color: var(--primary);
    text-align: center;
    padding: 0.55rem;
    margin-bottom: 0.8rem;
    border-radius: 8px;
    background: rgba(232,50,122,0.07);
    border: 1px solid rgba(232,50,122,0.18);
    animation: timerPulse 2s ease-in-out infinite;
}
.bridge-bonus-timer span { font-weight: 700; font-family: var(--font-heading); }
@keyframes timerPulse {
    0%, 100% { border-color: rgba(232,50,122,0.18); }
    50%       { border-color: rgba(232,50,122,0.5); }
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0510 50%, var(--bg-dark) 100%);
    position: relative;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(232,50,122,0.14), 0 0 0 1px rgba(232,50,122,0.2);
}
.testimonial-stars { color: #f5a623; font-size: 1rem; letter-spacing: 2px; }
.testimonial-quote {
    font-size: 0.96rem;
    line-height: 1.75;
    color: var(--text-light);
    font-style: italic;
    flex: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}
.testimonial-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem; color: #fff; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: #fff; }
.testimonial-product { font-size: 0.78rem; color: var(--primary); margin-top: 0.2rem; }
.testimonials-disclaimer {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.22);
    margin-top: 2rem;
}
@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .bonus-bar-left { display: none; }
    .bonus-bar-inner { justify-content: center; }
}

/* ============================================================
   SHARE YOUR STORY BAR
   ============================================================ */
.share-story-bar {
    background: linear-gradient(135deg, rgba(232,50,122,0.08) 0%, rgba(45,18,48,0.9) 100%);
    border-top: 1px solid rgba(232,50,122,0.2);
    border-bottom: 1px solid rgba(232,50,122,0.2);
    padding: 2rem 1.5rem;
}
.share-story-bar h3 { font-family: var(--font-body); }

/* Star picker in submission form */
.star-rating-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
}
.star-picker { display: flex; gap: 0.2rem; }
.star-btn {
    font-size: 1.4rem;
    cursor: pointer;
    color: #f5a623;
    transition: transform 0.15s;
    line-height: 1;
    user-select: none;
}
.star-btn:hover { transform: scale(1.2); }
