:root {
    --mz-green-dark: #059669;
    --mz-green: #059669;
    --mz-green-light: #059669;
    --mz-green-bg: #e8f5ec;
    --mz-green-bg-2: #f1faf3;
    --mz-text: #1f2937;
    --mz-muted: #6b7280;
    --mz-border: #e5e7eb;
    --mz-white: #ffffff;
    --mz-dark: #0f172a;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--mz-text);
    font-size: 15px;
    line-height: 1.6;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--mz-dark);
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    color: var(--mz-green-dark);
    transition: color .2s ease;
}

a:hover {
    color: var(--mz-green);
}

.text-mz-green {
    color: var(--mz-green) !important;
}

.text-mz-dark {
    color: var(--mz-green-dark) !important;
}

.bg-mz-green {
    background-color: var(--mz-green) !important;
}

.bg-mz-green-dark {
    background-color: var(--mz-green-dark) !important;
}

.bg-mz-light {
    background-color: var(--mz-green-bg) !important;
}

.bg-mz-light-2 {
    background-color: var(--mz-green-bg-2) !important;
}

/* Buttons */
.btn {
    border-radius: 10px;
    font-weight: 600;
    padding: .65rem 1.3rem;
    font-size: .95rem;
    transition: all .25s ease;
}

.btn-mz-primary {
    background: var(--mz-green);
    color: #fff;
    border: 1px solid var(--mz-green);
}

.btn-mz-primary:hover {
    background: var(--mz-green-dark);
    border-color: var(--mz-green-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(45, 157, 78, .25);
}

.btn-mz-outline {
    background: #fff;
    color: var(--mz-green-dark);
    border: 1.5px solid var(--mz-green);
}

.btn-mz-outline:hover {
    background: var(--mz-green-bg);
    color: var(--mz-green-dark);
    border-color: var(--mz-green-dark);
}

.btn-mz-dark {
    background: var(--mz-green-dark);
    color: #fff;
    border: 1px solid var(--mz-green-dark);
}

.btn-mz-dark:hover {
    background: #0f5d2d;
    color: #fff;
}

.btn-lg {
    padding: .85rem 1.8rem;
    font-size: 1rem;
}

/* Top bar */
.top-bar {
    background: var(--mz-green-dark);
    color: #d7f0de;
    font-size: .82rem;
    padding: .55rem 0;
}

.top-bar a {
    color: #fff;
}

.top-bar a:hover {
    color: #d7f0de;
}

.top-bar .separator {
    opacity: .35;
    margin: 0 .75rem;
}

/* Navbar */
.mz-navbar {
    background: #fff;
    padding: .9rem 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.mz-navbar .brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--mz-green-dark);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.mz-navbar .brand i {
    color: var(--mz-green);
}

.mz-navbar .nav-link {
    color: var(--mz-text);
    font-weight: 500;
    padding: .5rem 1rem !important;
    font-size: .95rem;
}

.mz-navbar .nav-link:hover,
.mz-navbar .nav-link.active {
    color: var(--mz-green);
}

.mz-navbar .phone-box {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--mz-text);
}

