:root {
    --bg-dark: #0B0B0D;
    /* Primary Background */
    --text-primary: #EAEAEA;
    /* Main Text */
    --text-secondary: #B8B8B8;
    /* Secondary Text */

    /* Premium Warm Palette */
    --neon-cyan: #F5B400;
    /* Primary Gold Accent */
    --neon-purple: #2B160A;
    /* Dark Amber/Brown */
    --neon-green: #2ecc71;
    /* Soft Success Green */
    --danger: #F5B400;
    /* Mapped to Gold to remove aggressive red */

    --glass-bg: rgba(255, 180, 0, 0.05);
    --glass-border: rgba(255, 180, 0, 0.1);
    /* Very subtle warm outline */
    --soft-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    /* Deep soft shadow */

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

::selection {
    background: var(--neon-cyan);
    color: #000;
}

body {
    background-color: var(--bg-dark);
    background: radial-gradient(circle at top center, #1A0F08 0%, var(--bg-dark) 80%);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Effects */
.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    z-index: -1;
}

.bg-glow-1,
.bg-glow-2 {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -2;
    opacity: 0.15;
    animation: floating 8s infinite alternate;
}

.bg-glow-1 {
    top: -100px;
    left: -100px;
    background: #2B160A;
    /* Dark Amber */
    /* Dark Red */
}

.bg-glow-2 {
    bottom: -100px;
    right: -100px;
    background: var(--neon-cyan);
    /* Gold */
    /* Bright Red */
    animation-delay: 2s;
}

@keyframes floating {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Typography & General */
h1,
h2,
h3,
h4,
.badge-futuristic {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-gradient {
    background: linear-gradient(90deg, #F5B400, #FFE082);
    /* Gold Gradient */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.highlight {
    color: var(--neon-cyan);
    font-weight: bold;
}

.text-accent {
    color: var(--neon-cyan);
}

.text-red {
    color: var(--neon-cyan);
    font-weight: bold;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: -2rem auto 3rem auto;
}

/* Buttons */
.cta-button {
    background-color: #F5B400;
    color: #000000 !important;
    border: none;
    border-radius: 40px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    display: block;
    margin: 30px auto;
    width: fit-content;
    box-shadow: 0 8px 20px rgba(245, 180, 0, 0.25);
    transition: all 0.25s ease;
    text-decoration: none;
    font-family: var(--font-heading);
}

.cta-button:hover {
    background-color: #FFD24A;
    transform: translateY(-2px);
    color: #000000 !important;
}

/* Unified style for all buttons, removing secondary transparent style */
.cta-button.secondary {
    background-color: #F5B400;
    border: none;
    color: #000000 !important;
    box-shadow: 0 8px 20px rgba(245, 180, 0, 0.25);
}

.cta-button.secondary:hover {
    background-color: #FFD24A;
}

.pulse-effect {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    /* Increased padding */
    border-radius: 1rem;
    box-shadow: var(--soft-shadow);
}

/* START SECTIONS */

/* HERO & BLACK SCREEN BUG */
.hero-section {
    padding: 6rem 0 4rem 0;
    text-align: center;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Black Screen Glitch Animation */
@keyframes black-screen-glitch {
    0% {
        opacity: 1;
        filter: brightness(1) contrast(1);
    }

    10% {
        opacity: 0;
        filter: brightness(0);
    }

    /* Blackout */
    12% {
        opacity: 0;
        filter: brightness(0);
    }

    15% {
        opacity: 1;
        filter: brightness(2) contrast(2);
        transform: translateX(-5px);
    }

    /* Glitch back */
    16% {
        opacity: 1;
        transform: translateX(5px);
    }

    20% {
        opacity: 0.8;
    }

    25% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    92% {
        opacity: 0;
    }

    /* Quick flicker */
    94% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.bug-effect::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    animation: black-screen-flash 4s ease-out forwards;
}

@keyframes black-screen-flash {
    0% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    22% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    32% {
        opacity: 0.5;
    }

    35% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.hero-content {
    animation: content-glitch 5s ease-out;
}

@keyframes content-glitch {
    0% {
        opacity: 0;
    }

    35% {
        opacity: 0;
    }

    /* Wait for black screen to clear */
    40% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.badge-futuristic {
    background: rgba(255, 0, 0, 0.1);
    color: var(--neon-cyan);
    padding: 0.5rem 1rem;
    border: 1px solid var(--neon-cyan);
    font-size: 0.8rem;
    margin-bottom: 2rem;
    display: inline-block;
    letter-spacing: 2px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Softer border */
}

.benefit-item svg {
    color: var(--neon-cyan);
    width: 18px;
    height: 18px;
}

/* Problem Section */
.problem-section {
    padding: 4rem 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.problem-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
}

.problem-item .icon-lg {
    width: 48px;
    height: 48px;
    height: 48px;
    color: var(--neon-cyan);
    /* Changed from danger/red to gold */
    margin-bottom: 1rem;
}

.truth-bomb {
    text-align: center;
    margin-top: 4rem;
}

.highlight-box {
    font-size: 1.3rem;
    margin: 2rem 0;
    border-left: 4px solid var(--neon-cyan);
    padding-left: 1rem;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.1) 0%, transparent 100%);
    display: inline-block;
    padding: 1rem;
}

/* Cycle Section */
.cycle-section {
    padding: 4rem 0;
    position: relative;
}

.cycle-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

/* Vertical line connecting steps on mobile */
.cycle-steps::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--neon-purple);
    /* Assuming purple for the line */
    opacity: 0.3;
}

.cycle-step {
    background: var(--glass-bg);
    padding: 1.5rem;
    padding-left: 4rem;
    border-radius: 1rem;
    position: relative;
    border: 1px solid var(--glass-border);
}

.step-number {
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    width: 2rem;
    /* Reduced size slightly */
    height: 2rem;
    background: var(--bg-dark);
    /* Ensure number is legible against line */
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    color: var(--neon-cyan);
    z-index: 1;
    /* Place above the line */
}

.impact-box {
    margin-top: 3rem;
    text-align: center;
    border-color: var(--danger);
}

/* Solution Pillars */
.solution-section {
    padding: 4rem 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pillar-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
}

.pillar-card svg {
    width: 48px;
    height: 48px;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.center-cta {
    text-align: center;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, transparent, rgba(255, 0, 0, 0.05));
}

.module-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.module-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 2px solid var(--neon-purple);
}

.check-icon {
    color: var(--neon-green);
    min-width: 24px;
}

.format-badge {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--neon-cyan);
    font-weight: bold;
}

/* Bonus Section */
.bonus-section {
    padding: 4rem 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-card {
    position: relative;
    overflow: hidden;
}

.bonus-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--neon-purple);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
    font-family: var(--font-heading);
    border-bottom-left-radius: 0.5rem;
}

.price-tag {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.strike {
    text-decoration: line-through;
    color: var(--text-secondary);
}

.free {
    color: var(--neon-green);
    font-weight: bold;
}

.total-value {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.2rem;
}

/* Offer Section */
.offer-section {
    padding: 4rem 0;
}

.offer-box {
    text-align: center;
    border: 1px solid var(--glass-border);
    background: linear-gradient(145deg, rgba(20, 20, 22, 0.9), rgba(43, 22, 10, 0.2));
    box-shadow: var(--soft-shadow);
    padding: 3rem;
}

.glow-border {
    box-shadow: 0 0 30px rgba(245, 180, 0, 0.1), inset 0 0 20px rgba(245, 180, 0, 0.05);
}

.timer-banner {
    background: rgba(0, 0, 0, 0.4);
    margin: -2rem -2rem 2rem -2rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--neon-cyan);
    margin-top: 0.5rem;
    font-weight: 700;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block small {
    font-size: 0.6rem;
    color: var(--text-secondary);
    font-family: var(--font-body);
}

.price-breakdown {
    max-width: 400px;
    margin: 2rem auto;
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.total-row {
    border-top: 1px solid var(--glass-border);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    font-weight: bold;
    color: var(--text-primary);
}

.final-price .currency {
    font-size: 2rem;
    vertical-align: top;
}

.final-price .amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--neon-green);
    font-family: var(--font-heading);
}

.discount-badge {
    background: var(--neon-cyan);
    color: #000;
    display: inline-block;
    padding: 0.3rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.btn-subtext {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
}

.guarantee-text {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 0;
    text-align: center;
}

.guarantee-badge {
    font-size: 4rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.guarantee-list {
    list-style: none;
    margin-top: 2rem;
    text-align: left;
    display: inline-block;
}

.guarantee-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* FAQ */
.faq-section {
    padding: 4rem 0;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    background: var(--glass-bg);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    /* Changed to body font */
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Footer */
footer {
    text-align: center;
    padding: 4rem 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--glass-border);
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Desktop Styles */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .problem-grid,
    .pillars-grid,
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for bonus/pillars on tablet+ */
    }

    .cycle-steps {
        flex-direction: row;
        justify-content: space-between;
    }

    .cycle-steps::before {
        left: 0;
        right: 0;
        top: 50%;
        width: 100%;
        height: 2px;
        z-index: 0;
    }

    .cycle-step {
        width: 30%;
        padding-left: 1.5rem;
        padding-top: 4rem;
        text-align: center;
    }

    .step-number {
        left: 50%;
        margin-left: -1.5rem;
        top: -1.5rem;
        /* Center number on top line */
        width: 3rem;
        height: 3rem;
    }
}

@media (min-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* 4 columns for bonus on desktop */
}

/* --- NEW SECTIONS CSS --- */

/* Social Proof Notification */
#social-proof {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 15, 15, 0.95);
    color: #EAEAEA;
    padding: 12px 18px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 9999;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
    /* Let clicks pass through if hidden, but opacity handles it */
}

#social-proof.show {
    opacity: 1;
    transform: translateY(0);
}

#social-proof strong {
    color: var(--neon-green);
}


/* Doctor Section */
.doctor-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--glass-border);
}

@media (min-width: 768px) {
    .doctor-block {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
}

.doctor-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--neon-cyan);
    box-shadow: var(--soft-shadow);
    flex-shrink: 0;
}

.doctor-content {
    flex: 1;
}

.doctor-content h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.doctor-credentials {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.doctor-credentials div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    box-shadow: var(--soft-shadow);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.user-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333;
    object-fit: cover;
}

.user-info h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 700;
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Objections */
.objections-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

.objection-grid {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto;
}

.objection-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 1rem;
}

.for-who-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .for-who-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.check-list li {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    align-items: center;
}

.cross-list li {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    align-items: center;
    color: var(--text-secondary);
}

.cross-list i {
    color: var(--danger);
}

/* Security Badges */
.security-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.security-item svg {
    width: 16px;
    height: 16px;
    color: var(--neon-green);
}