/* Zeevio Frontend Styles */
:root {
    --zeevio-blue: #3b82f6;
    --zeevio-blue-dark: #2563eb;
    --zeevio-blue-xl: #1d4ed8;
    --zeevio-indigo: #6366f1;
    --zeevio-dark: #0f172a;
    --zeevio-dark2: #1e293b;
    --zeevio-gray: #64748b;
    --zeevio-light: #f8faff;
    --zeevio-border: #e2e8f0;
    --zeevio-white: #ffffff;
    --zeevio-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --zeevio-container: 1180px;
    --zeevio-shadow: 0 1px 3px rgba(0,0,0,.08);
    --zeevio-shadow-lg: 0 10px 25px rgba(0,0,0,.1);
    --zeevio-radius: 12px;
}

/* ── Reset ────────────────────────────────────────────────── */
.zeevio-site-header *, .zeevio-site-footer *, .zeevio-hp-main * { box-sizing: border-box; }
.zeevio-site-header a, .zeevio-site-footer a { text-decoration: none; }

/* ── Container ────────────────────────────────────────────── */
.zeevio-container {
    max-width: var(--zeevio-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */

/* Top Bar */
.zeevio-topbar {
    width: 100%;
    text-align: center;
    padding: 9px 20px;
    font-size: 13px;
    font-family: var(--zeevio-font);
    z-index: 1001;
    position: relative;
    font-weight: 500;
    letter-spacing: .01em;
}
.zeevio-topbar p { margin: 0; }

/* Main Header */
.zeevio-site-header {
    width: 100%;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--zeevio-border);
    z-index: 1000;
    font-family: var(--zeevio-font);
    transition: box-shadow .35s, background .35s, border-color .35s;
    position: relative;
    /* NO backdrop-filter here — it creates a stacking context that traps
       position:fixed children (mobile nav). Blur is on ::after instead. */
}
.zeevio-site-header.zeevio-scrolled {
    background: rgba(255,255,255,.78);
    box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 8px 32px rgba(0,0,0,.07);
    border-bottom-color: rgba(226,232,240,.5);
}
.zeevio-site-header.zeevio-scrolled::after {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: -1;
    pointer-events: none;
}
.zeevio-sticky-header { position: sticky; top: 0; }
.zeevio-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 24px;
}

/* ── Logo ─────────────────────────────── */
.zeevio-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.zeevio-logo-img { height: 44px; width: auto; object-fit: contain; }

/* Icon square (text-logo mode) */
.zeevio-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--zeevio-hacc, #3b82f6) 0%, #6366f1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59,130,246,.3);
    letter-spacing: -0.5px;
    font-family: var(--zeevio-font);
}

