/* ============================================================
   RecallCheck.net — Main Stylesheet
   Colors: Red #c0392b, White #fff, Black #1f1f1f
   Font: Inter | Prefix: rc-
   Pattern: UrbFact-style clean layout
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1f1f1f;
    background: #fff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
a { color: #c0392b; text-decoration: none; transition: color 0.2s; }
a:hover { color: #922b21; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { color: #1f1f1f; line-height: 1.3; font-weight: 700; }
h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }
p { margin-bottom: 1rem; }

/* ---------- Container ---------- */
.rc-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   HEADER — White background, UrbFact-style
   ============================================================ */
.rc-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}
.rc-header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 64px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.rc-header__logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1f1f1f;
    letter-spacing: -0.5px;
    flex-shrink: 0;
    text-decoration: none;
}
.rc-header__logo:hover { color: #1f1f1f; }
.rc-header__logo span { color: #c0392b; font-weight: 800; }

/* Navigation */
.rc-nav {
    display: flex;
    gap: 4px;
    flex: 1;
    justify-content: center;
}
.rc-nav__link {
    padding: 8px 14px;
    color: #1f1f1f;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 50px;
    transition: all 0.2s;
    text-decoration: none;
}
.rc-nav__link:hover { background: #f5f5f5; color: #c0392b; }
.rc-nav__link--active { color: #c0392b; background: #fef2f2; }

/* Hamburger */
.rc-header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.rc-header__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1f1f1f;
    border-radius: 2px;
    transition: all 0.3s;
}
.rc-header__hamburger--active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.rc-header__hamburger--active span:nth-child(2) { opacity: 0; }
.rc-header__hamburger--active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO — Background image with dark overlay
   ============================================================ */
.rc-hero {
    position: relative;
    color: #fff;
    min-height: 850px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #1f1f1f url('../img/hero/home.webp') center/cover no-repeat;
}
.rc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.70);
    z-index: 1;
}
.rc-hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.rc-hero__title {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.rc-hero__subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 32px;
}
.rc-hero__subtitle strong {
    color: #fff;
    font-weight: 700;
}
.rc-hero__search {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    display: flex;
}
.rc-hero__search-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    font-family: inherit;
    color: #1f1f1f;
    background: #fff;
    outline: none;
    border: 2px solid rgba(255,255,255,0.3);
    border-right: none;
}
.rc-hero__search-input::placeholder { color: #1f1f1f; opacity: 0.45; }
.rc-hero__search-btn {
    padding: 16px 28px;
    background: #c0392b;
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.rc-hero__search-btn:hover { background: #922b21; }
.rc-hero__links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 24px;
}
.rc-hero__links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
    transition: all 0.2s;
}
.rc-hero__links a:hover { color: #fff; border-bottom-color: #fff; }

/* ============================================================
   SECTIONS
   ============================================================ */
.rc-section { padding: 48px 0; }
.rc-section--alt { background: #fafafa; }
.rc-section__title {
    font-size: 1.75rem;
    margin-bottom: 24px;
    font-weight: 700;
}

/* ============================================================
   STATS ROW
   ============================================================ */
.rc-stats {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    flex-wrap: wrap;
    justify-content: center;
}
.rc-stats__item {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 20px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
}
.rc-stats__number {
    font-size: 2.25rem;
    font-weight: 800;
    color: #c0392b;
    line-height: 1.2;
    margin-bottom: 4px;
}
.rc-stats__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f1f1f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.rc-breadcrumbs { padding: 16px 0; font-size: 0.875rem; }
.rc-breadcrumbs ul { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.rc-breadcrumbs li { display: flex; align-items: center; gap: 4px; }
.rc-breadcrumbs li + li::before { content: "/"; color: #1f1f1f; opacity: 0.4; }
.rc-breadcrumbs a { color: #c0392b; font-weight: 500; }
.rc-breadcrumbs a:hover { text-decoration: underline; }
.rc-breadcrumbs span { color: #1f1f1f; }

/* ============================================================
   RECALL CARDS
   ============================================================ */
.rc-recall-list { display: flex; flex-direction: column; gap: 16px; }
.rc-recall {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    background: #fff;
    transition: border-color 0.2s;
}
.rc-recall:hover { border-color: #c0392b; }
.rc-recall__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}
.rc-recall__campaign {
    font-size: 0.8rem;
    font-weight: 700;
    color: #c0392b;
    letter-spacing: 0.3px;
}
.rc-recall__date {
    font-size: 0.8rem;
    color: #1f1f1f;
    font-weight: 500;
}
.rc-recall__component {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 8px;
    line-height: 1.4;
}
.rc-recall__component a { color: #c0392b; }
.rc-recall__component a:hover { text-decoration: underline; }
.rc-recall__summary {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #1f1f1f;
}
.rc-recall__affected {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #1f1f1f;
}

/* ============================================================
   COMPLAINT CARDS
   ============================================================ */
.rc-complaint {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    background: #fff;
    transition: border-color 0.2s;
}
.rc-complaint:hover { border-color: #c0392b; }
.rc-complaint__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}
.rc-complaint__component { font-size: 1.05rem; font-weight: 700; color: #1f1f1f; }
.rc-complaint__date { font-size: 0.8rem; color: #1f1f1f; font-weight: 500; }
.rc-complaint__text { font-size: 0.9rem; line-height: 1.7; color: #1f1f1f; }
.rc-complaint__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

/* ============================================================
   GENERIC CARDS
   ============================================================ */
.rc-card {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    background: #fff;
    transition: border-color 0.2s;
}
.rc-card:hover { border-color: #c0392b; }
.rc-card__title { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.rc-card__meta { font-size: 0.85rem; color: #1f1f1f; margin-bottom: 12px; display: flex; flex-wrap: wrap; gap: 16px; }
.rc-card__body { font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   MAKE GRID
   ============================================================ */
.rc-make-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.rc-make-grid__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    text-align: left;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: radial-gradient(ellipse at 70% 100%, rgba(192, 57, 43, 0.08) 0%, rgba(192, 57, 43, 0.03) 50%, #fff 80%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.rc-make-grid__item:hover {
    border-color: #c0392b;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.rc-make-grid__logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;
}
.rc-make-grid__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.rc-make-grid__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 4px;
}
.rc-make-grid__item:hover .rc-make-grid__name { color: #c0392b; }
.rc-make-grid__count {
    font-size: 0.85rem;
    color: #1f1f1f;
    font-weight: 500;
}

/* ============================================================
   TABLES
   ============================================================ */
.rc-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}
.rc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.rc-table th {
    text-align: left;
    font-weight: 700;
    color: #1f1f1f;
    padding: 12px 16px;
    border-bottom: 2px solid #1f1f1f;
    white-space: nowrap;
}
.rc-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    color: #1f1f1f;
    vertical-align: top;
}
.rc-table tr:last-child td { border-bottom: none; }
.rc-table a { color: #c0392b; font-weight: 500; }
.rc-table a:hover { text-decoration: underline; }

/* ============================================================
   BUTTONS
   ============================================================ */
.rc-btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    line-height: 1.4;
    text-decoration: none;
    font-family: inherit;
}
.rc-btn--primary { background: #c0392b; color: #fff; border-color: #c0392b; }
.rc-btn--primary:hover { background: #922b21; border-color: #922b21; color: #fff; }
.rc-btn--outline { background: transparent; color: #c0392b; border-color: #c0392b; }
.rc-btn--outline:hover { background: #c0392b; color: #fff; }
.rc-btn--sm { padding: 6px 16px; font-size: 0.8rem; }
.rc-btn--lg { padding: 14px 32px; font-size: 1rem; }

/* ============================================================
   BADGES
   ============================================================ */
.rc-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: transparent;
}
.rc-badge--crash { border: 2px solid #c0392b; color: #c0392b; }
.rc-badge--fire { border: 2px solid #c0392b; color: #c0392b; }
.rc-badge--injury { border: 2px solid #1f1f1f; color: #1f1f1f; }
.rc-badge--death { border: 2px solid #1f1f1f; color: #1f1f1f; }

/* ============================================================
   PAGINATION
   ============================================================ */
.rc-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 32px 0;
    flex-wrap: wrap;
}
.rc-pagination a,
.rc-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    color: #1f1f1f;
    transition: all 0.2s;
}
.rc-pagination a:hover { border-color: #c0392b; color: #c0392b; }
.rc-pagination .active { background: #c0392b; border-color: #c0392b; color: #fff; }
.rc-pagination .disabled { opacity: 0.35; pointer-events: none; }

/* ============================================================
   TABS
   ============================================================ */
.rc-tabs {
    display: flex;
    border-bottom: 2px solid #e5e7eb;
    gap: 0;
    margin-bottom: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.rc-tabs__tab {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f1f1f;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    text-decoration: none;
}
.rc-tabs__tab:hover { color: #c0392b; }
.rc-tabs__tab.active { color: #c0392b; border-bottom-color: #c0392b; }
.rc-tabs__panel { display: none; }
.rc-tabs__panel.active { display: block; }

/* ============================================================
   ALERTS
   ============================================================ */
.rc-alert {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #c0392b;
    border-radius: 16px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #c0392b;
    background: #fff;
}
.rc-alert--info { border-color: #2980b9; color: #2980b9; }
.rc-alert--success { border-color: #27ae60; color: #27ae60; }
.rc-alert a { font-weight: 700; text-decoration: underline; }

/* ============================================================
   SEARCH FORM (used on search page)
   ============================================================ */
.rc-search-form {
    display: flex;
    max-width: 600px;
    margin-bottom: 32px;
}
.rc-search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-right: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    font-family: inherit;
    color: #1f1f1f;
    outline: none;
}
.rc-search-input:focus { border-color: #c0392b; }
.rc-btn-primary {
    padding: 12px 24px;
    background: #c0392b;
    color: #fff;
    border: 2px solid #c0392b;
    border-radius: 0 50px 50px 0;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
}
.rc-btn-primary:hover { background: #922b21; border-color: #922b21; }

/* ============================================================
   FOOTER
   ============================================================ */
.rc-footer {
    background: #1f1f1f;
    color: #fff;
    padding: 48px 0 24px;
    margin-top: auto;
}
.rc-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.rc-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}
.rc-footer__col h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.rc-footer__col a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    padding: 4px 0;
    transition: color 0.2s;
}
.rc-footer__col a:hover { color: #fff; }
.rc-footer__col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    line-height: 1.7;
}
.rc-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================================
   UTILITY
   ============================================================ */
.rc-text-center { text-align: center; }
.rc-text-red { color: #c0392b; }
.rc-mt-0 { margin-top: 0; }
.rc-mt-1 { margin-top: 8px; }
.rc-mt-2 { margin-top: 16px; }
.rc-mt-3 { margin-top: 24px; }
.rc-mt-4 { margin-top: 32px; }
.rc-mb-0 { margin-bottom: 0; }
.rc-mb-1 { margin-bottom: 8px; }
.rc-mb-2 { margin-bottom: 16px; }
.rc-mb-3 { margin-bottom: 24px; }
.rc-mb-4 { margin-bottom: 32px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .rc-footer__grid { grid-template-columns: repeat(2, 1fr); }
    .rc-make-grid { grid-template-columns: repeat(2, 1fr); }
    .rc-hero__title { font-size: 2.25rem; }
    .rc-stats { gap: 16px; }
    .rc-stats__item { min-width: 140px; }
    .rc-nav__link { padding: 8px 10px; font-size: 0.8rem; }
}

@media (max-width: 768px) {
    .rc-header__hamburger { display: flex; }
    .rc-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 8px 20px 16px;
        gap: 0;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    .rc-nav--open { display: flex; }
    .rc-nav__link {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        border-radius: 0;
        font-size: 0.9rem;
        width: 100%;
    }
    .rc-nav__link:last-child { border-bottom: none; }
    .rc-make-grid { grid-template-columns: repeat(2, 1fr); }
    .rc-hero { min-height: 500px; }
    .rc-hero__title { font-size: 2rem; }
    .rc-hero__subtitle { font-size: 1rem; }
    .rc-hero__search { flex-direction: column; }
    .rc-hero__search-input { border-radius: 50px; margin-bottom: 8px; }
    .rc-hero__search-btn { border-radius: 50px; padding: 14px; }
    .rc-hero__links { flex-direction: column; gap: 12px; }
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    .rc-stats__number { font-size: 1.75rem; }
    .rc-stats { gap: 12px; }
    .rc-stats__item { min-width: 120px; }
    .rc-recall__header, .rc-complaint__header { flex-direction: column; gap: 4px; }
    .rc-table th, .rc-table td { padding: 10px 12px; }
    .rc-section { padding: 32px 0; }
}

@media (max-width: 600px) {
    .rc-footer__grid { grid-template-columns: 1fr; gap: 24px; }
    .rc-make-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .rc-make-grid__item { padding: 12px 10px; gap: 10px; }
    .rc-make-grid__name { font-size: 0.85rem; }
    .rc-make-grid__logo { width: 36px; height: 36px; }
    .rc-stats { flex-direction: column; gap: 12px; }
    .rc-stats__item { min-width: unset; width: 100%; }
    .rc-card, .rc-recall, .rc-complaint { padding: 18px 16px; }
    .rc-tabs__tab { padding: 10px 16px; font-size: 0.8rem; }
    .rc-pagination a, .rc-pagination span { min-width: 36px; height: 36px; font-size: 0.8rem; }
    .rc-btn { width: 100%; text-align: center; }
    .rc-container { padding: 0 16px; }
    .rc-header__inner { padding: 0 16px; }
    .rc-search-form { flex-direction: column; }
    .rc-search-input { border-right: 2px solid #e5e7eb; border-radius: 50px; margin-bottom: 8px; }
    .rc-btn-primary { border-radius: 50px; }
}

/* ============================================================
   SECTION SUBTITLE
   ============================================================ */
.rc-section__subtitle {
    font-size: 1rem;
    color: #1f1f1f;
    margin-top: -16px;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ============================================================
   QUICK TOOLS — 3 cards with mini-forms
   ============================================================ */
.rc-tools-section { }
.rc-tools {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.rc-tools__card {
    padding: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: radial-gradient(ellipse at 70% 100%, rgba(192, 57, 43, 0.08) 0%, rgba(192, 57, 43, 0.03) 50%, #fff 80%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.rc-tools__card:hover { border-color: #c0392b; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); }
.rc-tools__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 8px;
}
.rc-tools__desc {
    font-size: 0.9rem;
    color: #1f1f1f;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}
.rc-tools__form {
    display: flex;
    gap: 0;
    margin-top: auto;
}
.rc-tools__input {
    flex: 1;
    padding: 12px 14px;
    border: 2px solid #e5e7eb;
    border-right: none;
    border-radius: 50px 0 0 50px;
    font-size: 0.9rem;
    font-family: inherit;
    color: #1f1f1f;
    outline: none;
    background: #fff;
}
.rc-tools__input:focus { border-color: #c0392b; }
.rc-tools__input::placeholder { color: #1f1f1f; opacity: 0.4; }
.rc-tools__btn {
    padding: 12px 20px;
    background: #c0392b;
    color: #fff;
    border: 2px solid #c0392b;
    border-radius: 0 50px 50px 0;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.rc-tools__btn:hover { background: #922b21; border-color: #922b21; }

/* ============================================================
   NUMBERS BAR — clean stats without borders
   ============================================================ */
.rc-numbers {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    gap: 32px;
}
.rc-numbers__item {
    flex: 1;
    text-align: center;
}
.rc-numbers__value {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    color: #c0392b;
    line-height: 1.1;
    margin-bottom: 6px;
}
.rc-numbers__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f1f1f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   HOW IT WORKS — 3 numbered steps
   ============================================================ */
.rc-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.rc-steps__item {
    text-align: center;
    padding: 20px;
}
.rc-steps__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #c0392b;
    border: 3px solid #c0392b;
    border-radius: 50%;
    margin-bottom: 20px;
}
.rc-steps__heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 10px;
}
.rc-steps__text {
    font-size: 0.9rem;
    color: #1f1f1f;
    line-height: 1.7;
}

/* ============================================================
   FAQ — collapsible
   ============================================================ */
.rc-faq {
    max-width: 100%;
}
.rc-faq__item {
    border-bottom: 1px solid #e5e7eb;
}
.rc-faq__item:first-child {
    border-top: 1px solid #e5e7eb;
}
.rc-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1f1f1f;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    line-height: 1.4;
    transition: color 0.2s;
}
.rc-faq__question:hover { color: #c0392b; }
.rc-faq__toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #c0392b;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s;
}
.rc-faq__item--open .rc-faq__toggle {
    transform: rotate(45deg);
}
.rc-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.rc-faq__item--open .rc-faq__answer {
    max-height: 600px;
    padding-bottom: 24px;
}
.rc-faq__answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #1f1f1f;
}

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 900px) {
    .rc-tools { grid-template-columns: 1fr; gap: 16px; }
    .rc-steps { grid-template-columns: 1fr; gap: 24px; }
    .rc-numbers { flex-wrap: wrap; gap: 24px; }
    .rc-numbers__item { min-width: 40%; }
    .rc-numbers__value { font-size: 2.25rem; }
}

@media (max-width: 600px) {
    .rc-numbers { flex-direction: column; gap: 20px; }
    .rc-numbers__item { min-width: unset; }
    .rc-numbers__value { font-size: 2rem; }
    .rc-tools__card { padding: 24px 20px; }
    .rc-tools__form { flex-direction: column; gap: 8px; }
    .rc-tools__input { border-right: 2px solid #e5e7eb; border-radius: 50px; }
    .rc-tools__btn { border-radius: 50px; padding: 12px; }
    .rc-steps__item { padding: 10px; }
    .rc-faq__question { font-size: 0.95rem; padding: 16px 0; }
}


/* ============================================================
   VIN SUMMARY
   ============================================================ */
.rc-vin-summary {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px;
    border: 2px solid #c0392b;
    border-radius: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.rc-vin-summary__vehicle {
    flex: 1;
    min-width: 200px;
}
.rc-vin-summary__vehicle h2 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}
.rc-vin-summary__vehicle p {
    font-size: 0.95rem;
    color: #1f1f1f;
    margin-bottom: 0;
}
.rc-vin-summary__stats {
    display: flex;
    gap: 24px;
}
.rc-vin-summary__stat {
    text-align: center;
    min-width: 70px;
}
.rc-vin-summary__stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #c0392b;
    line-height: 1.2;
}
.rc-vin-summary__stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1f1f1f;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
@media (max-width: 768px) {
    .rc-vin-summary { flex-direction: column; align-items: flex-start; gap: 20px; }
    .rc-vin-summary__stats { flex-wrap: wrap; gap: 16px; }
}
