@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --red: #E31E24; /* Logo Red */
    --red-dark: #B3181D;
    --red-glow: rgba(227, 30, 36, 0.2);
    --teal: #007DA5; /* Logo Blue/Teal */
    --teal-deep: #005A78;
    --teal-glow: rgba(0, 125, 165, 0.2);
    --bg: #F8FAFC;
    --bg2: #FFFFFF;
    --glass: rgba(0, 0, 0, .03);
    --glass2: rgba(0, 0, 0, .05);
    --border: rgba(0, 0, 0, .12);
    --border2: rgba(0, 0, 0, .22);
    --t1: #0F172A;
    --t2: #475569;
    --t3: #94A3B8;
    --nav-bg: rgba(248, 250, 252, .75);
    --nav-scroll-bg: rgba(248, 250, 252, .95);
    --footer-bg: #F1F5F9;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --r: 16px;
    --r2: 24px;
    --shadow: 0 40px 80px rgba(0, 0, 0, .15);
}

/* Dark Mode Overrides */
body.dark-mode {
    --bg: #040810;
    --bg2: #070d1a;
    --glass: rgba(255, 255, 255, .04);
    --glass2: rgba(255, 255, 255, .07);
    --border: rgba(255, 255, 255, .07);
    --border2: rgba(255, 255, 255, .12);
    --t1: #F0F4FF;
    --t2: #8892A4;
    --t3: #4A5568;
    --nav-bg: rgba(4, 8, 16, .75);
    --nav-scroll-bg: rgba(4, 8, 16, .95);
    --footer-bg: #020408;
    --shadow: 0 40px 80px rgba(0, 0, 0, .6);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--t1);
    overflow-x: hidden;
    line-height: 1.6;
    padding: 0 10px;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 3px;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    z-index: 999;
    height: 60px;
    padding: 0 10px 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--nav-bg);
    backdrop-filter: blur(25px) saturate(1.8);
    -webkit-backdrop-filter: blur(25px) saturate(1.8);
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: all .5s var(--ease);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05), inset 0 0 0 1px rgba(255,255,255,0.05);
}

.nav.scrolled {
    top: 15px;
    height: 54px;
    background: var(--nav-scroll-bg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
    border-color: var(--border2);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    background: var(--glass2);
    border: 1px solid var(--border);
    color: var(--t1);
    width: 60px;
    height: 32px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    cursor: pointer;
    transition: all .25s var(--ease);
    font-size: 14px;
    position: relative;
}

.theme-toggle i {
    z-index: 1;
}

.theme-toggle::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 4px;
    width: 24px;
    height: 24px;
    background: var(--bg2);
    border-radius: 50%;
    transition: transform .3s var(--ease);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

body.dark-mode .theme-toggle::after {
    transform: translateX(26px);
}

.theme-toggle:hover {
    border-color: var(--teal);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    padding: 8px 18px;
    color: var(--t2);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    transition: all .3s var(--ease);
    position: relative;
    letter-spacing: .2px;
}

.nav-link:hover {
    color: var(--t1);
    background: var(--glass);
}

.nav-link.active {
    color: var(--t1);
    background: var(--bg2);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.nav-link::after {
    display: none;
}

.nav-cta {
    padding: 10px 25px;
    background: var(--bg2);
    color: var(--t1);
    font-size: 13px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: .2px;
    border: 1px solid var(--border2);
    transition: all .3s var(--ease);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.nav-cta:hover {
    background: var(--t1);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ── HERO ── */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: flex-start;
    padding: 160px 5% 100px;
    position: relative;
    overflow: hidden;
    gap: 60px;
}

#c {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.hero-glow {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse 55% 55% at 72% 50%, rgba(0, 125, 165, .05) 0%, transparent 70%), radial-gradient(ellipse 40% 55% at 18% 35%, rgba(227, 30, 36, .05) 0%, transparent 70%);
}

.hero-left {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: rgba(227, 30, 36, .1);
    border: 1px solid rgba(227, 30, 36, .22);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(.75); }
}

.hero-h1 {
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 22px;
    color: var(--t1);
}

.hero-h1 span {
    color: var(--red);
}

.hero-sub {
    font-size: 17px;
    color: var(--t2);
    line-height: 1.75;
    margin-bottom: 38px;
    max-width: 470px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-p {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--red);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .25s var(--ease);
}

.btn-p:hover {
    transform: translateY(-2px);
    background: var(--red-dark);
    box-shadow: 0 10px 20px var(--red-glow);
}

.btn-s {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--glass2);
    color: var(--t1);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid var(--border2);
    backdrop-filter: blur(10px);
    text-decoration: none;
    cursor: pointer;
    transition: all .25s var(--ease);
}

.btn-s:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-2px);
}

.hero-right {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.mockup {
    width: 510px;
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border2);
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
    margin-top: 60px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.mk-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    margin-bottom: 18px;
}

.mk-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--t2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mk-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #00E5A0;
}

.mk-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.mcard {
    padding: 13px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 11px;
}

.mcard-lbl {
    font-size: 9px;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 5px;
}

