/* iService — iCorrect-inspired design system */

/* ─── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:       #0a0a0a;
    --dark:        #1a1a1a;
    --mid:         #444444;
    --muted:       #6b7280;
    --light:       #f5f5f7;
    --border:      #e5e7eb;
    --white:       #ffffff;
    --accent:      #0a0a0a;
    --accent-hover:#333333;
    --green:       #16a34a;
    --radius:      10px;
    --radius-lg:   16px;
    --container:   1200px;
    --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
    --shadow-md:   0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
    --transition:  0.2s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--mid);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
    border: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--black);
    color: var(--white);
}
.btn-primary:hover { background: var(--accent-hover); box-shadow: var(--shadow-md); }

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-white {
    background: var(--white);
    color: var(--black);
}
.btn-white:hover { background: var(--light); }

/* ─── Top Info Bar ─────────────────────────────────────────────── */
.topbar {
    background: var(--black);
    color: #d1d5db;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 0;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: #d1d5db; transition: color var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar i { margin-right: 5px; }
.topbar-badge {
    background: var(--green);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.4px;
}

/* ─── Main Header ──────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0;
    height: 60px;
}

/* Logo */
.logo-wrap { flex: 0 0 auto; text-decoration: none; }
.logo-wrap img { height: 40px; width: auto; }
.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -1px;
}
.logo-text span { color: #555; }

/* ─── Inline Device Nav ─────────────────────────────────────────── */
.device-nav-inline {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 8px;
}
.device-nav-inline::-webkit-scrollbar { display: none; }
.device-nav-inline .device-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 8px 13px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}
.device-nav-inline .device-link i {
    font-size: 14px;
    color: var(--dark);
    transition: color var(--transition);
}
.device-nav-inline .device-link:hover {
    background: var(--light);
    color: var(--black);
}
.device-nav-inline .device-link:hover i { color: var(--black); }
.device-nav-inline .device-link.active {
    background: var(--black);
    color: var(--white);
}
.device-nav-inline .device-link.active i { color: var(--white); }

/* ─── Header right actions ──────────────────────────────────────── */
.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }

/* ─── Search icon + dropdown ────────────────────────────────────── */
.header-search-wrap { position: relative; }

.search-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--dark);
    font-size: 15px;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.search-icon-btn:hover,
.search-icon-btn[aria-expanded="true"] {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.header-search-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 340px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    z-index: 10000;
}
.header-search-dropdown.search-open { display: block; }

.header-search-dropdown .search-form {
    display: flex;
    align-items: center;
    background: var(--light);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    overflow: hidden;
    transition: border-color var(--transition);
}
.header-search-dropdown .search-form:focus-within {
    border-color: var(--black);
}
.header-search-dropdown .search-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--dark);
    outline: none;
}
.header-search-dropdown .search-form input::placeholder { color: var(--muted); }
.header-search-dropdown .search-form button {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 10px 16px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 0 50px 50px 0;
    transition: background var(--transition);
}
.header-search-dropdown .search-form button:hover { background: var(--accent-hover); }

/* ─── Hero ─────────────────────────────────────────────────────── */
.hero {
    background: var(--light);
    padding: 72px 0 60px;
    overflow: hidden;
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}
.hero-eyebrow i { color: var(--green); }
.hero h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.05;
    color: var(--black);
    letter-spacing: -2px;
    margin-bottom: 20px;
}
.hero h1 span { color: var(--muted); font-weight: 400; }
.hero-desc {
    font-size: 16px;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero stats */
.hero-right { display: flex; flex-direction: column; gap: 16px; }
.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); }
.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -2px;
    line-height: 1;
}
.stat-label {
    font-size: 14px;
    color: var(--muted);
    margin-top: 4px;
}
.stat-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── Trust Badges ─────────────────────────────────────────────── */
.trust-bar {
    background: var(--black);
    padding: 20px 0;
}
.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d5db;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 28px;
    border-right: 1px solid #333;
}
.trust-item:last-child { border-right: none; }
.trust-item i { color: #9ca3af; font-size: 16px; }

/* ─── Section Base ─────────────────────────────────────────────── */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -1px;
    margin-bottom: 10px;
}
.section-header p {
    font-size: 16px;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto;
}
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

