/* ============================================
   Rene's Auto — Official BAR-style styling
   ============================================ */

/* --- Tokens --- */
:root {
    --navy: #0d3b66;
    --navy-dark: #082744;
    --blue-mid: #1e5b8e;
    --blue-link: #2a6f97;
    --blue-hover: #164a75;
    --page-bg: #f5f9fc;
    --card-bg: #ffffff;
    --stripe-bg: #eef3f8;
    --border: #dbe4ee;
    --border-strong: #b9c7d5;
    --text: #1f2937;
    --text-muted: #64748b;
    --text-inverse: #ffffff;
    --gold: #d4a423;
    --gold-dim: #f7e9c4;
    --success: #1a7f4a;
    --danger: #b02a37;
    --shadow-sm: 0 1px 2px rgba(15, 42, 79, 0.06);
    --shadow-md: 0 4px 12px rgba(15, 42, 79, 0.08);
    --radius-sm: 3px;
    --radius: 4px;
    --max-w: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--page-bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Roboto Slab', Georgia, serif;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
}
h1 { font-size: 2.5rem; letter-spacing: -0.01em; }
h2 { font-size: 1.75rem; margin-bottom: 12px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
h4 { font-size: 1.05rem; margin-bottom: 6px; }
p { margin-bottom: 12px; }
a { color: var(--blue-link); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--blue-hover); }

/* --- Top utility bar (like BAR's CA.gov strip) --- */
.util-bar {
    background: var(--navy-dark);
    color: var(--text-inverse);
    font-size: 12px;
    padding: 6px 0;
}
.util-bar .util-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.util-bar a { color: var(--text-inverse); text-decoration: none; opacity: 0.85; }
.util-bar a:hover { opacity: 1; text-decoration: underline; }
.util-bar strong { font-weight: 600; }

/* --- Header --- */
.site-header {
    background: var(--card-bg);
    border-bottom: 3px solid var(--navy);
    padding: 18px 0;
}
.site-header .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.brand-seal {
    /* Now used as a wrapper for the logo image */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 62px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}
.brand-logo {
    height: 58px;
    width: auto;
    display: block;
}
.brand-name {
    /* Wordmark is inside the logo image now; keep this hidden but accessible for SEO */
    position: absolute;
    left: -9999px;
    width: 1px; height: 1px;
    overflow: hidden;
}
.brand-tag {
    font-family: 'Roboto Slab', serif;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
    font-weight: 600;
}
.credentials {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.license-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--navy);
    background: var(--gold-dim);
    border: 1px solid var(--gold);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-family: 'Roboto Mono', monospace;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Main navigation --- */
nav.main-nav {
    background: var(--navy);
    color: var(--text-inverse);
    border-top: 1px solid var(--navy-dark);
}
nav.main-nav .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
nav.main-nav a {
    color: var(--text-inverse);
    text-decoration: none;
    padding: 14px 18px;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 3px solid transparent;
    transition: background 0.15s, border-color 0.15s;
    letter-spacing: 0.01em;
}
nav.main-nav a:hover, nav.main-nav a.current {
    background: var(--navy-dark);
    border-bottom-color: var(--gold);
}
nav.main-nav a.book-cta {
    margin-left: auto;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    margin-top: 6px;
    margin-bottom: 6px;
    border-bottom: none;
}
nav.main-nav a.book-cta:hover {
    background: #f0be3f;
    border-bottom: none;
}

/* --- Hero --- */
.hero {
    background:
        linear-gradient(rgba(13, 59, 102, 0.88), rgba(8, 39, 68, 0.92)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='400'%3E%3Cg fill='%23fff' opacity='0.03'%3E%3Ccircle cx='100' cy='100' r='2'/%3E%3Ccircle cx='300' cy='150' r='2'/%3E%3Ccircle cx='500' cy='80' r='2'/%3E%3Ccircle cx='700' cy='200' r='2'/%3E%3Ccircle cx='200' cy='300' r='2'/%3E%3Ccircle cx='600' cy='350' r='2'/%3E%3C/g%3E%3C/svg%3E");
    color: var(--text-inverse);
    padding: 60px 0 70px;
    border-bottom: 4px solid var(--gold);
}
.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-block;
    background: rgba(212, 164, 35, 0.2);
    color: #f7e9c4;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    border: 1px solid rgba(212, 164, 35, 0.4);
}
.hero h1 {
    color: var(--text-inverse);
    font-size: 3rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.hero-sub {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 500px;
}
.hero-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.02em;
    transition: transform 0.1s, background 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #f0be3f; color: var(--navy); }
.btn-outline { background: transparent; color: var(--text-inverse); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--text-inverse); }
.btn-primary { background: var(--navy); color: var(--text-inverse); }
.btn-primary:hover { background: var(--navy-dark); color: var(--text-inverse); }
.btn-secondary { background: var(--card-bg); color: var(--navy); border-color: var(--border-strong); }
.btn-secondary:hover { background: var(--stripe-bg); color: var(--navy); }

