/* Clean, lightweight, no dependencies */
:root{
  --bg:#f6f8fb;
  --card:#ffffff;
  --alt:#f0f3f7;
  --text:#0f172a;
  --muted:#475569;
  --line:rgba(15,23,42,.12);
  --accent:#0ea5e9;
  --accent2:#10b981;
  --shadow: 0 10px 30px rgba(2,6,23,.10);
  --radius:18px;
  --max:1120px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 10% 0%, rgba(14,165,233,.14), transparent 60%),
              radial-gradient(1000px 500px at 90% 10%, rgba(16,185,129,.12), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}
a{color:inherit;text-decoration:none}
a:hover{opacity:.9}
.container{max-width:var(--max);margin:0 auto;padding:0 20px}
.skip-link{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{left:16px;top:16px;width:auto;height:auto;padding:10px 12px;background:#111827;border:1px solid var(--line);border-radius:10px;z-index:9999}

.topbar{
  position:sticky; top:0; z-index:100;
  backdrop-filter:saturate(150%) blur(10px);
  background: rgba(246,248,251,.75);
  border-bottom:1px solid var(--line);
}
.topbar__inner{display:flex;align-items:center;gap:14px;padding:14px 0}
.brand{display:flex;flex-direction:column;gap:2px;min-width:240px}
.brand__name{font-weight:800;letter-spacing:.08em;font-size:14px}
.dot{opacity:.5}
.brand__tag{font-size:12px;color:var(--muted)}
.nav{display:flex;gap:18px;flex:1;justify-content:center}
.nav a{font-size:13px;color:var(--muted);padding:8px 10px;border-radius:12px}
.nav a:hover{background:rgba(15,23,42,.04);color:var(--text)}
.topbar__actions{display:flex;align-items:center;gap:10px}

.lang{
  display:flex;align-items:center;gap:10px;
  border:1px solid var(--line);
  background:rgba(15,23,42,.04);
  color:var(--text);
  border-radius:999px;
  padding:7px 10px;
  cursor:pointer;
}
.lang__pill{
  font-size:12px;font-weight:700;
  background:rgba(125,211,252,.18);
  border:1px solid rgba(125,211,252,.35);
  padding:2px 8px;border-radius:999px;
}
.lang__hint{font-size:12px;color:var(--muted)}

.btn{
  display:inline-flex;align-items:center;gap:8px;
  border-radius:999px;
  padding:10px 14px;
  background: linear-gradient(135deg, rgba(14,165,233,.16), rgba(16,185,129,.14));
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight:700;
  font-size:13px;
}
.btn--ghost{
  background:rgba(15,23,42,.04);
  border:1px solid var(--line);
  box-shadow:none;
  color:var(--text);
}
.icon{font-weight:900;background:rgba(15,23,42,.06);padding:2px 6px;border-radius:7px}

.hero{padding:44px 0 10px}
.hero__grid{display:grid;grid-template-columns: 1.15fr .85fr;gap:22px;align-items:start}
.kicker{color:var(--muted);font-size:13px;margin-bottom:10px}
h1{margin:0 0 10px;font-size:40px;line-height:1.1;letter-spacing:-.02em}
.lead{color:var(--muted);font-size:16px;max-width:58ch}
.badges{display:flex;flex-wrap:wrap;gap:10px;margin:16px 0 18px}
.badge{
  font-size:12px;color:var(--text);
  padding:6px 10px;border-radius:999px;
  border:1px solid var(--line);
  background:rgba(15,23,42,.04);
}
.cta-row{display:flex;gap:10px;flex-wrap:wrap}
.micro{margin-top:12px;color:var(--muted);font-size:13px}

.hero__card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.avatar{
  width:100%;
  height:240px;
  object-fit:cover;
  object-position: 50% 25%;
  display:block;
  border-bottom:1px solid var(--line);
}
.card__body{padding:16px}
.card__title{font-weight:800;font-size:16px;margin-bottom:2px}
.card__subtitle{color:var(--muted);font-size:13px;margin-bottom:8px}
.card__meta{color:var(--muted);font-size:12px;margin-bottom:12px}
.card__actions{display:flex;flex-direction:column;gap:8px}
.chip{
  display:flex;align-items:center;gap:10px;
  padding:10px 12px;border-radius:14px;
  border:1px solid var(--line);
  background:rgba(15,23,42,.04);
  font-size:13px;
}
.chip__icon{
  width:22px;height:22px;display:grid;place-items:center;
  border-radius:8px;
  background:rgba(125,211,252,.16);
  border:1px solid rgba(125,211,252,.28);
  font-weight:900;
}
.card__note{margin-top:10px;color:var(--muted);font-size:12px}

.section{padding:44px 0}
.section--alt{background:rgba(255,255,255,.02);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.section__head{display:flex;flex-direction:column;gap:10px;margin-bottom:18px}
.section__head h2{margin:0;font-size:28px}
.section__head p{margin:0;color:var(--muted);max-width:80ch}

.grid{display:grid;gap:14px}
.cards{grid-template-columns: repeat(3, 1fr)}
.card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}
.card__icon{
  width:36px;height:36px;border-radius:12px;
  display:grid;place-items:center;
  background:rgba(52,211,153,.14);
  border:1px solid rgba(52,211,153,.28);
  margin-bottom:10px;
  font-weight:900;
}
.card h3{margin:0 0 6px;font-size:16px}
.card p{margin:0 0 10px;color:var(--muted);font-size:13px}
.list{margin:0;padding-left:18px;color:var(--muted);font-size:13px}
.list li{margin:6px 0}

.why{grid-template-columns: repeat(3,1fr)}
.why__item{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}
.why__item h3{margin:0 0 6px;font-size:16px}
.why__item p{margin:0;color:var(--muted);font-size:13px}

.about{display:grid;grid-template-columns: 1.15fr .85fr;gap:14px;align-items:start}
.about__text p{color:var(--muted);margin:0 0 10px}
.about__note{border-left:3px solid rgba(125,211,252,.35);padding-left:10px}
.about__facts{display:flex;flex-direction:column;gap:10px}
.fact{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:14px;
}
.fact__k{color:var(--muted);font-size:12px;margin-bottom:4px}
.fact__v{font-weight:700;font-size:13px}

.contact{display:grid;gap:14px}
.contact__cards{display:grid;grid-template-columns: repeat(2, 1fr);gap:12px}
.contactCard{
  display:flex;gap:12px;align-items:flex-start;
  padding:14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.contactCard__icon{
  width:36px;height:36px;border-radius:12px;
  display:grid;place-items:center;
  background:rgba(125,211,252,.14);
  border:1px solid rgba(125,211,252,.28);
  font-weight:900;
}
.contactCard__k{color:var(--muted);font-size:12px}
.contactCard__v{font-weight:700;font-size:13px}
.contact__note{color:var(--muted);font-size:13px;max-width:80ch}

.footer{border-top:1px solid var(--line);padding:18px 0;color:var(--muted);font-size:13px}
.footer__inner{display:flex;align-items:center;justify-content:space-between;gap:12px}
.footer__links{display:flex;gap:14px}

@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  h1{font-size:34px}
  .cards{grid-template-columns: repeat(2,1fr)}
  .about{grid-template-columns:1fr}
}
@media (max-width: 640px){
  .nav{display:none}
  .brand{min-width:auto}
  .cards{grid-template-columns:1fr}
  .why{grid-template-columns:1fr}
  .contact__cards{grid-template-columns:1fr}
}


/* Corner profile (helps visitors connect the face to the offer) */
.corner-profile{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:120;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius:999px;
  box-shadow:var(--shadow);
  max-width:320px;
}
.corner-profile img{
  width:44px;height:44px;border-radius:999px;object-fit:cover;
  border:1px solid var(--line);
}
.corner-profile .cp__text{display:flex;flex-direction:column;line-height:1.1}
.corner-profile .cp__name{font-weight:800;font-size:12px}
.corner-profile .cp__role{font-size:11px;color:var(--muted)}
.corner-profile .cp__actions{margin-left:6px;display:flex;gap:8px}
.corner-profile .cp__actions a{
  font-size:11px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--alt);
}
.corner-profile .cp__actions a.primary{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#fff;border-color:transparent;
}
@media (max-width: 720px){
  .corner-profile{right:10px;left:10px;bottom:10px;max-width:none;justify-content:space-between}
  .corner-profile .cp__actions{margin-left:0}
}


/* --- Hero About block --- */
.hero__about{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(15,23,42,.10);
}
.hero__aboutTitle{
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  color: rgba(15,23,42,.70);
}
.hero__aboutText{
  margin: 0;
  line-height: 1.6;
  color: rgba(15,23,42,.82);
}

/* --- Icon cards --- */
.cards--icon .card{
  padding: 22px;
}
.card__top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}
.card__icon{
  width: 38px;
  height: 38px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  background: rgba(59,130,246,.10);
  font-size: 18px;
}
.card__text{
  margin: 0;
  color: rgba(15,23,42,.82);
  line-height: 1.55;
}
.card__meta{
  margin: 10px 0 0 0;
  color: rgba(15,23,42,.65);
  font-size: 14px;
  line-height: 1.45;
}

/* Make grids breathe a bit more on large screens */
@media (min-width: 900px){
  .grid{ gap: 18px; }
}
.grid--4{
  grid-template-columns: repeat(4, minmax(0,1fr));
}
@media (max-width: 1100px){
  .grid--4{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .grid--4{ grid-template-columns: 1fr; }
}





/* Language switcher (explicit PL/EN) */
.langSwitch{
  display:flex;
  gap:8px;
  padding:6px;
  border:1px solid rgba(15,23,42,.12);
  border-radius:999px;
  background:rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
}
.langSwitch__btn{
  appearance:none;
  border:0;
  background:transparent;
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  letter-spacing:.02em;
  cursor:pointer;
  color:rgba(15,23,42,.72);
}
.langSwitch__btn.is-active{
  background:rgba(59,130,246,.12);
  color:rgba(15,23,42,.92);
}
.langSwitch__btn:focus{
  outline:2px solid rgba(59,130,246,.35);
  outline-offset:2px;
}