.mcard-val {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.mk-chart {
    background: rgba(255, 255, 255, .015);
    border: 1px solid rgba(255, 255, 255, .04);
    border-radius: 11px;
    padding: 14px;
    margin-bottom: 14px;
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 70px;
}

.bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: var(--teal);
}

.bar:nth-child(even) { background: var(--red); }

/* ── STATS ── */
.stats {
    padding: 30px 5%;
    background: rgba(255, 255, 255, .01);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat-n {
    font-size: 40px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-l {
    font-size: 13px;
    color: var(--t2);
}

/* ── SECTION BASE ── */
section {
    padding: 100px 5%;
}

.sec-hd {
    text-align: center;
    margin-bottom: 60px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 15px;
    background: rgba(0, 125, 165, .08);
    border: 1px solid rgba(0, 125, 165, .15);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.sec-title {
    font-size: clamp(30px, 4.5vw, 50px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 18px;
    color: var(--t1);
}

.sec-title span { color: var(--red); }

.sec-sub {
    font-size: 16px;
    color: var(--t2);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── INDUSTRIES ── */
.industries {
    background: var(--bg2);
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.ind-card {
    background: rgba(255, 255, 255, .035);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 45px 35px;
    transition: all .4s var(--ease);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ind-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, .06);
    border-color: var(--teal);
    box-shadow: 0 20px 40px rgba(0, 125, 165, .15);
}

.ind-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: rgba(0, 125, 165, .15);
    color: var(--teal);
    font-size: 22px;
    border: 1px solid rgba(0, 125, 165, .2);
}

.ind-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--t1);
}

.ind-desc {
    font-size: 14px;
    color: var(--t2);
    line-height: 1.7;
}

/* ── PRODUCTS ── */
.products {
    position: relative;
}

.prod-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 45% 45% at 0 50%, rgba(227, 30, 36, .05) 0%, transparent 60%), radial-gradient(ellipse 45% 45% at 100% 50%, rgba(0, 125, 165, .05) 0%, transparent 60%);
    pointer-events: none;
}

.prod-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.prod-card {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    overflow: hidden;
    transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.prod-card:hover {
    transform: translateY(-5px);
    border-color: var(--border2);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .4);
}

.prod-preview {
    padding: 24px;
    background: rgba(255, 255, 255, .01);
    border-bottom: 1px solid var(--border);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.win-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.win-dots {
    display: flex;
    gap: 6px;
}

.win-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.win-dot:nth-child(1) { background: #FF5F57; }
.win-dot:nth-child(2) { background: #FEBC2E; }
.win-dot:nth-child(3) { background: #28C840; }

.win-lbl {
    font-size: 11px;
    color: var(--t3);
    flex: 1;
    text-align: center;
    font-weight: 500;
}

/* hospital ui */
.hosp-ui {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    flex: 1;
}

.hosp-sb {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .04);
    border-radius: 9px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sb-item {
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 10px;
    color: var(--t3);
    transition: background .2s, color .2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sb-item i { width: 12px; text-align: center; }

.sb-item.on {
    background: rgba(0, 125, 165, .15);
    color: var(--teal);
    font-weight: 600;
}

.hosp-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.h-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.h-stat {
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 8px;
    padding: 10px;
}

.h-sl {
    font-size: 9px;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.h-sv {
    font-size: 16px;
    font-weight: 700;
}

.h-table {
    background: rgba(255, 255, 255, .015);
    border: 1px solid rgba(255, 255, 255, .04);
    border-radius: 8px;
    overflow: hidden;
}

.h-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 8px 12px;
    font-size: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .03);
    gap: 10px;
}

.h-row.head {
    background: rgba(255, 255, 255, .03);
    color: var(--t3);
    font-weight: 600;
}

.h-row:not(.head) { color: var(--t2); }

.badge {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 600;
    display: inline-block;
}

.badge.crit { background: rgba(227, 30, 36, .15); color: var(--red); }
.badge.adm { background: rgba(0, 125, 165, .15); color: var(--teal); }

/* dashboard ui */
.dash-ui {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

/* ── WHY SECTION ── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-t {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.why-t span { color: var(--red); }

.why-d {
    font-size: 16px;
    color: var(--t2);
    line-height: 1.8;
    margin-bottom: 35px;
}

.why-pts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-pt {
    display: flex;
    gap: 15px;
}

.wp-ico {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.wp-txt h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.wp-txt p {
    font-size: 14px;
    color: var(--t2);
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.d-kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.d-kpi {
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 8px;
    padding: 10px;
}

.d-kl {
    font-size: 9px;
    color: var(--t3);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.d-kv {
    font-size: 15px;
    font-weight: 700;
}

.d-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    flex: 1;
}

.d-chart {
    background: rgba(255, 255, 255, .015);
    border: 1px solid rgba(255, 255, 255, .04);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.d-ct {
    font-size: 9px;
    color: var(--t3);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.mbars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    flex: 1;
}

.mbar { flex: 1; border-radius: 2px 2px 0 0; }
.donut-wrap { flex: 1; display: flex; align-items: center; justify-content: center; }

/* product info */
.prod-info {
    padding: 30px;
}

.prod-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.prod-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--t1);
    line-height: 1.2;
}

.prod-desc {
    font-size: 14px;
    color: var(--t2);
    line-height: 1.7;
    margin-bottom: 20px;
}

.prod-feats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.pf {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--t2);
}

.pf i { color: var(--teal); font-size: 12px; }

/* ── FOOTER ── */
.footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--border);
    padding: 80px 5% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.ft-brand {
    display: flex;
    flex-direction: column;
}

.ft-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 20px;
}