.zeevio-logo-text-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.zeevio-logo-brand {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.5px;
    background: linear-gradient(135deg, var(--zeevio-hacc, #3b82f6) 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.zeevio-logo-tag {
    font-size: 11px;
    color: var(--zeevio-htxt, #64748b);
    opacity: .7;
    font-weight: 400;
    letter-spacing: .03em;
}

/* ── Navigation ───────────────────────── */
.zeevio-header-nav { flex: 1; display: flex; justify-content: center; }
.zeevio-nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.zeevio-nav-menu li { position: relative; }
.zeevio-nav-menu a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--zeevio-htxt, #374151);
    border-radius: 8px;
    transition: color .2s;
    position: relative;
    text-decoration: none;
}

/* Underline slide animation */
.zeevio-nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: linear-gradient(90deg, var(--zeevio-hacc, #3b82f6), #6366f1);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s cubic-bezier(.4,0,.2,1);
}
.zeevio-nav-menu > li > a:hover                 { color: var(--zeevio-hacc, #3b82f6); background: transparent; }
.zeevio-nav-menu > li > a:hover::after          { transform: scaleX(1); }
.zeevio-nav-menu .current-menu-item > a,
.zeevio-nav-menu .current_page_item > a         { color: var(--zeevio-hacc, #3b82f6); background: transparent; }
.zeevio-nav-menu .current-menu-item > a::after,
.zeevio-nav-menu .current_page_item > a::after  { transform: scaleX(1); }

/* Sub-menus */
.zeevio-nav-menu .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 190px;
    background: #fff;
    border: 1px solid rgba(226,232,240,.8);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.1), 0 1px 0 rgba(0,0,0,.04);
    list-style: none;
    margin: 0;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s, transform .22s cubic-bezier(.4,0,.2,1), visibility .2s;
    z-index: 100;
}
.zeevio-nav-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.zeevio-nav-menu .sub-menu a { font-size: 13px; border-radius: 8px; padding: 8px 12px; color: var(--zeevio-htxt, #374151); }
.zeevio-nav-menu .sub-menu a:hover { color: var(--zeevio-hacc, #3b82f6); background: rgba(59,130,246,.06); }
.zeevio-nav-menu .sub-menu a::after { display: none; }

/* ── Actions ──────────────────────────── */
.zeevio-header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* CTA — gradient pill */
.zeevio-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px 10px 14px;
    background: linear-gradient(135deg, var(--zeevio-hacc, #3b82f6) 0%, #6366f1 100%);
    color: #fff !important;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    transition: transform .22s, box-shadow .22s;
    box-shadow: 0 4px 14px rgba(59,130,246,.35);
    position: relative;
    overflow: hidden;
}
.zeevio-header-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, transparent 100%);
    pointer-events: none;
}
.zeevio-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59,130,246,.45);
    color: #fff !important;
}

/* Available dot */
.zeevio-avail-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    animation: zeevioAvailPulse 2.4s ease-in-out infinite;
}
@keyframes zeevioAvailPulse {
    0%, 100% { box-shadow: 0 0 0 2px rgba(74,222,128,.3); }
    50%       { box-shadow: 0 0 0 4px rgba(74,222,128,.1); }
}

.zeevio-cta-arrow {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform .2s;
}
.zeevio-header-cta:hover .zeevio-cta-arrow { transform: translateX(2px); }

/* Hamburger */
.zeevio-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 9px;
    cursor: pointer;
    padding: 0;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
    z-index: 9999;
}
.zeevio-hamburger:hover { background: rgba(59,130,246,.06); border-color: rgba(59,130,246,.25); }
.zeevio-hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--zeevio-htxt, #374151);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.zeevio-hamburger.zeevio-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.zeevio-hamburger.zeevio-open span:nth-child(2) { opacity: 0; }
.zeevio-hamburger.zeevio-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mobile backdrop ──────────────────── */
.zeevio-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.55);
    z-index: 999;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    animation: zeevioBackdropIn .22s ease;
}
.zeevio-nav-backdrop.zeevio-visible { display: block; }
@keyframes zeevioBackdropIn { from { opacity: 0; } to { opacity: 1; } }

/* ── Nav close button (mobile only) ──── */
.zeevio-nav-close {
    align-self: flex-end;
    background: rgba(0,0,0,.06);
    border: none;
    border-radius: 8px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1e293b;
    transition: background .2s;
    flex-shrink: 0;
    margin-bottom: 8px;
}
.zeevio-nav-close:hover { background: rgba(0,0,0,.12); }
.zeevio-nav-close svg { width: 16px; height: 16px; pointer-events: none; }
/* Hidden on desktop — no display:none conflict with mobile override */
@media (min-width: 769px) { .zeevio-nav-close { display: none; } }

/* ── Mobile ───────────────────────────── */
@media (max-width: 768px) {
    .zeevio-hamburger { display: flex; }
    .zeevio-site-header { position: relative; }

    /* Slide-in panel from right */
    .zeevio-header-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(280px, 82vw);
        background: #fff;
        border-left: 1px solid rgba(226,232,240,.7);
        padding: 16px;
        z-index: 1001;
        /* Panel stays at right:0 always — no large translate that causes overflow.
           Closed: invisible + small nudge. Open: visible + no nudge. */
        opacity: 0;
        visibility: hidden;
        transform: translateX(20px);
        transition: opacity .25s, visibility .25s, transform .28s cubic-bezier(.4,0,.2,1);
        overflow-y: auto;
        box-shadow: -8px 0 40px rgba(0,0,0,.12);
        justify-content: flex-start;
    }
    .zeevio-header-nav.zeevio-nav-open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .zeevio-nav-menu { flex-direction: column; align-items: stretch; gap: 2px; margin-top: 0; }
    .zeevio-nav-menu a { padding: 11px 14px; border-radius: 9px; }
    .zeevio-nav-menu > li > a::after { display: none; }
    .zeevio-nav-menu > li > a:hover,
    .zeevio-nav-menu .current-menu-item > a,
    .zeevio-nav-menu .current_page_item > a { background: rgba(59,130,246,.08); color: var(--zeevio-hacc, #3b82f6); }
    .zeevio-nav-menu .sub-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: none; border-left: 2px solid var(--zeevio-border);
        border-radius: 0; margin-left: 14px; padding: 4px 0; background: transparent;
    }
    .zeevio-header-cta { font-size: 13px; padding: 9px 16px 9px 12px; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.zeevio-site-footer {
    background: var(--zeevio-fbg, #0f172a);
    color: var(--zeevio-ftxt, #94a3b8);
    font-family: var(--zeevio-font);
    padding: 64px 0 0;
}
.zeevio-footer-cols {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
@media (max-width: 900px) { .zeevio-footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .zeevio-footer-cols { grid-template-columns: 1fr; } }

.zeevio-footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--zeevio-facc, #3b82f6);
    margin-bottom: 12px;
    letter-spacing: -.5px;
}
.zeevio-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--zeevio-ftxt, #94a3b8);
    margin: 0 0 20px;
}
.zeevio-footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.zeevio-social-icon {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zeevio-ftxt, #94a3b8);
    transition: background .2s, color .2s, border-color .2s;
}
.zeevio-social-icon:hover {
    background: var(--zeevio-facc, #3b82f6);
    border-color: var(--zeevio-facc, #3b82f6);
    color: #fff;
}
.zeevio-social-icon svg { width: 16px; height: 16px; }

.zeevio-footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--zeevio-fhead, #f1f5f9);
    margin: 0 0 16px;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.zeevio-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.zeevio-footer-links a {
    font-size: 14px;
    color: var(--zeevio-ftxt, #94a3b8);
    transition: color .2s, padding-left .2s;
    display: inline-block;
}
.zeevio-footer-links a:hover { color: var(--zeevio-facc, #3b82f6); padding-left: 4px; }
.zeevio-footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.zeevio-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--zeevio-ftxt, #94a3b8);
}
.zeevio-footer-contact-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--zeevio-facc, #3b82f6); }
.zeevio-footer-contact-list a { color: var(--zeevio-ftxt, #94a3b8); transition: color .2s; }
.zeevio-footer-contact-list a:hover { color: var(--zeevio-facc, #3b82f6); }

.zeevio-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.zeevio-copyright, .zeevio-footer-credit {
    font-size: 13px;
    color: var(--zeevio-ftxt, #94a3b8);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — Global
═══════════════════════════════════════════════════════════ */
.zeevio-homepage, .zeevio-hp-main { font-family: var(--zeevio-font); }
.zeevio-hp-main section { overflow: hidden; }

/* Section Head */
.zeevio-section-head { text-align: center; margin-bottom: 52px; }
.zeevio-section-badge {
    display: inline-block;
    background: rgba(59,130,246,.1);
    color: var(--zeevio-blue);
    border: 1px solid rgba(59,130,246,.2);
    border-radius: 20px;
    padding: 5px 16px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}
.zeevio-section-badge--light {
    background: rgba(255,255,255,.15);
    color: #fff;
    border-color: rgba(255,255,255,.25);
}
.zeevio-section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--zeevio-dark2);
    margin: 0;
    letter-spacing: -.5px;
    line-height: 1.15;
}

/* Scroll Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate].zeevio-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ── HERO ─────────────────────────────────────────────────── */
.zeevio-hp-hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #fafbff 50%, #f5f0ff 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0 60px;
}
.zeevio-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 820px) {
    .zeevio-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .zeevio-hp-hero { min-height: auto; padding: 60px 0 40px; }
    .zeevio-hero-visual { order: -1; }
    .zeevio-hero-img-wrap { max-width: 280px; margin: 0 auto; }
}

/* Hero Content */
.zeevio-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59,130,246,.08);
    border: 1px solid rgba(59,130,246,.2);
    color: var(--zeevio-blue-dark);
    border-radius: 20px;
    padding: 7px 18px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}
.zeevio-badge-dot {
    width: 8px; height: 8px;
    background: var(--zeevio-blue);
    border-radius: 50%;
    animation: zeevioPulse 2s ease-in-out infinite;
}
@keyframes zeevioPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(.8); }
}

.zeevio-hero-name {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 900;
    color: var(--zeevio-dark2);
    line-height: 1.1;
    margin: 0 0 12px;
    letter-spacing: -1px;
}
.zeevio-accent-text {
    color: var(--zeevio-blue);
    display: block;
}

.zeevio-hero-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: var(--zeevio-gray);
    margin-bottom: 20px;
    min-height: 36px;
}
.zeevio-cursor {
    display: inline-block;
    animation: zeevioBlink .8s step-end infinite;
    color: var(--zeevio-blue);
}
@keyframes zeevioBlink { 50% { opacity: 0; } }

.zeevio-hero-desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--zeevio-gray);
    margin: 0 0 32px;
    max-width: 520px;
}

.zeevio-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.zeevio-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s;
    border: 2px solid transparent;
}
.zeevio-btn-hero svg { width: 16px; height: 16px; }
.zeevio-btn-hero--primary {
    background: var(--zeevio-blue);
    color: #fff;
    border-color: var(--zeevio-blue);
    box-shadow: 0 4px 15px rgba(59,130,246,.35);
}
.zeevio-btn-hero--primary:hover {
    background: var(--zeevio-blue-dark);
    border-color: var(--zeevio-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59,130,246,.4);
    color: #fff;
}
.zeevio-btn-hero--outline {
    background: transparent;
    color: var(--zeevio-blue);
    border-color: var(--zeevio-blue);
}
.zeevio-btn-hero--outline:hover {
    background: var(--zeevio-blue);
    color: #fff;
    transform: translateY(-2px);
}

/* Tech Badges */
.zeevio-hero-tech { display: flex; gap: 8px; flex-wrap: wrap; }
.zeevio-tech-badge {
    background: var(--zeevio-white);
    border: 1.5px solid var(--zeevio-border);
    color: var(--zeevio-dark2);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--zeevio-shadow);
    transition: border-color .2s, color .2s;
}
.zeevio-tech-badge:hover { border-color: var(--zeevio-blue); color: var(--zeevio-blue); }

/* Hero Visual */
.zeevio-hero-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zeevio-hero-img {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    object-fit: cover;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 60px rgba(59,130,246,.2);
    position: relative;
    z-index: 2;
}
.zeevio-hero-placeholder {
    width: 340px;
    height: 380px;
    background: linear-gradient(135deg, #dbeafe, #e0e7ff);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(59,130,246,.2);
    position: relative;
    z-index: 2;
}
.zeevio-hero-initials {
    font-size: 80px;
    font-weight: 900;
    color: var(--zeevio-blue);
    opacity: .5;
}

/* Float Cards */
.zeevio-float-card {
    position: absolute;
    background: var(--zeevio-white);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    display: flex;
    flex-direction: column;
    text-align: center;
    z-index: 5;
    animation: zeevioFloat 3s ease-in-out infinite;
}
.zeevio-float-card span { font-size: 18px; font-weight: 800; color: var(--zeevio-blue); line-height: 1; }
.zeevio-float-card small { font-size: 11px; color: var(--zeevio-gray); margin-top: 2px; white-space: nowrap; }
.zeevio-float-card--1 { bottom: 12%; left: -6%; animation-delay: 0s; }
.zeevio-float-card--2 { top: 12%; right: -6%; animation-delay: 1.5s; }
@keyframes zeevioFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.zeevio-hero-shape {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 45%;
    background: radial-gradient(ellipse at 70% 50%, rgba(59,130,246,.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ── STATS ────────────────────────────────────────────────── */
.zeevio-hp-stats {
    background: linear-gradient(135deg, var(--zeevio-blue-xl) 0%, var(--zeevio-indigo) 100%);
    padding: 52px 0;
}
.zeevio-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
@media (max-width: 640px) { .zeevio-stats-row { grid-template-columns: repeat(2, 1fr); gap: 1px; } }
.zeevio-stat-box {
    text-align: center;
    padding: 28px 20px;
    border-right: 1px solid rgba(255,255,255,.15);
    color: #fff;
}
.zeevio-stat-box:last-child { border-right: none; }
.zeevio-stat-number {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}
.zeevio-stat-label {
    font-size: 14px;
    opacity: .8;
    font-weight: 500;
}

/* ── SERVICES ─────────────────────────────────────────────── */
.zeevio-hp-services {
    background: var(--zeevio-white);
    padding: 96px 0;
}
.zeevio-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .zeevio-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .zeevio-services-grid { grid-template-columns: 1fr; } }

.zeevio-service-card {
    border: 1.5px solid var(--zeevio-border);
    border-radius: var(--zeevio-radius);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s, transform .25s;
    cursor: default;
}
.zeevio-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59,130,246,.04), transparent);
    opacity: 0;
    transition: opacity .25s;
}
.zeevio-service-card:hover {
    border-color: var(--zeevio-blue);
    box-shadow: 0 8px 30px rgba(59,130,246,.12);
    transform: translateY(-4px);
}
.zeevio-service-card:hover::before { opacity: 1; }
.zeevio-service-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
    line-height: 1;
}
.zeevio-service-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--zeevio-dark2);
    margin: 0 0 10px;
}
.zeevio-service-desc {
    font-size: 14px;
    color: var(--zeevio-gray);
    line-height: 1.7;
    margin: 0 0 16px;
}
.zeevio-service-arrow {
    color: var(--zeevio-blue);
    font-size: 18px;
    font-weight: 700;
    transition: transform .25s;
}
.zeevio-service-card:hover .zeevio-service-arrow { transform: translateX(6px); }

