*{margin:0;padding:0;box-sizing:border-box}
:root{
    --green:#00A985;
    --green-2:#00c79d;
    --black:#070707;
    --black-2:#111111;
    --white:#fff;
    --gray-50:#fafafa;
    --gray-100:#f4f4f4;
    --gray-200:#e8e8e8;
    --gray-500:#737373;
    --gray-700:#333;
    --radius:24px;
    --shadow:0 30px 80px rgba(0,0,0,.12);
}
html{scroll-behavior:smooth}
body{
    font-family:-apple-system,BlinkMacSystemFont,"Inter","Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    color:var(--black);
    background:var(--white);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:inherit}
button,input{font-family:inherit}
.container{
    width:min(1240px,calc(100% - 56px));
    margin:0 auto;
}
.section{
    position:relative;
    padding:132px 0;
    overflow:hidden;
}
.section-dark{
    background:var(--black);
    color:var(--white);
}
.section-soft{
    background:linear-gradient(180deg,#fff 0%,#f8f8f8 100%);
}
.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--green);
    margin-bottom:18px;
}
.eyebrow i{font-size:13px}
.section-head{
    max-width:760px;
    margin:0 auto 72px;
    text-align:center;
}
.section-title{
    font-size:clamp(36px,5vw,58px);
    line-height:1.12;
    letter-spacing:-.04em;
    font-weight:760;
    margin-bottom:22px;
}
.section-desc{
    font-size:18px;
    color:var(--gray-500);
    max-width:680px;
    margin:0 auto;
}
.section-dark .section-desc{color:rgba(255,255,255,.64)}
.btn{
    height:48px;
    padding:0 22px;
    border:0;
    border-radius:999px;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:15px;
    font-weight:700;
    transition:background .25s ease,color .25s ease,transform .25s ease,box-shadow .25s ease;
    white-space:nowrap;
}
.btn:hover{transform:translateY(-2px)}
.btn-dark{
    background:var(--black);
    color:var(--white);
}
.btn-dark:hover{
    background:var(--green);
    box-shadow:0 18px 40px rgba(0,169,133,.22);
}
.btn-green{
    background:var(--green);
    color:var(--white);
}
.btn-green:hover{
    background:var(--black);
    box-shadow:0 18px 40px rgba(0,0,0,.22);
}
.btn-light{
    background:rgba(255,255,255,.12);
    color:var(--white);
}
.btn-light:hover{background:rgba(255,255,255,.2)}
.btn-ghost{
    background:transparent;
    color:var(--black);
}
.btn-ghost:hover{background:#f1f1f1}

/* Header */
/* Header */
.neo-header{
    position:fixed;
    left:0;
    top:0;
    width:100%;
    z-index:9999;
    background:#fff;
    border-bottom:1px solid rgba(0,0,0,.08);
    transition:box-shadow .28s ease;
}

.neo-header.is-scrolled{
    background:#fff;
    box-shadow:0 12px 34px rgba(0,0,0,.08);
}

.neo-header-inner{
    max-width:1320px;
    height:86px;
    margin:0 auto;
    padding:0 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    transition:height .28s ease;
}

.neo-header.is-scrolled .neo-header-inner{
    height:74px;
}

/* Logo */
.neo-logo{
    display:inline-flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
    color:var(--black);
}

.neo-logo span{
    width:40px;
    height:40px;
    border-radius:14px;
    background:var(--green);
    color:#fff;
    display:grid;
    place-items:center;
    font-size:18px;
    font-weight:900;
    box-shadow:0 12px 26px rgba(0,169,133,.24);
}

.neo-logo strong{
    font-size:22px;
    font-weight:900;
    letter-spacing:-.045em;
}

/* Desktop Nav */
.neo-nav{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:4px;
    flex:1;
}

.neo-nav-item{
    height:100%;
    display:flex;
    align-items:center;
    position:relative;
}

.neo-nav-link{
    height:42px;
    padding:0 12px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    color:#202020;
    font-size:14px;
    font-weight:850;
    white-space:nowrap;
    transition:background .24s ease,color .24s ease;
}

.neo-nav-link i{
    font-size:10px;
    color:#777;
    transition:transform .24s ease,color .24s ease;
}

.neo-nav-link:hover,
.neo-nav-item:hover > .neo-nav-link{
    background:#f3f5f4;
    color:var(--green);
}

.neo-nav-link:hover i,
.neo-nav-item:hover > .neo-nav-link i{
    color:var(--green);
}

.neo-nav-item:hover > .neo-nav-link i{
    transform:rotate(180deg);
}

/* Mega */
.neo-mega{
    position:absolute;
    left:50%;
    top:100%;
    width:740px;
    padding-top:14px;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translate(-50%,12px);
    transition:opacity .24s ease, visibility .24s ease, transform .24s ease;
}

.neo-mega-large{
    width:860px;
}

.neo-nav-item:hover .neo-mega,
.neo-nav-item:focus-within .neo-mega{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translate(-50%,0);
}

.neo-mega-inner{
    padding:18px;
    border-radius:28px;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 28px 80px rgba(0,0,0,.16);
    display:grid;
    grid-template-columns:240px 1fr;
    gap:18px;
}

.neo-mega-side{
    min-height:230px;
    padding:24px;
    border-radius:22px;
    background:
        radial-gradient(circle at 82% 18%,rgba(0,169,133,.28),transparent 36%),
        var(--black);
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

.neo-mega-side span{
    color:var(--green);
    font-size:12px;
    font-weight:900;
    letter-spacing:.06em;
    text-transform:uppercase;
    margin-bottom:12px;
}

.neo-mega-side h3{
    font-size:24px;
    line-height:1.16;
    letter-spacing:-.04em;
    margin-bottom:10px;
}

.neo-mega-side p{
    color:rgba(255,255,255,.62);
    font-size:13px;
    line-height:1.65;
}

.neo-mega-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    align-content:start;
}

.neo-mega-grid-large{
    grid-template-columns:repeat(3,1fr);
}

.neo-mega-grid a{
    min-height:72px;
    padding:13px 14px;
    border-radius:18px;
    background:#f7f7f7;
    display:flex;
    align-items:center;
    gap:12px;
    color:#222;
    transition:background .24s ease,color .24s ease,transform .24s ease,box-shadow .24s ease;
}

.neo-mega-grid a i{
    width:36px;
    height:36px;
    border-radius:12px;
    background:#fff;
    color:var(--green);
    display:grid;
    place-items:center;
    font-size:14px;
    flex-shrink:0;
    transition:background .24s ease,color .24s ease;
}

.neo-mega-grid a strong{
    display:block;
    color:inherit;
    font-size:14px;
    font-weight:900;
    line-height:1.2;
    margin-bottom:4px;
}

.neo-mega-grid a span{
    display:block;
    color:#777;
    font-size:12px;
    font-weight:650;
    line-height:1.3;
    transition:color .24s ease;
}

.neo-mega-grid a:hover{
    background:var(--green);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 14px 34px rgba(0,169,133,.24);
}

.neo-mega-grid a:hover i{
    background:rgba(255,255,255,.18);
    color:#fff;
}

.neo-mega-grid a:hover span{
    color:rgba(255,255,255,.72);
}

/* Actions */
.neo-actions{
    display:flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
}

.neo-login{
    height:42px;
    padding:0 15px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#f4f4f4;
    color:#222;
    font-size:14px;
    font-weight:850;
    transition:background .24s ease,color .24s ease;
}

.neo-login:hover{
    background:rgba(0,169,133,.1);
    color:var(--green);
}

.neo-cta{
    height:42px;
    padding:0 18px;
    border-radius:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:var(--green);
    color:#fff;
    font-size:14px;
    font-weight:900;
    box-shadow:0 14px 30px rgba(0,169,133,.24);
    transition:transform .24s ease,box-shadow .24s ease;
}

.neo-cta:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 40px rgba(0,169,133,.32);
}

