:root{
    --bg:#070b16;
    --bg-soft:#0b1020;
    --card:rgba(255,255,255,.075);
    --border:rgba(255,255,255,.12);
    --text:#ffffff;
    --muted:#a8b3cf;
    --blue:#00c6ff;
    --blue-2:#147cff;
    --purple:#2563ff;
    --green:#22c55e;
    --shadow:0 30px 90px rgba(0,0,0,.45);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
    margin:0;
    font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
    position:relative;
}

a{text-decoration:none}

main,header,footer{
    position:relative;
    z-index:2;
}

/* Background */
.landing-bg{
    position:fixed;
    inset:0;
    z-index:-3;
    background:
        radial-gradient(circle at 12% 8%,rgba(0,198,255,.25),transparent 35%),
        radial-gradient(circle at 85% 10%,rgba(20,124,255,.20),transparent 30%),
        linear-gradient(180deg,#071021 0%,#060814 55%,#04050d 100%);
    animation:auroraMove 16s ease-in-out infinite alternate;
}

.landing-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
    background-size:70px 70px;
    mask-image:linear-gradient(to bottom,black,transparent 80%);
}

.landing-glow{
    position:fixed;
    width:420px;
    height:420px;
    border-radius:999px;
    filter:blur(90px);
    opacity:.38;
    z-index:-2;
}

.glow-one{
    top:120px;
    left:-120px;
    background:var(--blue-2);
}

.glow-two{
    bottom:80px;
    right:-120px;
    background:var(--blue);
}

/* Navbar */
.vl-navbar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:50;
    padding:16px 0;
    transition:.25s ease;
}

.vl-navbar.scrolled{
    padding:10px 0;
    background:rgba(7,11,22,.78);
    backdrop-filter:blur(18px);
    border-bottom:1px solid var(--border);
}

.nav-inner{
    min-height:66px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
}

.brand{
    display:flex;
    align-items:center;
    color:#fff;
}

.brand-logo img{
    width:260px;
    height:auto;
    display:block;
    object-fit:contain;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:26px;
}

.nav-links a{
    color:var(--muted);
    font-size:14px;
    font-weight:700;
}

.nav-links a:hover{color:#fff}

.nav-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.btn-login{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:42px;
    padding:0 18px;
    border-radius:999px;
    color:#fff;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    font-weight:800;
    font-size:14px;
}

.btn-login:hover{
    color:#fff;
    background:rgba(255,255,255,.14);
}

.btn-primary-glow,
.btn-secondary-glass{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    font-weight:850;
    transition:.25s ease;
    white-space:nowrap;
}

.btn-primary-glow{
    color:#fff;
    padding:11px 20px;
    background:linear-gradient(135deg,var(--blue-2),var(--blue));
    box-shadow:0 15px 45px rgba(0,198,255,.32);
    position:relative;
    overflow:hidden;
}

.btn-primary-glow:hover{
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 22px 65px rgba(0,198,255,.48);
}

.btn-primary-glow::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,.30),transparent);
    transform:translateX(-150%);
}

.btn-primary-glow:hover::after{
    transition:.8s;
    transform:translateX(150%);
}

.btn-secondary-glass{
    color:#fff;
    padding:11px 20px;
    background:rgba(255,255,255,.08);
    border:1px solid var(--border);
}

.btn-secondary-glass:hover{
    color:#fff;
    background:rgba(255,255,255,.13);
    transform:translateY(-2px);
}

.btn-lg-custom{
    min-height:52px;
    padding-left:26px;
    padding-right:26px;
}

.mobile-toggle{
    display:none;
    width:42px;
    height:42px;
    border:1px solid var(--border);
    border-radius:12px;
    background:rgba(255,255,255,.08);
}

.mobile-toggle span{
    display:block;
    width:18px;
    height:2px;
    margin:4px auto;
    background:#fff;
    border-radius:5px;
}

/* Hero */
.hero-section{
    min-height:100vh;
    padding:155px 0 80px;
    display:flex;
    align-items:center;
}

