:root {
    --navy: #102a43;
    --navy-dark: #081c2d;
    --green: #16845b;
    --green-dark: #0e6847;
    --gold: #f0b429;

    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-900: #0f172a;

    --radius: 12px;
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);

    --container: 1180px;
}

/* =========================
   RESET
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-900);
    background: var(--white);
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

img,
svg {
    max-width: 100%;
}

/* =========================
   GLOBAL
========================= */

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    z-index: 9999;

    padding: 12px 18px;

    background: var(--navy);
    color: var(--white);
}

.skip-link:focus {
    top: 20px;
}

/* =========================
   TOP BAR
========================= */

.top-bar {
    background: var(--navy-dark);
    color: var(--white);

    font-size: 13px;
}

.top-bar-inner {
    min-height: 38px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-phone {
    font-weight: 700;
}

.top-phone:hover {
    color: var(--gold);
}

/* =========================
   HEADER
========================= */

.site-header {
    position: relative;
    z-index: 1000;

    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.nav-wrapper {
    background: rgba(255, 255, 255, 0.97);
}

.nav-container {
    min-height: 78px;

    display: flex;
    align-items: center;
    gap: 32px;
}

/* =========================
   BRAND
========================= */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    flex-shrink: 0;
}

.brand-mark {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    color: var(--green);
}

.brand-mark svg {
    width: 100%;
    height: 100%;
}

.brand-text {
    display: flex;
    flex-direction: column;

    font-family: "Manrope", sans-serif;
    font-size: 18px;
    line-height: 1.05;
    letter-spacing: -0.4px;
}

.brand-text strong {
    color: var(--navy);
    font-size: 21px;
    font-weight: 800;
}

.brand-text span {
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* =========================
   DESKTOP NAV
========================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;

    margin-left: auto;
}

.main-nav a {
    position: relative;

    padding: 29px 0;

    color: var(--gray-700);
    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.2s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;
    bottom: 18px;
    left: 0;

    width: 0;
    height: 2px;

    background: var(--green);

    transition: width 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* =========================
   HEADER CTA
========================= */

.header-cta,
.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 12px 19px;

    border-radius: 8px;

    background: var(--green);
    color: var(--white);

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.header-cta:hover,
.footer-cta:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 7px 18px rgba(22, 132, 91, 0.22);
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    margin-left: auto;

    border: 1px solid var(--gray-200);
    border-radius: 8px;

    background: var(--white);

    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;

    width: 20px;
    height: 2px;

    margin: 4px auto;

    background: var(--navy);

    transition: transform 0.2s ease;
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
    display: none;

    border-top: 1px solid var(--gray-200);
    background: var(--white);

    box-shadow: var(--shadow);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 12px 20px 22px;
}

.mobile-menu a {
    padding: 14px 0;

    border-bottom: 1px solid var(--gray-100);

    color: var(--gray-700);
    font-weight: 600;
}

.mobile-menu a:last-child {
    border-bottom: 0;
}

.mobile-offer-button {
    margin-top: 12px;

    padding: 14px 18px !important;

    border-radius: 8px;

    background: var(--green);
    color: var(--white) !important;

    text-align: center;
}

.mobile-call-button {
    margin-top: 8px;

    border: 1px solid var(--gray-200);
    border-radius: 8px;

    text-align: center;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: var(--navy);
    color: var(--white);
}

.footer-main {
    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr
        1fr;

    gap: 60px;

    padding: 75px 0 55px;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.footer-logo strong {
    display: block;

    color: var(--white);

    font-size: 21px;
    font-weight: 800;
}

.footer-logo-mark {
    width: 43px;
    height: 43px;

    color: var(--green);
}

.footer-brand p {
    margin: 22px 0;

    color: #c7d2de;

    font-size: 14px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    margin: 0 0 18px;

    color: var(--white);

    font-size: 15px;
}

.footer-column a,
.footer-column p {
    margin: 0 0 10px;

    color: #c7d2de;

    font-size: 14px;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-disclosure {
    padding: 28px 0;

    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);

    color: #b9c5d1;

    font-size: 12px;
    line-height: 1.7;
}

.footer-disclosure strong {
    color: var(--white);
}

.footer-disclosure p {
    margin: 8px 0 0;
}

.footer-bottom {
    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color: #aebbc8;
    font-size: 12px;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal a {
    color: #aebbc8;
    font-size: 12px;
}

.footer-legal a:hover {
    color: var(--white);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .main-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

}

@media (max-width: 600px) {

    .container {
        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }

    .top-bar-message {
        display: none;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .nav-container {
        min-height: 70px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 18px;
    }

    .brand-text span {
        font-size: 11px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;

        padding: 55px 0 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        padding: 25px 0;
    }

    .footer-legal {
        gap: 12px;
    }

}
/* =========================================
   ABOUT / INTRO SECTION
========================================= */

.about-intro {
    padding: 100px 0;
    background: #f8fafc;
}

.about-heading {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 14px;

    color: #16845b;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-heading h2 {
    margin: 0 0 22px;

    color: #102a43;

    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.section-lead {
    margin: 0;

    color: #475569;

    font-size: 18px;
    line-height: 1.75;
}


/* =========================================
   CONTENT
========================================= */

.about-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.about-copy {
    max-width: 520px;
}

.about-copy p {
    margin: 0 0 20px;

    color: #475569;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   CTA
========================================= */

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 12px;
    padding: 14px 21px;

    border-radius: 8px;

    background: #16845b;
    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.about-cta:hover {
    background: #0e6847;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(22, 132, 91, 0.2);
}

.about-cta span {
    font-size: 18px;
}



/* =========================================
   TRUST CARDS
========================================= */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
    margin-top: 48px;
}

.trust-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;

    border: 1px solid var(--gray-200);
    border-radius: var(--radius);

    background: var(--white);
    box-shadow: var(--shadow);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
}

.trust-icon {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--green);
    color: var(--white);

    font-size: 12px;
    font-weight: 800;

    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.18);
}

.trust-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}

.trust-card-content img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.trust-card-content h3 {
    margin: 22px 22px 7px;

    color: var(--navy);

    font-family: "Manrope", sans-serif;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
}

.trust-card-content p {
    margin: 0;
    padding: 0 22px 24px;

    color: var(--gray-500);

    font-size: 14px;
    line-height: 1.65;
}

/* =========================================
   CLOSING STATEMENT
========================================= */

.about-callout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    margin-top: 75px;
}

