/* 03-components.css: buttons, cards, trust bar, badges. */

/* ---------- buttons ----------
   Provisional palette: primary green (gold-500 token) background with white
   text per the scaffold brief; the design lane re-checks contrast. All
   targets >= 44px. */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 22px;
    border: none;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    text-decoration: none;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: var(--gold-500);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-600);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal-900);
    border: 2px solid var(--charcoal-900);
}

.btn-outline:hover {
    background: var(--charcoal-900);
    color: var(--white);
}

/* Outline variant for dark sections (hero, footer). */
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--silver-300);
}

.btn-outline-light:hover {
    border-color: var(--gold-400);
    color: var(--gold-400);
}

.btn-ghost {
    background: transparent;
    color: var(--steel-700);
    border: 1px solid var(--silver-300);
}

.btn-ghost:hover {
    border-color: var(--steel-700);
}

.btn-lg {
    min-height: 52px;
    padding: 14px 30px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ---------- cards ---------- */

.card {
    background: var(--white);
    border: 1px solid var(--silver-100);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 20px;
}

/* ---------- trust bar (every page, under the hero) ---------- */

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 28px;
    background: var(--off-white);
    border-bottom: 1px solid var(--silver-100);
    padding: 14px var(--section-px);
}

.trust-item {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--charcoal-900);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trust-item::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-500);
    flex: none;
}

/* ---------- badges ---------- */

.badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: var(--gold-100);
    color: var(--gold-600);
}
