/* --- CSS VARIABLES & RESET --- */
:root {
    --primary-blue: #0f1c3f; /* Deep Navy - Trust/Corporate */
    --accent-gold: #f3c623;   /* Gold - Wealth/Millionaire */
    --action-red: #d32f2f;    /* Red - Urgency/Action */
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --white: #ffffff;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

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

.text-center { text-align: center; }
.bold { font-weight: 700; }
.red-text { color: var(--action-red); }
.green-text { color: #2e7d32; }
.strike { text-decoration: line-through; opacity: 0.7; }

/* --- TOP BAR --- */
.top-bar {
    background-color: var(--accent-gold);
    color: #000;
    text-align: center;
    padding: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* --- HERO --- */
.hero-section {
    padding: 50px 0 30px;
    background: linear-gradient(to bottom, #fff, var(--light-bg));
}

.main-headline {
    font-size: 2.2rem;
    color: var(--primary-blue);
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* --- LETTER BODY --- */
.letter-body {
    font-size: 1.1rem;
    padding: 20px 20px;
}

.letter-body p { margin-bottom: 20px; }

.highlight-text {
    background-color: #fffde7; /* Light yellow bg */
    border-left: 4px solid var(--accent-gold);
    padding: 15px;
    font-weight: 700;
}

/* --- OLD vs NEW WAY --- */
.comparison-box {
    margin: 40px 0;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    background-color: var(--light-bg);
}

.section-title {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.compare-row {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 6px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.compare-row h3 { font-size: 1.1rem; margin-bottom: 10px; }
.big-statement { font-size: 1.2rem; margin: 30px 0; }

.exclusive-alert {
    background-color: #fff3e0;
    border: 2px dashed #ff9800;
    padding: 20px;
    text-align: center;
    font-size: 1rem;
    margin-top: 30px;
}

/* --- STACK SECTION --- */
.stack-section {
    background-color: #fff;
    padding: 50px 0;
}

.sub-header { margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }

.stack-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.stack-item:hover { transform: translateY(-3px); }

.stack-head {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.check { color: var(--accent-gold); margin-right: 8px; }

.value-tag {
    display: block;
    text-align: right;
    font-weight: 800;
    color: var(--action-red);
    margin-top: 10px;
}

/* --- PRICING & OFFER --- */
.pricing-anchor { margin: 40px auto; }
.total-value-header { font-size: 1.8rem; color: var(--text-dark); margin-bottom: 20px; }

.offer-box {
    background-color: var(--primary-blue);
    color: white;
    padding: 60px 0;
    margin-bottom: 50px;
}

.offer-intro { font-size: 1.2rem; margin-bottom: 20px; }

.price-display {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    line-height: 1;
    margin-bottom: 30px;
}

.financing-box {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 30px;
}

.small-text { font-size: 0.9rem; opacity: 0.9; margin-top: 5px; }

/* --- BUTTONS --- */
.cta-btn {
    background-color: var(--action-red);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
    border-bottom: 4px solid #b71c1c;
    transition: all 0.2s;
    width: 100%;
    max-width: 600px;
}

.cta-btn:hover {
    background-color: #e53935;
    transform: translateY(2px);
    border-bottom-width: 2px;
}

.pulse-animation { animation: pulse 2s infinite; }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* --- BONUS & GUARANTEE --- */
.bonus-section { padding: 40px 20px; }
.steps-list { list-style: none; margin: 20px 0; }
.steps-list li { padding: 8px 0; border-bottom: 1px solid #eee; }

.highlight-box {
    background-color: #e3f2fd;
    border-left: 5px solid #2196f3;
    padding: 20px;
    margin-top: 20px;
}

.highlight-box ol { margin-left: 20px; margin-top: 10px; }

.guarantee-section { margin: 60px auto; }
.guarantee-border {
    border: 4px solid var(--primary-blue);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.shield-icon {
    font-size: 3rem;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0 15px;
}

.guarantee-emphasis { font-size: 1.2rem; font-weight: 800; margin: 20px 0; }

/* --- URGENCY & FOOTER --- */
.urgency-section { margin-bottom: 60px; }
.agent-types { text-align: left; max-width: 600px; margin: 20px auto; }
.final-warn { font-size: 1.2rem; margin: 30px 0; color: var(--action-red); }

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

/* --- MOBILE QUERIES --- */
@media (max-width: 768px) {
    .main-headline { font-size: 1.6rem; }
    .price-display { font-size: 3rem; }
    .cta-btn { font-size: 1.1rem; padding: 15px 20px; }
    .guarantee-border { padding: 30px 15px; }
}

.red {
    color: var(--action-red);
}