/* Mobile Button */
.neo-menu-btn{
    width:44px;
    height:44px;
    border:0;
    border-radius:14px;
    background:#f4f4f4;
    display:none;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.neo-menu-btn span{
    width:20px;
    height:2px;
    border-radius:99px;
    background:#111;
    transition:transform .25s ease,opacity .25s ease;
}

.neo-menu-btn.is-open span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.neo-menu-btn.is-open span:nth-child(2){
    opacity:0;
}

.neo-menu-btn.is-open span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

/* Mobile */
.neo-mobile{
    position:fixed;
    left:0;
    top:86px;
    width:100%;
    max-height:calc(100vh - 86px);
    overflow:auto;
    background:#fff;
    border-top:1px solid rgba(0,0,0,.08);
    box-shadow:0 26px 70px rgba(0,0,0,.15);
    opacity:0;
    visibility:hidden;
    transform:translateY(-12px);
    transition:opacity .25s ease,visibility .25s ease,transform .25s ease,top .28s ease;
}

.neo-header.is-scrolled .neo-mobile{
    top:74px;
    max-height:calc(100vh - 74px);
}

.neo-mobile.is-open{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.neo-mobile-inner{
    padding:18px 24px 28px;
    display:grid;
    gap:10px;
}

.neo-mobile details{
    border-radius:18px;
    background:#f6f6f6;
    overflow:hidden;
}

.neo-mobile summary{
    height:56px;
    padding:0 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    list-style:none;
    cursor:pointer;
    color:#111;
    font-size:15px;
    font-weight:900;
}

.neo-mobile summary::-webkit-details-marker{
    display:none;
}

.neo-mobile summary i{
    font-size:12px;
    color:#777;
    transition:transform .24s ease;
}

.neo-mobile details[open] summary i{
    transform:rotate(180deg);
}

.neo-mobile details div{
    padding:0 10px 10px;
    display:grid;
    gap:6px;
}

.neo-mobile details a{
    min-height:54px;
    padding:9px 12px;
    border-radius:14px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    color:#222;
}

.neo-mobile details a strong{
    font-size:14px;
    font-weight:900;
    margin-bottom:3px;
}

.neo-mobile details a span{
    color:#777;
    font-size:12px;
    font-weight:650;
}

.neo-mobile details a:hover{
    background:#fff;
    color:var(--green);
}

.neo-mobile-link{
    height:56px;
    padding:0 18px;
    border-radius:18px;
    background:#f6f6f6;
    display:flex;
    align-items:center;
    color:#111;
    font-size:15px;
    font-weight:900;
}

.neo-mobile-link:hover{
    color:var(--green);
}

.neo-mobile-cta{
    height:56px;
    margin-top:8px;
    border-radius:18px;
    background:var(--green);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-size:15px;
    font-weight:900;
}

body.neo-menu-open{
    overflow:hidden;
}

/* fixed header 占位 */

/* Responsive */
@media(max-width:1200px){
    .neo-nav{
        display:none;
    }

    .neo-login,
    .neo-cta{
        display:none;
    }

    .neo-menu-btn{
        display:flex;
    }
}

@media(max-width:760px){
    .neo-header-inner{
        height:74px;
        padding:0 18px;
    }

    .neo-header.is-scrolled .neo-header-inner{
        height:68px;
    }

    .neo-logo span{
        width:36px;
        height:36px;
        border-radius:13px;
    }

    .neo-logo strong{
        font-size:20px;
    }

    .neo-mobile{
        top:74px;
        max-height:calc(100vh - 74px);
    }

    .neo-header.is-scrolled .neo-mobile{
        top:68px;
        max-height:calc(100vh - 68px);
    }

    body{
        padding-top:74px;
    }
}


/* Hero */
.hero{
    min-height:90vh;
    padding-top:0px;
    background:
        radial-gradient(circle at 72% 22%,rgba(0,169,133,.18),transparent 34%),
        radial-gradient(circle at 15% 8%,rgba(0,0,0,.08),transparent 26%),
        linear-gradient(180deg,#fbfbfb 0%,#fff 100%);
    overflow:hidden;
    position:relative;
}
.hero:before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(0,0,0,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(0,0,0,.035) 1px,transparent 1px);
    background-size:64px 64px;
    mask-image:linear-gradient(180deg,rgba(0,0,0,.8),transparent 74%);
    pointer-events:none;
}
.hero-slide{
    display:none;
    min-height:calc(100vh - 76px);
    align-items:center;
    position:relative;
    z-index:2;
}
.hero-slide.active{
    display:flex;
    animation:heroFade .65s ease both;
}
@keyframes heroFade{
    from{opacity:0;transform:translateY(16px)}
    to{opacity:1;transform:translateY(0)}
}
.hero-grid{
    display:grid;
    grid-template-columns:1.02fr .98fr;
    align-items:center;
    gap:84px;
    padding:80px 0 92px;
}
.hero-kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 13px;
    border-radius:999px;
    background:#fff;
    box-shadow:0 10px 28px rgba(0,0,0,.06);
    color:#4a4a4a;
    font-size:13px;
    font-weight:750;
    margin-bottom:28px;
}
.hero-kicker span{
    width:8px;height:8px;border-radius:999px;background:var(--green);
    box-shadow:0 0 0 6px rgba(0,169,133,.12);
}
.hero-title{
    font-size:clamp(42px,5.8vw,68px);
    line-height:1.06;
    letter-spacing:-.055em;
    font-weight:820;
    margin-bottom:28px;
}

.text-green{color:var(--green)}
.hero-desc{
    font-size:20px;
    line-height:1.7;
    color:#555;
    max-width:610px;
    margin-bottom:36px;
}
.hero-cta{
    display:flex;
    gap:14px;
    align-items:center;
    flex-wrap:wrap;
    margin-bottom:56px;
}
.hero-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
    max-width:560px;
}
.stat{
    padding-top:18px;
    border-top:1px solid rgba(0,0,0,.1);
}
.stat strong{
    display:block;
    font-size:30px;
    line-height:1;
    letter-spacing:-.04em;
    margin-bottom:8px;
}
.stat span{
    font-size:13px;
    color:#666;
    font-weight:700;
}

