:root {
    --dark: #0c2417;
    --dark-2: #123420;
    --primary: #1f6b3a;
    --primary-dark: #124024;
    --accent: #2f8f4e;
    --accent-light: #6fcf8f;
    --gold: #c9a24b;
    --bg-soft: #f4f8f5;
    --bg-soft-2: #eef6f0;
    --bg-card: #ffffff;
    --border: #e3ebe4;
    --text: #172119;
    --text-muted: #5b6b60;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(12, 36, 23, 0.06), 0 1px 2px rgba(12, 36, 23, 0.08);
    --shadow-md: 0 8px 24px rgba(12, 36, 23, 0.08);
    --shadow-lg: 0 20px 48px rgba(12, 36, 23, 0.14);
    --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; letter-spacing: -0.01em; }

a { color: var(--primary); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; display: block; }

.icon { width: 22px; height: 22px; }
.icon-lg { width: 64px; height: 64px; }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
    will-change: transform, opacity;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Header ---------- */
.site-header {
    border-bottom: 1px solid transparent;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--border); }
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
}
.brand-mark {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--primary-dark));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 22px; height: 22px; color: #fff; }
.brand-logo { width: 42px; height: auto; flex-shrink: 0; }
.footer-logo { width: 46px; height: auto; margin-bottom: 14px; }
.footer-credit { text-align: center; padding-top: 10px; }
.brand .tagline {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 2px;
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.main-nav a {
    position: relative;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 0;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--accent);
    transition: right .22s ease;
}
.main-nav a.active::after, .main-nav a:hover::after { right: 0; }
.main-nav a.active, .main-nav a:hover { color: var(--primary); }

.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--dark); flex-shrink: 0; }

@media (max-width: 780px) {
    .site-header .container { flex-wrap: nowrap; position: relative; }
    .brand { min-width: 0; }
    .brand > span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 58vw;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        max-height: calc(100vh - 100%);
        overflow-y: auto;
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 2px; padding: 10px 24px 18px; }
    .main-nav a { display: block; padding: 12px 4px; }
    .nav-toggle { display: block; margin-left: auto; }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(1100px 480px at 85% -10%, #1d5b34 0%, transparent 60%),
                linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 55%, #16452a 100%);
    color: var(--white);
    padding: 96px 0 88px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 20%, rgba(111,207,143,0.16) 0, transparent 40%),
        radial-gradient(circle at 92% 82%, rgba(201,162,75,0.14) 0, transparent 45%);
    pointer-events: none;
}
.hero-graphic {
    position: absolute;
    right: -6%;
    top: 50%;
    transform: translateY(-50%);
    width: 460px;
    height: 460px;
    opacity: 0.9;
    pointer-events: none;
}
.hero-graphic svg { width: 100%; height: 100%; }
@media (max-width: 980px) { .hero-graphic { display: none; } }

.hero .container { position: relative; z-index: 1; }
.hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #bfe8cd;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 30px;
    background: rgba(255,255,255,0.06);
}
.hero h1 {
    font-size: clamp(2rem, 4vw, 2.9rem);
    line-height: 1.18;
    margin: 20px 0 18px;
    max-width: 720px;
    font-weight: 800;
}
.hero p {
    max-width: 620px;
    color: #d3e8da;
    font-size: 1.12rem;
}
.hero .cta-row { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn .icon { width: 16px; height: 16px; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--primary)); color: var(--white); box-shadow: 0 10px 24px rgba(47,143,78,0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(47,143,78,0.36); color: #fff; }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; transform: translateY(-2px); }

/* Hero stats strip */
.hero-stats {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 22px;
    max-width: 720px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-stats .stat-num { font-size: 1.8rem; font-weight: 800; color: #fff; display: block; }
.hero-stats .stat-label { font-size: 0.82rem; color: #b9d8c3; margin-top: 4px; }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
section.alt { background: var(--bg-soft); position: relative; }
section.tight { padding: 40px 0 24px; }
section.tight + section { padding-top: 44px; }

@media (max-width: 640px) {
    .hero { padding: 56px 0 48px; }
    section { padding: 52px 0; }
    .cta-band { padding: 52px 0; }
    p.section-lead { margin-bottom: 30px; }
    .hero-stats { margin-top: 40px; padding-top: 24px; gap: 18px; }
    .contact-form-card, .contact-side-card { padding: 24px; }
}

.eyebrow-sm {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}
h2.section-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 800;
}
p.section-lead {
    color: var(--text-muted);
    max-width: 680px;
    margin-bottom: 44px;
    font-size: 1.04rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bg-soft-2), #e2f2e7);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    color: var(--primary);
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.card:hover .card-icon { background: linear-gradient(135deg, var(--accent), var(--primary-dark)); color: #fff; transform: scale(1.06) rotate(-4deg); }
.card .bar {
    width: 40px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 16px;
}
.card h3 { margin: 0 0 12px; font-size: 1.12rem; color: var(--dark); }
.card ul { margin: 0; padding-left: 18px; color: var(--text-muted); font-size: 0.94rem; }
.card ul li { margin-bottom: 6px; }
.card p { color: var(--text-muted); font-size: 0.94rem; margin: 0; }

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 18px;
}
.step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--accent), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 14px;
    box-shadow: 0 6px 14px rgba(47,143,78,0.32);
}
.step h4 { margin: 0 0 6px; font-size: 1rem; color: var(--dark); }
.step p { margin: 0; font-size: 0.88rem; color: var(--text-muted); }

/* connecting line for steps on wide screens */
.steps { position: relative; }
@media (min-width: 900px) {
    .steps::before {
        content: '';
        position: absolute;
        top: 37px; left: 8%; right: 8%;
        height: 2px;
        background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 14px);
        z-index: 0;
    }
    .step { z-index: 1; }
}