.hero-info-card {
    background: var(--card-bg);
    color: var(--text);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    border-top: 4px solid var(--gold);
}
.hero-info-card h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 14px;
    border-bottom: 1px dashed var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row.today { background: var(--gold-dim); margin: 0 -10px; padding: 5px 10px; border-radius: var(--radius-sm); font-weight: 700; border: 1px solid var(--gold); }
.hours-day { font-weight: 500; }
.hours-time { color: var(--text-muted); font-family: 'Roboto Mono', monospace; font-size: 12px; }
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--success);
    color: var(--text-inverse);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 10px;
}
.status-pill.closed { background: var(--text-muted); }
.status-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-inverse);
}

/* --- Main content structure --- */
main { min-height: 400px; }
section { padding: 50px 0; }
section.stripe { background: var(--stripe-bg); }
.section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}
.eyebrow {
    display: inline-block;
    color: var(--gold);
    background: var(--navy);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 32px;
}

/* --- Quick links (BAR-style grid) --- */
.quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.qlink {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-top: 3px solid var(--navy);
    padding: 20px;
    text-decoration: none;
    color: var(--text);
    transition: box-shadow 0.15s, transform 0.15s, border-top-color 0.15s;
    border-radius: 0 0 var(--radius) var(--radius);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.qlink:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-top-color: var(--gold);
    color: var(--text);
}
.qlink-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--stripe-bg);
    color: var(--navy);
    border-radius: 50%;
    margin-bottom: 8px;
    font-size: 16px;
}
.qlink-title { font-weight: 700; color: var(--navy); font-size: 15px; }
.qlink-sub { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* --- Card grid --- */
.card-grid {
    display: grid;
    gap: 20px;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
}
.card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--text-muted); margin-bottom: 0; }

/* --- Service list (Services + Pricing pages) --- */
.svc-list { display: flex; flex-direction: column; gap: 12px; }
.svc-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-left: 4px solid var(--navy);
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.svc-item.smog { border-left-color: var(--gold); }
.svc-item.safety { border-left-color: var(--blue-mid); }
.svc-item h3 { margin-bottom: 4px; color: var(--navy); font-size: 1.1rem; }
.svc-item .svc-desc { font-size: 13px; color: var(--text-muted); }
.svc-item .svc-meta {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}
.svc-item .svc-meta span { display: inline-flex; align-items: center; gap: 4px; }
.svc-price {
    font-family: 'Roboto Slab', serif;
    font-size: 1.6rem;
    color: var(--navy);
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}
.svc-price small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* --- Pricing reference table (BAR-official style) --- */
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 1px solid var(--border);
    font-size: 14px;
}
.price-table thead {
    background: var(--navy);
    color: var(--text-inverse);
}
.price-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 12px;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.price-table th:last-child { border-right: none; text-align: right; }
.price-table tbody tr { border-bottom: 1px solid var(--border); }
.price-table tbody tr:nth-child(even) { background: var(--stripe-bg); }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table td {
    padding: 12px 16px;
    border-right: 1px solid var(--border);
    vertical-align: top;
}
.price-table td:last-child { border-right: none; text-align: right; font-family: 'Roboto Mono', monospace; font-weight: 700; }
.price-table td.category { font-weight: 700; color: var(--navy); background: var(--card-bg); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }
.price-table tr.category-row td { background: var(--stripe-bg); border-top: 2px solid var(--navy); }

/* Legal notice box (compliance) */
.notice {
    background: #fff8e1;
    border: 1px solid var(--gold);
    border-left: 4px solid var(--gold);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: #664d00;
}
.notice strong { color: var(--navy); }
.notice-icon {
    display: inline-block;
    color: var(--gold);
    font-weight: 900;
    margin-right: 6px;
}