/* ── SKILLS ───────────────────────────────────────────────── */
.zeevio-hp-skills {
    background: var(--zeevio-light);
    padding: 96px 0;
}
.zeevio-skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 48px;
}
@media (max-width: 640px) { .zeevio-skills-grid { grid-template-columns: 1fr; gap: 18px; } }

.zeevio-skill-item {}
.zeevio-skill-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.zeevio-skill-name { font-size: 14px; font-weight: 600; color: var(--zeevio-dark2); }
.zeevio-skill-pct  { font-size: 14px; font-weight: 700; color: var(--zeevio-blue); }
.zeevio-skill-bar {
    height: 8px;
    background: var(--zeevio-border);
    border-radius: 4px;
    overflow: hidden;
}
.zeevio-skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--zeevio-blue), var(--zeevio-indigo));
    border-radius: 4px;
    transition: width 1s cubic-bezier(.4,0,.2,1);
}

/* ── PORTFOLIO ────────────────────────────────────────────── */
.zeevio-hp-portfolio {
    background: var(--zeevio-white);
    padding: 96px 0;
}
.zeevio-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .zeevio-portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .zeevio-portfolio-grid { grid-template-columns: 1fr; } }

.zeevio-portfolio-card {
    border-radius: var(--zeevio-radius);
    overflow: hidden;
    border: 1px solid var(--zeevio-border);
    transition: transform .25s, box-shadow .25s;
}
.zeevio-portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--zeevio-shadow-lg); }
.zeevio-portfolio-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--zeevio-light);
}
.zeevio-portfolio-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.zeevio-portfolio-card:hover .zeevio-portfolio-img img { transform: scale(1.06); }
.zeevio-portfolio-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #dbeafe, #e0e7ff);
    display: flex;
    align-items: center;
    justify-content: center;
}
.zeevio-portfolio-placeholder span { font-size: 40px; font-weight: 900; color: var(--zeevio-blue); opacity: .4; }
.zeevio-portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(59,130,246,.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s;
}
.zeevio-portfolio-card:hover .zeevio-portfolio-overlay { opacity: 1; }
.zeevio-portfolio-link {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid #fff;
    padding: 10px 22px;
    border-radius: 8px;
    transition: background .2s;
}
.zeevio-portfolio-link:hover { background: rgba(255,255,255,.15); }
.zeevio-portfolio-info { padding: 16px 18px; }
.zeevio-portfolio-cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--zeevio-blue);
    display: block;
    margin-bottom: 4px;
}
.zeevio-portfolio-title { font-size: 15px; font-weight: 700; color: var(--zeevio-dark2); margin: 0; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.zeevio-hp-testimonials {
    background: linear-gradient(180deg, var(--zeevio-light) 0%, #fff 100%);
    padding: 96px 0;
}
.zeevio-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 840px) { .zeevio-testimonials-grid { grid-template-columns: 1fr; } }

.zeevio-testimonial-card {
    background: var(--zeevio-white);
    border: 1.5px solid var(--zeevio-border);
    border-radius: var(--zeevio-radius);
    padding: 28px;
    position: relative;
    transition: border-color .25s, box-shadow .25s;
}
.zeevio-testimonial-card:hover {
    border-color: var(--zeevio-blue);
    box-shadow: 0 8px 30px rgba(59,130,246,.1);
}
.zeevio-quote-icon {
    font-size: 56px;
    line-height: .6;
    color: var(--zeevio-blue);
    opacity: .2;
    font-family: Georgia, serif;
    font-weight: 900;
    margin-bottom: 12px;
}
.zeevio-stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.zeevio-testimonial-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--zeevio-gray);
    margin: 0 0 20px;
    font-style: italic;
}
.zeevio-testimonial-author { display: flex; align-items: center; gap: 12px; }
.zeevio-author-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--zeevio-blue), var(--zeevio-indigo));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 17px;
    flex-shrink: 0;
}
.zeevio-testimonial-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--zeevio-dark2); }
.zeevio-testimonial-author span { font-size: 12px; color: var(--zeevio-gray); }

