:root{
    --bg:#ffffff;
    --muted:#6b7280;
    --accent:#0071e3;
    --glass: rgba(0,0,0,0.04);
    --radius:18px;
    --container:1200px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
    margin:0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color:#0b1220;
    background:linear-gradient(180deg,#fff,#f7f8fb);
    -webkit-font-smoothing:antialiased;
    line-height:1.35;
}

.wrap{max-width:var(--container);margin:0 auto;padding:28px}

/* header */
header{display:flex;align-items:center;justify-content:space-between;padding:18px 0}
.brand{display:flex;gap:12px;align-items:center}
.logo{width:36px;height:36px;border-radius:8px;background:#0b1220;color:white;display:flex;align-items:center;justify-content:center;font-weight:700}
.site-nav{display:flex;gap:18px;align-items:center}
.site-nav a{color:var(--muted);text-decoration:none;font-weight:600}

/* hero big full-bleed */
.hero-outer{width:100%;background:linear-gradient(180deg,#ffffff 30%, #f6f7fb 100%);padding:56px 0}
.hero{display:grid;grid-template-columns:1fr 560px;gap:32px;align-items:center;max-width:var(--container);margin:0 auto;padding:0 28px}
.eyebrow{font-size:13px;text-transform:uppercase;color:var(--muted);letter-spacing:1.4px}
h1{font-size:56px;margin:12px 0 18px;line-height:1.02}
.lead{color:var(--muted);font-size:18px;max-width:56ch}
.cta{display:flex;gap:12px;margin-top:22px}
.btn{padding:12px 18px;border-radius:12px;font-weight:700;border:none;cursor:pointer}
.btn.primary{background:var(--accent);color:white}
.btn.ghost{background:transparent;border:1px solid rgba(11,18,32,0.06);font-weight:700}

.mockup{border-radius:26px;padding:32px;display:flex;align-items:center;justify-content:center;color:white;height:420px}
.mockup img{width:100%;height:100%;object-fit:contain;display:block}

/* strip with feature highlights */
.strip{display:flex;gap:18px;justify-content:space-between;margin-top:28px}
.strip .item{flex:1;background:white;border-radius:14px;padding:18px;box-shadow:0 18px 40px rgba(11,18,32,0.04);display:flex;flex-direction:column}
.strip .k{font-weight:700}
.strip p{color:var(--muted);margin-top:6px}

/* content sections — wide promo */
.promo{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin:64px 0;align-items:center}
.promo .visual{height:380px;border-radius:18px;background:linear-gradient(180deg,#e6eefb,#fff);display:flex;align-items:center;justify-content:center;font-weight:700;overflow:hidden}
.promo .visual img{width:100%;height:100%;object-fit:cover;display:block}
.promo h3{font-size:28px;margin:0}
.promo p{color:var(--muted)}

/* cards */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:40px}
.card{background:white;border-radius:12px;padding:18px;box-shadow:0 16px 40px rgba(11,18,32,0.04)}
.card h4{margin:12px 0 6px}
.card p{color:var(--muted);margin:0}

/* products grid adjustments */
.cards.products .card{text-align:center}
.cards.products .btn-bar{display:inline-flex;gap:10px;margin-top:14px}
.card .thumb{height:160px;border-radius:10px;background:linear-gradient(180deg,#eaf1ff,#fff);display:flex;align-items:center;justify-content:center;font-weight:700;overflow:hidden}
.card .thumb img{width:100%;height:100%;object-fit:cover;display:block}
.price{margin-top:8px;font-weight:700}

/* full-bleed map */
.map-outer{width:100%;background:#f7f8fb;margin-top:48px}
.map-embed{width:100%}
.map-embed iframe{width:100%;height:460px;border:0;display:block}
@media (max-width:640px){.map-embed iframe{height:320px}}

/* footer */
footer{border-top:1px solid rgba(11,18,32,0.04);margin-top:64px;padding:36px 0}
.footer-flex{display:flex;justify-content:space-between;align-items:center}

/* utility bars */
.cta-bar{display:flex;gap:18px;flex-wrap:wrap;align-items:center;justify-content:space-between}
.cta-bar .left{flex:1;min-width:220px}
.cta-bar .right{min-width:220px}

/* responsive */
@media (max-width:1024px){
    .hero{grid-template-columns:1fr}
    .mockup{height:320px}
    .promo{grid-template-columns:1fr}
    .cards{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
    h1{font-size:32px}
    header > .site-nav{display:none}
    .cards{grid-template-columns:1fr}
    .strip{flex-direction:column}
    header{padding:12px 0}
    .footer-flex{flex-direction:column;align-items:flex-start;gap:12px}
    footer .site-nav{display:flex;flex-wrap:wrap;gap:12px}
    .cards.products .btn-bar{flex-wrap:wrap;justify-content:center}
    /* promo: ensure text first, image second on mobile */
    .promo{display:flex;flex-direction:column}
    .promo > .visual{order:2}
    .promo > :not(.visual){order:1}
}

/* language switcher */
.lang-switcher{display:flex;align-items:center;gap:6px;background:rgba(11,18,32,0.04);border:1px solid rgba(11,18,32,0.06);padding:4px;border-radius:9999px}
.lang-btn{display:inline-flex;align-items:center;justify-content:center;min-width:34px;padding:6px 10px;border-radius:9999px;text-decoration:none;font-weight:700;font-size:12px;color:var(--muted);transition:background-color .2s ease,color .2s ease,box-shadow .2s ease,transform .02s ease}
.lang-btn:hover{color:#0b1220}
.lang-btn.active{background:var(--accent);color:#fff;box-shadow:0 6px 18px rgba(0,113,227,0.25)}
.lang-btn:active{transform:translateY(1px)}
.lang-btn:focus-visible{outline:none;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--accent)}
@media (max-width:640px){.lang-switcher{padding:2px}.lang-btn{padding:6px 8px;font-size:12px}}

/* forms */
.form-group{margin-bottom:12px}
.form-group label{display:block;margin-bottom:6px;font-weight:600}
.form-control{width:100%;padding:10px 12px;border:1px solid rgba(11,18,32,0.12);border-radius:10px;background:#fff}
.form-control:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px rgba(0,113,227,0.15)}
.alert{padding:10px 12px;border-radius:10px}
.alert.success{background:#e8f6ff;color:#0b1220}
.alert.error{background:#fff1f1;color:#7a1313}


/* header aside and phone link */
.header-aside{display:flex;align-items:center;gap:10px}
.phone-link{display:inline-flex;align-items:center;gap:8px;text-decoration:none;font-weight:700;color:#0b1220;padding:6px 12px;border-radius:9999px;background:#ffffff;border:1px solid rgba(11,18,32,0.08);box-shadow:0 1px 1px rgba(0,0,0,0.02)}
.phone-link:hover{background:#f5f8ff;border-color:rgba(0,113,227,0.35)}
.phone-link:focus-visible{outline:none;box-shadow:0 0 0 2px #fff,0 0 0 4px var(--accent)}
@media (max-width:640px){.phone-link{padding:6px 10px;font-size:14px}}

/* mobile nav */
.menu-toggle{display:none;align-items:center;justify-content:center;width:38px;height:38px;border-radius:10px;background:#ffffff;border:1px solid rgba(11,18,32,0.08);cursor:pointer}
.menu-toggle svg{width:20px;height:20px}
.mobile-menu{display:none}
.mobile-menu.open{display:flex;justify-content:flex-end}
.mobile-menu .mobile-panel{background:#fff;border:1px solid rgba(11,18,32,0.06);box-shadow:0 16px 40px rgba(11,18,32,0.06);padding:12px;border-radius:14px;margin-left:auto;width:max-content;min-width:220px}
.mobile-menu .lang-switcher{display:flex;flex-wrap:nowrap;margin:0 0 10px 0; justify-content: center}
.mobile-menu .site-nav{display:flex;flex-direction:column;gap:10px}
.mobile-menu .site-nav a{padding:8px 10px;border-radius:10px}
.mobile-menu .site-nav a:hover{background:#f5f8ff}
@media (max-width:640px){.menu-toggle{display:inline-flex}.header-aside .lang-switcher{display:none}}