/* --- Contact page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--navy);
    color: var(--text-inverse);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 700;
}
.contact-detail-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 3px;
}
.contact-detail-value {
    font-size: 16px;
    color: var(--navy);
    font-weight: 500;
}
.contact-detail-value a { color: var(--navy); font-weight: 700; }
.map-container {
    width: 100%;
    height: 380px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--stripe-bg);
    box-shadow: var(--shadow-sm);
}
.map-container iframe { border: 0; width: 100%; height: 100%; display: block; }

/* --- Trust panel (why choose us) --- */
.trust-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.trust-item {
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
}
.trust-item h4 { color: var(--navy); font-size: 1rem; margin-top: 12px; margin-bottom: 6px; }
.trust-item p { font-size: 13px; color: var(--text-muted); margin: 0; }
.trust-item .trust-num {
    font-family: 'Roboto Slab', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: block;
}

/* --- CTA banner --- */
.cta-banner {
    background: var(--navy);
    color: var(--text-inverse);
    padding: 40px 0;
    border-top: 4px solid var(--gold);
    border-bottom: 4px solid var(--gold);
}
.cta-banner .section-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.cta-banner h2 { color: var(--text-inverse); margin-bottom: 4px; font-size: 1.8rem; }
.cta-banner p { margin: 0; opacity: 0.9; font-size: 15px; }

/* --- Footer --- */
footer.site-footer {
    background: var(--navy-dark);
    color: var(--text-inverse);
    padding: 40px 0 20px;
    font-size: 14px;
}
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.site-footer h4 {
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.site-footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
.site-footer a:hover { color: var(--text-inverse); text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { padding: 4px 0; }
.footer-brand-name { font-family: 'Roboto Slab', serif; font-size: 1.3rem; color: var(--text-inverse); margin-bottom: 8px; font-weight: 700; }
.footer-brand-tag { font-size: 13px; opacity: 0.75; margin-bottom: 12px; }
.footer-license { font-family: 'Roboto Mono', monospace; font-size: 11px; opacity: 0.7; padding: 4px 8px; background: rgba(255,255,255,0.05); border-radius: var(--radius-sm); display: inline-block; }
.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.7;
    flex-wrap: wrap;
    gap: 12px;
}

/* --- Compliance strip at top of Pricing page (legal notice for smog stations) --- */
.compliance-strip {
    background: var(--gold-dim);
    border-bottom: 2px solid var(--gold);
    padding: 10px 0;
    font-size: 12px;
    color: #664d00;
    text-align: center;
}
.compliance-strip strong { color: var(--navy); }

/* --- Responsive --- */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .quick-links { grid-template-columns: repeat(2, 1fr); }
    .card-grid.cols-3, .card-grid.cols-2 { grid-template-columns: 1fr; }
    .trust-panel { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    nav.main-nav .nav-inner { justify-content: space-between; }
    nav.main-nav a.book-cta { margin-left: 0; }
    .hero h1 { font-size: 2.2rem; }
    h1 { font-size: 2rem; }
    section { padding: 40px 0; }
}
@media (max-width: 600px) {
    .util-bar { font-size: 11px; }
    .util-bar .util-inner { flex-direction: column; gap: 4px; text-align: center; }
    .site-header .header-inner { flex-direction: column; text-align: center; gap: 14px; }
    .brand { flex-direction: column; text-align: center; gap: 8px; }
    .brand-seal { height: 52px; }
    .brand-logo { height: 48px; }
    nav.main-nav .nav-inner { gap: 0; }
    nav.main-nav a { padding: 12px 14px; font-size: 13px; }
    .quick-links { grid-template-columns: 1fr; }
    .trust-panel { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .svc-item { grid-template-columns: 1fr; gap: 12px; text-align: left; }
    .svc-price { text-align: left; }
    .price-table { font-size: 12px; }
    .price-table th, .price-table td { padding: 8px 10px; }
    .cta-banner .section-inner { flex-direction: column; text-align: center; }
    .hero { padding: 40px 0 50px; }
    .hero h1 { font-size: 1.8rem; }
}

/* --- FAQ page --- */
.faq-jumpnav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.faq-jumpnav a {
    background: var(--stripe-bg);
    color: var(--navy);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: background 0.15s;
}
.faq-jumpnav a:hover {
    background: var(--navy);
    color: var(--text-inverse);
    border-color: var(--navy);
}
.faq-section {
    margin-bottom: 40px;
}
.faq-section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--navy);
    margin-bottom: 20px;
}
.faq-section-heading h2 {
    margin: 0;
    font-size: 1.6rem;
}
.faq-count {
    background: var(--navy);
    color: var(--text-inverse);
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    padding: 3px 9px;
    border-radius: 20px;
    font-weight: 600;
}
details.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-left: 4px solid var(--blue-mid);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-left-color 0.15s;
}
details.faq-item[open] {
    border-left-color: var(--gold);
    box-shadow: var(--shadow-sm);
}
details.faq-item summary {
    padding: 16px 20px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: 'Roboto Slab', serif;
    font-size: 15px;
    line-height: 1.35;
    user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
    content: '+';
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--navy);
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: var(--stripe-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 0.2s, background 0.15s;
}
details.faq-item[open] summary::after {
    content: '\2013';
    background: var(--gold);
    color: var(--navy);
    transform: rotate(180deg);
}
details.faq-item summary:hover {
    background: var(--stripe-bg);
}
.faq-answer {
    padding: 0 20px 18px 20px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.65;
    border-top: 1px dashed var(--border);
    padding-top: 14px;
    margin-top: 4px;
    animation: faqSlide 0.2s ease-out;
}
.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul, .faq-answer ol {
    margin: 8px 0 10px 20px;
}
.faq-answer li { margin-bottom: 4px; }
.faq-answer strong { color: var(--navy); }
@keyframes faqSlide {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    details.faq-item summary { font-size: 14px; padding: 14px 16px; }
    .faq-answer { padding: 14px 16px 16px 16px; font-size: 13px; }
    .faq-jumpnav { padding: 12px; gap: 6px; }
    .faq-jumpnav a { padding: 6px 10px; font-size: 12px; }
}

