html {
    max-width: 100%;
    overflow-x: clip;
}

body {
    max-width: 100%;
    overflow-x: clip;
}

/* ── Font overrides (Tailwind CDN) ── */
.font-sans {
    font-family: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
}

/* ── Scroll-triggered animations ── */
[data-animate] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-up"]    { transform: translateY(40px); }
[data-animate="fade-left"]  { transform: translateX(-50px); }
[data-animate="fade-right"] { transform: translateX(50px); }
[data-animate="zoom-in"]    { transform: scale(0.88); }
[data-animate].animated     { opacity: 1; transform: none; }

/* Stagger delays */
.delay-100 { transition-delay: 100ms !important; }
.delay-200 { transition-delay: 200ms !important; }
.delay-300 { transition-delay: 300ms !important; }
.delay-400 { transition-delay: 400ms !important; }
.delay-500 { transition-delay: 500ms !important; }
.delay-600 { transition-delay: 600ms !important; }

/* ── Hero floating decoration ── */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50%       { transform: translateY(-18px) rotate(4deg); }
}
@keyframes float-reverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50%       { transform: translateY(16px) rotate(-4deg); }
}
@keyframes float-badge {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}
.float-anim         { animation: float 6s ease-in-out infinite; }
.float-anim-reverse { animation: float-reverse 7.5s ease-in-out infinite; }
.float-badge        { animation: float-badge 4s ease-in-out infinite; }
.float-badge-2      { animation: float-badge 5s ease-in-out infinite 1s; }

/* ── Hero gradient text ── */
.gradient-text {
    background: linear-gradient(135deg, #bfdbfe 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Pulse ring (CTA button) ── */
@keyframes pulse-ring {
    0%   { transform: scale(1);    opacity: 0.35; }
    100% { transform: scale(1.25); opacity: 0; }
}
.btn-pulse {
    position: relative;
}
.btn-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0.5rem;
    background: white;
    animation: pulse-ring 3.2s ease-out infinite;
}

/* ── Service card ── */
.service-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(37, 99, 235, 0.13);
}
.service-card .icon-box {
    transition: transform 0.35s ease, background-color 0.35s ease;
}
.service-card:hover .icon-box {
    transform: scale(1.12) rotate(-6deg);
}

/* ── Testimonial card ── */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.12);
}

/* ── Stat box ── */
.stat-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-box:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.18);
}

/* ── Nav scroll shadow ── */
.nav-scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10) !important;
}

/* ── Services dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 220px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
    padding: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
}
/* small arrow */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid white;
    filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.06));
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 9px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #374151;
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
}
.nav-dropdown-item:hover {
    background: #eff6ff;
    color: #2563eb;
}
.nav-dropdown-item .dd-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Footer accordion (mobile only) ── */
@media (max-width: 767px) {
    .footer-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    margin-top: 0;
    }
    .footer-accordion-body.open {
    max-height: 500px;
    margin-top: 0.75rem;
    }
    .footer-accordion-btn {
    cursor: pointer;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .footer-chevron {
    display: block;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    }
    .footer-accordion-btn[aria-expanded="true"] .footer-chevron {
    transform: rotate(180deg);
    }
}
@media (min-width: 768px) {
    .footer-accordion-body {
    max-height: none !important;
    overflow: visible !important;
    display: block !important;
    margin-top: 1rem;
    }
    .footer-chevron { display: none; }
    .footer-accordion-btn { cursor: default; padding-bottom: 0; border-bottom: none; }
}

/* ── Section divider wave ── */
.wave-divider {
    line-height: 0;
    overflow: hidden;
}
.wave-divider svg {
    display: block;
}

/* ── Checklist item hover ── */
.checklist-item {
    transition: transform 0.25s ease;
}
.checklist-item:hover {
    transform: translateX(6px);
}

/* ── Why-choose stat box (offset grid) ── */
.stats-grid .stat-box:nth-child(even) {
    margin-top: 2rem;
}

/* ── Alpine cloak ── */
[x-cloak] { display: none !important; }

/* ── Floating contact buttons ── */
#float-contact { transition: opacity .4s ease, transform .4s ease; }
.float-btn { will-change: width; }
@media (max-width: 639px) {
    .float-btn { width: 3rem !important; padding-left: .75rem !important; padding-right: .75rem !important; gap: 0 !important; }
    .float-label { display: none !important; }
}

/* ══════════════════════════════════════════════════════════════════
   PREMIUM HEALTHCARE HEADER  (.hdr-*)
══════════════════════════════════════════════════════════════════ */

/* ── Top contact bar ── */
.hdr-topbar {
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 7px 0;
    position: relative;
    z-index: 51;
    max-height: none;
    overflow: visible;
}
/* hide topbar on phones — drawer footer has the same info */
@media (max-width: 639px) { .hdr-topbar { display: none; } }