.hero-logo{
    margin-bottom:22px;
}

.hero-logo img{
    width:390px;
    max-width:100%;
    height:auto;
}

.eyebrow,
.section-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#bceeff;
    font-weight:850;
    font-size:13px;
    letter-spacing:.6px;
    text-transform:uppercase;
}

.eyebrow span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--green);
    box-shadow:0 0 18px var(--green);
}

.hero-content h1{
    margin:22px 0;
    font-size:clamp(46px,7vw,82px);
    line-height:.98;
    letter-spacing:-3px;
    font-weight:950;
    text-shadow:0 0 20px rgba(0,198,255,.16);
}

.hero-content h1 span{
    display:block;
    background:linear-gradient(135deg,#fff,#8beeff,#147cff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-subtitle{
    max-width:610px;
    color:var(--muted);
    font-size:18px;
    line-height:1.8;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:34px;
}

.hero-metrics{
    display:flex;
    gap:28px;
    margin-top:42px;
}

.hero-metrics div{
    padding-right:28px;
    border-right:1px solid var(--border);
}

.hero-metrics div:last-child{border-right:0}

.hero-metrics strong{
    display:block;
    font-size:30px;
}

.hero-metrics span{
    color:var(--muted);
    font-size:13px;
}

/* Dashboard Cards */
.hero-dashboard{
    position:relative;
    padding:24px;
    border:1px solid var(--border);
    border-radius:32px;
    background:linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.04));
    box-shadow:var(--shadow);
    backdrop-filter:blur(22px);
    animation:dashboardFloat 5s ease-in-out infinite;
}

.hero-dashboard::before{
    content:"";
    position:absolute;
    inset:-1px;
    border-radius:32px;
    background:linear-gradient(135deg,rgba(0,198,255,.65),transparent 32%,rgba(20,124,255,.45));
    z-index:-1;
    filter:blur(18px);
    opacity:.45;
}

.hero-dashboard::after{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:34px;
    padding:2px;
    background:linear-gradient(135deg,rgba(0,198,255,.6),rgba(20,124,255,.3),rgba(0,198,255,.55));
    -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;
    opacity:.55;
}

.dashboard-top,
.dash-card-head,
.conversation-item,
.bo-header,
.footer-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.small-label{
    color:var(--muted);
    font-size:12px;
    font-weight:700;
}

.dashboard-top h3{
    margin:4px 0 0;
    font-size:22px;
}

.live-badge,
.voice-status{
    display:inline-flex;
    align-items:center;
    gap:8px;
    border:1px solid rgba(34,197,94,.35);
    color:#bbf7d0;
    background:rgba(34,197,94,.10);
    padding:8px 12px;
    border-radius:999px;
    font-weight:850;
    font-size:12px;
}

.live-badge{animation:livePulse 2s infinite}

.live-badge span,
.voice-status span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--green);
    box-shadow:0 0 12px var(--green);
}

.dashboard-grid{
    margin-top:22px;
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:16px;
}

.dash-card{
    min-height:150px;
    padding:18px;
    border-radius:22px;
    border:1px solid var(--border);
    background:rgba(5,7,20,.58);
    transition:.35s ease;
}

.dash-card:hover{
    transform:translateY(-8px);
    border-color:rgba(0,198,255,.45);
    box-shadow:0 25px 70px rgba(0,198,255,.16);
}

.dash-card.big{grid-row:span 2}
.dash-card.wide{grid-column:span 2}

.dash-card span{
    color:var(--muted);
    font-weight:700;
    font-size:13px;
}

.dash-card strong{
    display:block;
    margin-top:8px;
    font-size:28px;
}

