:root{
  --bg:#0b1220;
  --bg-soft:#111a2b;
  --card:#ffffff;
  --text:#1b2430;
  --muted:#5c6b7a;
  --line:#e7ecf2;
  --brand:#0f766e;
  --brand-2:#14b8a6;
  --accent:#f59e0b;
  --white:#ffffff;
  --shadow:0 20px 50px rgba(15,23,42,.12);
  --radius:22px;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#f7fafc 0%,#eef4f8 100%);
  line-height:1.6;
}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;display:block}
.container{width:min(100% - 32px, var(--max)); margin:0 auto}
.header{
  position:sticky; top:0; z-index:20;
  backdrop-filter:saturate(180%) blur(14px);
  background:rgba(255,255,255,.85);
  border-bottom:1px solid rgba(231,236,242,.9);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  min-height:76px; gap:20px;
}
.brand{
  display:flex; align-items:center; gap:14px; font-weight:800; color:#0f172a;
}
.brand-mark{
  width:44px; height:44px; border-radius:14px;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:white; display:grid; place-items:center; font-weight:800; box-shadow:var(--shadow);
}
.nav-links{
  display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end;
}
.nav-links a{
  padding:10px 14px; border-radius:999px; color:#0f172a; font-weight:600;
}
.nav-links a.active,.nav-links a:hover{
  background:#e6fffb; color:var(--brand); text-decoration:none;
}
.hero{
  position:relative; overflow:hidden;
  background:
    radial-gradient(circle at top right, rgba(20,184,166,.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(245,158,11,.15), transparent 28%),
    linear-gradient(135deg,#0b1220 0%,#10213b 60%,#14324b 100%);
  color:white;
}
.hero-inner{
  display:grid; grid-template-columns:1.15fr .85fr; gap:42px;
  padding:88px 0 74px;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px; padding:8px 14px;
  background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.14);
  border-radius:999px; font-size:.95rem; color:#d9fff9; margin-bottom:18px;
}
.hero h1{
  margin:0 0 18px; font-size:clamp(2.2rem,4vw,4.4rem); line-height:1.05;
}
.hero p{font-size:1.08rem; color:#dbe7f1; max-width:62ch}
.hero-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:28px; padding:28px; box-shadow:0 20px 60px rgba(0,0,0,.22);
  align-self:center;
}
.stats{display:grid; grid-template-columns:repeat(auto-fit, minmax(200px, 1fr)); gap:14px; margin-top:22px}
.stat{
  background:rgba(255,255,255,.08); padding:18px; border-radius:20px; text-align:center;
}
.stat strong{display:block; font-size:1.5rem; color:white}
.section{padding:76px 0}
.section h2{font-size:clamp(1.8rem,3vw,2.8rem); margin:0 0 14px}
.lead{font-size:1.08rem; color:var(--muted); max-width:74ch}
.grid{display:grid; gap:24px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:28px; box-shadow:var(--shadow);
}
.card h3{margin-top:0; margin-bottom:10px; font-size:1.25rem}
.badge{
  display:inline-block; padding:6px 12px; border-radius:999px;
  background:#ecfeff; color:var(--brand); font-weight:700; font-size:.88rem;
  margin-bottom:12px;
}
.list{padding-left:20px; margin:0}
.list li{margin:8px 0}
.cta{
  background:linear-gradient(135deg,#0f766e 0%,#115e59 100%);
  color:white; border-radius:28px; padding:36px; box-shadow:var(--shadow);
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 18px; border-radius:14px; border:1px solid transparent;
  font-weight:700; transition:.2s ease; text-decoration:none;
}
.btn-primary{background:var(--accent); color:#111827}
.btn-primary:hover{filter:brightness(.98); text-decoration:none}
.btn-secondary{background:white; color:#0f172a}
.btn-secondary:hover{text-decoration:none; background:#f8fafc}
.footer{
  padding:28px 0 44px; color:#475569;
}
.footer-inner{
  display:flex; justify-content:space-between; gap:24px; flex-wrap:wrap;
  border-top:1px solid var(--line); padding-top:24px;
}
.hero-points{display:grid; gap:14px; margin-top:18px}
.point{
  display:flex; gap:12px; align-items:flex-start;
  background:rgba(255,255,255,.06); border-radius:18px; padding:14px 16px;
}
.point-dot{
  width:12px; height:12px; margin-top:8px; border-radius:50%;
  background:linear-gradient(135deg,var(--accent),#fbbf24);
  flex:0 0 auto;
}
.quote{
  padding:22px 24px; border-left:5px solid var(--brand); background:#f8fafc; border-radius:18px;
}
.page-hero{
  padding:72px 0 32px;
  background:linear-gradient(135deg,#0d1728,#113452);
  color:white;
}
.page-hero p{color:#dbe7f1; max-width:68ch}
.kontakt-list{display:grid; gap:16px}
.kontakt-item{
  display:flex; gap:14px; align-items:flex-start;
  padding:16px 18px; background:white; border:1px solid var(--line); border-radius:18px;
}
.small{font-size:.95rem; color:var(--muted)}
.notice{
  background:#fff7ed; border:1px solid #fed7aa; color:#9a3412;
  padding:16px 18px; border-radius:16px;
}
@media (max-width: 980px){
  .hero-inner,.grid-3,.grid-2{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .nav{padding:10px 0}
  .nav-links{gap:6px}
  .nav-links a{padding:9px 12px; font-size:.95rem}
  .hero-inner{padding:64px 0 56px}
  .stats{grid-template-columns:1fr}
}