.hdr-topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.hdr-topbar-left  { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.hdr-topbar-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
@media (max-width: 767px) { .hdr-topbar-right { display: none; } }

/* Contact chips */
.hdr-contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px 4px 5px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}
.hdr-contact-chip:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}
.hdr-contact-chip--wa:hover  { background: rgba(37,211,102,0.18); color: #4ade80; border-color: rgba(37,211,102,0.3); }
.hdr-contact-chip--email:hover { background: rgba(99,102,241,0.18); color: #a5b4fc; border-color: rgba(99,102,241,0.3); }

.hdr-chip-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hdr-chip-icon svg   { width: 11px; height: 11px; }
.hdr-chip-icon--phone { background: rgba(59,130,246,0.25); color: #93c5fd; }
.hdr-chip-icon--wa    { background: rgba(37,211,102,0.20); color: #4ade80; }

/* Info pills (right side of topbar) */
.hdr-info-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 500;
    color: #94a3b8;
    white-space: nowrap;
}
.hdr-pill-icon { width: 13px; height: 13px; color: #64748b; flex-shrink: 0; }
.hdr-hours-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    position: relative;
}
.hdr-hours-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: #22c55e;
    opacity: 0.35;
    animation: hdr-hours-pulse 2.5s ease-in-out infinite;
}
@keyframes hdr-hours-pulse {
    0%, 100% { transform: scale(1);   opacity: 0.35; }
    50%       { transform: scale(1.9); opacity: 0; }
}

/* ── Main sticky nav ── */
.hdr-shell {
    position: relative;
    z-index: 40;
}

.hdr-shell.nav-scrolled {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    padding-top: 68px;
}

.hdr-nav {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
    top: auto;
    z-index: 60;
    transition: box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.hdr-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    transition: none;
}

.hdr-nav.nav-scrolled {
    background: rgba(255,255,255,0.94);
    border-bottom-color: rgba(15, 23, 42, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

@media (prefers-reduced-motion: reduce) {
    .hdr-nav,
    .hdr-nav-inner {
        transition: none;
    }

    .hdr-nav.nav-scrolled {}
}

/* ── Logo ── */
.hdr-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.hdr-logo-img  { height: 68px; width: auto; object-fit: contain; }
.hdr-logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
.hdr-logo-icon svg { width: 40px; height: 40px; }
.hdr-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.hdr-logo-name1 {
    /* font-size: 16px; */
    font-size: 25px;
    font-weight: 800;
    color: #1e3a8a;
    letter-spacing: -0.3px;
}
.hdr-logo-name2 {
    font-size: 10.5px;
    font-weight: 500;
    color: #64748b;
    letter-spacing: 0.1px;
}

/* ── Desktop nav links ── */
.hdr-links { display: none; align-items: center; gap: 2px; }
@media (min-width: 1024px) { .hdr-links { display: flex; } }

.hdr-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 13px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
    font-family: inherit;
}
.hdr-link:hover     { color: #1f4fa8; background: #eef4ff; }
.hdr-link--active   { color: #1f4fa8; background: #eef4ff; }
.hdr-link--active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2.5px;
    border-radius: 9999px;
    background: #1f4fa8;
}
.hdr-caret {
    width: 15px; height: 15px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    color: #9ca3af;
}

/* ── Services mega dropdown ── */
.hdr-mega-wrap { position: relative; }
.hdr-mega {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: 520px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 64px rgba(0,0,0,0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 100;
    overflow: hidden;
}
.hdr-mega-wrap.open .hdr-mega {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.hdr-mega::before {
    content: '';
    position: absolute;
    top: -7px; left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.05));
}
.hdr-mega-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px 12px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}
.hdr-mega-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #163c82;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.hdr-mega-title svg { color: #3f74cf; }
.hdr-mega-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #1f4fa8;
    text-decoration: none;
    transition: color 0.15s;
}
.hdr-mega-all:hover { color: #163c82; }
.hdr-mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 12px;
}
.hdr-mega-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.hdr-mega-item:hover { background: #eef4ff; color: #1f4fa8; }
.hdr-mega-item--empty {
    color: #9ca3af;
    font-size: 13px;
    grid-column: 1 / -1;
    padding: 8px 12px;
    cursor: default;
}
.hdr-mega-item-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e8f0ff, #ebefff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1f4fa8;
    transition: background 0.15s;
}
.hdr-mega-item:hover .hdr-mega-item-icon { background: linear-gradient(135deg, #d2e2ff, #dae3ff); }
.hdr-mega-item-icon svg { width: 14px; height: 14px; }
.hdr-mega-item-text { line-height: 1.3; }
.hdr-mega-footer {
    padding: 10px 12px 12px;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
}
.hdr-mega-footer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #0f2f75 0%, #1f4fa8 100%);
    text-decoration: none;
    transition: filter 0.2s ease, transform 0.2s ease;
}
.hdr-mega-footer-cta:hover  { filter: brightness(1.08); transform: translateY(-1px); }
.hdr-mega-footer-cta svg    { flex-shrink: 0; }

/* ── Desktop CTA buttons ── */
.hdr-ctas { display: none; align-items: center; gap: 8px; flex-shrink: 0; }
@media (min-width: 1024px) { .hdr-ctas { display: flex; } }

.hdr-btn-emergency {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ef4444 0%, #e11d48 100%);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    box-shadow: 0 4px 12px rgba(239,68,68,0.30);
    transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.hdr-btn-emergency:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(239,68,68,0.40); }
.hdr-emergency-pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.75);
    flex-shrink: 0;
    position: relative;
}
.hdr-emergency-pulse::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    animation: hdr-emg-pulse 1.5s ease-out infinite;
}
@keyframes hdr-emg-pulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(2.4); opacity: 0; }
}
.hdr-btn-book {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #0b1f4a 0%, #1f4fa8 100%);
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(15,47,117,0.32);
    transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.hdr-btn-book:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(15,47,117,0.45); }

