/* --- CSS VARIABLES & RESET --- */
:root {
    --primary-color: #2C3E50; /* Trust/Authority */
    --accent-color: #E67E22; /* Action/Urgency */
    --light-bg: #F9FAFB;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

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

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.text-center { text-align: center; }
.highlight { color: var(--accent-color); font-weight: bold; }

/* --- BUTTONS & LINKS --- */
.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4); /* Glow effect for button */
}

.btn:hover {
    background-color: #D35400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.6);
}

.pay-later {
    font-size: 0.9rem;
    margin-top: 10px;
    font-style: italic;
    color: var(--text-light);
}

/* --- HEADER / TIMER BAR --- */
.timer-bar {
    background-color: #000;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    font-weight: bold;
    letter-spacing: 1px;
}

/* --- HERO SECTION (UPDATED) --- */
header {
    /* Using a linear gradient overlay to dim the image for text contrast.
       Using rgba(44, 62, 80, 0.85) uses your brand primary color but translucent.
    */
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), url('/images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Increased padding for a more dramatic look */
    padding: 160px 0 120px; 
    text-align: center;
    color: var(--white);
}

header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3); /* Adds pop */
}

header p.subhead {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
    margin-bottom: 30px;
    font-weight: 400;
}

header .status-text {
    color: var(--white);
    font-size: 1.2rem;
}

/* Specific style for pay later in header to ensure it's light */
.header-pay-later {
    color: rgba(255, 255, 255, 0.8);
}


/* --- PROBLEM SECTION (The Hook) --- */
.problem-section {
    padding: 80px 0;
    background-color: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.problem-grid img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important; /* Stronger shadow */
}

/* --- GUIDE SECTION (Empathy & Authority) --- */
.guide-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.guide-section h2 { color: var(--white); }
.guide-section p { max-width: 700px; margin: 0 auto 30px; font-size: 1.2rem; }

/* --- PLAN SECTION --- */
.plan-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    background: var(--accent-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* --- STAKES/OUTCOME SECTION --- */
.outcome-section {
    padding: 80px 0;
    text-align: center;
}

.comparison {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.outcome-box {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: left;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
}

.success { background-color: #F0FDF4; border: 2px solid #22c55e;}
.failure { background-color: #FEF2F2; border: 2px solid #ef4444;}


.success ul, .failure ul {
    list-style: none;
    margin-top: 20px;
}

.success li, .failure li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.success li::before { content: "✅ "; margin-right: 10px; }
.failure li::before { content: "❌ "; margin-right: 10px; }

/* --- FOOTER/CTA --- */
.final-cta {
    background-color: #1a252f; /* Slightly darker than primary for contrast */
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

footer {
    background-color: #111;
    text-align: center;
    padding: 30px;
    font-size: 0.8rem;
    color: #777;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    header { padding: 140px 0 80px; }
    header h1 { font-size: 2.2rem; }
    header p.subhead { font-size: 1.2rem; }
    .problem-grid { grid-template-columns: 1fr; }
    .comparison { gap: 30px; }
    .outcome-box { min-width: 100%; }
}