/* Global Styles */
:root {
    --font-primary: 'Inter', sans-serif;

    /* New High-Contrast Palette */
    --bg-hero: linear-gradient(135deg, #0f0c29 0%, #302b63 100%);
    --bg-dark: #0a0a12;
    /* Deepest black/blue */
    --bg-slate: #16162a;
    /* Lighter slate for alternating sections */
    --bg-card: rgba(255, 255, 255, 0.08);
    /* Increased opacity for better lift */
    --bg-card-hover: rgba(255, 255, 255, 0.12);

    --color-accent: #FF6A3D;
    /* Vibrant Orange CTA */
    --color-accent-hover: #ff8560;
    --color-neon: #2EE59D;
    /* Neon Green for success/checks */
    --color-gold: #FFD700;
    /* Gold for trust/premium */

    --text-main: #ffffff;
    --text-muted: #e0e0e0;
    /* Bright Silver for readability */

    --radius-card: 20px;
    --radius-btn: 12px;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(255, 106, 61, 0.3);
}

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

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 80px;
}

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

h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Buttons */
.cta-primary {
    background: var(--color-accent);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    width: 100%;
    max-width: 300px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 106, 61, 0.5);
}

/* Hero Section (Deep Gradient) */
.hero {
    background: var(--bg-hero);
    padding: 100px 0 80px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-grid {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 50px;
    align-items: center;
}

.verified-badge {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid var(--color-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.subhead {
    font-size: 1.3rem;
    color: #d0d0e0;
    margin-bottom: 2rem;
}

.value-stack p {
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--color-neon);
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-stack p::before {
    content: "✓";
}

.microtext {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-style: italic;
}

.video-box {
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.play-icon {
    font-size: 4rem;
    color: #fff;
    opacity: 0.9;
    transition: transform 0.3s;
}

.video-box:hover .play-icon {
    transform: scale(1.1);
}

/* Social Proof Strip (Solid Dark Grounding) */
.social-proof {
    background: #05050a;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.proof-item .icon {
    font-size: 1.5rem;
}

/* Impact Section (Lighter Slate Background) */
.impact-section {
    padding: 100px 0;
    background: var(--bg-slate);
}

.impact-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1.3rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 4rem;
}

.impact-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.impact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.impact-icon {
    font-size: 2rem;
    color: var(--color-neon);
}

.impact-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

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

/* Features Section (Deep Dark Background) */
.features-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.features-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 4rem;
}

.feature-card {
    background: linear-gradient(145deg, #1e1e3f, #16162a);
    padding: 2.5rem;
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-card);
}

.feature-card h3 {
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    color: #d0d0e0;
    font-size: 1.05rem;
}

.feature-card li::before {
    content: "•";
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Value Section (Highlight Background) */
.value-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-slate) 100%);
}

.value-box {
    background: linear-gradient(135deg, #2a2a55, #1f1f40);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.value-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 3rem auto;
    text-align: left;
}

.v-item {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.v-item::before {
    content: "🎁";
}

.guarantee-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 3rem auto;
    max-width: 700px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

/* Pricing Section (Darkest Background) */
.pricing-section {
    padding: 100px 0;
    background: #080810;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin: 4rem 0;
}

.price-card {
    background: #16162a;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.price-card.featured {
    border: 2px solid var(--color-accent);
    background: linear-gradient(180deg, rgba(255, 106, 61, 0.1), #16162a);
}

.price-card.featured::after {
    content: "MOST POPULAR";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.comparison-chart {
    margin: 4rem 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #121225;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

th,
td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

th {
    background: rgba(255, 255, 255, 0.03);
    font-size: 1.1rem;
    color: var(--color-accent);
}

th:first-child,
td:first-child {
    text-align: left;
    font-weight: 700;
    color: #fff;
    padding-left: 2rem;
}

.guarantee-strip {
    background: linear-gradient(90deg, #FF6A3D, #FF8855);
    padding: 1.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 3rem;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Testimonials (Slate Background) */
.testimonials {
    padding: 100px 0;
    background: var(--bg-slate);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.photo-placeholder {
    width: 80px;
    height: 80px;
    background: #333;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--color-accent);
}

blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.6;
}

cite {
    color: var(--color-accent);
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #FF6A3D, #FF4D4D);
    text-align: center;
    color: #fff;
}

.final-stack {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 3rem 0;
    font-weight: 800;
    flex-wrap: wrap;
    font-size: 1.2rem;
    text-transform: uppercase;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 20, 0.98);
    backdrop-filter: blur(15px);
    padding: 1rem;
    text-align: center;
    border-top: 1px solid var(--color-accent);
    z-index: 900;
    display: none;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.sticky-cta .cta-primary {
    margin: 0;
    width: 100%;
    max-width: 400px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.modal-content {
    background: #1B1B3A;
    padding: 3rem;
    border-radius: 24px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-content input {
    width: 100%;
    padding: 1rem;
    margin: 0.8rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
}

.modal-content input:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.1);
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.close:hover {
    color: #fff;
}

.countdown-timer {
    background: rgba(255, 106, 61, 0.15);
    color: var(--color-accent);
    padding: 0.8rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 106, 61, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-media {
        order: -1;
        margin-bottom: 2rem;
    }

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

    .proof-grid {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

    .sticky-cta {
        display: block;
    }

    .comparison-chart {
        display: none;
    }

    .value-box {
        padding: 2rem;
    }
}