/* Hero Visual */
.hero-visual{
    position:relative;
    height:620px;
}
.orb{
    position:absolute;
    border-radius:999px;
    filter:blur(24px);
    opacity:.8;
}
.orb-a{width:180px;height:180px;background:rgba(0,169,133,.28);right:60px;top:52px}
.orb-b{width:130px;height:130px;background:rgba(0,0,0,.10);left:30px;bottom:90px}

.glass-panel{
    position:absolute;
    inset:60px 0 50px 0;
    border-radius:32px;
    background:rgba(255,255,255,.74);
    backdrop-filter:blur(28px);
    box-shadow:var(--shadow);
    overflow:hidden;
}
.glass-panel:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(255,255,255,.7),rgba(255,255,255,.08));
    pointer-events:none;
}

/* Visual: global numbers */
.global-visual{
    position:absolute;
    inset:0;
}
.world-core{
    position:absolute;
    width:190px;height:190px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--green),#00d7aa);
    left:50%;top:48%;
    transform:translate(-50%,-50%);
    display:grid;
    place-items:center;
    box-shadow:0 36px 80px rgba(0,169,133,.3);
}
.world-core i{font-size:70px;color:#fff}
.ring{
    position:absolute;
    left:50%;top:48%;
    transform:translate(-50%,-50%);
    border:1px solid rgba(0,169,133,.24);
    border-radius:50%;
}
.ring.r1{width:290px;height:290px;animation:spin 28s linear infinite}
.ring.r2{width:420px;height:420px;animation:spin 42s linear infinite reverse}
.ring.r3{width:540px;height:540px;animation:spin 62s linear infinite}
@keyframes spin{
    to{transform:translate(-50%,-50%) rotate(360deg)}
}
.node{
    position:absolute;
    width:112px;
    padding:14px 16px;
    border-radius:18px;
    background:#fff;
    box-shadow:0 18px 44px rgba(0,0,0,.1);
    animation:float 4s ease-in-out infinite;
}
.node small{
    display:block;
    font-size:11px;
    color:#777;
    font-weight:700;
}
.node b{
    display:block;
    font-size:16px;
    letter-spacing:-.02em;
}
.node i{color:var(--green);margin-right:6px}
.node.n1{left:26px;top:120px}
.node.n2{right:18px;top:92px;animation-delay:.6s}
.node.n3{left:80px;bottom:104px;animation-delay:1.1s}
.node.n4{right:70px;bottom:92px;animation-delay:1.7s}
@keyframes float{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-14px)}
}