.dash-card small{color:#86efac}

.mini-chart{
    height:190px;
    display:flex;
    align-items:end;
    gap:12px;
    margin-top:24px;
}

.mini-chart i{
    flex:1;
    border-radius:999px 999px 8px 8px;
    background:linear-gradient(180deg,var(--blue),var(--blue-2));
    box-shadow:0 0 22px rgba(0,198,255,.28);
    animation:chartPulse 2.5s ease-in-out infinite alternate;
}

.conversation-item{
    gap:14px;
    justify-content:flex-start;
    padding:12px 0;
    border-bottom:1px solid var(--border);
}

.conversation-item:last-child{border-bottom:0}

.conversation-item .avatar{
    width:42px;
    height:42px;
    border-radius:14px;
    display:grid;
    place-items:center;
    font-weight:900;
    background:rgba(0,198,255,.16);
    color:#bae6fd;
}

.conversation-item .avatar.blue{
    background:rgba(20,124,255,.18);
    color:#dbeafe;
}

.conversation-item p{
    margin:2px 0 0;
    color:var(--muted);
    font-size:13px;
}

.conversation-item>span{
    margin-left:auto;
    font-size:12px;
}

/* General Sections */
.section-padding{padding:100px 0}

.section-header{
    text-align:center;
    max-width:720px;
    margin:0 auto 54px;
}

.section-header h2,
.rachel-panel h2,
.cta-box h2{
    margin-top:14px;
    font-size:clamp(34px,5vw,56px);
    line-height:1.05;
    letter-spacing:-2px;
    font-weight:950;
}

.section-header p,
.rachel-panel p,
.cta-box p{
    color:var(--muted);
    font-size:17px;
    line-height:1.8;
}

.trusted-section{padding:20px 0 60px}

.section-kicker{
    text-align:center;
    color:var(--muted);
    font-weight:850;
    text-transform:uppercase;
    font-size:12px;
    letter-spacing:1px;
}

.trusted-row{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
    margin-top:20px;
}

.trusted-row span{
    padding:12px 18px;
    border-radius:999px;
    color:#dbeafe;
    background:rgba(255,255,255,.07);
    border:1px solid var(--border);
    font-weight:850;
}

/* Feature / Cards */
.feature-card,
.pricing-card,
.rachel-panel,
.bo-preview,
.cta-box{
    border:1px solid var(--border);
    background:linear-gradient(180deg,rgba(255,255,255,.095),rgba(255,255,255,.045));
    box-shadow:var(--shadow);
    backdrop-filter:blur(20px);
}

.feature-card,
.pricing-card{
    position:relative;
    overflow:hidden;
}

.feature-card{
    height:100%;
    padding:30px;
    border-radius:28px;
    transition:.35s ease;
}

.feature-card:hover,
.pricing-card:hover,
.voice-card:hover{
    transform:translateY(-8px);
    border-color:rgba(0,198,255,.45);
    box-shadow:0 25px 70px rgba(0,198,255,.16);
}

.feature-card::before,
.pricing-card::before{
    content:"";
    position:absolute;
    top:-120%;
    left:-60%;
    width:80px;
    height:250%;
    background:linear-gradient(rgba(255,255,255,0),rgba(255,255,255,.22),rgba(255,255,255,0));
    transform:rotate(25deg);
    transition:.7s;
}

.feature-card:hover::before,
.pricing-card:hover::before{left:130%}

.feature-icon{
    width:56px;
    height:56px;
    border-radius:18px;
    display:grid;
    place-items:center;
    font-size:25px;
    background:rgba(0,198,255,.13);
    margin-bottom:24px;
}

.feature-card h3{
    font-size:22px;
    font-weight:900;
}

.feature-card p{
    color:var(--muted);
    line-height:1.75;
}

/* Rachel */
.rachel-panel{
    padding:54px;
    border-radius:36px;
    position:relative;
    overflow:hidden;
}

.rachel-panel::after{
    content:"";
    position:absolute;
    width:360px;
    height:360px;
    right:-120px;
    top:-120px;
    border-radius:50%;
    background:rgba(0,198,255,.18);
    filter:blur(70px);
}

.rachel-list{
    display:grid;
    gap:14px;
    margin-top:28px;
}

.rachel-list div{
    color:#e5e7eb;
    font-weight:700;
}

.rachel-list span{
    color:var(--green);
    margin-right:8px;
}

.voice-card{
    position:relative;
    z-index:2;
    padding:38px;
    border-radius:32px;
    background:rgba(5,7,20,.62);
    border:1px solid var(--border);
    text-align:center;
    transition:.35s ease;
}

.voice-orb{
    width:160px;
    height:160px;
    margin:0 auto 30px;
    position:relative;
    display:grid;
    place-items:center;
}

.voice-orb span{
    position:absolute;
    inset:0;
    border-radius:50%;
    border:1px solid rgba(0,198,255,.42);
    animation:orb 2.6s infinite;
}

.voice-orb span:nth-child(2){
    inset:18px;
    animation-delay:.4s;
}

.voice-orb strong{
    width:92px;
    height:92px;
    border-radius:50%;
    display:grid;
    place-items:center;
    font-size:42px;
    background:linear-gradient(135deg,var(--blue-2),var(--blue));
    box-shadow:0 0 60px rgba(0,198,255,.36);
}

.voice-lines{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:7px;
    height:42px;
    margin-bottom:24px;
}

.voice-lines i{
    width:7px;
    height:18px;
    border-radius:999px;
    background:linear-gradient(180deg,var(--blue),var(--blue-2));
    animation:voice 1s ease-in-out infinite alternate;
}

.voice-lines i:nth-child(2){animation-delay:.1s;height:28px}
.voice-lines i:nth-child(3){animation-delay:.2s;height:38px}
.voice-lines i:nth-child(4){animation-delay:.3s;height:28px}
.voice-lines i:nth-child(5){animation-delay:.4s;height:18px}

.voice-status{margin-top:24px}

/* Back Office Preview */
.bo-preview{
    display:grid;
    grid-template-columns:220px 1fr;
    border-radius:34px;
    overflow:hidden;
}

.bo-sidebar{
    padding:24px;
    background:rgba(5,7,20,.72);
    border-right:1px solid var(--border);
}

.bo-logo{
    width:44px;
    height:44px;
    border-radius:15px;
    display:grid;
    place-items:center;
    font-weight:900;
    margin-bottom:28px;
    background:linear-gradient(135deg,var(--blue-2),var(--blue));
}

.bo-sidebar span{
    display:block;
    padding:12px 14px;
    border-radius:14px;
    color:var(--muted);
    font-weight:750;
    margin-bottom:8px;
}

.bo-sidebar span.active{
    color:#fff;
    background:rgba(0,198,255,.16);
}

.bo-main{padding:28px}

.bo-header h3{
    margin:4px 0 0;
    font-weight:950;
}

.bo-header small{color:var(--muted)}

.bo-header button{
    border:0;
    border-radius:999px;
    color:#fff;
    background:rgba(255,255,255,.1);
    padding:11px 16px;
    font-weight:850;
}

.bo-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    margin:26px 0;
}

