/* Global Styles */
:root {
    --bg-dark: #0f0f0f;
    --bg-dark-secondary: #1a1a1a;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;

    --bg-light: #ffffff;
    --bg-light-secondary: #f4f4f4;
    --text-dark: #222222;
    --text-dark-muted: #555555;

    --accent-gold: #cfb53b;
    --accent-gold-hover: #e6c94c;
    --accent-red: #ff4d4d;

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

    --container-width: 1100px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(207, 181, 59, 0.2);
}

/* === DARK THEME SECTIONS (Problem) === */

.hero-section,
.pain-section,
.villain-section,
.contrast-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.hero-section {
    padding: 100px 0 80px;
    background: radial-gradient(circle at center, var(--bg-dark-secondary) 0%, var(--bg-dark) 100%);
    text-align: center;
}

.eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--accent-gold);
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-wrapper .guarantee-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Pain Section */
.pain-section {
    padding: 80px 0;
    border-top: 1px solid #333;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

.image-block {
    flex: 1;
}

.pain-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.impostor-syndrome {
    background: rgba(255, 77, 77, 0.1);
    border-left: 4px solid var(--accent-red);
    padding: 15px;
    margin: 20px 0;
}

.stress-text {
    color: var(--accent-red);
    font-weight: 700;
}

.image-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background: #000;
}

.image-placeholder img {
    width: 100%;
    display: block;
    opacity: 0.8;
}

.caption-prompt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #aaa;
    font-size: 0.75rem;
    padding: 10px;
    font-family: monospace;
}

/* Villain Section */
.villain-section {
    padding: 80px 0;
    background-color: var(--bg-dark-secondary);
    text-align: center;
}

.content-box {
    max-width: 800px;
    margin: 0 auto;
}

.truth-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.truth-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.truth-list i {
    color: var(--accent-red);
    margin-right: 10px;
}

.impact-statement {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 20px;
    display: inline-block;
}

/* Contrast Section */
.contrast-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #222);
}

/* === LIGHT THEME SECTIONS (Solution) === */

.solution-section,
.result-section,
.pricing-section,
footer {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.solution-section {
    padding: 100px 0;
    border-top: 5px solid var(--accent-gold);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
}

.gold-text {
    color: #bfa32a;
    /* Slightly darker gold for light bg */
}

.product-showcase {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.highlight-image .image-placeholder {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-light-secondary);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Result Section */
.result-section {
    padding: 80px 0;
    background-color: var(--bg-light-secondary);
}

.result-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    text-align: center;
    background: url('https://www.transparenttextures.com/patterns/cubes.png'), linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.pricing-card {
    background: white;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    padding-bottom: 40px;
    border: 2px solid var(--accent-gold);
}

.pricing-header {
    background: var(--bg-dark);
    color: var(--accent-gold);
    padding: 30px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.price-display {
    margin: 40px 0;
    color: var(--text-dark);
}

.price-display .currency {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 700;
}

.price-display .amount {
    font-size: 5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.price-display .cents {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    max-width: 300px;
    margin: 0 auto 40px;
    text-align: left;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.benefits-list li i {
    color: #4CAF50;
    margin-right: 10px;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.2rem;
}

.secure-checkout {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #888;
}

footer {
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .split-layout,
    .split-layout.reverse,
    .result-content {
        flex-direction: column;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .pricing-card .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
        width: 90%;
        max-width: 300px;
        display: block;
        margin: 0 auto;
    }
}