/* Visual: PBX */
.dashboard{
    position:absolute;
    inset:40px 28px;
    border-radius:28px;
    background:#fff;
    box-shadow:var(--shadow);
    overflow:hidden;
}
.dash-top{
    height:76px;
    padding:0 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #eee;
}
.dash-title{font-weight:800;font-size:17px}
.live{
    display:flex;align-items:center;gap:8px;
    color:var(--green);
    font-size:13px;
    font-weight:800;
}
.live:before{
    content:"";
    width:8px;height:8px;border-radius:50%;
    background:var(--green);
    box-shadow:0 0 0 8px rgba(0,169,133,.12);
}
.dash-body{padding:28px}
.metric-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-bottom:18px;
}
.metric{
    background:#f7f7f7;
    padding:22px;
    border-radius:20px;
}
.metric b{
    display:block;
    font-size:32px;
    letter-spacing:-.05em;
    line-height:1;
    margin-bottom:8px;
}
.metric span{font-size:13px;color:#666;font-weight:750}
.call-flow{
    background:var(--black);
    border-radius:24px;
    padding:24px;
    color:#fff;
}
.flow-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}
.flow-card{
    flex:1;
    min-height:96px;
    border-radius:18px;
    background:rgba(255,255,255,.08);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
}
.flow-card i{color:var(--green);font-size:24px}
.flow-card span{font-size:12px;color:rgba(255,255,255,.68);font-weight:700}
.flow-arrow{color:rgba(255,255,255,.35)}

/* Visual: trust */
.trust-stack{
    position:absolute;
    inset:48px 32px;
}
.trust-card{
    position:absolute;
    width:78%;
    left:50%;
    transform:translateX(-50%);
    padding:28px;
    border-radius:28px;
    background:#fff;
    box-shadow:0 24px 60px rgba(0,0,0,.12);
}
.trust-card:nth-child(1){top:10px;z-index:3}
.trust-card:nth-child(2){top:150px;z-index:2;transform:translateX(-50%) scale(.94);opacity:.86}
.trust-card:nth-child(3){top:286px;z-index:1;transform:translateX(-50%) scale(.88);opacity:.72}
.trust-card h4{
    font-size:20px;
    margin-bottom:8px;
    letter-spacing:-.03em;
}
.trust-card p{color:#666;font-size:14px}
.trust-card .badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    border-radius:999px;
    background:#eefbf7;
    color:var(--green);
    font-size:12px;
    font-weight:850;
    margin-bottom:18px;
}

/* Hero dots */
.hero-dots{
    position:absolute;
    left:50%;
    bottom:34px;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:10;
}
.hero-dot{
    width:10px;height:10px;
    border-radius:999px;
    background:#d8d8d8;
    cursor:pointer;
    transition:all .3s ease;
}
.hero-dot.active{
    width:34px;
    background:var(--black);
}

/* Cards */
.grid{
    display:grid;
    gap:22px;
}
.grid.products{grid-template-columns:repeat(4,1fr)}
.grid.scenes{grid-template-columns:repeat(3,1fr)}
.grid.solutions{grid-template-columns:repeat(3,1fr)}
.grid.industries{grid-template-columns:repeat(3,1fr)}

