/* ═══════════════════════════════════════════
   A2Z PLATFORM — GLOBAL DESIGN SYSTEM
   Signature Pro — High Performance CSS
══════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
    --font-body: 'DM Sans', sans-serif;
    --font-display: 'DM Serif Display', serif;

    --c-ink:          #111110;
    --c-ink2:         #4B4B48;
    --c-ink3:         #888780;
    --c-bg:           #F6F4EF;
    --c-bg2:          #EEECEA;
    --c-surface:      #FFFFFF;
    --c-border:       #E2E0D8;

    --c-accent:       #185FA5;
    --c-accent-lite:  #E6F1FB;
    --c-accent-text:  #0C447C;
    --c-green:        #3B6D11;
    --c-green-lite:   #EAF3DE;
    --c-amber:        #EF9F27;

    --r-sm:  8px;
    --r-md:  12px;
    --r-lg:  16px;
    --r-xl:  22px;
    --r-2xl: 28px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--c-bg);
    color: var(--c-ink);
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ─── LAYOUT ─── */
.l-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 20px 120px;
}

.l-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}

@media (max-width: 768px) {
    .l-grid { grid-template-columns: 1fr; }
    .l-sidebar { order: -1; }
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--c-ink3);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--c-ink3); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb .sep { opacity: .4; }
.breadcrumb .cur { color: var(--c-ink); }

