:root {
    --primary: #122b1c;
    /* Darker Forest Green */
    --accent: #ffb700;
    /* More vibrant Gold/Yellow */
    --accent-light: #ffd000;
    --text-white: #ffffff;
    --text-body: #333333;
    --bg-light: #ffffff;
    --max-width: 650px;
    /* Thinner layout for mobile reading */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.1;
    color: #000;
}

.container {
    width: 92%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 0;
}

/* Header Alert */
.top-alert {
    background-color: #ff0000;
    color: white;
    text-align: center;
    padding: 12px 10px;
    font-weight: 700;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    background-color: var(--primary);
    color: var(--text-white);
    text-align: center;
    padding: 3rem 1rem 4rem 1rem;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-transform: uppercase;
}

.hero .subheadline {
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero .hero-desc {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-main-image {
    width: 100%;
    max-width: 450px;
    margin: 2rem auto;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: #000;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 4px 0px #b28000;
    text-transform: uppercase;
}

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0px #b28000;
}

/* Sections */
section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    color: #000;
}

.content-block {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.content-block p {
    margin-bottom: 1rem;
}

/* Checklist Items */
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.check-item .icon {
    flex-shrink: 0;
    font-size: 1.2rem;
}

/* Value Stack Card */
.value-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

section#offer {
    background-color: #122b1c;
    /* Dark Green background for the offer section */
    color: #000;
}

section#offer .section-title {
    color: #fff;
}

.stack-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
}

.stack-row:last-child {
    border-bottom: none;
}

.price-box {
    text-align: center;
    margin-top: 2rem;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 900;
    color: #e63946;
    margin: 10px 0;
}

.old-price {
    text-decoration: line-through;
    color: #777;
    font-size: 1.4rem;
}

/* Guarantee Area */
.guarantee-box {
    background: #fff;
    border: 2px solid #eee;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.guarantee-box img {
    width: 100px;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background: #fafafa;
    border-top: 1px solid #eee;
    padding: 3rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

footer a {
    color: #555;
    text-decoration: underline;
}

/* Typography Helpers */
.text-highlight {
    background-color: #fff3cd;
    padding: 0 5px;
}

.text-bold {
    font-weight: 700;
}

.price-strike {
    text-decoration: line-through;
    color: #cc0000;
    font-weight: 500;
}

.price-free {
    color: #28a745;
    font-weight: 800;
}

.price-today-value {
    color: #2e7d32;
    font-weight: 800;
}

/* Mobile Tweaks */
@media (max-width: 600px) {
    .container {
        padding: 1rem 0;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero .subheadline {
        font-size: 1.1rem;
    }
}