/* LMC EXPERT V2 - mai dinamic și mai luminos */
:root{
    --navy:#0c1730;
    --navy-2:#122449;
    --blue:#0a79cf;
    --cyan:#21b1ec;
    --sky:#ecf8ff;
    --sky-2:#f7fbff;
    --white:#ffffff;
    --text:#162238;
    --muted:#6c7890;
    --border:rgba(22,34,56,.08);
    --shadow:0 20px 60px rgba(15,37,78,.10);
    --radius:22px;
    --max:1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    color:var(--text);
    background:var(--white);
    line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

.topbar{
    position:relative;
    z-index:30;
    color:rgba(255,255,255,.84);
    font-size:13px;
    border-bottom:1px solid rgba(255,255,255,.12);
}
.topbar__inner{
    min-height:42px;
    display:flex;
    align-items:center;
    gap:12px;
    white-space:nowrap;
    overflow:auto;
}
.dot{
    width:4px;height:4px;border-radius:999px;background:rgba(255,255,255,.4);flex:0 0 auto;
}

.site-header{
    position:absolute;
    top:0;left:0;right:0;
    z-index:40;
    transition:all .25s ease;
}
.site-header.is-sticky{
    position:fixed;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(12px);
    box-shadow:0 12px 40px rgba(7,17,34,.08);
}
.site-header.is-sticky .topbar{display:none}
.site-header.is-sticky .brand__main,
.site-header.is-sticky .brand__sub,
.site-header.is-sticky .nav a,
.site-header.is-sticky .menu-toggle span{color:var(--text); background:var(--text)}

.nav-wrap{
    min-height:88px;
    display:flex;
    align-items:center;
    gap:28px;
}
.brand{display:flex;flex-direction:column;margin-right:auto;color:var(--white)}
.brand__main{font-size:28px;font-weight:800;letter-spacing:.03em}
.brand__main strong{font-weight:800}
.brand__sub{font-size:12px;opacity:.8}
.nav{display:flex;gap:28px}
.nav a{
    color:var(--white);
    font-size:15px;
    font-weight:700;
    opacity:.94;
}
.nav a:hover{color:#bcecff}

.menu-toggle{
    display:none;
    background:none;border:0;padding:8px;cursor:pointer;
}
.menu-toggle span{
    display:block;width:24px;height:2px;background:#fff;margin:5px 0;border-radius:999px;
}

.mobile-panel{
    display:none;
    background:#fff;
    padding:10px 20px 20px;
    border-top:1px solid rgba(0,0,0,.08);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.mobile-panel a{
    display:block;
    padding:12px 0;
    border-bottom:1px solid rgba(0,0,0,.06);
    color:var(--text);
    font-weight:700;
}

.btn{
    display:inline-flex;align-items:center;justify-content:center;
    min-height:52px;
    padding:0 22px;
    border-radius:14px;
    font-weight:800;
    transition:all .22s ease;
    border:1px solid transparent;
}
.btn:hover{transform:translateY(-2px)}
.btn--primary{
    background:linear-gradient(135deg, var(--blue), var(--cyan));
    color:#fff;
    box-shadow:0 14px 40px rgba(20,145,220,.25);
}
.btn--glass{
    background:rgba(255,255,255,.12);
    border-color:rgba(255,255,255,.26);
    color:#fff;
    backdrop-filter:blur(8px);
}
.btn--outline{
    background:#fff;
    border-color:rgba(10,121,207,.22);
    color:var(--blue);
}
.nav-cta{min-height:48px}

.hero{
    position:relative;
    min-height:100svh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#06111f;
}
.hero__media{position:absolute; inset:0}
.hero__video{
    width:100%;
    height:100%;
    object-fit:cover;
    background:url('/assets/images/about-office.jpg') center/cover no-repeat;
}
.hero__overlay{
    position:absolute; inset:0;
    background:
        linear-gradient(90deg, rgba(8,16,32,.76), rgba(8,16,32,.35) 56%, rgba(8,16,32,.48)),
        linear-gradient(180deg, rgba(8,16,32,.08), rgba(8,16,32,.12));
}
.hero__glow{
    position:absolute; border-radius:999px; filter:blur(40px); opacity:.48;
}
.hero__glow--one{
    width:320px;height:320px; right:-60px; top:120px;
    background:rgba(33,177,236,.4);
    animation:floaty 8s ease-in-out infinite;
}
.hero__glow--two{
    width:260px;height:260px; left:-80px; bottom:80px;
    background:rgba(10,121,207,.36);
    animation:floaty 10s ease-in-out infinite reverse;
}
@keyframes floaty{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-18px)}
}

.hero__content{
    position:relative; z-index:2;
    color:#fff;
    padding-top:110px;
    padding-bottom:140px;
    max-width:820px;
}
.eyebrow{
    margin:0 0 16px;
    text-transform:uppercase;
    letter-spacing:.14em;
    font-size:12px;
    font-weight:800;
    color:#8fdcf9;
}
.eyebrow--blue{color:var(--blue)}
.hero h1{
    margin:0 0 22px;
    font-size:clamp(46px, 8vw, 90px);
    line-height:.94;
    letter-spacing:-.05em;
}
.hero__lead{
    margin:0 0 12px;
    font-size:clamp(20px, 2.4vw, 28px);
    color:rgba(255,255,255,.92);
    max-width:760px;
}
.hero__sublead{
    margin:0 0 28px;
    color:rgba(255,255,255,.74);
    font-size:17px;
}
.hero__actions{display:flex;gap:12px;flex-wrap:wrap}

.hero-stats{
    position:absolute;
    bottom:0; left:0; right:0;
    z-index:2;
}
.hero-stats__grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    transform:translateY(42%);
}
.hero-stats__grid > div{
    padding:24px 22px;
    border-radius:20px;
    background:rgba(255,255,255,.92);
    box-shadow:var(--shadow);
    backdrop-filter:blur(10px);
}
.hero-stats strong{
    display:block;
    font-size:20px;
    color:var(--navy);
}
.hero-stats span{
    display:block;
    margin-top:4px;
    font-size:13px;
    color:var(--muted);
}

