/* Global Styles & Variables - Magnetic Dark Theme */
:root {
    --primary-color: #FF007F;
    /* Neon Pink */
    --primary-dark: #D4005E;
    --secondary-color: #FF1493;
    /* Deep Pink */
    --accent-color: #FFFFFF;
    /* White text */
    --text-color: #FFFFFF;
    /* White Text */
    --text-muted: #B0B0B0;
    /* Light Grey */
    --background-dark: #050505;
    /* Deep Black */
    --background-card: #121212;
    /* Dark Card */
    --success-color: #00E676;
    --warning-color: #FFEA00;
    --font-family: 'Inter', sans-serif;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(255, 0, 127, 0.4);
    /* Neon Pink Glow */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-dark);
    background-image: radial-gradient(circle at 50% 0%, #330019 0%, #000000 70%);
    /* Subtle pink glow at top */
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    outline: none;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: transparent;
    min-height: 100vh;
    position: relative;
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* Quiz Styles */
.step-indicator {
    display: block;
    margin-bottom: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.quiz-header {
    text-align: center;
    margin-bottom: 30px;
}

.quiz-header h3 {
    font-size: 1.6rem;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: #222;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px var(--primary-color);
}

.question-card {
    display: none;
    animation: fadeIn 0.5s ease;
    background: var(--background-card);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.question-card.active {
    display: block;
}

.option-btn {
    display: block;
    width: 100%;
    padding: 25px 30px;
    margin-bottom: 15px;
    background-color: #1A1A1A;
    border: 1px solid #333;
    border-radius: var(--border-radius);
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.option-btn:hover,
.option-btn.selected {
    border-color: var(--primary-color);
    background-color: #2D0515;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.3);
    color: #fff;
}

.option-btn i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.4rem;
    vertical-align: middle;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Result Page Styles */
.analyzing-loader {
    text-align: center;
    padding: 50px 20px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #333;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 25px;
    box-shadow: 0 0 20px var(--primary-color);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.result-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: #fff;
    padding: 40px 20px;
    border-radius: 0 0 30px 30px;
    margin: -20px -20px 40px -20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.3);
}

.result-header h1 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.diagnosis-card {
    background: var(--background-card);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 25px;
    border: 1px solid #333;
    border-left: 5px solid var(--primary-color);
}

.diagnosis-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* CTA Buttons */
.cta-button {
    display: block;
    width: 100%;
    padding: 20px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 8px;
    /* Less rounded as per ref */
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.7);
    background-color: #ff1a8c;
}

/* Landing Page Specifics */
.lp-container {
    max-width: 100%;
    background-color: var(--background-dark);
    padding: 0;
}

.urgency-bar {
    background: linear-gradient(90deg, #800040, #FF007F);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-section {
    padding: 80px 20px;
    text-align: center;
    background: radial-gradient(circle at 50% 30%, #4D0026 0%, #000000 70%);
}

.hero-headline {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
    text-transform: none;
}

.hero-headline span {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 0, 127, 0.5);
}

/* VSL Container */
.vsl-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    background: #000;
    border: 1px solid #333;
}

.vsl-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 40px 20px;
    /*  background: transparent; */
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
    background: none;
    -webkit-text-fill-color: initial;
}

.social-proof {
    padding: 60px 20px;
    background-color: #080808;
}

.review-card {
    background: #121212;
    border: 1px solid #333;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.review-card p {
    color: #ccc;
    font-size: 1rem;
    font-style: italic;
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.offer-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #050505 0%, #1a000d 100%);
    border-top: 1px solid #333;
}

.offers-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
}

.offer-card {
    background: #121212;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 30px 20px;
    margin-bottom: 0;
    position: relative;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.offer-image {
    height: 180px;
    width: 100%;
    object-fit: contain;
    margin: 0 auto 5px;
    display: block;
    filter: drop-shadow(0 0 5px rgba(255, 0, 127, 0.3));
    transition: var(--transition);
}

.offer-card:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.3);
}

.offer-card.best-value {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 40px rgba(255, 0, 127, 0.4);
    background: #1a050f;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 0 15px var(--primary-color);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.price-container {
    text-align: center;
    margin: 15px 0;
}

.old-price {
    text-decoration: line-through;
    color: #666;
    font-size: 0.9rem;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
    line-height: 1;
    margin: 5px 0;
}

.offer-card .installment {
    font-size: 1rem;
    font-weight: 700;
    color: #ddd;
    margin-top: 5px;
}

.offer-card .savings {
    font-size: 0.8rem;
    margin-top: 5px;
    color: #00E676;
    font-weight: 600;
}

.faq-section {
    padding: 60px 20px;
    background-color: #080808;
}

.faq-item {
    border-bottom: 1px solid #222;
    padding: 20px 0;
}

.faq-question {
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 1.1rem;
}

.faq-answer {
    margin-top: 15px;
    display: none;
    color: #bbb;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.active .faq-answer {
    display: block;
}

footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
    color: #666;
    background: #000;
    border-top: 1px solid #222;
}

@media (min-width: 768px) {
    .offers-grid {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        max-width: 1000px;
        margin: 0 auto;
        gap: 30px;
    }

    .offer-card {
        flex: 1;
        margin-bottom: 0;
    }

    .offer-card.best-value {
        transform: scale(1.1);
        z-index: 2;
    }
}

/* New Landing Page Sections - COD & Deep Conversion */

/* Decision Progress Bar */
.decision-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a050f;
    padding: 15px;
    border-radius: 50px;
    margin: 20px 0 40px;
    border: 1px solid var(--primary-color);
    font-size: 0.8rem;
    color: #ccc;
    text-transform: uppercase;
}

.decision-step {
    display: flex;
    align-items: center;
    opacity: 0.5;
}

.decision-step.active {
    opacity: 1;
    color: #fff;
    font-weight: 700;
}

.decision-step i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* COD Highlight Block */
.cod-highlight {
    background: linear-gradient(135deg, #1f1f1f, #121212);
    border: 2px solid var(--success-color);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.2);
}

.cod-icon {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.cod-highlight h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Checklist Section */
.check-list-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    color: #eee;
}

.check-list-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Formula/Ingredients */
.formula-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ingredient-block {
    display: flex;
    align-items: flex-start;
    background: #121212;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
}

.ingredient-block i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

/* Scarcity Bar */
.scarcity-bar {
    background: #333;
    height: 10px;
    border-radius: 5px;
    margin: 20px 0;
    overflow: hidden;
}

.scarcity-fill {
    background: linear-gradient(90deg, #ff9800, #f44336);
    height: 100%;
    width: 85%;
    /* High fill */
}

@media (min-width: 768px) {
    .formula-grid {
        grid-template-columns: 1fr 1fr;
    }
}