.ft-tagline {
    font-size: 14px;
    color: var(--t2);
    margin-bottom: 25px;
    line-height: 1.7;
    max-width: 320px;
}

.ft-social {
    display: flex;
    gap: 12px;
}

.soc {
    width: 44px;
    height: 44px;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--t1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    transition: all .35s var(--ease);
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.soc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: currentColor;
    opacity: 0;
    transition: opacity .3s;
    z-index: 0;
}

.soc i {
    position: relative;
    z-index: 1;
}

.soc:hover {
    transform: translateY(-5px) scale(1.05);
    color: #fff;
    border-color: transparent;
}

.soc[title="Facebook"]:hover { background: #1877F2; box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3); }
.soc[title="LinkedIn"]:hover { background: #0A66C2; box-shadow: 0 10px 20px rgba(10, 102, 194, 0.3); }
.soc[title="WhatsApp"]:hover { background: #25D366; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); }
.soc[title="Email"]:hover { background: var(--red); box-shadow: 0 10px 20px var(--red-glow); }

.ft-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--t1);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ft-links {
    list-style: none;
}

.ft-links li {
    margin-bottom: 15px;
}

.ft-links a {
    color: var(--t2);
    text-decoration: none;
    font-size: 15px;
    transition: all .2s;
}

.ft-links a:hover {
    color: var(--teal);
    padding-left: 5px;
}

.ft-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ft-ci {
    display: flex;
    gap: 15px;
}

.ci-ico {
    color: var(--teal);
    font-size: 18px;
    margin-top: 2px;
}

.ci-info {
    font-size: 14px;
    color: var(--t2);
    line-height: 1.5;
}

.ci-info strong {
    display: block;
    font-size: 11px;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.footer-bot {
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--t3);
}

.ft-legal a {
    color: inherit;
    text-decoration: none;
    margin-left: 30px;
    transition: color .2s;
}

.ft-legal a:hover { color: var(--teal); }

/* ── UTILS ── */
.rv { opacity: 0; transform: translateY(30px); transition: all .7s var(--ease); }
.rv.on { opacity: 1; transform: none; }
.d1 { transition-delay: .1s }
.d2 { transition-delay: .2s }

/* -- RESPONSIVE -- */
.mobile-only { display: none; }
.mobile-close { display: none; }
.nav-toggle { display: none; }

@media (max-width: 1024px) {
    .nav {
        width: 92%;
        top: 15px;
        padding: 0 10px 0 20px;
        height: 55px;
    }
    .nav-logo img { height: 15px !important; }
    .nav-links { display: none; }
    .nav-toggle { 
        display: block; 
        background: none; 
        border: none; 
        color: var(--t1); 
        font-size: 22px; 
        cursor: pointer;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-close { 
        display: block !important; 
        position: absolute; 
        top: 20px; 
        right: 20px; 
    }
    .mobile-close button { 
        background: none; 
        border: none; 
        color: var(--t1); 
        font-size: 28px; 
        cursor: pointer;
    }
    .mobile-close button:hover { color: var(--red); }

    .nav-links.open {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--nav-scroll-bg) !important;
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 80px 5% 40px;
        gap: 25px;
        z-index: 9999 !important;
        animation: fadeIn .4s var(--ease) forwards;
        visibility: visible !important;
    }

    .nav-links.open li { width: auto; text-align: center; display: block !important; }
    .nav-link { font-size: 24px; font-weight: 700; padding: 10px 0; border: none; width: auto; color: var(--t1); }
    .nav-link.active { color: var(--teal); }
    .nav-link.active::after { display: none; }
    .mobile-only { display: block !important; }
    .desktop-only { display: none !important; }

    .hero { flex-direction: column; text-align: center; padding: 140px 5% 80px; gap: 60px; min-height: auto; }
    .hero-left { display: flex; flex-direction: column; align-items: center; max-width: 100%; }
    .hero-btns { justify-content: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-right { width: 100%; max-width: 500px; margin: 0 auto; }

    .why-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .why-grid > div:nth-child(even) { order: -1; }
    .why-vis { justify-content: center; }
    .why-d { margin-left: auto; margin-right: auto; }
    .why-pt { justify-content: center; text-align: left; }

    .ind-grid, .prod-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ind-grid, .prod-grid { grid-template-columns: 1fr; }
    .hero-h1 { font-size: 42px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bot { flex-direction: column; gap: 20px; text-align: center; }
    .ft-legal { margin-right: 0; }
    
    section { padding: 80px 5%; }
    .sec-title { font-size: 32px; }
    
    .mk-metrics { grid-template-columns: 1fr; }

    .stats-grid { gap: 10px; }
    .stat-n { font-size: 26px; }
    .stat-l { font-size: 10px; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