.about-callout p {
    margin: 0;

    color: #102a43;

    font-family: "Manrope", sans-serif;
    font-size: clamp(20px, 3vw, 27px);
    font-weight: 700;
    text-align: center;
}

.about-callout strong {
    color: #16845b;
}

.callout-line {
    width: 55px;
    height: 1px;

    background: #cbd5e1;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .about-intro {
        padding: 70px 0;
    }

    .about-heading {
        margin-bottom: 45px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-copy {
        max-width: none;
    }

    .about-copy p {
        font-size: 15px;
    }

    .about-callout {

        margin-top: 55px;
    }

}


@media (max-width: 500px) {

    .about-heading h2 {
        font-size: 34px;
    }

    .section-lead {
        font-size: 16px;
    }
.trust-icon {
        width: 42px;
        height: 42px;
    }

    .about-callout {
        gap: 12px;
    }

    .callout-line {
        width: 25px;
    }

}

@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust-card-content img {
        height: 230px;
    }
}

/* =========================================
   ABOUT FEATURE
========================================= */

.about-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-feature-image {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
}

.about-feature-image img {
    display: block;
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.about-feature-content {
    max-width: 560px;
}

.about-feature-content p {
    margin: 0 0 20px;
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
}
@media (max-width: 800px) {

    .about-feature {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-feature-image img {
        height: 300px;
    }

    .about-feature-content {
        max-width: none;
    }

}
body.modal-open {
    overflow: hidden;
}

.offer-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 24px;
}

.offer-modal.is-open {
    display: flex;
}

.offer-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(8, 28, 45, 0.78);
    backdrop-filter: blur(4px);
}

.offer-modal-dialog {
    position: relative;
    z-index: 1;

    width: min(100%, 760px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;

    padding: 38px;

    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.offer-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 50%;

    background: var(--gray-100);
    color: var(--navy);

    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.offer-modal-header {
    max-width: 620px;
    margin: 0 auto 28px;
    text-align: center;
}

.offer-modal-header h2 {
    margin: 4px 0 10px;

    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 5vw, 40px);
    line-height: 1.15;
}

.offer-modal-header p {
    margin: 0;
    color: var(--gray-500);
}

.form-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;

    margin-bottom: 30px;
}
.open-offer-modal 
{
	background: #4BB06B;
	color: aliceblue;
	border-radius: 5px;
}
.progress-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 11px;

    border-radius: 9px;
    background: var(--gray-100);
    color: var(--gray-500);
}

.progress-step span {
    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    border-radius: 50%;
    background: var(--white);

    font-size: 12px;
    font-weight: 800;
}

.progress-step.active {
    background: #e8f5ef;
    color: var(--green-dark);
}

.progress-step.active span {
    background: var(--green);
    color: var(--white);
}

.form-step {
    display: none;
    margin: 0;
    padding: 0;
    border: 0;
}

.form-step.active {
    display: block;
}

.form-step legend {
    margin-bottom: 22px;

    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 21px;
    font-weight: 800;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;

    color: var(--gray-700);
    font-size: 14px;
    font-weight: 700;
}

.form-group label span {
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid var(--gray-200);
    border-radius: 8px;

    background: var(--white);
    color: var(--gray-900);

    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(22, 132, 91, 0.13);
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #b42318;
}

.field-error {
    display: block;
    min-height: 18px;
    margin-top: 5px;

    color: #b42318;
    font-size: 12px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;

    margin-top: 8px;
}

.form-actions-end {
    justify-content: flex-end;
}

.form-actions button,
.offer-success button {
    min-width: 130px;
    padding: 13px 19px;

    border: 0;
    border-radius: 8px;

    font-weight: 700;
    cursor: pointer;
}

.form-next,
.form-submit,
.offer-success button {
    background: var(--green);
    color: var(--white);
}

.form-next:hover,
.form-submit:hover,
.offer-success button:hover {
    background: var(--green-dark);
}

.form-back {
    background: var(--gray-100);
    color: var(--navy);
}

.consent-group {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 11px;
    align-items: start;
}

.consent-group input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.consent-group label {
    color: var(--gray-500);
    font-size: 12px;
    line-height: 1.6;
}

.form-message {
    margin-bottom: 18px;
    padding: 12px 14px;

    border-radius: 8px;
    background: #fef3f2;
    color: #b42318;
}

.offer-success {
    padding: 30px 10px;
    text-align: center;
}

.success-icon {
    width: 62px;
    height: 62px;

    display: grid;
    place-items: center;

    margin: 0 auto 18px;

    border-radius: 50%;
    background: #e8f5ef;
    color: var(--green);

    font-size: 30px;
    font-weight: 800;
}

@media (max-width: 650px) {

    .offer-modal {
        align-items: flex-end;
        padding: 0;
    }

    .offer-modal-dialog {
        width: 100%;
        max-height: 94vh;

        padding: 30px 20px 24px;

        border-radius: 18px 18px 0 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-progress small {
        display: none;
    }

    .form-actions button {
        flex: 1;
        min-width: 0;
    }

}