.cta-band {
    position: relative;
    overflow: hidden;
    background: radial-gradient(900px 380px at 15% 0%, #1d5b34 0%, transparent 55%), linear-gradient(160deg, var(--dark), var(--dark-2));
    color: var(--white);
    text-align: center;
    padding: 76px 0;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #cfe4d6; max-width: 600px; margin: 0 auto 30px; font-size: 1.05rem; }

/* ---------- Sector mosaic (homepage visual band) ---------- */
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 160px;
    gap: 14px;
}
@media (max-width: 900px) { .mosaic-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 130px; } }
@media (max-width: 560px) { .mosaic-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; } }
.mosaic-tile {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px;
    color: #fff;
    isolation: isolate;
    transition: transform .3s ease;
}
.mosaic-tile:hover { transform: translateY(-4px); }
.mosaic-tile::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.22), transparent 55%),
        var(--tile-grad);
    z-index: -1;
}
.mosaic-tile .icon { width: 24px; height: 24px; margin-bottom: 8px; opacity: .95; }
.mosaic-tile span.label { font-size: 0.8rem; font-weight: 700; line-height: 1.25; }

/* ---------- Global reach map (about page visual band) ---------- */
.map-band {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(160deg, var(--dark), var(--dark-2));
    padding: 50px 40px;
    color: #fff;
}
.map-dots { position: absolute; inset: 0; opacity: 0.5; }
.map-band-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
@media (max-width: 800px) { .map-band-content { grid-template-columns: 1fr; } .map-band { padding: 36px 24px; } }
.map-band h3 { color: #fff; font-size: 1.5rem; margin: 0 0 12px; }
.map-band p { color: #cfe4d6; font-size: 0.98rem; }
.map-pin-highlight { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,162,75,0.16); border: 1px solid rgba(201,162,75,0.4); color: #e9d3a0; padding: 6px 14px; border-radius: 30px; font-size: 0.8rem; font-weight: 700; margin-top: 18px; }

/* Quote / thesis block */
.quote-block {
    background: linear-gradient(135deg, var(--bg-soft-2), #ffffff);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 32px 34px;
    margin-top: 26px;
    position: relative;
}
.quote-block .quote-mark { font-size: 2.6rem; color: var(--accent); line-height: 0; font-family: Georgia, serif; }
.quote-block p { color: var(--text); font-size: 1.05rem; margin: 10px 0 0; }

/* ---------- Footer ---------- */
.site-footer {
    background: linear-gradient(180deg, var(--dark), #081b11);
    color: #c8dccf;
    padding: 56px 0 22px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 36px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 34px; } }
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a { color: #c8dccf; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; }
.footer-grid a:hover { color: var(--white); }
.footer-grid .icon { width: 16px; height: 16px; opacity: .85; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 20px;
    font-size: 0.82rem;
    color: #9fb6a7;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

/* ---------- Forms ---------- */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: var(--dark); }
input, textarea, select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fbfdfb;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(47,143,78,0.12); background: #fff; }
textarea { resize: vertical; min-height: 130px; }

.contact-shell {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 900px) { .contact-shell { grid-template-columns: 1fr; } }
.contact-form-card, .contact-side-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow-sm);
}
.contact-side-card { background: linear-gradient(160deg, var(--dark), var(--dark-2)); color: #d9ebe0; border: none; }
.contact-side-card h3 { color: #fff; margin-top: 0; }
.contact-side-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-side-item .icon-badge { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent-light); }
.contact-side-item a, .contact-side-item span { color: #d9ebe0; font-size: 0.94rem; }
.contact-side-item strong { display: block; color: #fff; font-size: 0.88rem; margin-bottom: 3px; }

.alert {
    padding: 15px 18px;
    border-radius: 10px;
    margin-bottom: 22px;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: #e5f5ea; color: var(--primary-dark); border: 1px solid #b7e0c4; }
.alert-error { background: #fdecec; color: #9b2c2c; border: 1px solid #f3b8b8; }

/* ---------- Blog ---------- */
.post-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.post-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    transition: transform .25s ease, box-shadow .25s ease;
    display: block;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-card .thumb {
    height: 180px;
    width: 100%;
    background: linear-gradient(135deg, var(--dark), var(--primary-dark));
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
}
.post-card .thumb img { height: 100%; width: 100%; object-fit: cover; }
.post-card .thumb .icon { width: 44px; height: 44px; color: rgba(255,255,255,0.55); }
.post-card .body { padding: 22px; }
.post-card .date { font-size: 0.8rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.post-card h3 { margin: 10px 0 8px; font-size: 1.12rem; color: var(--dark); }
.post-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }
.post-card .read-more { margin-top: 14px; font-size: 0.88rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.post-card .read-more .icon { width: 14px; height: 14px; transition: transform .2s ease; }
.post-card:hover .read-more .icon { transform: translateX(4px); }

.post-content { max-width: 760px; margin: 0 auto; }
.post-content img { border-radius: var(--radius); margin: 24px 0; box-shadow: var(--shadow-md); }
.post-content h2, .post-content h3 { color: var(--dark); }

.breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }

/* ---------- Admin ---------- */
.admin-body { background: var(--bg-soft); min-height: 100vh; }
.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 220px;
    background: linear-gradient(180deg, var(--dark), var(--dark-2));
    color: var(--white);
    padding: 24px 18px;
    flex-shrink: 0;
}
.admin-sidebar .brand { color: var(--white); margin-bottom: 30px; display: flex; align-items: center; gap: 10px; }
.admin-sidebar nav ul { list-style: none; padding: 0; margin: 0; }
.admin-sidebar nav a {
    display: block;
    color: #cfe4d6;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.92rem;
    margin-bottom: 4px;
    transition: background .18s ease;
}
.admin-sidebar nav a.active, .admin-sidebar nav a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.admin-main { flex: 1; padding: 32px; min-width: 0; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; flex-wrap: wrap; gap: 12px; }

@media (max-width: 860px) {
    .admin-shell { flex-direction: column; }
    .admin-sidebar { width: 100%; padding: 16px 18px; }
    .admin-sidebar .brand { margin-bottom: 14px; }
    .admin-sidebar nav ul { display: flex; flex-wrap: wrap; gap: 6px; }
    .admin-sidebar nav a { padding: 8px 12px; margin-bottom: 0; }
    .admin-main { padding: 22px 18px; }
    .data-table-wrap { overflow-x: auto; }
    table.data-table { min-width: 640px; }
}
.admin-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(900px 380px at 15% 0%, #1d5b34 0%, transparent 55%), linear-gradient(160deg, var(--dark), var(--dark-2));
}
.admin-login-card {
    background: var(--white);
    padding: 44px;
    border-radius: 16px;
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow-lg);
}
table.data-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
table.data-table th, table.data-table td {
    text-align: left;
    padding: 13px 15px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
table.data-table th { background: var(--bg-soft); color: var(--dark); font-weight: 700; }
table.data-table tr:hover td { background: #fafcfa; }
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.badge-new { background: #fdecec; color: #9b2c2c; }
.badge-read { background: #fff6df; color: #8a6d1a; }
.badge-responded { background: #e5f5ea; color: var(--primary-dark); }
.badge-published { background: #e5f5ea; color: var(--primary-dark); }
.badge-draft { background: #eee; color: #666; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-danger { background: #c0392b; color: var(--white); }
.actions-row { display: flex; gap: 8px; margin-bottom: 20px; }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 18px; margin-bottom: 30px; }
.stat-card { background: var(--white); border-radius: 12px; padding: 22px; border: 1px solid var(--border); transition: transform .2s ease, box-shadow .2s ease; }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-card .num { font-size: 1.9rem; font-weight: 800; color: var(--primary); }
.stat-card .label { font-size: 0.85rem; color: var(--text-muted); }