/* ─── Why Us — 2-col ───────────────────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.why-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    line-height: 1.1;
}
.why-text p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 28px;
}
.why-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-stat { text-align: center; }
.why-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -1px;
}
.why-stat-lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }
.why-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}
.why-badge i { color: var(--black); font-size: 18px; flex-shrink: 0; }

/* ─── Repair Cards ─────────────────────────────────────────────── */
.repair-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.repair-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
    cursor: pointer;
}
.repair-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.repair-card-icon {
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    font-size: 56px;
    color: var(--dark);
}
.repair-card-body { padding: 20px; }
.repair-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}
.repair-card-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.repair-card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    margin-top: 12px;
    transition: gap var(--transition);
}
.repair-card-link:hover { gap: 8px; }

/* ─── Services Delivery ────────────────────────────────────────── */
.services-bg { background: var(--light); }
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.service-delivery-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.service-delivery-card:hover { box-shadow: var(--shadow-md); }
.service-delivery-card .icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--dark);
}
.service-delivery-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}
.service-delivery-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─── Blog Cards ───────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); }
.blog-card-img {
    height: 180px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ccc;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--muted);
    margin-bottom: 8px;
}
.blog-card-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.4;
    margin-bottom: 8px;
}
.blog-card-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    margin-top: 12px;
    transition: gap var(--transition);
}
.blog-read-more:hover { gap: 8px; }

