/* ── OneClick typography: Inter (Google Fonts) ───────────────────────────── */

:root {
    --font-inter: "Inter", "Inter Fallback", sans-serif;
    --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif,
                 "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
                 "Noto Color Emoji";
    --font-size-base: 16px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

body {
    font-family: var(--font-sans) !important;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
}

input, select, textarea, button, .form-control, .form-select {
    font-family: var(--font-sans) !important;
    font-size: var(--font-size-base);
}

/* ── Utility classes (matching OneClickFrontend globals.css) ────────────── */

.quote-step-label {
    font-size: 0.875rem;
    font-weight: var(--font-weight-normal);
    color: #6c757d;
}

@media (min-width: 768px) {
    .quote-step-label {
        font-size: 1rem;
    }
}

.quote-step-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.8px;
    color: #000;
}

@media (min-width: 768px) {
    .quote-step-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .quote-step-title {
        font-size: 2.5rem;
    }
}

.quote-field-label {
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: #343a40;
}

.quote-location-pill-text {
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: #fff;
}

.quote-option-label {
    font-size: 16px;
    line-height: 28px;
    font-weight: var(--font-weight-normal);
    color: #343a40;
}

/* ── Navigation buttons (Semi Bold 600, 16px) ──────────────────────────── */

.oneclick-header .nav-link,
.oneclick-header .btn,
.oneclick-footer .btn {
    font-family: var(--font-sans) !important;
    font-weight: var(--font-weight-semibold);
    font-size: 16px;
}

/* ── Industry card typography ──────────────────────────────────────────── */

.industry-card-title {
    font-weight: var(--font-weight-semibold);
    font-size: 18px;
    color: #212529;
}

.industry-card-description {
    font-weight: var(--font-weight-normal);
    font-size: 15px;
    line-height: 22px;
    color: #68717a;
}

@media (max-width: 767.98px) {
    .industry-card-description {
        font-size: 14px;
        line-height: 20px;
    }
}
