:root {
    --primary-red: #E63946;
    --primary-dark-red: #B32E39;
    --dark: #1A1A1A;
    --off-dark: #242424;
    --white: #FFFFFF;
    --light-grey: #F4F4F4;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: #333; line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--dark); font-weight: 800; text-transform: uppercase; letter-spacing: -1px; }
a { text-decoration: none; transition: 0.3s ease; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* BUTTONS */
.btn-primary, .btn-outline-white, .btn-white {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-align: center;
    cursor: pointer;
}
.btn-primary { background: var(--primary-red); color: var(--white); box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4); }
.btn-primary:hover { background: var(--primary-dark-red); transform: translateY(-3px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--dark); }
.btn-white { background: var(--white); color: var(--primary-red); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.btn-large { padding: 18px 35px; font-size: 1.1rem; }

/* NAVBAR */
.navbar { background: var(--dark); position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid var(--primary-red); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 90px; }
.logo img { height: 70px; width: auto; }
.text-logo { font-size: 32px; font-weight: 900; color: var(--white); }
.text-logo .red-text { color: var(--primary-red); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--white); font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; letter-spacing: 1px; }
.nav-links a:hover { color: var(--primary-red); }
.hamburger { display: none; font-size: 24px; color: var(--white); cursor: pointer; }

/* HERO SECTION (The Critical Contrast Fix) */
.hero {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--white);
}

/* 1. Heavy dark gradient from the left to cover the text area */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, 
        rgba(0,0,0,0.95) 0%, 
        rgba(0,0,0,0.85) 40%, 
        rgba(0,0,0,0.4) 70%, 
        rgba(230,57,70,0.2) 100%
    );
}
.hero-grid { position: relative; z-index: 2; }
.hero-copy { max-width: 650px; }

.hero-badge {
    display: inline-block;
    background: var(--primary-red);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* 2. Text Shadow to ensure readability even over the image */
.hero-copy h1 { font-size: 4rem; line-height: 1.1; color: var(--white); margin-bottom: 20px; text-shadow: 0 4px 15px rgba(0,0,0,0.8); }
.hero-copy h1 .highlight-red { color: var(--primary-red); text-shadow: 0 4px 15px rgba(0,0,0,0.8); }

.hero-copy p { font-size: 1.2rem; margin-bottom: 35px; max-width: 550px; line-height: 1.7; text-shadow: 0 2px 5px rgba(0,0,0,0.9); }
.roi-text { font-family: var(--font-heading); font-weight: 700; color: var(--accent-green, #06D6A0); margin-bottom: 20px; }
.roi-text i { margin-right: 10px; }

.hero-btns { display: flex; gap: 20px; margin-bottom: 25px; flex-wrap: wrap; }
.transparent-note p { font-size: 0.95rem; font-weight: 600; color: #ccc; margin-bottom: 0; text-shadow: 0 2px 4px rgba(0,0,0,0.9); }

/* PROBLEM SECTION */
.problem-section { background: var(--light-grey); padding: 80px 0; text-align: center; }
.problem-section h2 { font-size: 2.5rem; margin-bottom: 30px; }
.problem-box { max-width: 800px; margin: 0 auto; background: var(--white); padding: 40px; border-left: 5px solid var(--primary-red); border-radius: 0 10px 10px 0; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.problem-box p { font-size: 1.1rem; margin-bottom: 15px; line-height: 1.8; color: #444; }
.problem-box strong { color: var(--dark); }
.problem-box p:last-child { font-family: var(--font-heading); font-weight: 700; color: var(--primary-red); text-transform: uppercase; margin-bottom: 0; margin-top: 20px; }

/* HOW IT WORKS */
.how-section { background: var(--white); padding: 100px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-tag { color: var(--primary-red); font-family: var(--font-heading); font-weight: 800; letter-spacing: 2px; font-size: 0.9rem; display: block; margin-bottom: 15px; }
.section-head h2 { font-size: 3rem; letter-spacing: -2px; }
.red-text { color: var(--primary-red); }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.step-card { background: var(--dark); border-radius: 15px; padding: 40px 30px; color: var(--white); position: relative; overflow: hidden; }
.step-card::before { content: ''; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; background: var(--primary-red); border-radius: 50%; opacity: 0.1; }
.step-num { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; color: var(--primary-red); margin-bottom: 20px; line-height: 1; }
.step-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 15px; }
.step-card p { font-size: 0.95rem; color: #b0b0b0; line-height: 1.7; }

/* CTA / PRICING */
.cta-section { background: var(--dark); padding: 100px 0; text-align: center; border-top: 5px solid var(--primary-red); border-bottom: 5px solid var(--primary-red); }
.light-tag { color: var(--primary-red); }
.cta-inner h2 { color: var(--white); font-size: 3rem; margin-bottom: 15px; }
.cta-inner p { color: #ccc; font-size: 1.2rem; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-btns { margin-bottom: 20px; }
.no-credit { color: #888; font-size: 0.9rem; font-weight: 600; }

/* FOOTER */
footer { background: var(--dark); padding: 30px 0; border-top: 1px solid #333; }
footer .container { display: flex; justify-content: space-between; align-items: center; }
footer p { color: #888; font-size: 0.9rem; }
.socials a { color: var(--white); font-size: 1.5rem; margin-left: 20px; }
.socials a:hover { color: var(--primary-red); transform: translateY(-3px); display: inline-block; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .nav-links { display: none; position: absolute; top: 90px; left: 0; width: 100%; background: var(--dark); flex-direction: column; padding: 20px; border-bottom: 4px solid var(--primary-red); }
    .nav-links.show { display: flex; }
    .hamburger { display: block; }
    
    .hero-copy h1 { font-size: 2.8rem; }
    .cta-inner h2 { font-size: 2.5rem; }
    footer .container { flex-direction: column; gap: 15px; }
}