/* ──────────────────────────────────────────────────────────
   techservice24x7.com — residential + home office + SMB
   Warm, approachable, conversion-focused. Distinct from
   WinstonIT (enterprise dark) — this is friendly modern.
   ────────────────────────────────────────────────────────── */

:root {
    --bg:           #ffffff;
    --bg-soft:      #f8fafc;
    --bg-tint:      #eff6ff;
    --bg-warm:      #fff7ed;
    --line:         #e2e8f0;
    --line-strong:  #cbd5e1;

    --ink:          #0f172a;
    --ink-soft:     #334155;
    --ink-muted:    #64748b;
    --ink-dim:      #94a3b8;

    --primary:      #2563eb;   /* friendly bright blue */
    --primary-deep: #1d4ed8;
    --primary-soft: #dbeafe;

    --accent:       #ff6b35;   /* warm orange — CTA buttons */
    --accent-deep:  #ea580c;
    --accent-soft:  #ffedd5;

    --success:      #10b981;
    --success-soft: #d1fae5;
    --warn:         #f59e0b;
    --warn-soft:    #fef3c7;
    --error:        #ef4444;

    --serif:        'Sora', system-ui, -apple-system, sans-serif;
    --sans:         'Inter', system-ui, -apple-system, sans-serif;
    --mono:         'JetBrains Mono', 'SF Mono', Consolas, monospace;

    --radius:       10px;
    --radius-lg:    16px;
    --radius-pill:  999px;

    --shadow-sm:    0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow:       0 4px 12px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-lg:    0 12px 32px rgba(15, 23, 42, 0.10), 0 4px 12px rgba(15, 23, 42, 0.06);

    --max:          1200px;
    --reading:      760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--primary-deep); }

h1, h2, h3, h4 {
    font-family: var(--serif);
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
    margin: 0 0 16px;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.5rem); }
h4 { font-size: 1.1rem; }

h1 .accent, h2 .accent { color: var(--primary); }

p { margin: 0 0 1.1em; }
p.lede {
    font-size: 1.3rem;
    line-height: 1.55;
    color: var(--ink-soft);
    font-weight: 400;
}

ul, ol { margin: 0 0 1.2em; padding-left: 22px; }
li { margin-bottom: 6px; }

hr.rule { border: 0; height: 1px; background: var(--line); margin: 56px auto; max-width: var(--reading); }

/* ─── EMERGENCY BAR (top, sticky, ALWAYS visible) ─── */
.emergency-bar {
    background: var(--ink);
    color: white;
    padding: 8px 24px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.02em;
}
.emergency-bar strong { color: white; font-weight: 600; }
.emergency-bar .pulse {
    display: inline-block; width: 8px; height: 8px;
    background: var(--success); border-radius: 50%;
    margin-right: 8px; vertical-align: middle;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    50%      { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}
.emergency-bar a {
    color: var(--accent-soft);
    text-decoration: none;
    font-weight: 700;
}
.emergency-bar a:hover { color: white; }

/* ─── NAV ─── */
.nav {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 24px;
}
.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    gap: 16px;
}
.nav-brand {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}
.nav-brand .pri { color: var(--primary); }
.nav-brand .ord { color: var(--accent); font-weight: 700; }
.nav-links {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--radius);
    white-space: nowrap;
    transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--primary-soft); color: var(--primary-deep); }
.nav-links a[aria-current="page"] { color: var(--primary); font-weight: 600; }
.nav-cta {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    flex-shrink: 0;
    transition: background .15s, transform .15s;
    box-shadow: var(--shadow-sm);
}
.nav-cta:hover { background: var(--accent-deep); color: white; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
    background: linear-gradient(135deg, var(--bg-tint) 0%, var(--bg) 60%, var(--bg-warm) 100%);
    padding: 80px 24px 100px;
    position: relative;
    overflow: hidden;
}
.hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--success-soft);
    color: #047857;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero-badge .dot {
    width: 8px; height: 8px; background: var(--success); border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
}
.hero h1 {
    margin: 0 0 20px;
    line-height: 1.05;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero .subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0 0 32px;
    max-width: 540px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero .trust-row {
    margin-top: 36px;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    color: var(--ink-muted);
    font-size: 0.92rem;
}
.hero .trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.hero .trust-row .check { color: var(--success); font-weight: 700; }

/* Hero visual side - call card */
.call-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-lg);
}
.call-card .eyebrow {
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}
.call-card h3 {
    margin: 0 0 8px;
    font-size: 1.35rem;
}
.call-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin: 0 0 22px;
}
.call-card .phone-row {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    margin-bottom: 18px;
}
.call-card .phone-row .label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-weight: 600;
}
.call-card .phone-row .number {
    display: block;
    font-family: var(--serif);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: -0.01em;
    margin: 4px 0;
}
.call-card .phone-row .number:hover { color: var(--accent-deep); }
.call-card .phone-row .avail {
    font-size: 0.78rem;
    color: var(--success);
    font-weight: 600;
}
.call-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.88rem;
}
.call-card ul li {
    padding: 6px 0;
    color: var(--ink-soft);
}
.call-card ul li::before { content: "✓ "; color: var(--success); font-weight: 700; margin-right: 4px; }

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    transition: transform .15s, background .15s, color .15s, box-shadow .15s;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}
.btn-primary { background: var(--accent); color: white; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--accent-deep); color: white; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: white; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-secondary:hover { background: var(--bg-soft); border-color: var(--primary); color: var(--primary); }
.btn-blue { background: var(--primary); color: white; }
.btn-blue:hover { background: var(--primary-deep); color: white; }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }

/* ─── SECTIONS ─── */
section { padding: 72px 24px; }
section.tight { padding: 48px 24px; }
section.alt { background: var(--bg-soft); }
section.tint { background: var(--bg-tint); }
.container { max-width: var(--max); margin: 0 auto; }
.reading { max-width: var(--reading); margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}
.section-head h2 em { font-style: normal; color: var(--primary); }
.section-head p { max-width: 600px; margin: 16px auto 0; color: var(--ink-soft); font-size: 1.08rem; }

/* ─── CARDS ─── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: border-color .15s, transform .15s, box-shadow .15s;
    display: flex;
    flex-direction: column;
}
.card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card .ic {
    width: 48px; height: 48px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 700;
    margin-bottom: 18px;
}
.card.warm .ic { background: var(--accent-soft); color: var(--accent-deep); }
.card.success .ic { background: var(--success-soft); color: #059669; }
.card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.card p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.55; margin: 0 0 14px; flex-grow: 1; }
.card .more {
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-top: auto;
}

/* ─── PRICING TABLE ─── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 36px;
}
.tier {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}
.tier.featured {
    border: 2px solid var(--primary);
    position: relative;
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.tier.featured .badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: white;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 5px 14px; border-radius: var(--radius-pill);
}
.tier .tier-name {
    font-family: var(--mono); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--primary); margin-bottom: 8px;
}
.tier .price {
    font-family: var(--serif); font-size: 2.4rem; font-weight: 800;
    color: var(--ink); margin: 8px 0 2px; letter-spacing: -0.02em;
}
.tier .price .per { font-size: 0.9rem; font-weight: 500; color: var(--ink-muted); }
.tier .price-sub { font-size: 0.88rem; color: var(--ink-muted); margin-bottom: 22px; }
.tier ul {
    list-style: none; padding: 0; margin: 0 0 24px; flex-grow: 1;
}
.tier ul li {
    padding: 8px 0 8px 26px; position: relative;
    font-size: 0.94rem; color: var(--ink-soft); line-height: 1.5;
    border-bottom: 1px solid var(--line);
}
.tier ul li:last-child { border-bottom: none; }
.tier ul li::before {
    content: "✓"; position: absolute; left: 0; top: 8px;
    color: var(--success); font-weight: 700;
}

/* ─── ISSUE GRID ─── */
.issue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
}
.issue {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px 18px;
    text-decoration: none;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color .15s, background .15s;
}
.issue:hover { border-color: var(--primary); background: var(--bg-tint); color: var(--ink); }
.issue .ic {
    width: 36px; height: 36px;
    background: var(--primary-soft); color: var(--primary);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.issue .text { font-size: 0.94rem; font-weight: 500; }

/* ─── LOCATION GRID ─── */
.loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    margin-top: 36px;
}
.loc-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .15s, box-shadow .15s, border-color .15s;
    display: flex; flex-direction: column;
}
.loc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.loc-card .header {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: white;
    padding: 26px 24px;
}
.loc-card .header .label {
    font-family: var(--mono); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    opacity: 0.85; margin-bottom: 4px;
}
.loc-card .header h3 { font-size: 1.5rem; margin: 0; color: white; }
.loc-card.honolulu .header { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.loc-card.chicago .header { background: linear-gradient(135deg, #475569, #1e293b); }
.loc-card.san-diego .header { background: linear-gradient(135deg, #f59e0b, #d97706); }
.loc-card .body { padding: 22px 24px; flex-grow: 1; }
.loc-card .body p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 12px; }
.loc-card .body .quirk {
    font-family: var(--mono); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--accent-deep); padding: 6px 10px;
    background: var(--accent-soft); border-radius: var(--radius);
    display: inline-block; margin-bottom: 8px;
}
.loc-card .footer {
    border-top: 1px solid var(--line);
    padding: 14px 24px;
    font-family: var(--mono); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--primary);
}

/* ─── STEPS ─── */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.step {
    text-align: center;
    padding: 0 12px;
}
.step .num {
    font-family: var(--serif); font-size: 3rem; font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1; margin-bottom: 16px;
}
.step h3 { margin: 0 0 10px; }
.step p { color: var(--ink-soft); font-size: 0.96rem; }

/* ─── TRUST STRIP ─── */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 32px;
    text-align: center;
}
.trust-strip .item .num {
    font-family: var(--serif); font-size: 2.4rem; font-weight: 800;
    color: var(--primary); line-height: 1; letter-spacing: -0.02em;
}
.trust-strip .item .lbl {
    font-size: 0.85rem; color: var(--ink-muted); margin-top: 6px;
    letter-spacing: 0.04em;
}

/* ─── FAQ ─── */
.faq details {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 24px;
    margin-bottom: 12px;
    cursor: pointer;
}
.faq details[open] { border-color: var(--primary); background: var(--bg-tint); }
.faq summary {
    font-family: var(--serif); font-weight: 700; font-size: 1.08rem;
    color: var(--ink); list-style: none; position: relative; padding-right: 32px;
}
.faq summary::after {
    content: "+"; position: absolute; right: 0; top: -2px;
    font-size: 1.6rem; font-weight: 300; color: var(--primary);
    transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 14px 0 0; color: var(--ink-soft); font-size: 0.96rem; line-height: 1.6; }

/* ─── CTA BLOCK ─── */
.cta-block {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: white;
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    text-align: center;
    margin: 40px 0;
}
.cta-block h2 { color: white; margin: 0 0 14px; }
.cta-block h2 em { font-style: normal; color: var(--accent-soft); }
.cta-block p { color: rgba(255, 255, 255, 0.88); font-size: 1.1rem; max-width: 560px; margin: 0 auto 28px; }
.cta-block .phone {
    display: inline-block;
    font-family: var(--serif); font-size: 2.6rem; font-weight: 800;
    color: white; text-decoration: none;
    margin: 0 0 8px; letter-spacing: -0.01em;
}
.cta-block .phone:hover { color: var(--accent-soft); }
.cta-block .avail { font-size: 0.88rem; color: rgba(255, 255, 255, 0.7); }

/* ─── VERDICT BOX ─── */
.verdict {
    background: var(--bg-tint);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin: 32px 0;
}
.verdict h4 {
    font-family: var(--mono); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--primary); margin: 0 0 8px;
}
.verdict p { margin: 0; font-size: 1.08rem; line-height: 1.55; color: var(--ink); }