.card{
    position:relative;
    min-height:196px;
    padding:30px;
    border-radius:var(--radius);
    background:#f7f7f7;
    overflow:hidden;
    transition:background .28s ease,color .28s ease,transform .28s ease,box-shadow .28s ease;
    cursor:pointer;
}
.card:after{
    content:"";
    position:absolute;
    width:160px;height:160px;
    right:-60px;bottom:-80px;
    border-radius:50%;
    background:rgba(0,169,133,.12);
    transition:opacity .28s ease,transform .28s ease;
}
.card:hover{
    transform:translateY(-6px);
    box-shadow:0 26px 60px rgba(0,0,0,.12);
}
.card.green:hover{background:var(--green);color:#fff}
.card.dark:hover{background:var(--black);color:#fff}
.card:hover:after{
    opacity:.35;
    transform:scale(1.15);
    background:rgba(255,255,255,.18);
}
.card-icon{
    width:54px;height:54px;
    border-radius:18px;
    background:#fff;
    display:grid;
    place-items:center;
    margin-bottom:26px;
    position:relative;
    z-index:1;
    transition:background .28s ease,color .28s ease;
}
.card-icon i{
    font-size:23px;
    color:var(--green);
    transition:color .28s ease;
}
.card:hover .card-icon{
    background:rgba(255,255,255,.16);
}
.card:hover .card-icon i{color:#fff}
.card h3{
    position:relative;
    z-index:1;
    font-size:21px;
    letter-spacing:-.03em;
    margin-bottom:8px;
}
.card p{
    position:relative;
    z-index:1;
    color:#666;
    font-size:15px;
    font-weight:650;
    transition:color .28s ease;
}
.card:hover p{color:rgba(255,255,255,.82)}
.section-dark .card{
    background:rgba(255,255,255,.07);
}
.section-dark .card p{color:rgba(255,255,255,.58)}
.section-dark .card:hover{
    background:var(--green);
}
.section-dark .card:hover p{color:rgba(255,255,255,.86)}

/* Solution richer card */
.solution-card{
    min-height:260px;
}
.solution-index{
    position:absolute;
    top:28px;
    right:28px;
    color:#bbb;
    font-size:13px;
    font-weight:850;
    z-index:1;
    transition:color .28s ease;
}
.solution-card:hover .solution-index{color:rgba(255,255,255,.68)}
.solution-tags{
    position:relative;
    z-index:1;
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:22px;
}
.solution-tags span{
    padding:7px 10px;
    border-radius:999px;
    background:#fff;
    color:#555;
    font-size:12px;
    font-weight:800;
    transition:background .28s ease,color .28s ease;
}
.solution-card:hover .solution-tags span{
    background:rgba(255,255,255,.16);
    color:#fff;
}

/* Value Strip */
.value-strip{
    margin-top:90px;
    border-radius:34px;
    background:var(--black);
    color:#fff;
    padding:34px;
    display:grid;
    grid-template-columns:1.2fr repeat(3,1fr);
    gap:20px;
    align-items:center;
}
.value-strip h3{
    font-size:28px;
    line-height:1.2;
    letter-spacing:-.04em;
}
.value-item{
    padding:24px;
    border-radius:24px;
    background:rgba(255,255,255,.08);
}
.value-item b{
    display:block;
    font-size:30px;
    line-height:1;
    letter-spacing:-.04em;
    margin-bottom:10px;
    color:var(--green);
}
.value-item span{
    color:rgba(255,255,255,.7);
    font-size:14px;
    font-weight:700;
}

/* CTA */
.cta-panel{
    position:relative;
    border-radius:42px;
    padding:72px;
    background:
        radial-gradient(circle at 80% 18%,rgba(0,169,133,.35),transparent 32%),
        var(--black);
    color:#fff;
    overflow:hidden;
}
.cta-panel:before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
    background-size:56px 56px;
    mask-image:linear-gradient(90deg,rgba(0,0,0,.8),transparent);
}
.cta-inner{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}
.cta-title{
    font-size:clamp(36px,5vw,62px);
    line-height:1.08;
    letter-spacing:-.05em;
    margin-bottom:22px;
}
.cta-desc{
    color:rgba(255,255,255,.66);
    font-size:18px;
    max-width:560px;
}
.lead-form{
    background:rgba(255,255,255,.1);
    padding:28px;
    border-radius:28px;
    backdrop-filter:blur(20px);
}
.lead-form input,
.lead-form select{
    width:100%;
    height:52px;
    border:0;
    outline:0;
    border-radius:16px;
    background:rgba(255,255,255,.14);
    color:#fff;
    padding:0 16px;
    margin-bottom:14px;
    font-size:14px;
}
.lead-form input::placeholder{color:rgba(255,255,255,.52)}
.lead-form select{color:rgba(255,255,255,.72)}
.lead-form .btn{width:100%;margin-top:6px}

/* Modal */
.modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.72);
    backdrop-filter:blur(12px);
    z-index:3000;
    display:none;
    align-items:center;
    justify-content:center;
    padding:28px;
}
.modal.active{display:flex}
.modal-box{
    width:min(1120px,100%);
    max-height:88vh;
    overflow:auto;
    border-radius:32px;
    background:#fff;
    box-shadow:0 40px 120px rgba(0,0,0,.36);
    animation:modalIn .25s ease both;
}
@keyframes modalIn{
    from{opacity:0;transform:translateY(18px) scale(.98)}
    to{opacity:1;transform:translateY(0) scale(1)}
}
.modal-head{
    position:sticky;
    top:0;
    background:rgba(255,255,255,.86);
    backdrop-filter:blur(16px);
    z-index:2;
    padding:32px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid #eee;
}
.modal-head h3{
    font-size:28px;
    letter-spacing:-.04em;
}
.close{
    width:44px;height:44px;
    border:0;
    border-radius:999px;
    background:#f1f1f1;
    cursor:pointer;
    font-size:18px;
}
.modal-body{padding:32px}
.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}
.feature{
    padding:22px;
    border-radius:20px;
    background:#f7f7f7;
    transition:background .25s ease,color .25s ease,transform .25s ease;
}
.feature:hover{
    background:var(--green);
    color:#fff;
    transform:translateY(-4px);
}
.feature i{
    font-size:22px;
    color:var(--green);
    margin-bottom:18px;
}
.feature:hover i{color:#fff}
.feature h4{
    font-size:16px;
    margin-bottom:8px;
}
.feature p{
    color:#666;
    font-size:13px;
    line-height:1.55;
}
.feature:hover p{color:rgba(255,255,255,.82)}

/* Footer */
.footer{
    background:var(--black);
    color:#fff;
    padding:70px 0 34px;
}
.footer-grid{
    display:grid;
    grid-template-columns:1.8fr repeat(4,1fr);
    gap:54px;
    margin-bottom:50px;
}
.footer h4{
    font-size:13px;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:18px;
}
.footer p,.footer a{
    color:rgba(255,255,255,.56);
    font-size:14px;
}
.footer a:hover{color:#fff}
.footer ul{list-style:none}
.footer li{margin-bottom:10px}
.footer-bottom{
    padding-top:28px;
    border-top:1px solid rgba(255,255,255,.1);
    color:rgba(255,255,255,.36);
    font-size:13px;
}

/* Responsive */
@media(max-width:1080px){
    .hero-grid{grid-template-columns:1fr;gap:30px}
    .hero-visual{height:520px}
    .grid.products{grid-template-columns:repeat(2,1fr)}
    .grid.solutions{grid-template-columns:repeat(2,1fr)}
    .value-strip{grid-template-columns:1fr 1fr}
    .cta-inner{grid-template-columns:1fr}
    .footer-grid{grid-template-columns:1fr 1fr}
    .feature-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:760px){
    .container{width:min(100% - 32px,1240px)}
    .nav-menu,.nav-actions .btn-ghost{display:none}
    .hero-stats{grid-template-columns:1fr}
    .hero-visual{height:460px}
    .grid.products,
    .grid.scenes,
    .grid.solutions,
    .grid.industries{grid-template-columns:1fr}
    .section{padding:92px 0}
    .value-strip{grid-template-columns:1fr}
    .cta-panel{padding:42px 24px}
    .feature-grid{grid-template-columns:1fr}
}


/* Simple Cases */
.simple-case-layout{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:24px;
}

.simple-case-main{
    min-height:500px;
    padding:44px;
    border-radius:34px;
    background:
        radial-gradient(circle at 86% 18%,rgba(0,169,133,.32),transparent 34%),
        var(--black);
    color:#fff;
    position:relative;
    overflow:hidden;
}

.simple-case-main:before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px);
    background-size:56px 56px;
    mask-image:linear-gradient(180deg,rgba(0,0,0,.8),transparent);
}

