
:root{
  --u-blue:#0a5aa6;
  --u-blue2:#084d8f;
  --u-green:#16a34a;
  --u-yellow:#f5b400;
  --u-purple:#6d28d9;
  --u-teal:#0ea5a4;
  --u-text:#0f172a;
  --u-muted:#52627a;
  --u-line:rgba(15,23,42,.08);
  --u-shadow:0 18px 40px rgba(2,6,23,.12);
  --u-radius:20px;
  --u-max:1200px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  min-height:100vh;
  color:var(--u-text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.55;
  background:
    radial-gradient(1300px 900px at 0% 0%, rgba(10,90,166,.16), transparent 58%),
    radial-gradient(1100px 800px at 100% 10%, rgba(22,163,74,.12), transparent 58%),
    radial-gradient(1200px 900px at 50% 100%, rgba(245,180,0,.08), transparent 62%),
    linear-gradient(180deg, #f8fbff 0%, #f1f6fb 45%, #eef4fa 100%);
  background-attachment:fixed;
}
a{color:inherit;text-decoration:none}
img,video{max-width:100%}
.container{max-width:var(--u-max);margin:0 auto;padding:0 18px}

/* header */
.mu-header{
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 18px 40px rgba(2,6,23,.18);
}
.mu-header.is-scrolled{box-shadow:0 12px 28px rgba(2,6,23,.22)}
.mu-topbar{
  background:linear-gradient(180deg,#f8fbff,#eef3f8);
  border-bottom:1px solid rgba(15,23,42,.08);
}
.mu-topbar .wrap,
.mu-navbar .wrap{
  max-width:var(--u-max);
  margin:0 auto;
  padding:10px 18px;
}
.mu-top-left{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  align-items:center;
  font-size:14px;
  font-weight:900;
}
.mu-top-left a{border-bottom:1px dashed rgba(15,23,42,.28)}
.mu-navbar{
  background:linear-gradient(180deg,var(--u-blue),var(--u-blue2));
  border-bottom:1px solid rgba(255,255,255,.14);
}
.mu-navbar .wrap{
  display:grid;
  grid-template-columns:96px 1fr 96px;
  align-items:center;
  gap:18px;
}
.mu-logo{
  width:88px;height:88px;
  display:grid;place-items:center;
  border-radius:20px;
  overflow:hidden;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.20);
}
.mu-logo img{
  width:80px;height:80px;object-fit:contain;
}
.mu-menu{
  list-style:none;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin:0;padding:0;
}
.mu-item{position:relative}
.mu-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  color:#fff;
  padding:12px 12px;
  border-radius:14px;
  font-size:17px;
  font-weight:1000;
  transition:background .18s ease, transform .18s ease;
}
.mu-link:hover{background:rgba(255,255,255,.10);transform:translateY(-1px)}
.mu-caret{
  width:10px;height:10px;
  border-right:2px solid rgba(255,255,255,.92);
  border-bottom:2px solid rgba(255,255,255,.92);
  transform:rotate(45deg);
  margin-top:-2px;
  transition:transform .18s ease;
}
.mu-item.is-open > .mu-link .mu-caret{transform:rotate(225deg)}
.mu-dd{
  position:absolute;
  top:calc(100% + 10px);
  left:50%;
  transform:translateX(-50%) translateY(10px);
  width:520px;
  max-width:min(92vw,540px);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
  background:rgba(255,255,255,.98);
  border:1px solid rgba(15,23,42,.12);
  border-radius:18px;
  box-shadow:0 30px 70px rgba(2,6,23,.22);
  overflow:hidden;
}
.mu-dd-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  padding:14px;
}
.mu-dd a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:13px 12px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
  color:var(--u-text);
  font-size:15px;
  font-weight:900;
}
.mu-dd a small{color:var(--u-muted)}
.mu-item.is-open > .mu-dd{
  opacity:1;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.mu-nav-toggle{
  display:none;
  width:52px;height:52px;
  padding:0;
  border:none;
  border-radius:18px;
  background:rgba(255,255,255,.12);
  box-shadow:0 14px 30px rgba(2,6,23,.20);
  cursor:pointer;
  align-items:center;
  justify-content:center;
}
.mu-burger,
.mu-burger::before,
.mu-burger::after{
  display:block;
  width:24px;height:3px;
  border-radius:999px;
  background:#fff;
  position:relative;
  transition:transform .22s ease, opacity .22s ease, top .22s ease;
}
.mu-burger::before,.mu-burger::after{content:"";position:absolute;left:0}
.mu-burger::before{top:-8px}
.mu-burger::after{top:8px}
.mu-navbar.nav-open .mu-burger{background:transparent}
.mu-navbar.nav-open .mu-burger::before{top:0;transform:rotate(45deg)}
.mu-navbar.nav-open .mu-burger::after{top:0;transform:rotate(-45deg)}

/* hero */
.hero{
  position:relative;
  min-height:640px;
  overflow:hidden;
  color:#fff;
  padding:58px 0 40px;
}
.hero-bg{
  position:absolute;inset:0;z-index:-2;
  background-image:url("banner1.png");
  background-size:cover;
  background-position:center;
  transform:scale(1.05);
  transition:opacity .7s ease, transform 4s ease;
}
.hero-bg.is-fading{
  opacity:.15;
  transform:scale(1.10);
}
.hero-overlay{
  position:absolute;inset:0;z-index:-1;
  background:
    linear-gradient(90deg, rgba(7,20,40,.85), rgba(7,20,40,.40)),
    radial-gradient(900px 500px at 80% 20%, rgba(10,90,166,.18), transparent 60%),
    radial-gradient(800px 400px at 10% 80%, rgba(22,163,74,.16), transparent 60%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:end;
}
.hero-title{
  margin:16px 0 8px;
  font-size:50px;
  line-height:1.05;
  font-weight:1000;
}
.hero-title-accent{
  display:block;
  font-size:24px;
  font-weight:900;
  opacity:.95;
  margin-top:8px;
}
.hero-slogan{
  display:inline-flex;
  margin:10px 0 18px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(245,180,0,.55);
  background:rgba(245,180,0,.14);
  color:#ffe29a;
  font-size:14px;
  font-weight:1000;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.hero-subtitle{
  max-width:60ch;
  color:rgba(255,255,255,.90);
  font-size:17px;
  margin:0 0 18px;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:12px 20px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow:0 12px 24px rgba(2,6,23,.08);
  font-size:15px;
  font-weight:1000;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:linear-gradient(135deg,var(--u-blue),var(--u-green));color:#fff;border:none}
.btn-secondary{background:linear-gradient(135deg,var(--u-purple),var(--u-teal));color:#fff;border:none}
.btn-ghost{
  color:#fff;background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:none;
}
.hero-badges{
  width:100%;
  max-width:360px;
  display:grid;
  gap:12px;
  margin-left:auto;
}
.badge{
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(10px);
}
.badge b{display:block;font-size:34px;line-height:1}
.badge span{display:block;margin-top:6px;font-weight:900;opacity:.92}
.badge-blue{border-left:4px solid #60a5fa}
.badge-green{border-left:4px solid #22c55e}
.badge-yellow{border-left:4px solid #f5b400}

/* sections */
main .section{padding:26px 0}
.section{
  position:relative;
  background:linear-gradient(180deg,rgba(255,255,255,.88),rgba(255,255,255,.82));
}
.section.section-alt{
  background:
    radial-gradient(1000px 560px at 18% 0%, rgba(10,90,166,.10), transparent 58%),
    radial-gradient(900px 560px at 85% 20%, rgba(22,163,74,.08), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(245,247,251,.92));
}
.section.section-soft{
  background:
    radial-gradient(1000px 500px at 50% 0%, rgba(245,180,0,.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.80));
}
.section::before,.section::after{
  content:"";
  position:absolute;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,rgba(15,23,42,.08),transparent);
}
.section::before{top:0}
.section::after{bottom:0}
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.card,.news-card,.quick-card{
  background:#fff;
  border:1px solid var(--u-line);
  border-radius:var(--u-radius);
  box-shadow:0 10px 25px rgba(0,0,0,.05);
  transition:transform .22s ease, box-shadow .22s ease;
}
.card,.quick-card{padding:22px}
.card:hover,.news-card:hover,.quick-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 55px rgba(2,6,23,.10);
}
h2,h3{color:var(--u-text)}
p{color:var(--u-muted)}
.about-lead{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(245,180,0,.12);
  border:1px solid rgba(245,180,0,.34);
  color:#876100;
  font-weight:1000;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.kpi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:16px;
}
.kpi{
  padding:14px;
  border-radius:16px;
  border:1px solid var(--u-line);
  background:#fff;
}
.kpi b{display:block;font-size:30px}
.kpi span{display:block;font-size:13px;color:var(--u-muted);font-weight:900}
.kpi-blue{border-left:4px solid var(--u-blue)}
.kpi-green{border-left:4px solid var(--u-green)}
.kpi-yellow{border-left:4px solid var(--u-yellow)}

.media img,.vstup-media img{
  width:100%;
  display:block;
  object-fit:cover;
  border-radius:22px;
  border:1px solid var(--u-line);
  box-shadow:var(--u-shadow);
}
.media img{min-height:360px}
.media-caption{
  margin-top:10px;
  padding:12px 14px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--u-line);
}
.media-caption b{display:block;color:var(--u-text)}
.media-caption span{display:block;color:var(--u-muted);font-weight:900;font-size:13px}

/* quick */
.quick{
  margin-top:-42px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  position:relative;
  z-index:30;
}
.quick-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.quick-card b{display:block}
.quick-card span{color:var(--u-muted);font-size:14px;font-weight:800}
.qc-blue{border-top:4px solid var(--u-blue)}
.qc-green{border-top:4px solid var(--u-green)}
.qc-yellow{border-top:4px solid var(--u-yellow)}

/* heads */
.section-head{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px 16px;
  margin-bottom:18px;
}
.section-head h2{
  margin:0;
  position:relative;
  display:inline-block;
}
.section-head h2::after{
  content:"";
  position:absolute;
  left:0;bottom:-10px;
  width:74px;height:4px;border-radius:999px;
  background:var(--u-yellow);
  box-shadow:0 10px 24px rgba(245,180,0,.25);
}
.section-head p{margin:0;font-weight:800}

/* vstup */
.vstup-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-items:stretch;
}
.vstup-text h3:first-child{margin-top:0}
.vstup-item{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:14px 0;
  border-bottom:1px solid rgba(15,23,42,.08);
}
.vstup-item b{color:var(--u-text)}
.vstup-item span{color:var(--u-muted);font-weight:800}

/* news */
.news-scroller{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(320px,1fr);
  gap:16px;
  overflow-x:auto;
  padding:8px 2px 18px;
  scroll-snap-type:x mandatory;
}
.news-card{
  overflow:hidden;
  display:flex;
  flex-direction:column;
  scroll-snap-align:start;
}
.news-img img,
.news-img video{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
  background:#e9eef5;
}
.news-img video{
  filter:brightness(.88);
  transition:filter .28s ease, transform .28s ease;
}
.news-card:hover video{
  filter:brightness(1);
  transform:scale(1.03);
}
.news-body{
  padding:14px 14px 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  height:100%;
}
.news-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.tag{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(10,90,166,.10);
  border:1px solid rgba(10,90,166,.18);
  color:var(--u-blue2);
  font-size:12px;
  font-weight:1000;
}
.tag-green{
  background:rgba(22,163,74,.14);
  border-color:rgba(22,163,74,.20);
  color:#065f2d;
}
.tag-yellow{
  background:rgba(245,180,0,.16);
  border-color:rgba(245,180,0,.24);
  color:#6b4f00;
}
.tag-blue{
  background:rgba(10,90,166,.10);
  border-color:rgba(10,90,166,.18);
  color:var(--u-blue2);
}
.date{color:var(--u-muted);font-size:12px;font-weight:1000}
.news-title{margin:0;font-size:18px;line-height:1.28}
.news-text{margin:0;font-size:14px;line-height:1.55;color:var(--u-muted);font-weight:700}
.feature-list{
  margin:0;
  padding-left:18px;
  color:var(--u-text);
}
.feature-list li{
  margin:0 0 8px;
  color:var(--u-muted);
  font-weight:700;
}
.contacts-inline{
  margin-top:12px;
  color:var(--u-text);
  font-size:14px;
}

/* pills */
.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:16px 0 0;
}
.pill{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--u-line);
  background:#fff;
  font-size:12.5px;
  font-weight:1000;
}
.p-blue{border-left:4px solid var(--u-blue)}
.p-green{border-left:4px solid var(--u-green)}
.p-yellow{border-left:4px solid var(--u-yellow)}
.p-purple{border-left:4px solid var(--u-purple)}

/* footer */
.mu-footer{
  margin-top:50px;
  background:
    radial-gradient(1100px 640px at 20% 0%, rgba(10,90,166,.28), transparent 62%),
    radial-gradient(900px 520px at 100% 20%, rgba(22,163,74,.16), transparent 60%),
    linear-gradient(180deg,#071a2f,#061428);
  border-top:4px solid var(--u-yellow);
  color:#fff;
}
.mu-footer,.mu-footer *{color:#fff}
.mu-footer .wrap{
  max-width:var(--u-max);
  margin:0 auto;
  padding:40px 18px 20px;
}
.footer-top{
  display:grid;
  grid-template-columns:280px 1fr 1fr;
  gap:26px;
  align-items:start;
}
.f-brand{text-align:center}
.f-logo{width:220px;margin:0 auto 12px}
.f-logo img{
  width:100%;
  object-fit:contain;
  filter:drop-shadow(0 15px 28px rgba(0,0,0,.35));
}
.f-brand-title{
  font-size:16px;
  font-weight:1000;
  line-height:1.4;
  margin-bottom:8px;
}
.f-brand-text{
  color:rgba(255,255,255,.8);
  font-weight:900;
}
.footer-card{
  padding:24px;
  border-radius:26px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:0 22px 55px rgba(0,0,0,.34);
}
.footer-card h3{
  margin:0 0 16px;
  font-size:22px;
  font-weight:1000;
}
.contacts-card p{
  margin:0 0 10px;
  color:rgba(255,255,255,.88);
}
.f-form{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.f-input{
  width:100%;
  padding:16px 18px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.09);
  color:#fff;
  font-size:16px;
}
.f-input::placeholder{color:rgba(255,255,255,.70)}
.f-input:focus{
  outline:none;
  box-shadow:0 0 0 5px rgba(245,180,0,.18);
}
.f-btn{
  min-height:50px;
  border:none;
  border-radius:16px;
  padding:16px 18px;
  background:linear-gradient(135deg,var(--u-yellow),#ffd76a);
  color:#0f172a;
  font-size:16px;
  font-weight:1000;
  cursor:pointer;
}
.f-note{
  margin:12px 0 0;
  color:rgba(255,255,255,.76);
  font-size:14px;
}
.footer-bottom{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size:14px;
  color:rgba(255,255,255,.82);
}

/* reveal */
html.js .reveal{
  opacity:0;
  transform:translateY(12px);
  transition:opacity .55s ease, transform .55s ease;
  transition-delay:var(--d,0ms);
}
html.js .reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* fallback */
.img-fallback{
  position:relative;
  display:block;
  width:100%;
  min-height:240px;
  border-radius:22px;
  border:1px dashed rgba(15,23,42,.14);
  background:
    linear-gradient(135deg, rgba(10,90,166,.08), rgba(22,163,74,.06)),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.86));
}
.img-fallback--hero{
  min-height:100%;
  border:none;
  border-radius:0;
  background:
    linear-gradient(90deg, rgba(7,20,40,.86), rgba(7,20,40,.48)),
    linear-gradient(135deg, rgba(10,90,166,.60), rgba(22,163,74,.34));
}
.img-fallback__label{
  position:absolute;
  left:18px;
  bottom:18px;
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.76);
  color:#0f172a;
  border:1px solid rgba(15,23,42,.10);
  font-weight:1000;
  font-size:13px;
}

/* mobile */
@media (max-width: 980px){
  .mu-navbar .wrap{
    grid-template-columns:1fr auto 1fr;
    gap:10px;
    padding:10px 12px;
  }
  .mu-logo{
    width:62px;height:62px;border-radius:16px;
  }
  .mu-logo img{
    width:54px;height:54px;
  }
  .mu-logo--left{justify-self:start}
  .mu-logo--right{justify-self:end}
  .mu-nav-toggle{
    display:flex;
    justify-self:center;
  }
  nav{
    grid-column:1 / -1;
    width:100%;
  }
  .mu-menu{
    flex-direction:column;
    align-items:stretch;
    width:100%;
    max-width:420px;
    margin:12px auto 0;
    padding:16px;
    border-radius:22px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.20);
    box-shadow:0 25px 60px rgba(0,0,0,.35);
    backdrop-filter:blur(10px);
    max-height:0;
    overflow:hidden;
    opacity:0;
    pointer-events:none;
    transition:max-height .30s ease, opacity .24s ease, padding .24s ease;
  }
  .mu-navbar.nav-open .mu-menu{
    max-height:75vh;
    opacity:1;
    pointer-events:auto;
  }
  .mu-link{
    width:100%;
    justify-content:space-between;
    padding:16px 18px;
    font-size:17px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
  }
  .mu-dd{
    position:static;
    width:100%;
    max-width:none;
    transform:none;
    opacity:1;
    pointer-events:auto;
    box-shadow:none;
    display:none;
    margin-top:10px;
  }
  .mu-dd-inner{grid-template-columns:1fr}
  .mu-item.is-open > .mu-dd{display:block}
  .hero{
    min-height:auto;
    padding:42px 0 34px;
  }
  .hero-grid,
  .two-col,
  .vstup-wrap,
  .quick,
  .footer-top{
    grid-template-columns:1fr;
  }
  .hero-title{font-size:36px}
  .hero-title-accent{font-size:20px}
  .hero-subtitle{font-size:16px}
  .hero-badges{max-width:none;margin-left:0}
  .kpi-grid{grid-template-columns:1fr}
  .quick{margin-top:20px}
  .news-scroller{grid-auto-columns:minmax(280px,1fr)}
  .news-img img,
  .news-img video{height:190px}
  .media img{min-height:260px}
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
  .mu-top-left{
    font-size:13px;
    gap:8px 10px;
  }
}
@media (max-width: 560px){
  .container{padding:0 14px}
  .mu-topbar .wrap{padding:8px 14px}
  .section-head h2::after{width:58px}
  .hero-actions .btn{
    width:100%;
  }
  .hero-slogan{
    font-size:12px;
    letter-spacing:.08em;
  }
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *{animation:none !important;transition:none !important}
  .reveal{opacity:1 !important;transform:none !important}
}

.footer-bottom a {
  color: #d4af37; /* золотой акцент под твой стиль */
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
/* =========================================================
   RESPONSIVE PATCH — production mobile/tablet fixes
   ========================================================= */
html, body{width:100%;overflow-x:hidden;}
img, video, iframe, svg{max-width:100%;height:auto;}
.mu-header,.mu-navbar,.mu-topbar,.section,.hero,.mu-footer{max-width:100vw;}
.hero-title{font-size:clamp(32px,5vw,56px);}
.hero-title-accent{font-size:clamp(18px,2.4vw,26px);}
.section-head h2,.card h2{font-size:clamp(26px,3.2vw,38px);line-height:1.12;}
.card h3,.footer-card h3{font-size:clamp(20px,2vw,24px);}
.media img,.vstup-media img{aspect-ratio:4/3;min-height:0;height:auto;}
.news-img img,.news-img video{aspect-ratio:16/10;height:auto;}
@media (max-width:1100px){:root{--u-max:1040px}.mu-navbar .wrap{grid-template-columns:76px 1fr 76px;gap:12px}.mu-logo{width:72px;height:72px;border-radius:18px}.mu-logo img{width:64px;height:64px}.mu-link{font-size:15px;padding:11px 9px}.hero{min-height:560px;padding:46px 0 34px}.hero-grid{grid-template-columns:1fr .72fr;align-items:center}.footer-top{grid-template-columns:240px 1fr 1fr;gap:18px}.f-logo{width:180px}}
@media (max-width:980px){html.menu-open,html.menu-open body{overflow:hidden}.mu-header{position:sticky;top:0}.mu-topbar .wrap{padding:8px 12px}.mu-top-left{justify-content:center;text-align:center}.mu-top-left span{width:100%}.mu-navbar .wrap{position:relative;grid-template-columns:72px 1fr 72px;gap:8px}.mu-nav-toggle{grid-column:2;grid-row:1;margin:auto;z-index:1002}.mu-logo--left{grid-column:1;grid-row:1}.mu-logo--right{grid-column:3;grid-row:1}nav{grid-column:1/-1;grid-row:2;width:100%}.mu-menu{width:min(100%,440px);max-width:none;margin:10px auto 0;padding:0 12px;border-radius:20px;max-height:0;overflow-y:auto;overscroll-behavior:contain}.mu-navbar.nav-open .mu-menu{max-height:calc(100dvh - 160px);padding:14px 12px}.mu-dd{border-radius:16px;overflow:hidden}.mu-dd-inner{padding:10px}.mu-dd a{font-size:14px;padding:12px}.hero{min-height:auto;padding:38px 0 30px}.hero-grid{grid-template-columns:1fr;gap:22px;align-items:start}.hero-left,.hero-right{text-align:left}.hero-badges{grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.badge{padding:13px;min-width:0}.badge b{font-size:28px}.badge span{font-size:13px;line-height:1.25}main .section,.section{padding:34px 0}.two-col,.vstup-wrap{grid-template-columns:1fr;gap:18px}.two-col .media{order:2}.two-col .card{order:1}.quick{grid-template-columns:1fr;margin-top:16px}.quick-card{padding:18px}.section-head{align-items:flex-start;flex-direction:column}.vstup-media{order:-1}.news-scroller{display:flex;gap:14px;overflow-x:auto;scroll-padding-left:14px;-webkit-overflow-scrolling:touch}.news-card{min-width:min(86vw,360px)}.footer-top{grid-template-columns:1fr;gap:18px}.f-brand{text-align:left}.f-logo{width:150px;margin:0 0 12px}}
@media (max-width:640px){.container,.mu-navbar .wrap,.mu-topbar .wrap,.mu-footer .wrap{padding-left:14px;padding-right:14px}.mu-navbar .wrap{grid-template-columns:62px 1fr 62px}.mu-logo{width:58px;height:58px;border-radius:15px}.mu-logo img{width:50px;height:50px}.mu-nav-toggle{width:50px;height:50px;border-radius:16px}.mu-top-left{font-size:12px;line-height:1.25}.hero-overlay{background:linear-gradient(180deg,rgba(7,20,40,.88),rgba(7,20,40,.58)),radial-gradient(700px 360px at 90% 10%,rgba(10,90,166,.20),transparent 62%)}.hero-title{margin-top:6px}.hero-subtitle{font-size:15px;line-height:1.55}.hero-actions{display:grid;grid-template-columns:1fr;gap:10px}.hero-actions .btn{width:100%;min-height:48px}.hero-badges{grid-template-columns:1fr}.badge{display:flex;align-items:center;gap:12px}.badge b{min-width:52px}.card,.quick-card,.footer-card{border-radius:18px;padding:18px}.kpi-grid{grid-template-columns:1fr;gap:10px}.pill-row{gap:7px}.pill{font-size:12px;padding:8px 10px}.vstup-item{padding:11px 0}.news-card{min-width:88vw;border-radius:18px}.news-body{padding:13px}.footer-bottom{align-items:center;text-align:center;font-size:13px}}
@media (max-width:390px){.mu-navbar .wrap{grid-template-columns:54px 1fr 54px}.mu-logo{width:52px;height:52px}.mu-logo img{width:45px;height:45px}.mu-nav-toggle{width:46px;height:46px}.hero-slogan{white-space:normal;text-align:center}.section-head h2::after{bottom:-8px}.quick-card{align-items:flex-start}}