/* STAR Certified badge — visually distinct from license badge */
.star-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--gold);
    background: var(--navy);
    border: 1px solid var(--gold);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.star-badge .star-icon {
    color: var(--gold);
    font-size: 13px;
    line-height: 1;
}
@media (max-width: 600px) {
    .credentials { justify-content: center; }
}

/* ============ BRAKES PAGE ============ */

/* Hero */
.brake-hero {
    background: linear-gradient(135deg, var(--navy-deep, #08243d) 0%, var(--navy) 100%);
    color: white;
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}
.brake-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(212,164,35,0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(30,111,235,0.10) 0%, transparent 55%);
    pointer-events: none;
}
.brake-hero .section-inner { position: relative; z-index: 1; }
.brake-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}
.brake-hero-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 12px;
    border: 1px solid rgba(212,164,35,0.4);
    border-radius: 4px;
    margin-bottom: 18px;
}
.brake-hero h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 68px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: white;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.brake-hero h1 .highlight { color: var(--gold); display: block; }
.brake-hero .tagline {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    margin-bottom: 26px;
    max-width: 500px;
    line-height: 1.5;
}

/* Free inspection callout — the big hero offer */
.free-inspect-tile {
    background: white;
    color: var(--navy);
    padding: 24px 26px;
    border-radius: var(--radius);
    border: 2px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    text-align: center;
}
.free-inspect-tile .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    background: var(--gold);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}
.free-inspect-tile .free-word {
    font-family: 'Roboto Slab', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
}
.free-inspect-tile .free-sub {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.free-inspect-tile .free-terms {
    font-size: 13px;
    color: var(--text-muted);
    font-family: 'Roboto Mono', monospace;
    letter-spacing: 0.05em;
}
.free-inspect-tile .btn-book {
    display: inline-block;
    background: var(--navy);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    margin-top: 14px;
    transition: background 0.15s;
}
.free-inspect-tile .btn-book:hover { background: var(--navy-deep, #08243d); }

/* Warning signs section */
.warning-signs {
    padding: 60px 0;
    background: var(--stripe-bg);
}
.warning-signs h2 {
    text-align: center;
    color: var(--navy);
    font-size: 2rem;
    margin-bottom: 40px;
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
}
.warning-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.warning-tile {
    background: white;
    padding: 26px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.15s, box-shadow 0.15s;
}
.warning-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(13,59,102,0.10);
}
.warning-tile .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    background: rgba(13,59,102,0.08);
    border: 2px solid var(--navy);
    border-radius: 50%;
    color: var(--navy);
    margin-bottom: 14px;
}
.warning-tile .icon-circle svg { width: 32px; height: 32px; }
.warning-tile h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

/* Services + pricing grid */
.brake-info-grid {
    padding: 70px 0;
    background: white;
}
.brake-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}
.brake-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
}
.brake-card h3 {
    font-family: 'Roboto Slab', serif;
    color: var(--navy);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    border-bottom: 2px solid var(--navy);
    padding-bottom: 10px;
}
.brake-card h3 .sub { font-size: 13px; color: var(--text-muted); font-weight: 400; font-family: 'Inter', sans-serif; }
.brake-card-services {
    list-style: none;
    padding: 0; margin: 16px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.brake-card-services li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.4;
}
.brake-card-services li::before {
    content: '✓';
    color: var(--navy);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    flex-shrink: 0;
}
.brake-price-block { text-align: center; padding: 18px 0 12px; border-top: 1px dashed var(--border); margin-top: auto; }
.brake-price-block .price-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-bottom: 4px;
}
.brake-price-block .price-title {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.2;
}
.brake-price-block .price-amount {
    font-family: 'Roboto Mono', monospace;
    font-size: 40px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
}
.brake-price-block .price-fine {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.35;
}

