:root {
    --primary-green: #2B8C3A;
    --dark-blue: #0F1E2E;
    --darker-blue: #0A141E;
    --accent-orange: #FF5A00;
    --light-gray: #f8f9fa;
    --border-color: #e1e4e8;
    --text-main: #333333;
    --text-light: #555555;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.4;
    background-color: var(--white);
    padding-bottom: 0;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* --- HEADER --- */
.site-header {
    border-bottom: 1px solid var(--border-color);
    padding: 5px 0;
    background: var(--white);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    max-height: 75px;
}

.header-right {
    text-align: right;
}

.header-text {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 14px;
    margin-bottom: 4px;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: #000;
    line-height: 1;
    white-space: nowrap; /* Prevents wrapping on responsive scale down */
}

.icon-circle-green {
    background: var(--primary-green);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.icon-circle-green svg {
    width: 18px;
    height: 18px;
}

.header-availability {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    padding: 25px 0;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 450px;
    max-width: 1024px;
    margin: 0 auto;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 60%;
}

.hero-text-column {
    max-width: 100%;
}

.kicker {
    color: var(--primary-green);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.kicker.center {
    text-align: center;
    display: block;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.hero p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 90%;
}

.hero p.hero-lead {
    font-size: 20px;
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 25px;
    max-width: 95%;
    line-height: 1.4;
}

.highlight-green {
    color: var(--primary-green);
    font-weight: 900;
}

.highlight-orange {
    color: var(--accent-orange);
    font-weight: 900;
}

/* Trust Badges */
.trust-badges-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
    max-width: 95%;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-green);
    border-radius: 50px; /* Pill Shape */
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.trust-badge .badge-icon {
    margin-right: 6px;
    font-size: 18px;
}

.trust-footer-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 20px;
    max-width: 95%;
}

.trust-divider {
    margin: 0 8px;
    color: #ccc;
}

/* FLOATING CARD */
.floating-card {
    position: absolute;
    top: 30px;
    right: 20px;
    background: var(--dark-blue);
    color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    width: 220px;
    z-index: 3;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.card-header .shield-icon {
    font-size: 28px;
    margin-right: 10px;
}

.card-header h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    line-height: 1.3;
}

.green-text {
    color: #4CAF50;
}

.service-list {
    list-style: none;
    font-size: 14px;
}

.service-list li {
    margin-bottom: 8px;
}

/* CTA ARROW BOX */
.cta-box {
    margin-top: 20px;
}

.cta-arrow-container {
    display: inline-flex;
    text-decoration: none;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.cta-white-part {
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-right: none;
    border-radius: 8px 0 0 8px;
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 10px;
    position: relative;
    z-index: 2;
}

.cta-btn-left {
    background: var(--primary-green);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.cta-btn-left svg {
    width: 26px;
    height: 26px;
}

.cta-btn-center {
    display: flex;
    flex-direction: column;
}

.small-text {
    font-size: 13px;
    font-weight: 700;
    color: #000;
}

.large-phone {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    margin-top: 2px;
    white-space: nowrap; /* Prevents wrapping */
}

.cta-orange-part {
    background: var(--accent-orange);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 35px 10px 20px;
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
    margin-left: -5px;
    z-index: 1;
}

.cta-badge-content {
    font-size: 14px;
    line-height: 1.2;
}

.cta-badge-content strong {
    font-size: 16px;
    display: block;
}

.banner-wrapper {
    margin: 5px auto;
    text-align: center;
}

/* --- TRUST BAR --- */
.trust-bar {
    background: var(--dark-blue);
    color: white;
    padding: 15px 0;
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    text-align: left;
    flex: 1;
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item.stars-item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.trust-item.stars-item .stars-icon {
    margin-right: 0;
    margin-bottom: 5px;
}

.trust-icon {
    font-size: 26px;
    margin-right: 12px;
}

.stars-icon {
    font-size: 18px;
    letter-spacing: -2px;
}

.trust-item p {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

/* --- HOW IT WORKS --- */
.how-it-works {
    padding: 30px 0;
    background: var(--white);
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 30px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #eef5ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 32px;
    position: relative;
}

.step-num {
    position: absolute;
    top: -5px;
    left: -5px;
    background: var(--primary-green);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 5px;
}

.step p {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.step-arrow {
    flex-grow: 1;
    height: 2px;
    border-top: 2px dashed #b5c4b5;
    position: relative;
    top: -45px;
    z-index: 1;
    margin: 0 -25px;
}

.step-arrow::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -7px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #b5c4b5;
}

/* --- REVIEWS --- */
.reviews {
    padding: 10px 0;
    background: var(--light-gray);
}

.reviews h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 22px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.review-card .stars {
    margin-bottom: 10px;
}

.review-card p {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 15px;
    font-weight: 600;
}

.review-author {
    font-size: 13px;
}

.quote-mark {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 50px;
    color: var(--primary-green);
    opacity: 0.2;
    line-height: 0;
}

/* --- BOTTOM CTA --- */
.bottom-cta {
    background: var(--darker-blue);
    color: white;
    padding: 30px 0;
}

.bottom-cta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.phone-icon-large {
    font-size: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-cta-content {
    text-align: center;
    flex: 1;
}

.bottom-cta-content h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 32px;
    margin-bottom: 5px;
}

.bottom-cta-content h3 {
    color: #4CAF50;
    font-size: 20px;
    margin-bottom: 15px;
}

.orange-btn {
    background: var(--accent-orange);
    color: white;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    padding: 10px 30px 10px 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
}

.icon-circle-white {
    background: white;
    color: var(--accent-orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.icon-circle-white svg {
    width: 22px;
    height: 22px;
}

.availability {
    font-size: 13px;
    color: #a0aab5;
    font-weight: 600;
}

.joe-help {
    text-align: center;
    font-family: 'Covered By Your Grace', cursive, sans-serif;
    font-size: 22px;
}

.joe-help img {
    width: 70px;
    border-radius: 50%;
    margin-bottom: 5px;
}

.joe-help-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pointing-arrow {
    display: inline-block;
    font-size: 30px;
    line-height: 0.8;
    margin-bottom: 5px;
    font-style: normal;
}

/* --- FOOTER --- */
.site-footer {
    padding: 20px 0;
    text-align: center;
    font-size: 11px;
    color: var(--text-light);
}

.site-footer a {
    color: var(--primary-green);
    font-weight: 700;
}

.footer-disclaimer {
    margin-top: 10px;
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
}


/* =========================================
   MOBILE RESPONSIVE STYLES
   ========================================= */
@media (max-width: 850px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block;
    }

    body {
        padding-bottom: 60px;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .logo-wrapper {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }

    .brand-logo {
        max-height: 50px;
        max-width: 100%;
        margin-bottom: 0;
        object-fit: contain;
    }

    .header-right {
        flex: 0 0 66.66%;
        max-width: 66.66%;
        text-align: right;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
    }

    .header-text {
        font-size: 11px;
        margin-bottom: 2px;
    }

    .header-phone {
        font-size: 18px;
        justify-content: flex-end;
        width: auto;
        white-space: nowrap;
    }

    .icon-circle-green {
        width: 22px;
        height: 22px;
        margin-right: 6px;
    }

    .icon-circle-green svg {
        width: 12px;
        height: 12px;
    }

    .header-availability {
        font-size: 10px;
        margin-top: 2px;
    }

    /* Hero */
    .hero {
        padding: 20px 0 35px 0;
        background-position: right center;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text-column {
        max-width: 100%; /* Overrides old 60% limitation */
        text-align: center;
    }

    .kicker {
        font-size: 14px;
        text-align: center;
        display: block;
        margin-bottom: 12px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.15;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 16px;
        margin: 0 auto 15px auto;
        max-width: 95%;
        color: #222;
        font-weight: 600;
    }

    .hero p.hero-lead {
        font-size: 18px;
        margin: 0 auto 20px auto;
        max-width: 100%;
    }

    /* Mobile Trust Badges */
    .trust-badges-container {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin: 10px auto 15px;
        max-width: 100%;
    }

    .trust-badge {
        font-size: 12px;
        padding: 6px 8px;
        border-radius: 30px;
        white-space: nowrap;
    }

    .trust-badge .badge-icon {
        font-size: 14px;
        margin-right: 4px;
    }

    .trust-footer-text {
        font-size: 12px;
        text-align: center;
        margin: 0 auto 20px auto;
        max-width: 100%;
    }

    /* Mobile CTA - Unified High-Impact Design */
    .cta-box {
        width: 100%;
        margin-top: 15px;
    }

    .cta-arrow-container {
        flex-direction: column;
        width: 100%;
        background: var(--accent-orange);
        border-radius: 50px;
        padding: 15px 10px;
        filter: drop-shadow(0 6px 15px rgba(255, 90, 0, 0.4));
    }

    .cta-white-part {
        background: transparent;
        border: none;
        padding: 0;
        margin: 0;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .cta-btn-left {
        background: transparent;
        color: white;
        width: auto;
        height: auto;
        margin-right: 12px;
    }

    .cta-btn-left svg {
        width: 32px;
        height: 32px;
    }

    .cta-btn-center {
        align-items: flex-start;
    }

    .small-text {
        font-size: 14px;
        color: white !important;
    }

    .large-phone {
        font-size: 26px;
        color: white !important;
    }

    .cta-orange-part {
        background: transparent;
        clip-path: none;
        border-radius: 0;
        padding: 5px 0 0 0;
        margin: 0;
    }

    .cta-badge-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        color: white;
    }

    .cta-badge-content strong {
        display: inline;
        margin-right: 5px;
        font-size: 14px;
        color: white;
    }

    /* Trust Bar */
    .trust-bar {
        padding: 10px 0;
    }

    .trust-grid {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .trust-item, .trust-item.stars-item {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0 5px;
    }

    .trust-item.stars-item .stars-icon {
        margin-bottom: 5px;
    }

    .trust-icon {
        margin-right: 0;
        margin-bottom: 5px;
        font-size: 20px;
    }

    .stars-icon {
        font-size: 13px;
        letter-spacing: -1px;
    }

    .trust-item p {
        font-size: 9px;
        line-height: 1.2;
    }

    /* How It Works */
    .how-it-works {
        padding: 15px 0;
    }

    .section-heading h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .steps-container {
        align-items: flex-start;
    }

    .step {
        padding: 0 2px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 8px;
    }

    .step-num {
        width: 20px;
        height: 20px;
        font-size: 11px;
        top: -3px;
        left: -3px;
    }

    .step h3 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .step p {
        font-size: 10px;
        line-height: 1.2;
    }

    .step-arrow {
        top: 25px;
        margin: 0 -12px;
    }

    /* Mobile Testimonials Slideshow */
    .review-grid {
        display: block;
        position: relative;
        min-height: 120px;
    }

    .review-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
        z-index: 1;
    }

    .review-card.active {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

    /* Bottom CTA */
    .bottom-cta {
        padding: 25px 0;
    }

    .bottom-cta-content h2 {
        font-size: 22px;
    }

    .bottom-cta-content h3 {
        font-size: 16px;
    }

    .orange-btn {
        font-size: 24px;
        padding: 10px 15px;
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .site-footer {
        padding: 15px 0;
    }

    .footer-disclaimer {
        margin-top: 10px;
        padding-top: 10px;
    }

    /* Sticky Footer */
    .mobile-sticky-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--accent-orange);
        z-index: 999;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    }

    .sticky-cta-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 6px 12px;
        color: white;
        text-align: center;
    }

    .sticky-cta-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-heading);
        font-size: 24px;
        font-weight: 900;
        line-height: 1;
        margin-bottom: 2px;
    }

    .sticky-cta-phone svg {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

    .sticky-cta-subtext {
        font-family: var(--font-body);
        font-size: 11px;
        font-weight: 400;
        line-height: 1.2;
    }
}

/* --- REUSABLE MOBILE TAP OPTIMIZATION --- */
@media (hover: none) {
    a[href^="tel:"] {
        -webkit-tap-highlight-color: transparent;
    }
}