.mz-navbar .phone-box .icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--mz-green-bg);
    color: var(--mz-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.mz-navbar .phone-box small {
    color: var(--mz-muted);
    font-size: .72rem;
    line-height: 1;
}

.mz-navbar .phone-box strong {
    font-size: .95rem;
    color: var(--mz-text);
}

/* Hero */
.hero {
    background: var(--mz-green-bg-2);
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    right: -150px;
    top: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 157, 78, .08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .badge-pill {
    display: inline-block;
    background: #fff;
    color: var(--mz-green-dark);
    padding: .45rem 1rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    border: 1px solid var(--mz-green-bg);
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero h1 .accent {
    color: var(--mz-green);
    display: block;
}

.hero p.lead {
    color: var(--mz-muted);
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero .hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero .stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero .stat {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.hero .stat .stat-icon {
    width: 42px;
    height: 42px;
    background: var(--mz-green-bg);
    color: var(--mz-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.hero .stat strong {
    display: block;
    font-size: 1.2rem;
    color: var(--mz-dark);
    line-height: 1;
}

.hero .stat small {
    color: var(--mz-muted);
    font-size: .82rem;
}

/* Hero image card */
.hero-visual {
    position: relative;
    background: var(--mz-green-bg);
    border-radius: 24px;
    padding: 30px;
    min-height: 460px;
    overflow: hidden;
}

.hero-visual img {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 80%;
    height: auto;
}

.floating-card {
    background: #fff;
    border-radius: 14px;
    padding: .8rem 1.1rem;
    box-shadow: 0 10px 30px rgba(15, 93, 45, .12);
    display: flex;
    align-items: center;
    gap: .75rem;
    position: absolute;
    z-index: 2;
    max-width: 220px;
}

.floating-card .fc-icon {
    width: 40px;
    height: 40px;
    background: var(--mz-green);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.floating-card strong {
    display: block;
    font-size: .88rem;
    color: var(--mz-dark);
}

.floating-card small {
    color: var(--mz-muted);
    font-size: .75rem;
}

.fc-top-left {
    top: 40px;
    left: 30px;
}

.fc-middle-left {
    top: 180px;
    left: 30px;
}

.fc-bottom-right {
    bottom: 30px;
    right: 30px;
}

/* Section helpers */
.section {
    padding: 80px 0;
}

.section-sm {
    padding: 55px 0;
}

.section-title {
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 800;
    margin-bottom: .6rem;
}

.section-title p {
    color: var(--mz-muted);
    font-size: 1rem;
    margin: 0;
}

.section-label {
    display: inline-block;
    color: var(--mz-green);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .6rem;
    background: var(--mz-green-bg);
    padding: .35rem .85rem;
    border-radius: 20px;
}

/* Service cards */
.service-card {
    background: #fff;
    border: 1px solid var(--mz-border);
    border-radius: 18px;
    padding: 1.75rem;
    height: 100%;
    transition: all .3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--mz-green);
    box-shadow: 0 18px 40px rgba(45, 157, 78, .12);
}

.service-card .icon-box {
    width: 56px;
    height: 56px;
    background: var(--mz-green-bg);
    color: var(--mz-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 1.25rem;
}

.service-card h4 {
    font-size: 1.12rem;
    margin-bottom: .6rem;
    font-weight: 700;
}

.service-card p {
    color: var(--mz-muted);
    font-size: .9rem;
    margin-bottom: 1rem;
}

.service-card .learn-more {
    color: var(--mz-green);
    font-weight: 600;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.service-card .learn-more:hover {
    gap: .7rem;
}

/* Services page background */
.services-section {
    background: var(--mz-green-bg);
}

/* Specialties */
.specialty-card {
    background: #fff;
    border: 1px solid var(--mz-border);
    border-radius: 14px;
    padding: 1.3rem .8rem;
    text-align: center;
    transition: all .25s ease;
    cursor: pointer;
    height: 100%;
}

.specialty-card:hover {
    border-color: var(--mz-green);
    background: var(--mz-green-bg-2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(45, 157, 78, .1);
}

.specialty-card .sp-icon {
    width: 48px;
    height: 48px;
    background: var(--mz-green-bg);
    color: var(--mz-green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: .7rem;
}

.specialty-card h6 {
    font-size: .88rem;
    margin: 0;
    font-weight: 600;
    color: var(--mz-text);
}

/* Why choose banner */
.why-banner {
    background: var(--mz-green-dark);
    border-radius: 20px;
    color: #fff;
    padding: 2.5rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.why-banner h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: .8rem;
}

.why-banner p {
    color: rgba(255, 255, 255, .85);
    max-width: 480px;
    margin: 0;
    font-size: .92rem;
}

.why-feature {
    display: flex;
    align-items: start;
    gap: .9rem;
    color: #fff;
}

.why-feature .wf-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.05rem;
    color: #fff;
}

.why-feature strong {
    display: block;
    font-size: .98rem;
    color: #fff;
    margin-bottom: .15rem;
}

.why-feature small {
    color: rgba(255, 255, 255, .75);
    font-size: .82rem;
}

.why-banner .banner-decor {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .2;
    font-size: 9rem;
    color: #fff;
}

/* CTA section */
.cta-section {
    background: var(--mz-green-bg-2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.cta-img {
    height: 180px;
    width: auto;
    object-fit: contain;
}

.cta-section h2 {
    font-size: 1.9rem;
    margin-bottom: .6rem;
}

.cta-section p {
    color: var(--mz-muted);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.store-btn {
    background: #111;
    color: #fff;
    border-radius: 10px;
    padding: .55rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .85rem;
    transition: all .2s;
}

.store-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
}

.store-btn i {
    font-size: 1.3rem;
}

.store-btn small {
    display: block;
    font-size: .65rem;
    opacity: .75;
    line-height: 1;
}

.store-btn strong {
    display: block;
    font-size: .95rem;
    line-height: 1.1;
}

.app-icon-box {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mz-green);
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(45, 157, 78, .15);
}

/* Footer */
.mz-footer {
    background: #fff;
    border-top: 1px solid var(--mz-border);
    padding: 60px 0 25px;
}

.mz-footer h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--mz-dark);
}

.mz-footer a {
    color: var(--mz-muted);
    display: block;
    padding: .3rem 0;
    font-size: .9rem;
    transition: color .2s;
}

.mz-footer a:hover {
    color: var(--mz-green);
}

.mz-footer .brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--mz-green-dark);
    margin-bottom: .9rem;
}

.mz-footer p {
    color: var(--mz-muted);
    font-size: .88rem;
}

.mz-footer .contact-line {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .3rem 0;
    font-size: .88rem;
    color: var(--mz-muted);
}

.mz-footer .contact-line i {
    color: var(--mz-green);
    width: 18px;
}

.mz-footer .social-icons {
    display: flex;
    gap: .55rem;
    margin-top: 1.2rem;
}

.mz-footer .social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--mz-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mz-green-dark);
    padding: 0;
    background: #fff;
}

.mz-footer .social-icons a:hover {
    background: var(--mz-green);
    color: #fff;
    border-color: var(--mz-green);
}

.footer-bottom {
    border-top: 1px solid var(--mz-border);
    padding-top: 20px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--mz-muted);
    font-size: .85rem;
}

.scroll-top {
    width: 36px;
    height: 36px;
    background: var(--mz-green);
    color: #fff;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

.scroll-top:hover {
    background: var(--mz-green-dark);
    color: #fff;
}

/* Page header (inner pages) */
.page-header {
    background: var(--mz-green-bg);
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before,
.page-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 157, 78, .12) 0%, transparent 70%);
}

.page-header::before {
    width: 300px;
    height: 300px;
    left: -80px;
    top: -100px;
}

.page-header::after {
    width: 400px;
    height: 400px;
    right: -120px;
    bottom: -180px;
}

.page-header h1 {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    margin-bottom: .6rem;
    position: relative;
}

.page-header .breadcrumb-mz {
    color: var(--mz-muted);
    font-size: .92rem;
    position: relative;
}

.page-header .breadcrumb-mz a {
    color: var(--mz-green-dark);
}

.page-header .breadcrumb-mz span {
    color: var(--mz-muted);
    margin: 0 .45rem;
}

/* Doctor card */
.doctor-card {
    background: #fff;
    border: 1px solid var(--mz-border);
    border-radius: 18px;
    overflow: hidden;
    transition: all .3s ease;
    height: 100%;
}

.doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(45, 157, 78, .14);
    border-color: var(--mz-green);
}

.doctor-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: var(--mz-green-bg);
}

.doctor-card .body {
    padding: 1.3rem;
}

.doctor-card h5 {
    font-size: 1.1rem;
    margin-bottom: .3rem;
}

.doctor-card .role {
    color: var(--mz-green);
    font-size: .88rem;
    font-weight: 600;
    margin-bottom: .7rem;
}

.doctor-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--mz-muted);
    font-size: .85rem;
    margin-bottom: 1rem;
}

