/* ===== Nova — Centrum Implantologii — Shared Stylesheet ===== */

:root {
    --navy: #1B3A6B;
    --navy-dark: #122850;
    --navy-light: #2A5298;
    --blue-soft: #4A8FE7;
    --blue-pale: #E8F0FE;
    --blue-mist: #F0F5FC;
    --sky: #B8D4F0;
    --white: #FFFFFF;
    --off-white: #FAFBFD;
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-400: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    --warm: #F5F0EB;
    --accent: #2E86DE;
    --accent-soft: rgba(46, 134, 222, 0.08);
    --gold: #D4A853;
    --green: #27AE60;
    --shadow-sm: 0 1px 3px rgba(27, 58, 107, 0.06);
    --shadow-md: 0 4px 16px rgba(27, 58, 107, 0.08);
    --shadow-lg: 0 8px 32px rgba(27, 58, 107, 0.10);
    --shadow-xl: 0 16px 48px rgba(27, 58, 107, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--gray-800); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; color: var(--navy); line-height: 1.2; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: var(--gray-700); font-size: 1.05rem; }

/* Homepage overrides */
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); }

/* ===== LAYOUT ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--blue-mist); }
.section-label { display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-soft); margin-bottom: 12px; }
.section-title { margin-bottom: 20px; }
.section-subtitle { font-size: 1.1rem; color: var(--gray-600); max-width: 640px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ===== NAVIGATION ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--gray-200); transition: box-shadow 0.3s ease; padding-top: env(safe-area-inset-top); }
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo img { height: 32px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav__links a { text-decoration: none; color: var(--gray-700); font-size: 0.92rem; font-weight: 500; transition: color 0.2s; }
.nav__links a:hover { color: var(--navy); }
.nav__cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; background: var(--navy); color: var(--white) !important; border-radius: 100px; font-weight: 600; font-size: 0.9rem; transition: background 0.2s, transform 0.2s; }
.nav__cta:hover { background: var(--navy-light); transform: translateY(-1px); }
.nav__mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: 0.3s; }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 96px 0 0; font-size: 0.85rem; }
.breadcrumb a { color: var(--gray-400); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { color: var(--gray-400); margin: 0 8px; }
.breadcrumb .current { color: var(--gray-700); }

/* ===== HERO (homepage) ===== */
.hero { padding: 160px 0 100px; background: linear-gradient(165deg, var(--white) 0%, var(--blue-mist) 50%, var(--blue-pale) 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(74, 143, 231, 0.06) 0%, transparent 70%); border-radius: 50%; }
.hero__content { position: relative; max-width: 720px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 100px; font-size: 0.82rem; font-weight: 500; color: var(--gray-700); margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.hero__badge-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--blue-soft); }
.hero__desc { font-size: 1.15rem; color: var(--gray-600); margin-bottom: 36px; max-width: 580px; line-height: 1.8; }
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 40px; margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--gray-200); }
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-number { font-family: 'DM Serif Display', serif; font-size: 1.8rem; color: var(--navy); }
.hero__stat-label { font-size: 0.85rem; color: var(--gray-600); margin-top: 2px; }
.hero__stat-source { font-size: 0.72rem; color: var(--gray-400); margin-top: 2px; }

/* ===== ARTICLE HERO (subpages) ===== */
.article-hero { padding: 32px 0 64px; }
.article-hero h1 { margin-bottom: 20px; max-width: 720px; }
.article-hero__lead { font-size: 1.15rem; color: var(--gray-600); max-width: 680px; line-height: 1.8; margin-bottom: 32px; }
.article-hero__meta { display: flex; gap: 24px; flex-wrap: wrap; font-size: 0.85rem; color: var(--gray-400); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: all 0.25s ease; }
.btn--primary { background: var(--navy); color: var(--white); box-shadow: 0 4px 16px rgba(27, 58, 107, 0.2); }
.btn--primary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(27, 58, 107, 0.25); }
.btn--outline { background: transparent; color: var(--navy); border: 1.5px solid var(--gray-200); }
.btn--outline:hover { border-color: var(--navy); background: var(--blue-pale); }
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { background: var(--blue-pale); transform: translateY(-2px); }
.btn__arrow { transition: transform 0.2s; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ===== ARTICLE CONTENT ===== */
.article { max-width: 760px; margin: 0 auto; }
.article h2 { margin: 48px 0 16px; }
.article h3 { margin: 32px 0 12px; }
.article p { margin-bottom: 16px; }
.article ul, .article ol { margin: 0 0 20px 24px; color: var(--gray-700); }
.article li { margin-bottom: 8px; font-size: 1.02rem; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box { background: var(--blue-pale); border-left: 4px solid var(--navy); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 24px 28px; margin: 28px 0; }
.highlight-box p { margin-bottom: 0; color: var(--gray-800); }
.highlight-box strong { color: var(--navy); }

/* ===== COST TABLE ===== */
.cost-table { width: 100%; border-collapse: collapse; margin: 24px 0 32px; border-radius: var(--radius-sm); overflow: hidden; }
.cost-table th { background: var(--navy); color: var(--white); padding: 14px 20px; text-align: left; font-size: 0.9rem; font-weight: 600; }
.cost-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-200); font-size: 0.95rem; }
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:nth-child(even) { background: var(--gray-50); }