/* ─── Opening Hours + Quote ────────────────────────────────────── */
.info-band {
    background: var(--black);
    color: var(--white);
    padding: 48px 0;
}
.info-band-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hours-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}
.hours-list { display: flex; flex-direction: column; gap: 6px; }
.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid #222;
    color: #d1d5db;
}
.hours-row .day { font-weight: 600; color: var(--white); }
.hours-row .time { color: #9ca3af; }
.hours-row.closed .time { color: #ef4444; }
.quote-box { text-align: center; }
.quote-box h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 10px;
}
.quote-box p { font-size: 15px; color: #9ca3af; margin-bottom: 28px; }

/* ─── FAQ ──────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-item + .faq-item { margin-top: 8px; }
.faq-question {
    width: 100%;
    text-align: left;
    background: var(--white);
    border: none;
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background var(--transition);
}
.faq-question:hover { background: var(--light); }
.faq-question i {
    color: var(--muted);
    font-size: 13px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
.faq-item.open .faq-question { background: var(--light); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    display: none;
    padding: 0 24px 18px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    background: var(--light);
}
.faq-item.open .faq-answer { display: block; }

/* ─── Reviews strip ────────────────────────────────────────────── */
.reviews-bg { background: var(--light); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}
.review-stars { color: #f59e0b; font-size: 14px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; font-style: italic; }
.review-author { font-size: 13px; font-weight: 700; color: var(--dark); }

/* ─── Footer ───────────────────────────────────────────────────── */
.site-footer {
    background: var(--black);
    color: #9ca3af;
    padding: 56px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #222;
    margin-bottom: 24px;
}
.footer-brand .logo-text { color: var(--white); font-size: 22px; }
.footer-brand p { font-size: 14px; margin-top: 12px; line-height: 1.7; color: #9ca3af; }
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--white);
    margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
    font-size: 14px;
    color: #9ca3af;
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom a { color: #9ca3af; }
.footer-bottom a:hover { color: var(--white); }

/* ─── Mobile nav drawer — hidden by default on all screen sizes ── */
/* Only becomes visible via JS (.open class) on mobile (≤640px)    */
.mobile-nav         { display: none; }
.mobile-menu-toggle {
    display: none; /* shown via CSS at ≤640px */
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    font-size: 17px;
    cursor: pointer;
    color: var(--dark);
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition);
}
.mobile-menu-toggle:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

/* ─── Responsive ═══════════════════════════════════════════════════
   Rules only apply BELOW the stated width.
   Desktop (>1024px) inherits all base styles above — nothing overrides it.
═══════════════════════════════════════════════════════════════════ */

/* ── Tablet landscape: 641px – 1024px ──────────────────────────── */
@media (max-width: 1024px) {
    .repair-grid  { grid-template-columns: repeat(2, 1fr); }
    .footer-grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
    .device-nav-inline .device-link { font-size: 12px; padding: 7px 10px; gap: 4px; }
}

/* ── Tablet portrait: 641px – 900px ────────────────────────────── */
@media (max-width: 900px) {
    /* Device nav: icons only, no labels */
    .device-nav-inline .device-link { padding: 8px 9px; font-size: 0; gap: 0; }
    .device-nav-inline .device-link i { font-size: 17px; }

    /* Hero: stack left/right, but keep both visible */
    .hero         { padding: 48px 0 40px; }
    .hero-grid    { grid-template-columns: 1fr; gap: 36px; }
    .hero h1      { font-size: 44px; }
    /* Hero stats stay visible — just stack below the text */

    /* Grids collapse */
    .why-grid     { grid-template-columns: 1fr; gap: 36px; }
    .services-grid { grid-template-columns: 1fr; }
    .info-band-grid { grid-template-columns: 1fr; gap: 36px; }
    .reviews-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .blog-grid    { grid-template-columns: 1fr 1fr; gap: 20px; }
    .why-badges   { grid-template-columns: 1fr 1fr; }

    /* Trust bar scrolls horizontally */
    .trust-inner  { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 16px; scrollbar-width: none; }
    .trust-inner::-webkit-scrollbar { display: none; }
    .trust-item   { padding: 8px 16px; font-size: 12px; white-space: nowrap; flex-shrink: 0; }

    .section      { padding: 52px 0; }
    .section-header h2 { font-size: 30px; }
    .why-text h2  { font-size: 32px; }
    .header-search-dropdown { width: 280px; }
}

/* ── Mobile only: ≤640px ────────────────────────────────────────── */
@media (max-width: 640px) {

    /* Container padding */
    .container { padding: 0 16px; }

    /* Topbar: keep phone only */
    .topbar-right .topbar-extra,
    .topbar-right .topbar-badge,
    .topbar-left  .topbar-extra { display: none; }
    .topbar-inner { justify-content: center; }
    .topbar-left  { justify-content: center; }

    /* Header */
    .header-inner     { height: 54px; }
    .logo-wrap img    { height: 34px; }
    .logo-text        { font-size: 20px; }
    .device-nav-inline { display: none; }
    .btn-desktop-cta   { display: none !important; } /* hide "Book Repair" on mobile */
    .mobile-menu-toggle { display: flex !important; } /* show hamburger */

    /* Search dropdown full-width */
    .header-search-dropdown {
        position: fixed;
        top: 54px;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0 0 12px 12px;
        margin: 0;
    }

    /* ── Mobile nav drawer ── */
    .mobile-nav {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9998;
        background: rgba(0,0,0,.5);
    }
    .mobile-nav.open { display: block; }
    .mobile-nav-drawer {
        position: absolute;
        top: 0; left: 0;
        width: 280px; height: 100%;
        background: var(--white);
        overflow-y: auto;
        padding: 0 0 32px;
        box-shadow: 4px 0 24px rgba(0,0,0,.15);
        transform: translateX(-100%);
        transition: transform .28s ease;
    }
    .mobile-nav.open .mobile-nav-drawer { transform: translateX(0); }
    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid var(--border);
        position: sticky;
        top: 0;
        background: var(--white);
        z-index: 1;
    }
    .mobile-nav-header .logo-text { font-size: 20px; }
    .mobile-nav-close {
        width: 36px; height: 36px;
        background: var(--light); border: none;
        border-radius: 50%; font-size: 16px;
        cursor: pointer; display: flex;
        align-items: center; justify-content: center;
        color: var(--dark);
    }
    .mobile-nav-section { padding: 8px 12px 0; }
    .mobile-nav-label {
        font-size: 10px; font-weight: 700;
        text-transform: uppercase; letter-spacing: .8px;
        color: #9ca3af; padding: 10px 8px 4px;
    }
    .mobile-nav-link {
        display: flex; align-items: center; gap: 12px;
        padding: 11px 12px; border-radius: 10px;
        font-size: 15px; font-weight: 600;
        color: var(--dark); text-decoration: none;
        transition: background .15s;
    }
    .mobile-nav-link i { width: 20px; text-align: center; color: var(--muted); font-size: 14px; }
    .mobile-nav-link:hover, .mobile-nav-link.active { background: var(--light); color: var(--black); }
    .mobile-nav-link.active i { color: var(--black); }
    .mobile-nav-cta {
        margin: 16px 12px 0; display: block;
        padding: 13px; background: var(--black);
        color: var(--white); text-align: center;
        font-weight: 700; font-size: 15px;
        border-radius: 12px; text-decoration: none;
    }

    /* Hero */
    .hero         { padding: 36px 0 32px; }
    .hero-grid    { grid-template-columns: 1fr; gap: 28px; }
    .hero h1      { font-size: 32px; letter-spacing: -1px; }
    .hero-eyebrow { font-size: 11px; }
    .hero-desc    { font-size: 14px; margin-bottom: 24px; }
    .hero-ctas    { gap: 10px; }
    .hero-ctas .btn { padding: 11px 18px; font-size: 13px; }
    .stat-number  { font-size: 32px; }
    .stat-card    { padding: 18px 20px; }
    .stat-cards-row { grid-template-columns: 1fr 1fr; gap: 12px; }

    /* Repair cards */
    .repair-grid        { grid-template-columns: 1fr 1fr; gap: 14px; }
    .repair-card-icon   { height: 100px; font-size: 36px; }
    .repair-card-body   { padding: 14px; }
    .repair-card-body h3 { font-size: 14px; }
    .repair-card-body p { display: none; }

    /* Sections */
    .section            { padding: 40px 0; }
    .section-header     { margin-bottom: 28px; }
    .section-header h2  { font-size: 26px; letter-spacing: -.5px; }
    .section-header p   { font-size: 14px; }

    /* Why Us */
    .why-text h2        { font-size: 28px; }
    .why-stats          { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .why-stat-num       { font-size: 24px; }
    .why-badges         { grid-template-columns: 1fr; gap: 10px; }
    .why-badge          { padding: 12px 14px; font-size: 13px; }

    /* Blog */
    .blog-grid          { grid-template-columns: 1fr; gap: 16px; }
    .blog-card-img      { height: 160px; }

    /* Reviews */
    .reviews-grid       { grid-template-columns: 1fr; gap: 14px; }
    .review-card        { padding: 18px; }

    /* Services */
    .service-delivery-card { padding: 24px 20px; }

    /* Hours + Quote */
    .info-band          { padding: 36px 0; }
    .info-band-grid     { gap: 28px; }
    .quote-box h3       { font-size: 22px; }
    .quote-box .btn     { width: 100%; justify-content: center; }

    /* Trust bar */
    .trust-bar          { padding: 14px 0; }
    .trust-item         { padding: 6px 12px; font-size: 11px; }

    /* FAQ */
    .faq-question       { padding: 14px 16px; font-size: 14px; }
    .faq-answer         { padding: 0 16px 14px; font-size: 13px; }

    /* Footer */
    .footer-grid        { grid-template-columns: 1fr; gap: 24px; padding-bottom: 28px; }
    .footer-brand p     { font-size: 13px; }
    .site-footer        { padding: 36px 0 20px; }
}

/* ── Very small phones: ≤400px ─────────────────────────────────── */
@media (max-width: 400px) {
    .repair-grid  { grid-template-columns: 1fr; }
    .hero h1      { font-size: 28px; }
    .hero-ctas    { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
}