.simple-case-main > *{
    position:relative;
    z-index:1;
}

.simple-case-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(255,255,255,.1);
    color:var(--green);
    font-size:12px;
    font-weight:850;
    margin-bottom:28px;
}

.simple-case-main h3{
    font-size:clamp(30px,4vw,46px);
    line-height:1.14;
    letter-spacing:-.045em;
    max-width:640px;
    margin-bottom:22px;
}

.simple-case-main p{
    max-width:610px;
    color:rgba(255,255,255,.68);
    font-size:17px;
    line-height:1.75;
    margin-bottom:34px;
}

.simple-case-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-bottom:34px;
}

.simple-case-stats div{
    padding:20px;
    border-radius:22px;
    background:rgba(255,255,255,.09);
}

.simple-case-stats b{
    display:block;
    color:var(--green);
    font-size:30px;
    line-height:1;
    letter-spacing:-.04em;
    margin-bottom:8px;
}

.simple-case-stats span{
    color:rgba(255,255,255,.64);
    font-size:13px;
    font-weight:750;
}

.simple-case-list{
    display:grid;
    gap:24px;
}

.simple-case-card{
    padding:30px;
    border-radius:30px;
    background:#fff;
    box-shadow:0 18px 50px rgba(0,0,0,.06);
    transition:background .28s ease,color .28s ease,transform .28s ease,box-shadow .28s ease;
}

.simple-case-card:hover{
    background:var(--green);
    color:#fff;
    transform:translateY(-6px);
    box-shadow:0 26px 60px rgba(0,0,0,.12);
}

.simple-case-card i{
    color:var(--green);
    font-size:26px;
    margin-bottom:22px;
    transition:color .28s ease;
}

.simple-case-card:hover i{
    color:#fff;
}

.simple-case-card h4{
    font-size:22px;
    letter-spacing:-.035em;
    margin-bottom:10px;
}

.simple-case-card p{
    color:#666;
    font-size:15px;
    line-height:1.65;
    transition:color .28s ease;
}

.simple-case-card:hover p{
    color:rgba(255,255,255,.84);
}


/* Simple About */
.simple-about-layout{
    display:grid;
    grid-template-columns:1fr .9fr;
    gap:72px;
    align-items:center;
}