.section{padding:120px 0}
.section--light{background:var(--sky-2)}
.section--white{background:#fff}
.section--gradient{
    background:
        radial-gradient(circle at top right, rgba(33,177,236,.18), transparent 30%),
        linear-gradient(135deg, #0d1c39, #102851 54%, #173769);
    color:#fff;
}
.section--imageband{padding:0}
.section-head{max-width:880px}
.section-head h2,
.section h2{
    margin:0 0 18px;
    font-size:clamp(34px, 5vw, 58px);
    line-height:1.02;
    letter-spacing:-.045em;
}
.section-lead{
    margin:0;
    max-width:760px;
    color:var(--muted);
    font-size:18px;
}
.section-lead--light{color:rgba(255,255,255,.8)}

.cards{
    display:grid;
    gap:22px;
    margin-top:44px;
}
.cards--services{grid-template-columns:repeat(3,1fr)}
.card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:28px;
    box-shadow:0 10px 30px rgba(14,30,61,.06);
    transition:all .25s ease;
}
.card:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 60px rgba(14,30,61,.12);
}
.card h3{margin:16px 0 10px;font-size:22px}
.card p{margin:0;color:var(--muted)}
.icon-bubble{
    width:56px;height:56px;border-radius:18px;
    display:grid;place-items:center;
    background:linear-gradient(135deg, rgba(10,121,207,.10), rgba(33,177,236,.18));
    color:var(--blue);
    font-weight:800;
}

.split{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:50px;
}
.split--middle{align-items:center}
.split--reverse{grid-template-columns:.9fr 1.1fr}
.split__content h2{max-width:720px}

.steps{
    display:flex;flex-wrap:wrap;gap:12px;
    margin:26px 0 30px;
}
.step{
    padding:12px 16px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.14);
    border-radius:999px;
    font-size:14px;
    font-weight:700;
}

