:root {
    /* Dark Theme Core Colors */
    --bg-main: #06090F; /* Deep rich black/blue */
    --bg-alt: #0B111D; /* Slightly lighter for cards */
    --primary-blue: #2563EB; /* Strong accent blue */
    --primary-blue-dark: #1D4ED8;
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.5);
    --gold-light: #FCE6A1;
    --text-main: #F3F4F6; /* Soft white for readability */
    --text-muted: #9CA3AF; /* Gray text */
    --white: #FFFFFF;
    
    /* Overlay for backgrounds */
    --overlay-dark: rgba(6, 9, 15, 0.85);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body.dark-theme {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-main);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    color: var(--white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.mt-40 { margin-top: 40px; }
.mb-30 { margin-bottom: 30px; }
.text-center { text-align: center; }

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 1s ease-out; }
.fade-in.visible { opacity: 1; }

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 var(--gold-glow); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
.pulse { animation: pulseGlow 2.5s infinite; }

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Top bar */
.top-bar {
    background: linear-gradient(90deg, #111827, #1F2937);
    color: var(--gold-light);
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

/* Hero */
.hero {
    position: relative;
    padding: 120px 0 100px;
    text-align: center;
    background: linear-gradient(to bottom, var(--overlay-dark), var(--bg-main)), url('assets/hero_bg.png') center/cover no-repeat;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.headline {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.headline span {
    color: var(--gold);
    background: -webkit-linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subheadline {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 45px;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #B8962E);
    color: #111;
    padding: 20px 40px;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Outfit', sans-serif;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}
.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px var(--gold-glow);
    background: linear-gradient(135deg, #FFD700, var(--gold));
}

.cta-button.large {
    font-size: 1.4rem;
    width: 100%;
    max-width: 500px;
}

/* Impact Section */
.impact {
    padding: 100px 0;
    text-align: center;
    background: var(--bg-main);
}
.section-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}
.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 60px;
}
.comparison-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.comparison-card {
    position: relative;
    width: 380px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.4s, box-shadow 0.4s;
    background-color: var(--bg-alt);
    border: 1px solid rgba(255,255,255,0.05);
}
.comparison-card:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}
.comparison-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}
.comparison-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 25px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    color: var(--white);
    text-align: left;
}
.badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.badge-before { background: rgba(255,255,255,0.15); backdrop-filter: blur(5px); }
.badge-after { background: var(--gold); color: #000; box-shadow: 0 4px 15px rgba(212,175,55,0.5); }
.comparison-card h3 { font-size: 1.8rem; margin-bottom: 5px; }
.comparison-card p { font-size: 1rem; color: #ccc; }

.arrow {
    font-size: 3rem;
    color: var(--gold);
    animation: float 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(212,175,55,0.5);
}

/* Objections */
.objections {
    padding: 80px 0;
    background: var(--bg-alt);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}
.objections-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}
.objection-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
}
.objection-item .icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}
.objection-item:hover .icon-wrap {
    transform: translateY(-5px);
    background: rgba(212,175,55,0.1);
    border-color: rgba(212,175,55,0.3);
}
.objection-item p {
    font-size: 1.15rem;
    color: var(--text-main);
}
.objection-item strong {
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
    font-size: 1.25rem;
}

/* Pain */
.pain {
    padding: 120px 0;
    background: radial-gradient(circle at center, #0a1120 0%, var(--bg-main) 100%);
    text-align: center;
}
.pain-content {
    max-width: 800px;
    margin: 0 auto;
}
.pain-content h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}
.pain-content h2 em {
    color: var(--gold);
    font-style: normal;
    text-decoration: underline;
    text-decoration-color: rgba(212,175,55,0.3);
    text-decoration-thickness: 4px;
}
.pain-content p {
    font-size: 1.4rem;
    color: var(--text-muted);
}
.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 40px auto;
    opacity: 0.6;
}
.pain-content .highlight {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
}

