/* Base Styles */
:root {
    --primary-color: #1F2A44;       /* Deep Blue – Trust-building */
    --accent-color: #FFD600;        /* Electric Yellow – CTA Highlight */
    --highlight-color: #FF6B00;     /* Bold Orange – For emphasis */
    --background-color: #F9F9F9;    /* Soft White – Background */
    --text-color: #1A1A1A;          /* Charcoal – Body text */
    --light-text: #6b7280;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    /* Gradient colors for animated hero background */
    --gradient-color-1: var(--primary-color);
    --gradient-color-2: var(--highlight-color);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-top: 2rem; }
h3 { font-size: 1.5rem; margin-top: 1.5rem; }
h4 { font-size: 1.25rem; margin-top: 1rem; }

p {
    margin-bottom: 1.5rem;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

section {
    padding: 4rem 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gradient-color-1), var(--gradient-color-2));
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.cta-button-container {
    margin: 2rem 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cta-button:hover {
    background-color: var(--highlight-color);
    color: white;
    transform: scale(1.05);
    text-decoration: none;
}

/* Intro Section */
.intro {
    background-color: var(--background-color);
    font-size: 1.125rem;
}

.highlight-box {
    background-color: #fef3c7;
    border-left: 4px solid var(--warning-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

/* Feature Boxes */
.feature-box, .problem-box {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.value-proposition {
    background-color: var(--background-color);
}

/* Pain Points Section */
.pain-points {
    background-color: #fee2e2;
}

.problem-box {
    background-color: white;
}

/* Offer Section */
.offer {
    background-color: var(--background-color);
    text-align: center;
}

.price-tag {
    margin-bottom: 2rem;
}

.original-price {
    font-size: 1.25rem;
    color: var(--light-text);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.special-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--highlight-color);
}

.offer-box {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    text-align: left;
}

.main-offer {
    background-color: #f0f9ff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #bfdbfe;
}

.bonus-intro {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0;
}

.bonus-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.bonus-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.value {
    color: var(--success-color);
    font-weight: 600;
}

.total-value {
    background-color: #f0fdf4;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #86efac;
    font-size: 1.25rem;
}

.value-line {
    margin-bottom: 0.5rem;
}

.price-line {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-line span {
    color: var(--highlight-color);
    font-size: 1.75rem;
}

/* Guarantee Section */
.guarantee {
    background-color: #f0fdf4;
    text-align: center;
}

.guarantee-box {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    text-align: left;
}

/* Value Justification */
.value-justification {
    background-color: var(--background-color);
}

/* Urgency Section */
.urgency {
    background-color: #fff7ed;
    text-align: center;
}

.urgency-box {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    text-align: left;
}

.countdown {
    background-color: #fef2f2;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid #fecaca;
}

.countdown h4 {
    color: #b91c1c;
    margin-bottom: 1rem;
}

.countdown ul {
    list-style-type: none;
    padding-left: 0;
}

.countdown li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.countdown li:before {
    content: "⏱";
    position: absolute;
    left: 0;
    color: #b91c1c;
}

/* Final CTA Section */
.final-cta {
    background-color: var(--background-color);
    text-align: center;
}

.final-cta ol {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    margin-bottom: 2rem;
}

.final-cta li {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.final-reminder {
    font-style: italic;
    color: var(--light-text);
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero h2 {
        font-size: 1.25rem;
    }
    .cta-button {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    section {
        padding: 3rem 0;
    }
    .feature-box, .problem-box, .offer-box, .guarantee-box, .urgency-box {
        padding: 1.5rem;
    }
    .special-price {
        font-size: 2rem;
    }
    .total-value {
        font-size: 1.125rem;
    }
    .price-line {
        font-size: 1.25rem;
    }
    .price-line span {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    .hero h2 {
        font-size: 1.125rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    .cta-button {
        width: 100%;
    }
    .special-price {
        font-size: 1.75rem;
    }
}

/* Gradient animation keyframes */
@keyframes gradientShift {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}