/* ── CONTACT CTA ──────────────────────────────────────────── */
.zeevio-hp-contact-cta {
    background: linear-gradient(135deg, var(--zeevio-dark) 0%, #1a1040 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.zeevio-contact-cta-inner { position: relative; z-index: 2; }
.zeevio-cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,.18) 0%, transparent 70%);
    pointer-events: none;
}
.zeevio-cta-title {
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 900;
    color: #fff;
    margin: 12px 0 16px;
    letter-spacing: -.5px;
}
.zeevio-cta-sub {
    font-size: 17px;
    color: rgba(255,255,255,.7);
    margin: 0 auto 36px;
    max-width: 500px;
}
.zeevio-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.zeevio-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s;
    border: 2px solid transparent;
}
.zeevio-cta-btn svg { width: 18px; height: 18px; }
.zeevio-cta-btn--primary {
    background: var(--zeevio-blue);
    color: #fff;
    border-color: var(--zeevio-blue);
    box-shadow: 0 4px 20px rgba(59,130,246,.4);
}
.zeevio-cta-btn--primary:hover { background: var(--zeevio-blue-dark); border-color: var(--zeevio-blue-dark); transform: translateY(-2px); color: #fff; }
.zeevio-cta-btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.4);
}
.zeevio-cta-btn--outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); transform: translateY(-2px); color: #fff; }

/* ── Utilities ────────────────────────────────────────────── */
@media (max-width: 640px) {
    .zeevio-section-title { font-size: 26px; }
    .zeevio-hp-services, .zeevio-hp-skills, .zeevio-hp-portfolio, .zeevio-hp-testimonials, .zeevio-hp-contact-cta { padding: 64px 0; }
}
