/* ── UTILITY ── */
.s-label { display: none; }

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 60px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-atm {
  position: absolute;
  inset: 0;
}
.beam-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.beam {
  position: absolute;
  top: -10%;
  left: 50%;
  transform-origin: top center;
  margin-left: -1px;
  width: 2px;
  height: 120%;
}
.beam-wide {
  position: absolute;
  top: 0;
  left: 50%;
  transform-origin: top center;
  width: 0;
  height: 0;
}
.floor-reflect {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 240px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 32px;
}
.hero-logo-img {
  height: 200px;
  width: auto;
  margin: 0 auto 24px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* ── ATMOSPHERIC DIVIDER ── */
.atm-div {
  height: 120px;
  pointer-events: none;
}

/* ── SECTIONS ── */
.sec {
  padding: 100px 60px;
  position: relative;
}
.sec-inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* ── PRODUCT / JAK ── */
.prod-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.prod-visual {
  position: relative;
  aspect-ratio: 1;
}
.pv-inner {
  position: absolute;
  inset: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.pv-panel {
  width: 70%;
  height: 60%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv-fill {
  position: absolute;
  inset: 0;
}
.pv-corners .c {
  position: absolute;
  width: 12px;
  height: 12px;
}
.pv-corners .tl { top: 0;    left: 0;  }
.pv-corners .tr { top: 0;    right: 0; }
.pv-corners .bl { bottom: 0; left: 0;  }
.pv-corners .br { bottom: 0; right: 0; }
.prod-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
}
.ps-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
}

/* ── CO JE SPECS GRID ── */
.cj-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 24px;
}
.cj-bullets {
  margin: 0 0 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── ICON CARDS ── */
.icon-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.ic {
  padding: 36px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ── BENEFITS GRID ── */
.ben-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 8px;
}
.bi {
  padding: 36px;
}

/* ── FORM ── */
form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: 1px;
}
.bf {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.bf-single {
  margin-bottom: 1px;
}
.bf-single .bf {
  width: 100%;
}
.bf input, .bf textarea, .bf select {
  width: 100%;
}
.bf textarea {
  resize: vertical;
  min-height: 90px;
}
.book-frame {
  max-width: 680px;
  margin: 0 auto;
}
.book-footer {
  padding: 24px 40px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── LANG SWITCHER ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── TESTIMONIALS ── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.tm-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px 32px 32px;
  position: relative;
}

/* ── FOOTER ── */
footer {
  padding: 56px 60px 40px;
  position: relative;
}
.f-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.f-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.f-brand {
  max-width: 300px;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  margin-bottom: 12px;
}
.f-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.f-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
}
