/* ========================================
   GLOBAL
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}


/* ========================================
   HEADER
======================================== */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    padding: 18px 0;
}

.logo {
    color: #222;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
}


/* ========================================
   HERO
======================================== */

.hero {
    background: #f6f6f6;
    padding: 70px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.eyebrow {
    color: #9d7f19;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #151515;
}

.hero-text {
    font-size: 19px;
    color: #555;
    max-width: 600px;
    margin-bottom: 25px;
}


/* ========================================
   BENEFITS
======================================== */

.benefits {
    list-style: none;
    margin-top: 20px;
}

.benefits li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #9d7f19;
    font-weight: 700;
}


/* ========================================
   LEAD FORM
======================================== */

.lead-box {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.10);
}

.lead-box h2 {
    font-size: 27px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.lead-box > p {
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
}


/* ========================================
   FORM FIELDS
======================================== */

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 7px;
    color: #333;
}

.form-group input {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    border-color: #9d7f19;
}

.form-group input::placeholder {
    color: #999;
}


/* ========================================
   SUBMIT BUTTON
======================================== */

.submit-button {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 5px;
    background: #9d7f19;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.submit-button:hover {
    opacity: 0.88;
}

.form-note {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.5;
    color: #777;
    text-align: center;
}


/* ========================================
   INFORMATION SECTION
======================================== */

.information {
    padding: 70px 0;
}

.information h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.info-card {
    border: 1px solid #e5e5e5;
    border-radius: 7px;
    padding: 28px;
    background: #fff;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    font-size: 15px;
}


/* ========================================
   FOOTER
======================================== */

.site-footer {
    background: #171717;
    color: #ffffff;
    padding: 25px 0;
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.site-footer p {
    font-size: 13px;
    color: #cccccc;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #cccccc;
    font-size: 13px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    .hero {
        padding: 45px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-text {
        font-size: 17px;
    }

    .lead-box {
        padding: 25px;
    }

    .information {
        padding: 50px 0;
    }

    .information h2 {
        font-size: 28px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .site-footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 31px;
    }

    .lead-box h2 {
        font-size: 24px;
    }

    .lead-box {
        padding: 22px;
    }

    .information h2 {
        font-size: 25px;
    }
}

.input-error {
    border-color: #d32f2f !important;
}

.form-error {
    display: block;
    margin-top: 5px;
    color: #d32f2f;
    font-size: 12px;
}

.footer-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

}

/* ========================================
   THANK YOU PAGE
======================================== */

.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 70px 0;
    background: #f6f6f6;
}

.thank-you-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 35px;
    background: #ffffff;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #9d7f19;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
}

.thank-you-box h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.thank-you-box p {
    color: #666;
    font-size: 16px;
    margin-bottom: 10px;
}

.thank-you-message {
    font-size: 20px !important;
    color: #222 !important;
    font-weight: 600;
}

.back-button {
    display: inline-block;
    margin-top: 25px;
    padding: 13px 28px;
    background: #9d7f19;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.back-button:hover {
    opacity: 0.88;
}


/* Mobile */

@media (max-width: 480px) {

    .thank-you-section {
        padding: 45px 0;
    }

    .thank-you-box {
        padding: 40px 22px;
    }

    .thank-you-box h1 {
        font-size: 32px;
    }

}

.form-message {
    margin-bottom: 18px;
    padding: 12px 14px;
    background: #fce8e8;
    border: 1px solid #e5b5b5;
    border-radius: 5px;
    color: #a00000;
    font-size: 14px;
}