.bo-stats div{
    padding:18px;
    border-radius:18px;
    background:rgba(255,255,255,.06);
    border:1px solid var(--border);
}

.bo-stats span{
    color:var(--muted);
    font-size:12px;
    font-weight:850;
}

.bo-stats strong{
    display:block;
    margin-top:8px;
    font-size:24px;
}

.bo-table{
    border:1px solid var(--border);
    border-radius:20px;
    overflow:hidden;
}

.bo-row{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr .8fr;
    gap:14px;
    padding:15px 18px;
    border-bottom:1px solid var(--border);
    color:#e5e7eb;
}

.bo-row:last-child{border-bottom:0}

.bo-row.head{
    color:var(--muted);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    background:rgba(255,255,255,.05);
}

.pill{
    display:inline-flex;
    width:fit-content;
    padding:5px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
}

.pill.green{
    color:#bbf7d0;
    background:rgba(34,197,94,.15);
}

.pill.purple{
    color:#dbeafe;
    background:rgba(20,124,255,.18);
}

.pill.blue{
    color:#bae6fd;
    background:rgba(0,198,255,.14);
}

/* Pricing / FAQ / CTA */
.pricing-card{
    padding:34px;
    border-radius:30px;
    height:100%;
    transition:.35s ease;
}

.pricing-card.featured{
    border-color:rgba(0,198,255,.55);
    transform:translateY(-10px);
}

