/* Ford Antenna */
@font-face {
    font-family: 'FordAntenna';
    src: url('../fonts/ford-antenna-regular.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
    font-weight: 400;
}

@font-face {
    font-family: 'FordAntenna';
    src: url('../fonts/ford-antenna-semibold.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
    font-weight: 500;
}

@font-face {
    font-family: 'FordAntenna';
    src: url('../fonts/ford-antenna-bold.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
    font-weight: 700;
}

:root {
    --fr: #00095b;
    --fr-dark: #000740;
    --bg: #ffffff;
    --gray-bg: #f8f9fb;
    --text: #333333;
    --text-soft: #444444;
    --text-mute: #777777;
    --border: #e4e4e4;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'FordAntenna', 'Segoe UI', Arial, sans-serif;
    font-weight: 400;
    color: var(--fr);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'FordAntenna', 'Segoe UI', Arial, sans-serif;
    color: var(--fr);
    margin: 0;
}

a {
    color: var(--fr);
}

/* ---------- HEADER ---------- */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 25px 0;
}

.brand-bar {
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand-bar .ford-logo {
    height: 46px;
    width: auto;
    display: block;
}

.brand-bar .cmmj-logo {
    height: 54px;
    width: auto;
    display: block;
}

.brand-bar .separator {
    width: 1px;
    height: 56px;
    background: #d4d4dc;
}

/* ---------- HERO BANNER ---------- */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0c0d12;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,9,91,0.40) 0%,
        rgba(0,9,91,0.15) 45%,
        rgba(0,9,91,0.00) 80%
    );
    display: flex;
    align-items: flex-start;
}

.hero-content {
    width: 100%;
    padding: 5vw 0 0;
    text-align: center;
}

.hero-title {
    color: #fff;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 2px 14px rgba(0,0,0,0.45);
    display: inline-block;
    text-align: left;
}

.hero-title-top,
.hero-title-bottom {
    display: block;
}

.hero-title-top {
    font-size: clamp(0.9rem, 2.3vw, 2.2rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    opacity: 0.95;
    margin-bottom: 16px;
}

.hero-title-bottom {
    font-size: clamp(1.4rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.005em;
    line-height: 1.05;
}

/* ---------- HERO TEXT (intro) ---------- */
.fa-hero {
    padding: 4rem 1rem 2.5rem;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.fa-hero h1,
.fa-hero h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--fr);
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

.fa-hero-sub {
    font-size: 17px;
    color: var(--text-soft);
    line-height: 1.7;
    margin: 0 auto 2rem;
    max-width: 720px;
}

.fa-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* ---------- BUTTONS ---------- */
.btn-fa-primary {
    background-color: var(--fr);
    color: #fff;
    padding: 0.7rem 1.75rem;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid var(--fr);
    display: inline-block;
    transition: background-color 0.2s, color 0.2s;
    cursor: pointer;
}

.btn-fa-primary:hover,
.btn-fa-primary:focus {
    background-color: var(--fr-dark);
    border-color: var(--fr-dark);
    color: #fff;
}

.btn-fa-outline {
    background-color: transparent;
    color: var(--fr);
    border: 1.5px solid var(--fr);
    padding: 0.7rem 1.75rem;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s, color 0.2s;
}

.btn-fa-outline:hover {
    background-color: var(--fr);
    color: #fff;
}

/* ---------- SECTIONS ---------- */
.fa-section {
    max-width: 880px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.fa-section-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--fr);
    margin-bottom: 1rem;
    text-align: center;
}

.fa-section-text {
    font-size: 16px;
    color: var(--text);
    line-height: 1.75;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

/* ---------- VEHICLE LIST (promise style) ---------- */
.fa-promises {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.fa-promise {
    display: flex;
    gap: 1.5rem;
    background: var(--gray-bg);
    border-radius: 8px;
    padding: 1.75rem 2rem;
    border-left: 4px solid var(--fr);
}

.fa-promise-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--fr);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.fa-promise-body {
    flex: 1;
}

.fa-promise-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--fr);
    margin: 0 0 0.5rem;
}

.fa-promise-body p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin: 0 0 0.5rem;
}

.fa-promise-body .price {
    font-size: 15px;
    color: var(--text-mute);
    margin: 0.4rem 0 0;
}

.fa-promise-body .price strong {
    color: var(--fr);
    font-size: 20px;
    font-weight: 700;
    margin-left: 4px;
}

.fa-promise-body small {
    font-size: 13px;
    color: var(--text-mute);
}

/* ---------- DISCLAIMERS ---------- */
.fa-disclaimers {
    max-width: 880px;
    margin: 0 auto 3rem;
    padding: 1.5rem 0rem;

}

.fa-disclaimers p {
    font-size: 13px;
    color: #9a9a9a;
    line-height: 1.65;
    margin: 0 0 0.5rem;
    font-weight: 400;
}

.fa-disclaimers p:last-child {
    margin-bottom: 0;
}

.fa-disclaimers .highlight {
    color: #6b6b6b;
    font-weight: 500;
}

/* ---------- CTA BOTTOM ---------- */
.fa-hero-bottom {
    padding-top: 3rem;
    padding-bottom: 4rem;
    margin-top: 1rem;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--fr);
    color: #fff;
    padding: 36px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

.footer-logo {
    width: 88px;
    height: auto;
}

.footer-info {
    font-size: 15px;
    line-height: 1.7;
}

.footer-info strong {
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.footer-info a {
    color: #fff;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: var(--fr);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--fr);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 22px;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-logo {
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .brand-bar .ford-logo {
        height: 38px;
    }
    .brand-bar .cmmj-logo {
        height: 44px;
    }
    .brand-bar .separator {
        height: 44px;
    }
    .brand-bar {
        gap: 16px;
    }
    .hero-content {
        padding: 25px 0;
    }
    .hero-title-top {
        font-size: clamp(0.7rem, 2.6vw, 1rem);
        margin-bottom: 7px;
    }
    .hero-title-bottom {
        font-size: clamp(1rem, 3.8vw, 1.6rem);
        line-height: 1.1;
    }
    .fa-hero {
        padding: 2.5rem 0.5rem 2rem;
    }
    .fa-hero h1,
    .fa-hero h2 {
        font-size: 24px;
    }
    .fa-section-title {
        font-size: 22px;
    }
    .fa-promise {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem 1.25rem;
    }
    .fa-hero-cta {
        flex-direction: column;
    }
    .fa-hero-cta .btn-fa-primary,
    .fa-hero-cta .btn-fa-outline {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand-bar {
        flex-wrap: wrap;
    }
    .hero-title-top {
        font-size: clamp(0.6rem, 2.6vw, 0.85rem);
    }
    .hero-title-bottom {
        font-size: clamp(0.85rem, 3.6vw, 1.2rem);
    }
}