.doctor-card .meta i {
    color: #f5a623;
}

/* Hospital card */
.hospital-card {
    background: #fff;
    border: 1px solid var(--mz-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s;
    height: 100%;
}

.hospital-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(45, 157, 78, .12);
    border-color: var(--mz-green);
}

.hospital-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hospital-card .body {
    padding: 1.25rem;
}

.hospital-card h5 {
    font-size: 1.05rem;
    margin-bottom: .5rem;
}

.hospital-card .info {
    color: var(--mz-muted);
    font-size: .85rem;
    margin-bottom: .4rem;
}

.hospital-card .info i {
    color: var(--mz-green);
    width: 18px;
}

/* Forms */
.auth-page {
    background: var(--mz-green-bg-2);
    min-height: calc(100vh - 80px);
    padding: 50px 0;
}

.auth-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(15, 93, 45, .08);
    max-width: 480px;
    margin: 0 auto;
}

.auth-card h2 {
    font-size: 1.75rem;
    margin-bottom: .4rem;
    text-align: center;
}

.auth-card .subtitle {
    color: var(--mz-muted);
    text-align: center;
    margin-bottom: 1.8rem;
    font-size: .92rem;
}

.form-label {
    font-weight: 500;
    font-size: .88rem;
    color: var(--mz-text);
    margin-bottom: .4rem;
}