/* ─── HERO ─── */
.hero {
    background: var(--c-ink);
    border-radius: var(--r-2xl);
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}
.hero-img {
    position: absolute; inset: 0;
    object-fit: cover; width: 100%; height: 100%;
    opacity: .18; mix-blend-mode: luminosity;
}
.hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, transparent 30%, var(--c-ink) 85%);
}
.hero-body {
    position: relative;
    padding: 36px 36px 32px;
    display: flex; flex-direction: column; gap: 24px;
    min-height: 300px; justify-content: flex-end;
}
@media (max-width: 600px) {
    .hero-body { padding: 24px 20px; min-height: 240px; }
}
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.hbadge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 12px; border-radius: 40px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
}
.hbadge-verified { background: rgba(24,95,165,.25); color: #85B7EB; border: 0.5px solid rgba(24,95,165,.4); }
.hbadge-top     { background: rgba(59,109,17,.25);  color: #97C459;  border: 0.5px solid rgba(59,109,17,.4); }
.hero-name {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 44px);
    color: #fff; line-height: 1.05; letter-spacing: -0.02em;
}
.hero-rating { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.stars { display: flex; gap: 2px; align-items: center; }
.rating-label { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500; }
.hero-stats {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1px; background: rgba(255,255,255,.08);
    border-radius: 14px; overflow: hidden;
}
.hstat { background: rgba(255,255,255,.04); padding: 14px 16px; backdrop-filter: blur(4px); }
.hstat-label { font-size: 9px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); font-weight: 700; margin-bottom: 4px; }
.hstat-val   { font-size: 14px; font-weight: 600; color: #fff; }

/* ─── INFO CHIPS ─── */
.info-chips {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 10px; margin-bottom: 20px;
}
@media (max-width: 500px) { .info-chips { grid-template-columns: repeat(2,1fr); } }
.chip { background: var(--c-surface); border: 0.5px solid var(--c-border); border-radius: var(--r-lg); padding: 14px 12px; text-align: center; }
.chip-label { font-size: 9px; text-transform: uppercase; letter-spacing: .09em; color: var(--c-ink3); font-weight: 700; margin-bottom: 5px; }
.chip-val   { font-size: 13px; font-weight: 600; color: var(--c-ink); }
.chip-val.active { color: var(--c-green); }

/* ─── CARD ─── */
.card {
    background: var(--c-surface);
    border: 0.5px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 26px; margin-bottom: 18px;
}
.card-title {
    font-size: 10px; text-transform: uppercase; letter-spacing: .1em;
    color: var(--c-ink3); font-weight: 700; margin-bottom: 18px;
    display: flex; align-items: center; gap: 10px;
}
.card-title::before {
    content: ''; display: block; width: 3px; height: 13px;
    background: var(--c-accent); border-radius: 2px;
}
.about-body {
    font-size: 15px; color: var(--c-ink2); line-height: 1.8;
    padding-left: 16px; border-left: 2px solid var(--c-border); font-style: italic;
}

/* ─── SERVICES ─── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 8px; }
.s-chip {
    display: flex; align-items: center; gap: 9px;
    padding: 11px 14px; background: var(--c-bg);
    border: 0.5px solid var(--c-border); border-radius: var(--r-md);
    font-size: 12px; font-weight: 600; color: var(--c-ink2);
    text-decoration: none; transition: all .15s ease;
}
.s-chip:hover { border-color: var(--c-accent); color: var(--c-accent-text); background: var(--c-accent-lite); }
.s-chip i { font-size: 11px; color: var(--c-accent); opacity: .8; }

/* ─── MAP ─── */
.map-wrap { border-radius: var(--r-xl); overflow: hidden; height: 200px; border: 0.5px solid var(--c-border); margin-bottom: 16px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ─── HOURS ─── */
.hours-card { background: var(--c-ink); border-radius: var(--r-xl); padding: 22px 26px; margin-bottom: 18px; }
.hours-eyebrow { font-size: 9px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); font-weight: 700; margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 0.5px solid rgba(255,255,255,.07); }
.hours-row:last-child { border-bottom: none; }
.hours-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.4); font-weight: 600; }
.hours-val { font-size: 13px; font-weight: 600; color: #fff; }
.hours-val.open { color: #97C459; }

/* ─── FAQ ─── */
.faq-item { border: 0.5px solid var(--c-border); border-radius: var(--r-md); overflow: hidden; margin-bottom: 8px; }
.faq-btn {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 16px 18px; background: var(--c-bg); border: none; cursor: pointer;
    text-align: left; font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--c-ink); transition: background .15s;
}
.faq-btn:hover { background: var(--c-bg2); }
.faq-icon {
    flex-shrink: 0; width: 20px; height: 20px;
    background: var(--c-surface); border: 0.5px solid var(--c-border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; color: var(--c-ink3); transition: transform .2s, background .15s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.faq-answer { display: none; padding: 14px 18px 18px; font-size: 13px; color: var(--c-ink2); line-height: 1.75; border-top: 0.5px solid var(--c-border); background: var(--c-surface); }
.faq-item.open .faq-answer { display: block; }

/* ─── SIDEBAR: ACTION CARD ─── */
.action-card { background: var(--c-ink); border-radius: var(--r-2xl); padding: 28px 24px; margin-bottom: 18px; text-align: center; }
.action-eyebrow { font-size: 9px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.3); font-weight: 700; margin-bottom: 18px; }
.call-btn {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    padding: 16px; background: rgba(255,255,255,.06); border: 0.5px solid rgba(255,255,255,.12);
    border-radius: var(--r-lg); color: #fff; font-family: var(--font-display);
    font-size: 19px; font-style: italic; text-decoration: none; margin-bottom: 12px; transition: background .15s;
}
.call-btn:hover { background: rgba(255,255,255,.12); }
.call-btn i { font-size: 16px; opacity: .6; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cta-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 12px; border-radius: var(--r-md); font-size: 12px; font-weight: 700; text-decoration: none; transition: all .15s; border: 0.5px solid transparent; }
.cta-wa   { background: rgba(37,211,102,.15); color: #97C459; border-color: rgba(37,211,102,.25); }
.cta-wa:hover { background: rgba(37,211,102,.28); }
.cta-mail { background: rgba(24,95,165,.2);   color: #85B7EB; border-color: rgba(24,95,165,.3); }
.cta-mail:hover { background: rgba(24,95,165,.35); }

/* ─── FORM ─── */
.form-card { background: var(--c-surface); border: 0.5px solid var(--c-border); border-radius: var(--r-xl); padding: 24px; margin-bottom: 18px; }
.form-field { margin-bottom: 10px; }
.form-field input, .form-field textarea {
    width: 100%; padding: 12px 14px;
    background: var(--c-bg); border: 0.5px solid var(--c-border); border-radius: var(--r-md);
    font-family: var(--font-body); font-size: 13px; color: var(--c-ink);
    outline: none; transition: border-color .15s; resize: none; -webkit-appearance: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--c-ink3); }
.form-field input:focus, .form-field textarea:focus { border-color: var(--c-accent); background: var(--c-surface); }
.form-field textarea { min-height: 84px; line-height: 1.6; }
.btn-submit { width: 100%; padding: 14px; background: var(--c-ink); border: none; border-radius: var(--r-md); color: #fff; font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: background .15s, transform .1s; }
.btn-submit:hover { background: #2c2c2a; }
.btn-submit:active { transform: scale(.98); }
.btn-submit.accent { background: var(--c-accent); }
.btn-submit.accent:hover { background: var(--c-accent-text); }

/* ─── STAR PICKER ─── */
.star-picker { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.star-picker input { display: none; }
.star-picker label { font-size: 26px; color: var(--c-border); cursor: pointer; transition: color .1s; line-height: 1; }
.star-picker label:hover,
.star-picker label:hover ~ label,
.star-picker input:checked ~ label { color: var(--c-amber); }

/* ─── REVIEW CARD ─── */
.review-card { background: var(--c-surface); border: 0.5px solid var(--c-border); border-radius: var(--r-lg); padding: 16px; margin-bottom: 10px; }
.rev-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.rev-name { font-size: 13px; font-weight: 600; color: var(--c-ink); }
.rev-date { font-size: 11px; color: var(--c-ink3); margin-top: 2px; }
.rev-text { font-size: 13px; color: var(--c-ink2); line-height: 1.7; padding-left: 12px; border-left: 2px solid var(--c-bg2); font-style: italic; }

/* ─── ALERTS ─── */
.alert { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: var(--r-md); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.alert-success { background: var(--c-green-lite); border: 0.5px solid #C0DD97; color: var(--c-green); }
.alert-warn    { background: #FAEEDA; border: 0.5px solid #FAC775; color: var(--c-amber); }
.alert i { font-size: 13px; }

/* ─── MOBILE STICKY CTA ─── */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--c-surface); border-top: 0.5px solid var(--c-border); padding: 12px 16px; z-index: 999; padding-bottom: max(12px, env(safe-area-inset-bottom)); }
.mobile-cta-inner { display: flex; gap: 10px; max-width: 1080px; margin: 0 auto; }
.mc-call { flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--c-accent); color: #fff; border-radius: var(--r-md); padding: 14px; font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; text-decoration: none; }
.mc-wa { width: 52px; display: flex; align-items: center; justify-content: center; background: #25D366; color: #fff; border-radius: var(--r-md); font-size: 20px; text-decoration: none; }
@media (max-width: 768px) {
    .mobile-cta { display: block; }
    body { padding-bottom: 80px; }
}

/* ─── ACCESSIBILITY ─── */
.skip-link { position: absolute; top: -100px; left: 12px; background: var(--c-accent); color: #fff; padding: 8px 16px; border-radius: 0 0 var(--r-md) var(--r-md); font-size: 13px; font-weight: 700; z-index: 9999; transition: top .2s; }
.skip-link:focus { top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ─── PAGE HERO (Providers / Index / Service pages) ─── */
.page-hero { background: var(--c-ink); border-radius: var(--r-2xl); padding: 48px 36px; margin-bottom: 28px; }
.page-hero-eyebrow { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.35); margin-bottom: 12px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(28px,5vw,48px); color: #fff; line-height: 1.08; margin-bottom: 14px; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,.55); max-width: 560px; line-height: 1.7; }

/* ─── PROVIDER CARD (Directory listing cards) ─── */
.provider-card {
    background: var(--c-surface); border: 0.5px solid var(--c-border);
    border-radius: var(--r-xl); padding: 22px; margin-bottom: 14px;
    display: flex; gap: 18px; align-items: flex-start;
    transition: border-color .15s, box-shadow .15s; text-decoration: none; color: inherit;
}
.provider-card:hover { border-color: var(--c-accent); box-shadow: 0 4px 20px rgba(24,95,165,.08); }
.provider-card-body { flex: 1; min-width: 0; }
.provider-name { font-family: var(--font-display); font-size: 20px; color: var(--c-ink); margin-bottom: 4px; line-height: 1.2; }
.provider-meta { font-size: 12px; color: var(--c-ink3); margin-bottom: 10px; }
.provider-services { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.provider-tag { padding: 4px 10px; background: var(--c-bg); border: 0.5px solid var(--c-border); border-radius: 40px; font-size: 11px; font-weight: 600; color: var(--c-ink2); }

/* ─── UTILITIES ─── */
.text-display { font-family: var(--font-display); }
.text-serif { font-family: var(--font-display); font-style: italic; }
.text-accent { color: var(--c-accent); }
.bg-surface { background: var(--c-surface); }
.shadow-premium { box-shadow: 0 10px 40px rgba(0,0,0,0.04); }

/* ─── CARD PREMIUM ─── */
.card-premium {
    background: var(--c-surface);
    border: 0.5px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 32px;
    transition: all .3s ease;
}
.card-premium:hover {
    border-color: var(--c-accent);
    box-shadow: 0 20px 60px rgba(24,95,165,.08);
}

/* ─── SECTION HEADING ─── */
.section-header {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.section-header .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--c-border), transparent);
}
.section-title-premium {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    color: var(--c-ink);
    line-height: 1.1;
}

/* ─── FOOTER MEGA ─── */
.footer-title {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--c-ink);
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--c-accent);
    display: inline-block;
}
.footer-link {
    font-size: 12px;
    color: var(--c-ink3);
    text-decoration: none;
    transition: all .2s;
    display: block;
    padding: 2px 0;
}
.footer-link:hover {
    color: var(--c-accent);
    transform: translateX(4px);
}

/* ─── ARTICLE & TAILWIND COMPATIBILITY ─── */
/* This ensures existing SEO articles look perfect without Tailwind CDN */

.space-y-12 > * + * { margin-top: 48px; }
.space-y-8 > * + *  { margin-top: 32px; }
.space-y-6 > * + *  { margin-top: 24px; }
.space-y-4 > * + *  { margin-top: 16px; }

.text-5xl { font-size: clamp(32px, 5vw, 48px); font-weight: 900; line-height: 1.1; }
.text-4xl { font-size: clamp(28px, 4vw, 36px); font-weight: 900; }
.text-3xl { font-size: clamp(22px, 3vw, 30px); font-weight: 900; }
.text-2xl { font-size: 20px; font-weight: 800; }
.text-xl  { font-size: 18px; font-weight: 700; }
.text-lg  { font-size: 16px; }
.text-base { font-size: 14px; }
.text-sm  { font-size: 13px; }
.text-xs  { font-size: 11px; }

.font-black  { font-weight: 900; }
.font-bold   { font-weight: 700; }
.font-medium { font-weight: 500; }

.text-slate-900 { color: var(--c-ink); }
.text-slate-700 { color: var(--c-ink2); }
.text-slate-600 { color: var(--c-ink2); opacity: 0.9; }
.text-slate-500 { color: var(--c-ink3); }
.text-slate-400 { color: var(--c-ink3); opacity: 0.8; }
.text-primary   { color: var(--c-accent); }
.text-secondary { color: var(--c-green); }
.text-white     { color: #fff; }
.text-indigo-600  { color: #4f46e5; }
.text-emerald-600 { color: #059669; }
.text-amber-600   { color: #d97706; }

.mb-12 { margin-bottom: 48px; }
.mb-10 { margin-bottom: 40px; }
.mb-8  { margin-bottom: 32px; }
.mb-6  { margin-bottom: 24px; }
.mb-4  { margin-bottom: 16px; }
.mb-2  { margin-bottom: 8px; }

.p-12 { padding: 48px; }
.p-10 { padding: 40px; }
.p-8  { padding: 32px; }
.p-6  { padding: 24px; }
.p-5  { padding: 20px; }
.p-4  { padding: 16px; }

.rounded-3xl { border-radius: 24px; }
.rounded-2xl { border-radius: 18px; }
.rounded-xl  { border-radius: 14px; }
.rounded-\[40px\] { border-radius: 40px; }

.bg-slate-50    { background: var(--c-bg); }
.bg-slate-900   { background: var(--c-ink); }
.bg-white       { background: #fff; }
.bg-primary     { background: var(--c-accent); }
.bg-secondary   { background: var(--c-green); }
.bg-indigo-50   { background: #eef2ff; }
.bg-emerald-50  { background: #ecfdf5; }
.bg-amber-50    { background: #fffbeb; }
.bg-amber-500   { background: #f59e0b; }
.bg-orange-500  { background: #f97316; }
.bg-yellow-500  { background: #eab308; }
.bg-white\/20   { background: rgba(255,255,255,0.2); }

.border { border: 0.5px solid var(--c-border); }
.border-slate-100   { border-color: var(--c-bg2); }
.border-slate-200   { border-color: var(--c-border); }
.border-indigo-100  { border-color: #e0e7ff; }
.border-emerald-100 { border-color: #d1fae5; }
.border-amber-100   { border-color: #fef3c7; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:p-10 { padding: 40px; }
    .md\:p-12 { padding: 48px; }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}

.gap-12 { gap: 48px; }
.gap-8  { gap: 32px; }
.gap-6  { gap: 24px; }
.gap-4  { gap: 16px; }

.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.z-10 { z-index: 10; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }

.flex { display: flex; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-shrink-0 { flex-shrink: 0; }
.gap-6 { gap: 24px; }
.gap-3 { gap: 12px; }
.gap-2 { gap: 8px; }

.leading-relaxed { line-height: 1.8; }
.tracking-tight { letter-spacing: -0.02em; }

/* Interlinking Cards specifics */
.group.block { display: block; text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.group:hover { transform: translateY(-4px); }
.hover\:border-primary\/30:hover { border-color: rgba(24, 95, 165, 0.3); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-primary\/5 { box-shadow: 0 10px 40px rgba(24, 95, 165, 0.05); }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
.duration-300 { transition-duration: 300ms; }

/* Custom gradients for articles */
.bg-gradient-to-br { background: linear-gradient(135deg, var(--c-accent-lite), #fff); }

/* Article specific tags */
dt { margin-top: 16px; font-weight: 900; color: var(--c-ink); }
dd { margin-bottom: 12px; color: var(--c-ink2); line-height: 1.6; }
img { max-width: 100%; height: auto; border-radius: var(--r-md); }

/* ─── MOBILE FIRST & RESPONSIVE REFINEMENTS ─── */
@media (max-width: 768px) {
    :root {
        --r-xl: 18px;
        --r-2xl: 22px;
    }

    body { font-size: 13px; }

    .l-page { padding: 16px 16px 100px; }
    
    /* Typography Scaling */
    h1 { font-size: 32px !important; line-height: 1.1 !important; }
    h2 { font-size: 24px !important; }
    .page-hero h1 { font-size: 32px; line-height: 1.1; }
    .page-hero p { font-size: 14px; }
    .section-title-premium { font-size: 24px; }
    
    /* Grid Resets */
    .info-chips { grid-template-columns: 1fr !important; gap: 10px !important; }
    .services-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
    .providers-grid { grid-template-columns: 1fr !important; }
    
    /* Component Adjustments */
    .card { padding: 20px; }
    .card-premium { padding: 28px 20px !important; }
    .hero-body { padding: 32px 20px; min-height: 240px; }
    .provider-card { padding: 20px !important; gap: 14px; }
    .provider-name { font-size: 18px; }
    .btn-submit { padding: 16px !important; font-size: 13px !important; }
    
    /* Section Spacing */
    section { margin-bottom: 40px !important; }
    .section-header { margin-bottom: 24px; flex-direction: column; align-items: flex-start; gap: 10px; }
    .section-header .line { width: 100%; height: 1px; }

    /* Footer Mobile Refinement */
    .footer-title { font-size: 14px; margin-bottom: 16px; width: 100%; }
    .footer-link { font-size: 13px; padding: 8px 0; }
    .footer-bottom { flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 20px !important; }
    .footer-bottom-links { justify-content: center !important; }

    /* Utility Helpers */
    .mob-stack { display: flex !important; flex-direction: column !important; gap: 12px !important; }
    .mob-center { text-align: center !important; justify-content: center !important; }
    .mob-hide { display: none !important; }
    
    .hero-stats { grid-template-columns: 1fr !important; gap: 16px !important; padding: 24px !important; background: rgba(255,255,255,0.05); border-radius: 20px; }
    .hstat { padding: 0 !important; background: transparent !important; }
    .hstat-val { font-size: 18px !important; }
}

@media (max-width: 600px) {
    .info-chips { grid-template-columns: 1fr !important; }
    .hero-stats { grid-template-columns: 1fr !important; }
    .cta-grid { grid-template-columns: 1fr !important; }
}

/* ─── UTILITIES (Tailwind-like) ─── */
/* ─── UTILITIES (Tailwind-like) ─── */
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.hidden { display: none !important; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.z-\[2000\] { z-index: 2000 !important; }
.p-4 { padding: 16px; }

/* Dashboard Workspace Fixes */
.dash-layout { display: flex; min-height: 100vh; position: relative; }
.dash-sidebar { 
    width: 280px; background: var(--c-surface); border-right: 0.5px solid var(--c-border);
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 1000;
    padding: 32px 24px; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.dash-main { flex: 1; margin-left: 280px; padding: 48px; background: var(--c-bg); min-width: 0; }

@media (max-width: 1024px) {
    .dash-sidebar { transform: translateX(-100%); width: 300px; box-shadow: 20px 0 60px rgba(0,0,0,0.1); }
    .dash-sidebar.active { transform: translateX(0); }
    .dash-main { margin-left: 0; padding: 24px 20px 80px; }
}

@media (max-width: 600px) {
    .dash-main { padding: 20px 16px 100px; }
}

.dash-nav { list-style: none; display: flex; flex-direction: column; gap: 6px; padding: 0; }
.dash-nav-link {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; border-radius: var(--r-md);
    font-size: 13px; font-weight: 600; color: var(--c-ink2);
    text-decoration: none; transition: all 0.2s;
}
.dash-nav-link:hover { background: var(--c-bg); color: var(--c-accent); }
.dash-nav-link.active { background: var(--c-accent-lite); color: var(--c-accent); }
.dash-nav-link i { font-size: 14px; opacity: 0.7; width: 20px; text-align: center; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
@media (max-width: 1200px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .stat-grid { grid-template-columns: 1fr; } }

.stat-card {
    background: var(--c-surface); border: 0.5px solid var(--c-border);
    border-radius: var(--r-xl); padding: 24px;
    display: flex; flex-direction: column; gap: 16px;
}
.stat-icon {
    width: 44px; height: 44px; border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.stat-info { display: flex; flex-direction: column; }
.stat-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-ink3); font-weight: 700; margin-bottom: 4px; }
.stat-val { font-size: 28px; font-weight: 800; color: var(--c-ink); line-height: 1; }

/* Dashboard Tables */
.dash-table-wrap { background: var(--c-surface); border: 0.5px solid var(--c-border); border-radius: var(--r-xl); overflow: hidden; }
.dash-table { width: 100%; border-collapse: collapse; text-align: left; }
.dash-table th { 
    background: var(--c-bg); padding: 16px 20px; 
    font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-ink3);
    border-bottom: 0.5px solid var(--c-border);
}
.dash-table td { padding: 20px; border-bottom: 0.5px solid var(--c-bg2); font-size: 13px; color: var(--c-ink2); }
.dash-table tr:last-child td { border-bottom: none; }
.dash-table tr:hover { background: rgba(0,0,0,0.01); }

/* Dashboard Utilities */
.badge-status {
    display: inline-flex; padding: 4px 10px; border-radius: 40px;
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-approved { background: var(--c-green-lite); color: var(--c-green); }
.badge-pending  { background: #FFF9E6; color: #D97706; }

.dash-btn-icon {
    width: 36px; height: 36px; border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    border: 0.5px solid var(--c-border); background: var(--c-surface);
    color: var(--c-ink3); text-decoration: none; transition: all 0.2s;
}
.dash-btn-icon:hover { border-color: var(--c-accent); color: var(--c-accent); background: var(--c-accent-lite); }

/* ─── RESPONSIVE UTILITIES ─── */
@media (max-width: 900px) {
    .mob-stack { grid-template-columns: 1fr !important; gap: 32px !important; }
    .mob-center { text-align: center !important; justify-content: center !important; }
    .mob-hide { display: none !important; }
}

/* ─── FOOTER RESPONSIVENESS ─── */
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
    .footer-bottom { flex-direction: column !important; text-align: center !important; }
    .footer-bottom-links { flex-direction: column !important; gap: 16px !important; }
}