/* ===== COMPARISON ===== */
.comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0 32px; }
.comparison__card { padding: 28px; border-radius: var(--radius-md); border: 1px solid var(--gray-200); }
.comparison__card--highlight { border-color: var(--navy); background: var(--blue-pale); }
.comparison__card h4 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.comparison__card ul { list-style: none; margin: 0; padding: 0; }
.comparison__card li { padding: 6px 0; font-size: 0.9rem; color: var(--gray-700); }
.comparison__card li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.comparison__card--dim li::before { content: '✗ '; color: var(--gray-400); }

/* ===== SOURCE CITATION ===== */
.source { font-size: 0.82rem; color: var(--gray-400); font-style: italic; margin-top: -8px; margin-bottom: 20px; }

/* ===== SERVICES (homepage) ===== */
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px; transition: all 0.3s ease; text-decoration: none; display: block; }
.service-card:hover { border-color: var(--sky); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card__icon { width: 48px; height: 48px; background: var(--blue-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.4rem; }
.service-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.service-card p { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 16px; }
.service-card__price { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.service-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 600; color: var(--accent); margin-top: 12px; }

/* ===== PROCESS (homepage) ===== */
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process__step { text-align: center; position: relative; }
.process__step-number { width: 52px; height: 52px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'DM Serif Display', serif; font-size: 1.2rem; margin: 0 auto 20px; }
.process__step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process__step p { font-size: 0.9rem; color: var(--gray-600); }

/* ===== TRUST CARDS (homepage) ===== */
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px; text-align: center; }
.trust-card__number { font-family: 'DM Serif Display', serif; font-size: 2.4rem; color: var(--navy); margin-bottom: 8px; }
.trust-card__label { font-size: 0.95rem; color: var(--gray-700); font-weight: 500; margin-bottom: 8px; }
.trust-card__source { font-size: 0.78rem; color: var(--gray-400); }

/* ===== WHY NOVA (homepage) ===== */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { padding: 32px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--gray-200); }
.why-card__icon { width: 44px; height: 44px; background: var(--blue-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 1.2rem; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { font-size: 0.92rem; color: var(--gray-600); }

/* ===== FAQ ===== */
.faq__list { max-width: 760px; margin: 0 auto; }
.article .faq__list { margin-top: 24px; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 22px 0; background: none; border: none; cursor: pointer; text-align: left; font-family: 'DM Sans', sans-serif; font-size: 1.02rem; font-weight: 600; color: var(--gray-800); gap: 16px; }
.faq-item__question:hover { color: var(--navy); }
.faq-item__icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; transition: transform 0.3s; font-size: 1.1rem; color: var(--navy); }
.faq-item.active .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.active .faq-item__answer { max-height: 400px; }
.faq-item__answer p { padding-bottom: 22px; font-size: 0.95rem; color: var(--gray-600); line-height: 1.8; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 72px 0; background: var(--navy); color: var(--white); text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: var(--sky); font-size: 1.05rem; max-width: 520px; margin: 0 auto 32px; }

/* ===== INTERNAL LINKS ===== */
.internal-links { margin: 40px 0; padding: 28px; background: var(--gray-50); border-radius: var(--radius-md); }
.internal-links h3 { font-size: 1rem; margin-bottom: 12px; }
.internal-links ul { list-style: none; margin: 0; padding: 0; }
.internal-links li { margin-bottom: 8px; }
.internal-links a { color: var(--accent); text-decoration: none; font-size: 0.95rem; font-weight: 500; }
.internal-links a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer { padding: 48px 0 32px; background: var(--gray-50); border-top: 1px solid var(--gray-200); }
.footer__inner { display: flex; justify-content: space-between; align-items: start; gap: 48px; flex-wrap: wrap; }
.footer__brand img { height: 28px; margin-bottom: 12px; }
.footer__brand p { font-size: 0.85rem; color: var(--gray-600); max-width: 280px; }
.footer__links h4 { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-800); margin-bottom: 12px; }
.footer__links ul { list-style: none; }
.footer__links li { margin-bottom: 8px; }
.footer__links a { text-decoration: none; color: var(--gray-600); font-size: 0.9rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--navy); }
.footer__bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--gray-200); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer__bottom p { font-size: 0.82rem; color: var(--gray-400); }
.footer__bottom a { color: var(--gray-400); text-decoration: none; font-size: 0.82rem; }
.footer__bottom a:hover { color: var(--gray-600); }
.footer__legal { display: flex; gap: 24px; }

/* ===== UPDATED DATE ===== */
.updated-date { text-align: center; padding: 12px 0; font-size: 0.78rem; color: var(--gray-400); background: var(--gray-50); }