.simple-about-copy h2{
    font-size:clamp(36px,5vw,58px);
    line-height:1.12;
    letter-spacing:-.045em;
    margin-bottom:24px;
}

.simple-about-copy p{
    color:rgba(255,255,255,.64);
    font-size:18px;
    line-height:1.75;
    margin-bottom:18px;
}

.simple-about-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-top:34px;
}

.simple-about-points div{
    display:flex;
    align-items:center;
    gap:10px;
    padding:16px 18px;
    border-radius:18px;
    background:rgba(255,255,255,.07);
    color:rgba(255,255,255,.78);
    font-size:14px;
    font-weight:750;
}

.simple-about-points i{
    color:var(--green);
    font-size:13px;
}

.simple-about-card{
    padding:34px;
    border-radius:34px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
}

.simple-about-card-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:28px;
}

.simple-about-card-head span{
    color:rgba(255,255,255,.58);
    font-size:13px;
    font-weight:850;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.simple-about-card-head i{
    width:54px;
    height:54px;
    border-radius:18px;
    background:var(--green);
    color:#fff;
    display:grid;
    place-items:center;
    font-size:22px;
}

.simple-about-data{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.simple-about-data div{
    min-height:130px;
    padding:24px;
    border-radius:24px;
    background:rgba(255,255,255,.08);
}

.simple-about-data b{
    display:block;
    color:var(--green);
    font-size:34px;
    line-height:1;
    letter-spacing:-.05em;
    margin-bottom:12px;
}

.simple-about-data span{
    color:rgba(255,255,255,.62);
    font-size:14px;
    font-weight:750;
}


/* Simple News */
.simple-news-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:40px;
    margin-bottom:54px;
}

.simple-news-head .section-title,
.simple-news-head .section-desc{
    text-align:left;
    margin-left:0;
}

.news-tabs{
    display:flex;
    gap:10px;
    padding:8px;
    border-radius:999px;
    background:#f3f3f3;
    flex-shrink:0;
}

.news-tab{
    height:42px;
    padding:0 18px;
    border:0;
    border-radius:999px;
    background:transparent;
    cursor:pointer;
    font-size:14px;
    font-weight:850;
    color:#666;
    transition:background .22s ease,color .22s ease;
}

.news-tab.active{
    background:var(--black);
    color:#fff;
}

.simple-news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.news-card{
    min-height:300px;
    padding:30px;
    border-radius:30px;
    background:#f7f7f7;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:background .28s ease,color .28s ease,transform .28s ease,box-shadow .28s ease;
}

.news-card:hover{
    background:var(--black);
    color:#fff;
    transform:translateY(-6px);
    box-shadow:0 26px 60px rgba(0,0,0,.12);
}

.news-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:24px;
}

.news-meta span{
    color:var(--green);
    font-size:12px;
    font-weight:850;
}

.news-meta time{
    color:#888;
    font-size:12px;
    transition:color .28s ease;
}

.news-card:hover .news-meta time{
    color:rgba(255,255,255,.52);
}

.news-card h4{
    font-size:22px;
    line-height:1.3;
    letter-spacing:-.035em;
    margin-bottom:14px;
}

.news-card p{
    color:#666;
    font-size:15px;
    line-height:1.65;
    transition:color .28s ease;
}

.news-card:hover p{
    color:rgba(255,255,255,.68);
}

.news-card a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:28px;
    color:var(--green);
    font-size:14px;
    font-weight:850;
}


/* Responsive */
@media(max-width:1080px){
    .simple-case-layout,
    .simple-about-layout{
        grid-template-columns:1fr;
    }

    .simple-news-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:760px){
    .simple-case-main{
        padding:34px 24px;
    }

    .simple-case-stats,
    .simple-about-points,
    .simple-about-data,
    .simple-news-grid{
        grid-template-columns:1fr;
    }

    .simple-news-head{
        align-items:flex-start;
        flex-direction:column;
    }
}

.site-footer{
    background:var(--black);
    color:#fff;
    padding:36px 0 28px;
    overflow:hidden;
}

.footer-cta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:36px;
    padding:38px 42px;
    border-radius:32px;
    background:
        radial-gradient(circle at 88% 20%,rgba(0,169,133,.34),transparent 34%),
        rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.08);
    margin-bottom:46px;
}

.footer-cta h2{
    font-size:clamp(28px,4vw,44px);
    line-height:1.12;
    letter-spacing:-.045em;
    margin-bottom:12px;
}

.footer-cta p{
    max-width:680px;
    color:rgba(255,255,255,.62);
    font-size:16px;
    line-height:1.7;
}