/* ─── DIY HELP CALLOUT ─── */
.diy-callout {
    background: var(--bg-warm);
    border: 1px solid var(--accent-soft);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin: 24px 0;
}
.diy-callout h4 { font-family: var(--mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); margin: 0 0 8px; }
.diy-callout ol { margin: 0; padding-left: 22px; }
.diy-callout li { margin-bottom: 8px; font-size: 0.96rem; color: var(--ink); }

/* ─── FOOTER ─── */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 24px 40px;
    margin-top: 80px;
}
.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
}
.footer-brand {
    font-family: var(--serif); font-size: 1.6rem; font-weight: 800;
    color: white; margin: 0 0 12px;
}
.footer-brand .pri { color: #60a5fa; }
.footer-brand .ord { color: #fb923c; }
.site-footer h4 {
    font-family: var(--mono); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5); margin: 0 0 16px;
}
.site-footer p { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; margin: 0 0 8px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 6px; font-size: 0.92rem; }
.site-footer a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.site-footer a:hover { color: white; }
.site-footer .footer-cta {
    background: var(--accent);
    color: white;
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 8px;
}
.site-footer .footer-cta:hover { background: var(--accent-deep); color: white; }
.disc {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px; margin-top: 24px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.55;
}

/* ─── MOBILE STICKY CTA BAR ─── */
.mobile-cta {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--accent);
    color: white;
    padding: 14px 20px;
    text-align: center;
    z-index: 200;
    box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.15);
}
.mobile-cta a {
    color: white; text-decoration: none;
    font-family: var(--serif); font-size: 1.3rem; font-weight: 800;
}
.mobile-cta .label {
    display: block;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; opacity: 0.85; margin-bottom: 2px;
}

/* ─── LOCATION LIST ─── */
.loc-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 8px 24px;
    padding-left: 22px;
    margin: 18px 0 24px;
}
.loc-list li {
    font-size: 0.98rem;
    color: var(--ink);
    line-height: 1.7;
}

/* ─── CARD LINK WRAPPER (issue hub) ─── */
.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.card-link .card {
    height: 100%;
    cursor: pointer;
}
.card-link:hover .card {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .call-card { max-width: 480px; margin: 0 auto; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    section { padding: 48px 18px; }
    .hero { padding: 56px 18px 72px; }
    .nav { padding: 0 16px; }
    .nav-inner { flex-wrap: wrap; min-height: 0; padding: 10px 0; gap: 8px; }
    .nav-links { order: 3; flex-basis: 100%; padding: 6px 0; }
    .nav-links a { font-size: 0.84rem; padding: 6px 12px; }
    .nav-cta { font-size: 0.84rem; padding: 8px 16px; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .cta-block { padding: 40px 24px; }
    .cta-block .phone { font-size: 2rem; }
    .mobile-cta { display: block; }
    body { padding-bottom: 70px; }
}