/* ===== ANIMATIONS (DISABLED) ===== */
.fade-in { opacity: 1; transform: none; }
.fade-in.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .services__grid { grid-template-columns: 1fr; }
    .process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
    .trust__grid, .why__grid { grid-template-columns: 1fr; }
    .hero__stats { gap: 24px; }
}

@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .nav__links { display: none; }
    .nav__mobile-toggle { display: block; }
    .nav__links.active {
        display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
        background: var(--white); padding: 24px; border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-lg);
    }
    .hero { padding: 120px 0 64px; }
    .hero__stats { flex-direction: column; gap: 16px; }
    .hero__stat { flex-direction: column; align-items: flex-start; gap: 4px; }
    .hero__actions { flex-direction: column; align-items: flex-start; }
    .btn { width: 100%; justify-content: center; }
    .process__steps { grid-template-columns: 1fr; gap: 32px; }
    .comparison { grid-template-columns: 1fr; }
    .cost-table { font-size: 0.88rem; }
    .cost-table th, .cost-table td { padding: 10px 14px; }
    .footer__inner { flex-direction: column; }
    .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   COOKIE BANNER
   ============================================ */

#nova-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    animation: novaCookieSlideUp 0.4s ease;
}

@keyframes novaCookieSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.nova-cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
}

.nova-cookie-banner__content {
    flex: 1;
    min-width: 0;
}

.nova-cookie-banner__content h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin: 0 0 6px 0;
}

.nova-cookie-banner__content p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.55;
    margin: 0;
}

.nova-cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
}

.nova-cookie-btn {
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
}

.nova-cookie-btn--primary {
    background: var(--navy);
    color: var(--white);
}

.nova-cookie-btn--primary:hover {
    background: var(--navy-light);
}

.nova-cookie-btn--outline {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.nova-cookie-btn--outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.nova-cookie-btn--text {
    background: transparent;
    color: var(--gray-600);
    text-decoration: underline;
    padding: 10px 8px;
}

.nova-cookie-btn--text:hover {
    color: var(--navy);
}

/* Modal (settings) */
#nova-cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.nova-cookie-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.nova-cookie-modal__dialog {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 40px;
    max-width: 540px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.nova-cookie-modal__dialog h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin: 0 0 12px 0;
}

.nova-cookie-modal__dialog > p {
    font-size: 0.93rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 24px;
}

.nova-cookie-category {
    padding: 20px 0;
    border-top: 1px solid var(--gray-200);
}

.nova-cookie-category:last-of-type {
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.nova-cookie-category__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.nova-cookie-category__header strong {
    font-size: 1rem;
    color: var(--navy);
}

.nova-cookie-category p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.nova-cookie-toggle--disabled {
    font-size: 0.78rem;
    color: var(--gray-500);
    font-style: italic;
}

/* Toggle switch */
.nova-cookie-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.nova-cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.nova-cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    border-radius: 24px;
    transition: 0.3s;
}

.nova-cookie-slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    border-radius: 50%;
    transition: 0.3s;
}

.nova-cookie-switch input:checked + .nova-cookie-slider {
    background-color: var(--navy);
}

.nova-cookie-switch input:checked + .nova-cookie-slider::before {
    transform: translateX(20px);
}

.nova-cookie-modal__actions {
    display: flex;
    justify-content: flex-end;
}

/* Mobile */
@media (max-width: 768px) {
    .nova-cookie-banner__inner {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .nova-cookie-banner__actions {
        flex-wrap: wrap;
        justify-content: stretch;
    }

    .nova-cookie-btn {
        flex: 1;
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .nova-cookie-btn--text {
        flex-basis: 100%;
        order: 3;
    }

    .nova-cookie-modal__dialog {
        padding: 28px 24px;
    }

    .nova-cookie-modal__dialog h3 {
        font-size: 1.3rem;
    }
}

/* === Blog card thumbnails === */
.article-card { display: flex; flex-direction: column; overflow: hidden; }
.article-card__image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 0 16px 0;
}
.featured-article__image {
  display: block;
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .article-card__image { height: 160px; }
  .featured-article__image { max-height: 220px; }
}

/* === Hero stats mobile fix === */
@media (max-width: 768px) {
  .hero__stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .hero__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }
  .hero__stat-number { font-size: 2rem; line-height: 1.1; }
  .hero__stat-label { font-size: 0.95rem; color: #4a5568; }
  .hero__stat-source { font-size: 0.8rem; color: #94a3b8; }
}

/* === Hero stats spans force block (mobile) === */
@media (max-width: 768px) {
  .hero__stat-number,
  .hero__stat-label,
  .hero__stat-source {
    display: block !important;
  }
  .hero__stat {
    display: block !important;
    margin-bottom: 20px;
  }
}

/* === NUCLEAR hero stats fix === */
.hero .hero__stats .hero__stat {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 4px !important;
}
.hero .hero__stats .hero__stat .hero__stat-number,
.hero .hero__stats .hero__stat .hero__stat-label,
.hero .hero__stats .hero__stat .hero__stat-source {
  display: block !important;
  width: 100% !important;
}