.footer-cta-actions{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

.footer-main{
    display:grid;
    grid-template-columns:260px 1fr;
    gap:56px;
    padding-bottom:42px;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.footer-logo{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:22px;
    font-weight:900;
    letter-spacing:-.04em;
    margin-bottom:18px;
}

.footer-logo span{
    width:38px;
    height:38px;
    border-radius:13px;
    background:var(--green);
    display:grid;
    place-items:center;
    color:#fff;
    font-size:18px;
}

.footer-brand p{
    color:rgba(255,255,255,.56);
    font-size:14px;
    line-height:1.75;
}

.footer-links{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:34px;
}

.footer-col h3{
    color:#fff;
    font-size:15px;
    font-weight:900;
    margin-bottom:18px;
}

.footer-col ul{
    list-style:none;
    display:grid;
    gap:11px;
}

.footer-col a{
    color:rgba(255,255,255,.62);
    font-size:14px;
    font-weight:700;
    transition:color .22s ease,transform .22s ease;
}

.footer-col a:hover{
    color:var(--green);
    transform:translateX(4px);
}

.footer-col-wide ul{
    grid-template-columns:repeat(2,1fr);
    column-gap:18px;
}

.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding-top:24px;
    color:rgba(255,255,255,.42);
    font-size:13px;
}

.footer-bottom-links{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.footer-bottom-links a{
    color:rgba(255,255,255,.46);
    transition:color .22s ease;
}

.footer-bottom-links a:hover{
    color:var(--green);
}

@media(max-width:1100px){
    .footer-cta{
        align-items:flex-start;
        flex-direction:column;
    }

    .footer-main{
        grid-template-columns:1fr;
    }

    .footer-links{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:760px){
    .footer-cta{
        padding:30px 24px;
        border-radius:26px;
    }

    .footer-cta-actions{
        width:100%;
        flex-direction:column;
    }

    .footer-cta-actions .btn{
        width:100%;
        justify-content:center;
    }

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

    .footer-col-wide ul{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        align-items:flex-start;
        flex-direction:column;
    }
}

@media(max-width:520px){
    .footer-links{
        grid-template-columns:1fr;
    }
}

/* =========================
   About Section
========================= */

.about-section{
    padding:110px 0;
    background:#fff;
}

.about-layout{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:72px;
    align-items:center;
}

.about-eyebrow{
    color:var(--green);
    background:rgba(0,169,133,.08);
    border:1px solid rgba(0,169,133,.14);
}

.about-copy h2{
    max-width:620px;
    margin-top:18px;
    margin-bottom:26px;
    color:var(--black);
    font-size:clamp(38px,5vw,62px);
    line-height:1.06;
    letter-spacing:-.06em;
}

.about-desc{
    max-width:680px;
    display:grid;
    gap:16px;
}

.about-desc p{
    color:#5f6663;
    font-size:17px;
    line-height:1.9;
}

.about-points{
    margin-top:34px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.about-point{
    min-height:58px;
    padding:14px 16px;
    border-radius:18px;
    background:#f7f9f8;
    border:1px solid rgba(0,0,0,.06);
    display:flex;
    align-items:center;
    gap:12px;
    color:#202523;
    font-size:15px;
    font-weight:800;
}

.about-point i{
    width:26px;
    height:26px;
    border-radius:50%;
    background:var(--green);
    color:#fff;
    display:grid;
    place-items:center;
    font-size:12px;
    flex-shrink:0;
}

/* Right Card */
.about-card{
    padding:34px;
    border-radius:32px;
    background:#f7f9f8;
    border:1px solid rgba(0,0,0,.07);
}

.about-card-head{
    padding-bottom:26px;
    margin-bottom:22px;
    border-bottom:1px solid rgba(0,0,0,.08);
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:24px;
}

.about-card-head span{
    display:block;
    margin-bottom:10px;
    color:var(--green);
    font-size:13px;
    font-weight:900;
    letter-spacing:.04em;
}

.about-card-head h3{
    color:var(--black);
    font-size:28px;
    line-height:1.18;
    font-weight:950;
    letter-spacing:-.045em;
}

.about-card-head > i{
    width:58px;
    height:58px;
    border-radius:20px;
    background:var(--green);
    color:#fff;
    display:grid;
    place-items:center;
    font-size:23px;
    flex-shrink:0;
}

.about-data{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.about-data div{
    min-height:124px;
    padding:22px;
    border-radius:22px;
    background:#fff;
    border:1px solid rgba(0,0,0,.06);
}

.about-data b{
    display:block;
    margin-bottom:12px;
    color:var(--black);
    font-size:38px;
    line-height:1;
    font-weight:950;
    letter-spacing:-.055em;
}

.about-data span{
    color:#68706c;
    font-size:14px;
    font-weight:750;
}

/* Responsive */
@media(max-width:1100px){
    .about-layout{
        grid-template-columns:1fr;
        gap:52px;
    }
}

@media(max-width:760px){
    .about-section{
        padding:82px 0;
    }

    .about-copy h2{
        font-size:42px;
    }

    .about-desc p{
        font-size:16px;
    }

    .about-points{
        grid-template-columns:1fr;
    }

    .about-card{
        padding:24px;
        border-radius:26px;
    }

    .about-card-head{
        flex-direction:column;
    }

    .about-card-head h3{
        font-size:25px;
    }

    .about-data{
        grid-template-columns:1fr;
    }

    .about-data div{
        min-height:106px;
    }
}

@media(max-width:520px){
    .about-copy h2{
        font-size:36px;
    }

    .about-card{
        padding:20px;
    }

    .about-data b{
        font-size:34px;
    }
}
