/* =============================================================
   FOOTER.CSS
   ============================================================= */
.cd-footer {
    background: var(--cd-text);
    color: rgba(255,255,255,0.7);
    padding: var(--cd-space-xl) 0 0;
}

.cd-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--cd-space-xl);
    padding-bottom: var(--cd-space-xl);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand */
.cd-footer__brand img { height: 36px; width: auto; filter: brightness(0) invert(1); margin-bottom: var(--cd-space-md); }
.cd-footer__logo-text {
    font-family: var(--cd-font-display);
    font-weight: 800;
    font-size: var(--cd-text-xl);
    color: #fff;
    display: block;
    margin-bottom: var(--cd-space-md);
}
.cd-footer__tagline {
    font-size: var(--cd-text-sm);
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    margin-bottom: var(--cd-space-md);
}

/* Social */
.cd-footer__social {
    display: flex;
    gap: var(--cd-space-sm);
    margin-top: var(--cd-space-md);
}
.cd-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: var(--cd-radius-sm);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    transition: all var(--cd-transition);
}
.cd-footer__social a:hover {
    background: var(--cd-primary);
    color: #fff;
}

/* Nav columns */
.cd-footer__nav-title {
    font-family: var(--cd-font-display);
    font-size: var(--cd-text-sm);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--cd-space-md);
}
.cd-footer__nav-list { list-style: none; margin: 0; padding: 0; }
.cd-footer__nav-list li { margin-bottom: var(--cd-space-sm); }
.cd-footer__nav-list a {
    font-size: var(--cd-text-sm);
    color: rgba(255,255,255,0.55);
    transition: color var(--cd-transition);
}
.cd-footer__nav-list a:hover { color: #fff; }

/* Trust badges */
.cd-footer__badges {
    display: flex;
    flex-direction: column;
    gap: var(--cd-space-sm);
    margin-bottom: var(--cd-space-md);
}
.cd-footer__badge {
    display: flex;
    align-items: center;
    gap: var(--cd-space-sm);
    font-size: var(--cd-text-sm);
    color: rgba(255,255,255,0.6);
}
.cd-footer__badge svg { color: var(--cd-secondary); flex-shrink: 0; }
.cd-footer__stripe-note {
    font-size: var(--cd-text-xs);
    color: rgba(255,255,255,0.35);
    margin: 0;
}
.cd-footer__stripe-note strong { color: rgba(255,255,255,0.6); }

/* Legal bar */
.cd-footer__legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--cd-space-md) 0;
    flex-wrap: wrap;
    gap: var(--cd-space-md);
}
.cd-footer__copyright {
    font-size: var(--cd-text-sm);
    color: rgba(255,255,255,0.35);
    margin: 0;
}
.cd-footer__legal-nav {
    display: flex;
    gap: var(--cd-space-md);
    list-style: none;
    margin: 0; padding: 0;
}
.cd-footer__legal-nav a {
    font-size: var(--cd-text-sm);
    color: rgba(255,255,255,0.35);
}
.cd-footer__legal-nav a:hover { color: rgba(255,255,255,0.7); }
