﻿/* CTA footer — navy band */
.site-cta {
    background: var(--mold-navy);
    color: var(--mold-white);
    padding: clamp(3.25rem, 7vw, 5rem) var(--container-padding) clamp(2rem, 4vw, 2.75rem);
    text-align: center;
}

.site-cta__inner {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-cta__title {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.45rem, 3vw, 2.15rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--mold-white);
}

.site-cta__text {
    margin: clamp(1rem, 2vw, 1.35rem) 0 0;
    max-width: 46rem;
    font-size: clamp(0.92rem, 1.15vw, 1.05rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.96);
}

.site-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: clamp(1.35rem, 2.5vw, 1.85rem);
    padding: 0.85rem 2.1rem;
    border-radius: 999px;
    background: var(--mold-white);
    color: var(--mold-navy);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.88rem, 1.1vw, 0.98rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.site-cta__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2.5rem);
    width: 100%;
    max-width: 720px;
    margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
    padding: 0.85rem clamp(1.25rem, 3vw, 2rem);
    background: var(--mold-white);
    border-radius: 999px;
}

.site-cta__bar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--mold-navy);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.85rem, 1.05vw, 0.98rem);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.site-cta__bar-item:hover {
    text-decoration: underline;
}

.site-cta__bar-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.site-cta__legal {
    margin-top: clamp(1.5rem, 3vw, 2.1rem);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: clamp(0.8rem, 1vw, 0.9rem);
}

.site-cta__legal a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.site-cta__legal a:hover {
    text-decoration: underline;
}

.site-cta__legal-sep {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 640px) {
    .site-cta {
        padding: clamp(2.5rem, 7vw, 3.25rem) var(--container-padding) 1.75rem;
    }

    .site-cta__title {
        font-size: clamp(1.25rem, 5.5vw, 1.55rem);
    }

    .site-cta__text {
        font-size: 0.9rem;
    }

    .site-cta__btn {
        width: 100%;
        max-width: 320px;
        padding: 0.85rem 1.25rem;
    }

    .site-cta__bar {
        border-radius: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
        padding: 1.1rem 1.25rem;
        max-width: 100%;
    }

    .site-cta__bar-item {
        white-space: normal;
        font-size: 0.88rem;
    }

    .site-cta__legal {
        flex-direction: column;
        gap: 0.35rem;
    }

    .site-cta__legal-sep {
        display: none;
    }
}

/* Legal pages footer */
.mold-footer {
    background: var(--mold-navy-dark);
    color: rgba(255, 255, 255, 0.88);
    padding: clamp(2.5rem, 5vw, 3.5rem) var(--container-padding);
    font-family: 'Poppins', sans-serif;
}

.mold-footer__inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.mold-footer__left {
    display: flex;
    flex-direction: column;
    gap: clamp(0.85rem, 1.5vw, 1.1rem);
}

.mold-footer__copy {
    margin: 0;
    font-size: clamp(0.78rem, 0.95vw, 0.88rem);
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.75);
}

.mold-footer__legal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mold-footer__legal a {
    position: relative;
    padding-left: 1rem;
    font-size: clamp(0.82rem, 1vw, 0.92rem);
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mold-footer__legal a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 1px;
    transform: translateY(-50%);
}

.mold-footer__legal a:hover {
    color: var(--mold-white);
}

.mold-footer__center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mold-footer__logo-link {
    display: block;
    line-height: 0;
}

.mold-footer__logo {
    width: clamp(140px, 16vw, 200px);
    height: auto;
}

.mold-footer__right {
    text-align: right;
}

.mold-footer__contact-title {
    margin: 0 0 0.65rem;
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--mold-white);
}

.mold-footer__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mold-footer__contact-list li {
    font-size: clamp(0.82rem, 1vw, 0.92rem);
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
}

.mold-footer__contact-list a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mold-footer__contact-list a:hover {
    color: var(--mold-white);
}

@media (max-width: 900px) {
    .mold-footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mold-footer__left {
        align-items: center;
        order: 3;
    }

    .mold-footer__legal {
        align-items: center;
    }

    .mold-footer__legal a {
        padding-left: 0;
    }

    .mold-footer__legal a::before {
        display: none;
    }

    .mold-footer__center {
        order: 1;
    }

    .mold-footer__right {
        text-align: center;
        order: 2;
    }
}
