/* KONTAKTY HERO — iLogist v2 */
:root {
  --kt-dk:  #07090d;
  --kt-dk2: #0d1117;
  --kt-gd:  #ef9f27;
  --kt-gd-dim: rgba(239,159,39,0.1);
  --kt-gd-b:   rgba(239,159,39,0.25);
  --kt-w08: rgba(255,255,255,0.08);
  --kt-w40: rgba(255,255,255,0.4);
  --kt-w60: rgba(255,255,255,0.6);
  --kt-D: 'Bebas Neue', sans-serif;
  --kt-S: 'Poppins', sans-serif;
}

.kt-hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--kt-dk);
  font-family: var(--kt-S); color: #fff;
}
.kt-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1589129801185-5715a9b1ab5e?w=1600&q=80');
  background-size: cover; background-position: center;
  animation: ktz 20s ease-in-out infinite alternate;
  filter:brightness(0.45) saturate(0.7);
}
@keyframes ktz { from { transform: scale(1.02); } to { transform: scale(1.07); } }
.kt-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(110deg,rgba(7,9,13,0.67) 38%,rgba(7,9,13,0.62) 65%,rgba(7,9,13,0.1) 100%);
}
.kt-hero-glow {
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(239,159,39,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}
.kt-hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 120px 48px 40px;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
}
.kt-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--kt-gd-dim);
  border: 1px solid var(--kt-gd-b);
  color: var(--kt-gd);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; margin-bottom: 18px;
}
.kt-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--kt-gd); animation: ktp 2s infinite;
}
@keyframes ktp { 0%,100%{opacity:1} 50%{opacity:0.3} }

.kt-hero h1 {
  font-family: var(--kt-D);
  font-size: clamp(36px, 7vw, 72px);
  line-height: 0.9; color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 12px; font-weight: 400;
  overflow-wrap: anywhere; word-break: break-word;
}
.kt-hero h1 em { font-style: normal; color: var(--kt-gd); }
.kt-hero-sub {
  font-size: 16px; font-weight: 300;
  color: var(--kt-w60); line-height: 1.7;
  max-width: 580px; margin-bottom: 32px;
}
.kt-hero-contacts {
  display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px;
}
.kt-hero-contact {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  padding: 10px 16px;
}
.kt-hero-contact-icon { color: var(--kt-gd); font-size: 16px; flex-shrink: 0; }
.kt-hero-contact-val {
  font-size: 13px; font-weight: 500; color: #fff;
  font-family: var(--kt-S); line-height: 1.3;
}
.kt-hero-contact-lbl {
  font-size: 9px; color: var(--kt-w40);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.kt-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-ktg {
  background: var(--kt-gd); color: var(--kt-dk);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 28px; border: none; cursor: pointer;
  transition: opacity .2s; text-decoration: none; display: inline-block;
}
.btn-ktg:hover { opacity: 0.88; color: var(--kt-dk); text-decoration: none; }
.btn-kto {
  background: transparent; color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; transition: border-color .2s;
  text-decoration: none; display: inline-block;
}
.btn-kto:hover { border-color: rgba(255,255,255,0.5); color: #fff; text-decoration: none; }

.kt-stats {
  position: relative; z-index: 2;
  background: var(--kt-dk2);
  border-top: 2px solid var(--kt-gd);
  display: grid; grid-template-columns: repeat(4,1fr);
  font-family: var(--kt-S);
}
.kt-stat {
  padding: 20px 24px; text-align: center;
  border-right: 1px solid var(--kt-w08);
  transition: background .2s; color: #fff;
}
.kt-stat:last-child { border-right: none; }
.kt-stat:hover { background: rgba(239,159,39,0.04); }
.kt-stat-n {
  font-family: var(--kt-D);
  font-size: 32px; color: var(--kt-gd);
  letter-spacing: 0.04em; line-height: 1; font-weight: 400;
}
.kt-stat-l {
  font-size: 11px; color: var(--kt-w40);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 4px; line-height: 1.4;
}

@media (max-width: 991px) {
  .kt-hero-inner { padding: 100px 24px 40px; }
  .kt-stats { grid-template-columns: repeat(2,1fr); }
  .kt-stat:nth-child(2) { border-right: none; }
  .kt-stat:nth-child(3),
  .kt-stat:nth-child(4) { border-top: 1px solid var(--kt-w08); }
  .kt-hero-contacts { flex-direction: column; }
}
@media (max-width: 575px) {
  .kt-hero-bg { animation: none; transform: none; }
  .kt-stats { grid-template-columns: 1fr 1fr; }
}