.popular{
    position:absolute;
    top:20px;
    right:20px;
    padding:7px 12px;
    border-radius:999px;
    background:rgba(0,198,255,.16);
    color:#bae6fd;
    font-size:12px;
    font-weight:900;
}

.pricing-card h3{font-weight:950}

.pricing-card p{
    color:var(--muted);
    min-height:56px;
}

.pricing-card strong{
    display:block;
    font-size:36px;
    margin:24px 0;
}

.pricing-card a{
    display:inline-flex;
    justify-content:center;
    width:100%;
    padding:13px 20px;
    border-radius:999px;
    color:#fff;
    background:rgba(255,255,255,.1);
    font-weight:900;
}

.pricing-card.featured a{
    background:linear-gradient(135deg,var(--blue-2),var(--blue));
}

.faq-list{
    max-width:820px;
    margin:0 auto;
}

.faq-item{
    border:1px solid var(--border);
    background:rgba(255,255,255,.06);
    border-radius:20px;
    margin-bottom:14px;
    overflow:hidden;
}

.faq-item button{
    width:100%;
    border:0;
    background:transparent;
    color:#fff;
    text-align:left;
    padding:20px 22px;
    font-weight:900;
}

.faq-content{
    display:none;
    padding:0 22px 20px;
    color:var(--muted);
    line-height:1.7;
}

.faq-item.active .faq-content{display:block}

.cta-section{padding:80px 0 110px}

.cta-box{
    text-align:center;
    border-radius:38px;
    padding:70px 28px;
    position:relative;
    overflow:hidden;
}

.cta-box::before{
    content:"";
    position:absolute;
    inset:-80px;
    background:radial-gradient(circle,rgba(0,198,255,.22),transparent 60%);
    z-index:-1;
}

/* Footer */
.footer{
    padding:26px 0;
    border-top:1px solid var(--border);
    background:rgba(5,7,20,.55);
}

.footer-logo img{
    width:320px;
    height:auto;
    display:block;
}

.footer p{
    margin:0;
    color:var(--muted);
    font-size:13px;
}

/* Premium Effects */
.mouse-glow{
    position:fixed;
    width:420px;
    height:420px;
    border-radius:50%;
    pointer-events:none;
    z-index:0;
    opacity:.20;
    background:radial-gradient(circle,rgba(0,198,255,.38) 0%,rgba(20,124,255,.18) 45%,transparent 75%);
    filter:blur(70px);
    transform:translate(-50%,-50%);
    transition:left .08s linear,top .08s linear;
}

.particles{
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:-1;
    overflow:hidden;
}

.particles span{
    position:absolute;
    width:6px;
    height:6px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    animation:floatParticle linear infinite;
}

.particles span:nth-child(1){left:5%;animation-duration:18s}
.particles span:nth-child(2){left:15%;animation-duration:24s}
.particles span:nth-child(3){left:28%;animation-duration:19s}
.particles span:nth-child(4){left:42%;animation-duration:27s}
.particles span:nth-child(5){left:55%;animation-duration:21s}
.particles span:nth-child(6){left:66%;animation-duration:29s}
.particles span:nth-child(7){left:76%;animation-duration:17s}
.particles span:nth-child(8){left:84%;animation-duration:23s}
.particles span:nth-child(9){left:91%;animation-duration:20s}
.particles span:nth-child(10){left:97%;animation-duration:31s}

/* Reveal / Animations */
.reveal{
    opacity:0;
    transform:translateY(24px);
    transition:.7s ease;
}

.reveal.visible{
    opacity:1;
    transform:translateY(0);
}

.delay-1{transition-delay:.12s}
.delay-2{transition-delay:.22s}

@keyframes chartPulse{
    from{opacity:.65;transform:scaleY(.92)}
    to{opacity:1;transform:scaleY(1)}
}

