/* Base Variables */
:root {
    --bg-dark: #15100f;
    /* Slightly reddish/orange dark/black */
    --bg-card: #221610;
    /* Dark Orange/Brown Card */
    --text-primary: #ffffff;
    --text-secondary: #d6b4a3;
    /* Warm grey/orangeish */
    --accent-main: #f97316;
    /* Primary Orange */
    --accent-hover: #ea580c;
    /* Darker Orange */
    --accent-gold: #f59e0b;
    --accent-alert: #ef4444;

    --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --container-width: 900px;
    --padding-sm: 1rem;
    --padding-md: 2rem;
    --padding-lg: 4rem;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--accent-main);
}

h2 {
    font-size: 2rem;
    color: var(--text-primary);
}

h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.text-green {
    color: var(--accent-main);
    /* Keeping class name 'text-green' for compatibility but using accent-main (orange) */
}

.text-white {
    color: white;
}

.text-alert {
    color: var(--accent-alert);
}

.text-highlight {
    background: rgba(249, 115, 22, 0.15);
    /* Orange background */
    padding: 0 4px;
    color: #fdba74;
    /* Light orange */
    border-radius: 4px;
}

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

.font-bold {
    font-weight: 700;
}

.uppercase {
    text-transform: uppercase;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--padding-sm);
}

.section {
    padding: var(--padding-lg) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.15) 0%, rgba(21, 16, 15, 0) 70%);
    /* Orange gradient */
}

.hero-preheader {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero-main-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 0 40px rgba(249, 115, 22, 0.4);
    /* Orange shadow */
}

.hero-sub {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Pain/Problem Box */
.pain-box {
    background: rgba(249, 115, 22, 0.1);
    /* Orange bg */
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid var(--accent-main);
}

.problem-card {
    background: rgba(34, 22, 16, 0.6);
    /* Dark orange/brown bg */
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.problem-list {
    list-style: none;
    margin: 2rem auto;
    max-width: 700px;
    text-align: left;
}

.problem-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.problem-list li::before {
    content: "❌";
    position: absolute;
    left: 0;
    top: 2px;
}

/* Benefit List */
.benefit-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.benefit-list li.check::before {
    content: "✅";
    margin-right: 0.5rem;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Modules */
.module-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.module-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.module-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.module-header h4 {
    margin-bottom: 0.5rem;
    color: var(--accent-main);
}

.module-header small {
    display: block;
    color: var(--text-secondary);
    font-style: italic;
}

.module-content {
    padding: 1.5rem;
}

.module-content ol {
    padding-left: 1.5rem;
}

.module-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* Pricing Table */
.value-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
}

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

.value-table th {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.value-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--accent-main);
}

.total-value-row td {
    font-size: 1.5rem;
    color: var(--text-primary);
    border-bottom: none;
    background: rgba(249, 115, 22, 0.1);
    /* Orange bg */
}

/* Offer Box */
.offer-box {
    background: linear-gradient(145deg, #221510 0%, #15100f 100%);
    /* Orange-ish dark gradient */
    border: 2px solid var(--accent-main);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.offer-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-main);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.price-display {
    margin: 2rem 0;
}

.price-strike {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.2rem;
    display: block;
}

.price-final {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-main);
    line-height: 1;
}

.cta-button {
    display: inline-block;
    background: var(--accent-main);
    color: white;
    padding: 1rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 0 #9a3412, 0 10px 20px rgba(0, 0, 0, 0.2);
    /* Darker orange shadow */
    margin: 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: var(--accent-hover);
    box-shadow: 0 4px 0 #7c2d12, 0 15px 25px rgba(249, 115, 22, 0.3);
}

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 0 0 #7c2d12;
}

.footer {
    text-align: center;
    padding: 3rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

    h2 {
        font-size: 1.75rem;
    }

    .hero-main-title {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .price-final {
        font-size: 3rem;
    }

    .offer-box {
        padding: 2rem 1rem;
    }
}