/* ── Animated hamburger ── */
.hdr-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px; height: 42px;
    border-radius: 10px;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}
@media (min-width: 1024px) { .hdr-hamburger { display: none; } }
.hdr-hamburger:hover { background: #e2e8f0; }
.hdr-ham-bar {
    display: block;
    width: 20px; height: 2px;
    border-radius: 9999px;
    background: #334155;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
/* Morph to × when drawer is open */
.hdr-hamburger.is-open .hdr-ham-bar:nth-child(1) { transform: translateY(7px)  rotate(45deg); }
.hdr-hamburger.is-open .hdr-ham-bar:nth-child(2) { opacity: 0; width: 0; }
.hdr-hamburger.is-open .hdr-ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* ── Compact floating contact dial ── */
#float-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}
@media (max-width: 767px) {
    #float-contact { display: none !important; }
}

.float-contact-toggle,
.float-contact-item {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.float-contact-toggle:hover,
.float-contact-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px -12px rgba(0, 0, 0, 0.5);
}

.float-contact-menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    transform-origin: bottom left;
    pointer-events: none;
}

.float-contact-menu.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* ── Mobile readability layer ── */
@media (max-width: 767px) {
    main {
        font-size: 16px;
        line-height: 1.65;
        text-wrap: pretty;
    }

    main p,
    main li {
        line-height: 1.75;
    }

    main h1 {
        font-size: clamp(1.9rem, 8vw, 2.45rem);
        line-height: 1.18;
        letter-spacing: -0.01em;
    }

    main h2 {
        font-size: clamp(1.45rem, 6.2vw, 1.95rem);
        line-height: 1.24;
        letter-spacing: -0.005em;
    }

    main h3 {
        font-size: clamp(1.15rem, 5.2vw, 1.4rem);
        line-height: 1.32;
    }

    .prose {
        font-size: 1rem;
        line-height: 1.85;
    }

    .prose p + p {
        margin-top: 0.95em;
    }

    .prose ul,
    .prose ol {
        padding-left: 1.2rem;
    }

    .prose li {
        margin: 0.25em 0;
    }

    input,
    textarea,
    select,
    button {
        font-size: 16px;
    }

    #mobile-conversion-bar a {
        min-height: 44px;
    }
}

/* ── Interaction polish layer ── */
:root {
    --ui-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ui-ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

a,
button,
[role="button"],
summary {
    transition: transform 160ms var(--ui-ease-out), box-shadow 200ms var(--ui-ease-soft), background-color 200ms ease, color 200ms ease, border-color 200ms ease, opacity 180ms ease;
}

a:active,
button:active,
[role="button"]:active,
summary:active {
    transform: translateY(1px) scale(0.99);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

/* Form fields already use Tailwind focus ring; disable extra browser outline to avoid double focus colors */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
}

/* Keep hover polish desktop-first to avoid sticky hover states on touch devices */
@media (hover: hover) and (pointer: fine) {
    .service-card:hover {
        transform: translateY(-10px) scale(1.002);
        box-shadow: 0 24px 52px rgba(37, 99, 235, 0.14);
    }

    .step-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.11);
    }

    .stat-box:hover {
        transform: translateY(-2px) scale(1.03);
    }

    .hdr-link:hover {
        transform: translateY(-1px);
    }
}

/* Accordion polish */
details.group > summary {
    user-select: none;
}

details.group[open] {
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

details.interlink-group[open] {
    box-shadow: none;
}

details.interlink-group[open] .interlink-chevron {
    transform: rotate(180deg);
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