@keyframes orb{
    0%{transform:scale(.75);opacity:.9}
    100%{transform:scale(1.25);opacity:0}
}

@keyframes voice{
    from{transform:scaleY(.55);opacity:.7}
    to{transform:scaleY(1.2);opacity:1}
}

@keyframes floatParticle{
    from{transform:translateY(110vh);opacity:0}
    10%{opacity:1}
    90%{opacity:1}
    to{transform:translateY(-15vh);opacity:0}
}

@keyframes auroraMove{
    from{filter:hue-rotate(0deg);transform:scale(1)}
    to{filter:hue-rotate(12deg);transform:scale(1.05)}
}

@keyframes livePulse{
    0%{box-shadow:0 0 0 rgba(34,197,94,0)}
    50%{box-shadow:0 0 25px rgba(34,197,94,.45)}
    100%{box-shadow:0 0 0 rgba(34,197,94,0)}
}

@keyframes dashboardFloat{
    0%{transform:translateY(0)}
    50%{transform:translateY(-8px)}
    100%{transform:translateY(0)}
}

/* Responsive */
@media(max-width:991px){
    .nav-inner{
        min-height:64px;
        gap:10px;
    }

    .brand-logo img{
        width:170px;
    }

    .nav-links{
        position:absolute;
        top:78px;
        left:16px;
        right:16px;
        display:none;
        flex-direction:column;
        align-items:flex-start;
        padding:18px;
        border:1px solid var(--border);
        border-radius:22px;
        background:rgba(7,11,22,.96);
        backdrop-filter:blur(18px);
    }

    .nav-links.active{display:flex}

    .mobile-toggle{
        display:block;
        flex-shrink:0;
    }

    .nav-actions{
        gap:8px;
        flex-shrink:0;
    }

    .nav-actions .btn-login,
    .nav-actions .btn-primary-glow{
        height:38px;
        padding:0 12px;
        font-size:12px;
    }

    .hero-section{
        padding-top:130px;
        text-align:center;
    }

    .hero-logo img{
        width:290px;
    }

    .hero-subtitle{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-actions,
    .hero-metrics{
        justify-content:center;
    }

    .bo-preview{grid-template-columns:1fr}
    .bo-sidebar{display:none}
    .bo-stats{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:767px){
    .section-padding{padding:78px 0}

    .hero-content h1{
        letter-spacing:-2px;
        font-size:clamp(42px,12vw,62px);
    }

    .hero-metrics{
        gap:14px;
    }

    .hero-metrics div{
        padding-right:14px;
    }

    .dashboard-grid{
        grid-template-columns:1fr;
    }

    .dash-card.wide{
        grid-column:span 1;
    }

    .rachel-panel{
        padding:28px;
    }

    .bo-stats{
        grid-template-columns:1fr;
    }

    .bo-row{
        grid-template-columns:1fr;
        gap:8px;
    }

    .footer-inner{
        flex-direction:column;
        gap:16px;
        text-align:center;
    }

    .footer-logo img{
        width:250px;
    }
}

@media(max-width:576px){
    .vl-navbar{
        padding:10px 0;
    }

    .nav-inner{
        min-height:58px;
    }

    .brand-logo img{
        width:145px;
    }

    .nav-actions{
        gap:6px;
    }

    .nav-actions .btn-login,
    .nav-actions .btn-primary-glow{
        height:34px;
        padding:0 10px;
        font-size:0;
    }

    .nav-actions .btn-login::after{
        content:"Login";
        font-size:11px;
    }

    .nav-actions .btn-primary-glow::after{
        content:"Demo";
        font-size:11px;
    }

    .mobile-toggle{
        width:36px;
        height:36px;
    }

    .hero-logo img{
        width:250px;
    }
}

@media(max-width:400px){
    .brand-logo img{
        width:125px;
    }

    .nav-actions .btn-login,
    .nav-actions .btn-primary-glow{
        padding:0 8px;
    }
}