/* Method */
.method {
    padding: 100px 0;
    background: var(--bg-alt);
    text-align: center;
}
.method .section-title span {
    color: var(--gold);
}
.method-text {
    font-size: 1.35rem;
    max-width: 700px;
    margin: 0 auto 10px;
}
.method-text-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 60px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.benefit-card {
    background: var(--bg-main);
    padding: 25px;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 500;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid var(--gold);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212,175,55,0.1);
    border-left-color: var(--white);
}
.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Deliverables Section */
.deliverables {
    padding: 90px 0;
    background: var(--bg-main);
}
.deliverables .section-title {
    text-align: center;
    margin-bottom: 50px;
}
.deliverables .section-title span {
    color: var(--gold);
}
.deliverables-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.deliv-item {
    display: flex;
    align-items: center;
    background: var(--bg-alt);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}
.deliv-item .check {
    font-size: 1.5rem;
    margin-right: 20px;
}
.deliv-item p {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
}

/* Who is it for */
.who-is-it {
    padding: 80px 0;
    background: var(--bg-alt);
}
.who-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}
.who-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-main);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}
.for-who {
    border-top: 4px solid #10B981; /* green */
}
.not-for {
    border-top: 4px solid #EF4444; /* red */
}
.who-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}
.who-card ul {
    list-style: none;
}
.who-card ul li {
    margin-bottom: 15px;
    font-size: 1.15rem;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}
.for-who ul li::before {
    content: "•";
    color: #10B981;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}
.not-for ul li::before {
    content: "•";
    color: #EF4444;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* How it works */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-main);
    text-align: center;
}
.how-text {
    font-size: 1.45rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
    font-weight: 400;
}

/* Offer */
.offer {
    padding: 100px 0;
    background: radial-gradient(circle at center, #0d1627 0%, var(--bg-main) 100%);
    text-align: center;
}
.offer-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212,175,55,0.2);
    color: var(--white);
    border-radius: 30px;
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}
.price-context {
    font-size: 1.25rem;
    color: var(--gold-light);
    margin-bottom: 30px;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.offer-box h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}
.offer-box h2 span { color: var(--gold); }
.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 0 4px 10px rgba(212,175,55,0.3);
}
.currency { font-size: 1.5rem; margin-top: 15px; font-weight: 700; color: var(--gold); }
.value { font-size: 6rem; font-weight: 800; line-height: 1; letter-spacing: -2px;}
.cents { font-size: 1.5rem; margin-top: 15px; font-weight: 700; color: var(--gold); }
.urgency {
    margin-top: 25px;
    font-size: 1.1rem;
    color: var(--gold-light);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Guarantee */
.guarantee {
    padding: 80px 0;
    background: var(--bg-alt);
}
.guarantee-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.shield-icon {
    font-size: 4.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.3));
}
.guarantee-content h3 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 15px;
}
.guarantee-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Emotional Close */
.emotional-close {
    padding: 100px 0;
    background: var(--bg-main);
    text-align: center;
}
.emotional-close h2 {
    font-size: 2.8rem;
    max-width: 900px;
    margin: 0 auto 50px;
    font-weight: 700;
    line-height: 1.3;
}
.emotional-close h2 span {
    color: var(--gold);
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--bg-alt);
}
.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}
.faq-item {
    background: var(--bg-main);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.faq-item h4 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 10px;
}
.faq-item p {
    color: var(--text-muted);
    font-size: 1.15rem;
}

/* Footer */
footer {
    background: #020408;
    color: var(--text-muted);
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .headline { font-size: 2.5rem; }
    .subheadline { font-size: 1.15rem; }
    .hero { padding: 80px 0; }
    .comparison-container { flex-direction: column; }
    .arrow { transform: rotate(90deg); margin: 20px 0; }
    .pain-content h2 { font-size: 2.4rem; }
    .offer-box h2 { font-size: 2rem; }
    .value { font-size: 4.5rem; }
    .cta-button { padding: 18px 30px; font-size: 1.15rem; }
    .offer-box { padding: 40px 20px; }
    .who-grid { flex-direction: column; }
}