/* Rotor options inside card */
.rotor-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 14px 0;
}
.rotor-opt {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--stripe-bg);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--navy);
}
.rotor-opt-icon {
    flex-shrink: 0;
    width: 34px; height: 34px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.rotor-opt-icon svg { width: 18px; height: 18px; }
.rotor-opt-body { flex: 1; min-width: 0; }
.rotor-opt-body h5 {
    font-size: 13px;
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 3px;
}
.rotor-opt-body p {
    font-size: 12px;
    color: var(--text);
    line-height: 1.4;
    margin: 0;
}

/* Pads-vs-rotors info box */
.info-box {
    background: rgba(13,59,102,0.04);
    border: 1px solid rgba(13,59,102,0.15);
    border-left: 4px solid var(--navy);
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.5;
}
.info-box h4 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.info-box h4::before {
    content: 'ⓘ';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    font-style: normal;
}
.info-box p { margin: 6px 0; }
.info-box .highlight { color: var(--navy); font-weight: 700; }

/* Coupon */
.brake-coupon-section {
    background: var(--navy);
    padding: 60px 0;
}
.coupon-tile {
    background: white;
    border: 3px dashed var(--gold);
    border-radius: var(--radius);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.coupon-tile::before {
    content: '✂';
    position: absolute;
    top: -14px;
    left: 30px;
    background: white;
    padding: 0 8px;
    font-size: 20px;
    color: var(--gold);
    transform: rotate(-90deg);
}
.coupon-amount {
    font-family: 'Roboto Slab', serif;
    font-size: 68px;
    font-weight: 900;
    color: var(--navy);
    line-height: 0.9;
    letter-spacing: -0.03em;
}
.coupon-amount .off {
    display: block;
    font-size: 24px;
    color: var(--gold);
    margin-top: 4px;
}
.coupon-details {
    flex: 1;
    color: var(--navy);
}
.coupon-details h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.15;
    color: var(--navy);
}
.coupon-details p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}
.coupon-terms {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 8px;
    font-family: 'Roboto Mono', monospace;
}

/* Trust strip */
.brake-trust-strip {
    padding: 40px 0;
    background: var(--stripe-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.trust-strip-item {
    text-align: center;
    padding: 0 12px;
}
.trust-strip-item .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    margin-bottom: 10px;
}
.trust-strip-item .icon svg { width: 24px; height: 24px; }
.trust-strip-item h5 {
    font-size: 13px;
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 900px) {
    .brake-hero-grid { grid-template-columns: 1fr; gap: 24px; }
    .brake-hero h1 { font-size: 52px; }
    .warning-grid { grid-template-columns: repeat(2, 1fr); }
    .brake-cards { grid-template-columns: 1fr; }
    .coupon-tile { flex-direction: column; text-align: center; padding: 26px 22px; }
    .coupon-amount { font-size: 56px; }
    .trust-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 500px) {
    .brake-hero h1 { font-size: 40px; }
    .free-inspect-tile .free-word { font-size: 38px; }
    .warning-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .warning-tile { padding: 18px 12px; }
}