.mockup{
    position:relative;
    max-width:500px;
    margin-inline:auto;
}
.mockup__screen{
    position:relative;
    padding:20px;
    border-radius:28px;
    background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9));
    box-shadow:0 36px 80px rgba(6,16,31,.32);
    min-height:360px;
}
.mockup__top{
    height:18px;width:120px;border-radius:999px;background:#e7eef7;margin:0 auto 24px;
}
.report-line{
    height:16px;border-radius:999px;background:#e6eef7;margin-bottom:14px;width:72%;
}
.report-line--lg{width:88%;height:20px;background:#dce9f7}
.report-grid{
    display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin:18px 0;
}
.report-grid span{
    height:88px;border-radius:16px;background:linear-gradient(180deg, #eef5fb, #e2eff9);
}
.report-chart{
    margin-top:20px;height:120px;border-radius:18px;
    background:linear-gradient(135deg, rgba(10,121,207,.15), rgba(33,177,236,.28));
}

.image-stack img{
    border-radius:28px;
    box-shadow:var(--shadow);
    width:100%;
    object-fit:cover;
    min-height:460px;
}

.feature-list{
    margin:24px 0 30px;
    padding:0; list-style:none;
    display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:12px;
}
.feature-list li{
    position:relative;
    padding-left:18px;
    font-weight:700;
}
.feature-list li::before{
    content:'';
    position:absolute;left:0;top:11px;
    width:8px;height:8px;border-radius:999px;
    background:var(--cyan);
}

.imageband{
    position:relative;
    min-height:700px;
    display:flex;
    align-items:center;
    overflow:hidden;
}
.imageband > img{
    position:absolute; inset:0;
    width:100%; height:100%; object-fit:cover;
}
.imageband__overlay{
    position:absolute; inset:0;
    background:linear-gradient(90deg, rgba(8,16,32,.85), rgba(8,16,32,.44), rgba(8,16,32,.70));
}
.imageband__content{
    position:relative; z-index:2; color:#fff; padding:110px 0;
}
.imageband__content h2{
    max-width:640px;
}
.ecosystem-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:34px;
}
.eco-card{
    padding:26px;
    border-radius:24px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.14);
    backdrop-filter:blur(8px);
}
.eco-card h3{margin:0 0 8px;font-size:20px}
.eco-card p{margin:0;color:rgba(255,255,255,.74)}

.section--contact{
    background:linear-gradient(180deg, #fff, var(--sky));
}
.contact-card{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:28px;
    padding:36px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    box-shadow:var(--shadow);
}
.contact-meta{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:12px;
}
.contact-meta a, .contact-meta span{
    font-size:18px;
    font-weight:700;
}

.site-footer{
    background:linear-gradient(180deg, #0c1830, #071120);
    color:#fff;
    padding:70px 0;
}
.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr 1fr;
    gap:26px;
}
.site-footer h3, .site-footer h4{margin:0 0 12px}
.site-footer p{margin:0 0 8px;color:rgba(255,255,255,.72)}
.site-footer a{color:rgba(255,255,255,.78)}

.reveal{
    opacity:0;
    transform:translateY(24px);
    transition:opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
    opacity:1;
    transform:none;
}

@media (max-width:1100px){
    .cards--services{grid-template-columns:repeat(2,1fr)}
    .split, .split--reverse, .contact-card{grid-template-columns:1fr}
    .footer-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:920px){
    .topbar{display:none}
    .nav{display:none}
    .menu-toggle{display:block}
    .nav-cta{display:none}
    .mobile-panel.is-open{display:block}
    .site-header.is-sticky .mobile-panel{border-top:1px solid rgba(0,0,0,.06)}
    .brand{color:#fff}
    .site-header.is-sticky .brand{color:var(--text)}
    .hero-stats__grid{grid-template-columns:repeat(2,1fr); transform:translateY(34%)}
    .section{padding:100px 0}
}
@media (max-width:640px){
    .container{width:min(var(--max), calc(100% - 28px))}
    .nav-wrap{min-height:78px}
    .brand__main{font-size:24px}
    .hero__content{padding-top:100px;padding-bottom:180px}
    .hero h1{font-size:42px}
    .hero__lead{font-size:18px}
    .hero-stats__grid{grid-template-columns:1fr; transform:translateY(22%)}
    .cards--services, .ecosystem-grid, .feature-list{grid-template-columns:1fr}
    .imageband{min-height:860px}
    .footer-grid{grid-template-columns:1fr}
    .contact-card{padding:28px 20px}
}