.form-control,
.form-select {
    border: 1.5px solid var(--mz-border);
    border-radius: 10px;
    padding: .7rem 1rem;
    font-size: .94rem;
    background: #fff;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--mz-green);
    box-shadow: 0 0 0 3px rgba(45, 157, 78, .12);
    outline: none;
}

.input-icon-wrap {
    position: relative;
}

.input-icon-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mz-muted);
    font-size: 1rem;
}

.input-icon-wrap .form-control {
    padding-left: 40px;
}

.auth-divider {
    text-align: center;
    color: var(--mz-muted);
    font-size: .85rem;
    margin: 1.2rem 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--mz-border);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.social-btn {
    border: 1.5px solid var(--mz-border);
    border-radius: 10px;
    padding: .7rem;
    background: #fff;
    color: var(--mz-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    font-weight: 500;
    font-size: .9rem;
    transition: all .2s;
    width: 100%;
}

.social-btn:hover {
    border-color: var(--mz-green);
    background: var(--mz-green-bg-2);
}

/* Contact */
.contact-info-box {
    background: #fff;
    border: 1px solid var(--mz-border);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    height: 100%;
    transition: all .25s;
}

.contact-info-box:hover {
    border-color: var(--mz-green);
    transform: translateY(-3px);
}

.contact-info-box .ci-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--mz-green-bg);
    color: var(--mz-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-info-box h5 {
    font-size: 1.05rem;
    margin-bottom: .5rem;
}

.contact-info-box p {
    color: var(--mz-muted);
    font-size: .9rem;
    margin: 0;
}

.map-embed {
    width: 100%;
    height: 380px;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

/* Blood donor */
.blood-stat-card {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    color: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.blood-stat-card h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: .2rem;
    font-weight: 800;
}

.blood-stat-card small {
    color: rgba(255, 255, 255, .85);
    font-size: .85rem;
}

.blood-group-card {
    background: #fff;
    border: 2px solid var(--mz-border);
    border-radius: 14px;
    padding: 1.2rem;
    text-align: center;
    cursor: pointer;
    transition: all .25s;
}

.blood-group-card:hover {
    border-color: #dc2626;
    transform: translateY(-3px);
}

.blood-group-card .bg-circle {
    width: 64px;
    height: 64px;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: .7rem;
}

/* About page */
.about-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.about-exp-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--mz-green);
    color: #fff;
    border-radius: 14px;
    padding: 1rem 1.4rem;
    box-shadow: 0 10px 30px rgba(45, 157, 78, .3);
}

.about-exp-badge strong {
    font-size: 1.6rem;
    display: block;
    color: #fff;
    line-height: 1;
}

.about-exp-badge small {
    font-size: .8rem;
    opacity: .9;
}

.feature-tick {
    display: flex;
    align-items: start;
    gap: .8rem;
    padding: .5rem 0;
}

.feature-tick i {
    width: 22px;
    height: 22px;
    background: var(--mz-green-bg);
    color: var(--mz-green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-tick span {
    font-size: .95rem;
    color: var(--mz-text);
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--mz-border);
    text-align: center;
    transition: all .3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(45, 157, 78, .1);
}

.team-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.team-card .body {
    padding: 1.25rem;
}

.team-card h5 {
    margin-bottom: .25rem;
    font-size: 1.05rem;
}

.team-card .role {
    color: var(--mz-green);
    font-size: .85rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero {
        padding: 50px 0 60px;
    }

    .hero-visual {
        margin-top: 40px;
        min-height: 380px;
    }

    .section {
        padding: 60px 0;
    }

    .mz-navbar .phone-box {
        display: none !important;
    }

    .why-banner {
        padding: 2rem;
    }

    .why-banner .banner-decor {
        display: none;
    }

    .cta-section {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .cta-img {
        margin-bottom: 1rem;
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

@media (max-width: 575.98px) {
    .top-bar {
        font-size: .75rem;
    }

    .top-bar .separator {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .stats {
        gap: 1.2rem;
    }

    .floating-card {
        max-width: 170px;
        padding: .6rem .8rem;
    }

    .floating-card strong {
        font-size: .78rem;
    }

    .floating-card small {
        font-size: .7rem;
    }

    .auth-card {
        padding: 1.75rem 1.25rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: .8rem;
        text-align: center;
    }
}