@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Manrope:wght@400;500;600;700;800&display=swap');
/* TASUM-GONAR s.r.o. – pracovný návrh titulnej stránky, verzia 03
   Úprava: výraznejšie, jasnejšie a "slnečnejšie" farby fotografie */

:root {
  --black: #000000;
  --text: #f5f5f5;
  --muted: rgba(255, 255, 255, 0.82);
  --muted-soft: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.18);
 --blue: #008CFF;
--blue-light: #00D9FF;

--font-heading: "Archivo Black", Arial Black, Arial, sans-serif;
--font-body: "Manrope", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  height: 96px;
  padding: 0 44px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  background: #000;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  font-family: var(--font-body);
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.main-nav a {
  position: relative;
  padding: 34px 0 31px;
  white-space: nowrap;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--blue-light);
}

.header-button {
  font-family: var(--font-body);
  min-width: 230px;
  height: 54px;
  border: 1px solid var(--blue-light);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 700;
  background: rgba(0, 103, 189, 0.08);
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/uvodna-fotka.jpg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;

  /* Tu je hlavná úprava farieb */
  filter: brightness(1.12) contrast(1.08) saturate(1.32);
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.985) 0%,
      rgba(0, 0, 0, 0.93) 18%,
      rgba(0, 0, 0, 0.72) 33%,
      rgba(0, 0, 0, 0.32) 52%,
      rgba(0, 0, 0, 0.06) 74%,
      rgba(0, 0, 0, 0.00) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.04) 0%,
      rgba(0, 0, 0, 0.00) 56%,
      rgba(0, 0, 0, 0.30) 100%
    );
  pointer-events: none;
}

/* Jemný "slnečný" jas na pravej hornej časti fotografie */
.hero-sun-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 80% 18%,
      rgba(255, 210, 95, 0.18) 0%,
      rgba(255, 210, 95, 0.10) 14%,
      rgba(255, 210, 95, 0.00) 34%
    ),
    radial-gradient(
      circle at 72% 34%,
      rgba(255, 192, 70, 0.10) 0%,
      rgba(255, 192, 70, 0.00) 24%
    );
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 48vw);
  margin-left: 66px;
  padding-top: 10px;
}

.hero h1 {
  margin: 0 0 34px;
  font-family: var(--font-heading);
  font-size: clamp(50px, 4.15vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 400;
  transform: scaleX(1.06);
  transform-origin: left center;
}

.lead,
.intro {
  margin: 0;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.15vw, 21px);
  line-height: 1.62;
  font-weight: 400;
}

.lead {
  margin-bottom: 32px;
}

.intro {
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  gap: 26px;
  margin-top: 40px;
}

.btn {
  min-width: 250px;
  height: 66px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  border: 1px solid var(--blue);
}

.btn-outline {
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid var(--blue-light);
}

.below-hero {
  min-height: 118px;
  background: #000;
  display: flex;
  align-items: start;
  justify-content: center;
}

.section-marker {
  padding-top: 42px;
  text-align: center;
}

.section-marker span {
  width: 122px;
  height: 2px;
  display: block;
  margin: 0 auto 22px;
  background: var(--blue-light);
}

.section-marker p {
  margin: 0;
  color: var(--muted-soft);
  font-size: 24px;
  letter-spacing: 0.42em;
}

.placeholder-section h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.placeholder-section:nth-of-type(even) {
  background: #000;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 14px;
}

.placeholder-section h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

@media (max-width: 1250px) {
  .site-header {
    padding: 0 34px;
    gap: 26px;
  }

  .brand {
    font-size: 24px;
  }

  .main-nav {
    gap: 28px;
    font-size: 17px;
  }

  .header-button {
    min-width: 190px;
    font-size: 17px;
  }

  .hero-content {
    width: min(700px, 56vw);
    margin-left: 42px;
  }

  .btn {
    min-width: 220px;
  }
}


@media (max-width: 900px) {
  .site-header {
    height: auto;
    min-height: 82px;
    display: flex;
    justify-content: space-between;
    padding: 22px;
  }

  .main-nav,
  .header-button {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-image {
    background-size: cover;
    background-position: center center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.72) 62%, rgba(0, 0, 0, 0.98) 100%);
  }

  .hero-sun-glow {
    background:
      radial-gradient(
        circle at 70% 22%,
        rgba(255, 208, 92, 0.16) 0%,
        rgba(255, 208, 92, 0.00) 30%
      );
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 0 24px 58px;
  }

  .hero h1 {
    font-size: clamp(41px, 10.5vw, 58px);
    line-height: 1.06;
    transform: none;
  }

  .lead,
  .intro {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }
}


/* Nadpisy veľkými písmenami – platí pre celú stránku */
h1,
h2,
h3 {
  text-transform: uppercase;
}

/* Jemné doladenie hlavného nadpisu po zmene na veľké písmená */
.hero h1 {
  font-size: clamp(46px, 3.85vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}
/* Nadpisy v ďalších sekciách – rovnaký font ako hlavný nadpis, ale menšie */
.placeholder-section h2 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: clamp(26px, 2.6vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 400;
  max-width: 900px;
}
/* Malé modré nadpisy sekcií */
.section-kicker {
  color: var(--blue-light);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0 0 20px;
}
/* Veľké nadpisy sekcií */
.placeholder-section h2 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: clamp(26px, 2.6vw, 46px);
  line-height: 1.16;
  letter-spacing: -0.025em;
  font-weight: 400;
  max-width: 980px;
  margin: 0;
}
.placeholder-section {
  padding-left: clamp(32px, 7vw, 96px);
  padding-right: clamp(32px, 7vw, 96px);
  padding-top: 90px;
  padding-bottom: 90px;
}

/* Horná časť vpravo: Instagram piktogram + tlačidlo Kontaktujte nás */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.social-link {
  width: 46px;
  height: 46px;
  border: 1px solid var(--blue-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(0, 217, 255, 0.06);
  box-shadow: 0 0 12px rgba(0, 217, 255, 0.22);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  background: rgba(0, 217, 255, 0.14);
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.38);
  transform: translateY(-1px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
/* Pätička stránky – centrovaná verzia */
.site-footer {
  min-height: 90px;
  padding: 28px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
}

.footer-left {
  font-weight: 600;
}

.footer-right {
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}
/* Kontaktná sekcia */
.contact-section-page {
  padding: 110px clamp(32px, 7vw, 96px);
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-heading {
  max-width: 880px;
  margin-bottom: 56px;
}

.contact-heading h2 {
  margin: 0 0 24px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: clamp(34px, 4.2vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 400;
}

.contact-heading p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(0, 217, 255, 0.24);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 16px rgba(0, 217, 255, 0.08);
}

.contact-label {
  margin: 0 0 34px;
  color: var(--blue-light);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.45vw, 26px);
  line-height: 1.16;
  letter-spacing: -0.025em;
  font-weight: 400;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
}

.contact-card a {
  color: #ffffff;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--blue-light);
}

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .contact-section-page {
    padding: 80px 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: auto;
  }
}


/* FINÁLNA PÄTIČKA – centrovaná verzia */
.site-footer {
  width: 100%;
  min-height: 90px;
  padding: 28px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
}

.site-footer .footer-left {
  font-weight: 600;
}

.site-footer .footer-right {
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-footer a {
  text-decoration: none;
}
/* Dočasné sekcie – Pripravujeme */
.coming-section {
  padding: 110px clamp(32px, 7vw, 96px);
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.coming-section h2 {
  max-width: 900px;
  margin: 0 0 24px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: clamp(30px, 3.4vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.coming-section p:not(.section-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
}
/* Výnimka pre obchodný názov spoločnosti podľa ORSR */
.contact-card h3.company-name {
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.02em;
}
/* Výnimka pre e-mail v kontakte – ponechať malými písmenami */
.contact-card h3.contact-email {
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(18px, 1.35vw, 24px);
}
/* Výnimka pre adresu v kontakte – ponechať veľké aj malé písmená */
.contact-card h3.contact-address {
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(18px, 1.35vw, 24px);
}
/* Vyhľadávanie v hornej lište */
.site-search {
  display: flex;
  align-items: center;
}

.site-search input {
  width: 170px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(0, 217, 255, 0.45);
  border-radius: 999px;
  background: rgba(0, 217, 255, 0.05);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.12);
}

.site-search input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.site-search input:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.35);
}

/* Na menších obrazovkách vyhľadávanie skryjeme, aby sa hlavička nerozbila */
@media (max-width: 1250px) {
  .site-search {
    display: none;
  }
}



/* FINÁLNE ÚPRAVY HLAVIČKY A SEKCIÍ */
.site-header {
  grid-template-columns: auto 1fr auto;
}

.main-nav {
  gap: 42px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.site-search {
  display: flex;
  align-items: center;
}

.site-search input {
  width: 150px;
}

/* Odbornosť je nižšia úroveň v sekcii Služby */
.coming-subblock {
  max-width: 760px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.coming-subblock h3 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 400;
}

.coming-subblock p:not(.section-kicker) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
}

/* Kontakt – istota, že karty ostanú v mriežke */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* Menšie obrazovky */
@media (max-width: 1350px) {
  .main-nav {
    gap: 30px;
    font-size: 18px;
  }

  .site-search input {
    width: 130px;
  }

  .header-button {
    min-width: 200px;
  }
}

@media (max-width: 1250px) {
  .site-search {
    display: none;
  }
}

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-actions {
    display: flex;
  }

  .social-link {
    display: inline-flex;
  }

  .header-button {
    display: none;
  }
}

@media (max-width: 650px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* Link na mapu v kontaktnej karte */
.map-link {
  margin-top: 22px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--blue-light);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  background: rgba(0, 217, 255, 0.06);
  box-shadow: 0 0 12px rgba(0, 217, 255, 0.18);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.map-link:hover {
  color: #ffffff;
  background: rgba(0, 217, 255, 0.14);
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.35);
  transform: translateY(-1px);
}
/* Horné menu zostáva viditeľné pri rolovaní */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Pri kliknutí na menu sa sekcia nezasekne pod hornou lištou */
html {
  scroll-padding-top: 110px;
}


/* =========================================================
   WOW ÚPRAVY PRED PRVÝM SPUSTENÍM
   ========================================================= */

/* Horné menu zostáva viditeľné pri rolovaní */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.32);
}

/* Pri kliknutí na menu sa sekcia nezasekne pod hornou lištou */
html {
  scroll-padding-top: 110px;
}

/* Jemné načítanie titulnej stránky */
.hero-content {
  animation: heroFadeIn 0.9s ease-out both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Jemné načítanie fotografie */
.hero-image {
  animation: heroImageIn 1.4s ease-out both;
}

@keyframes heroImageIn {
  from {
    opacity: 0.84;
    transform: scale(1.035);
  }

  to {
    opacity: 1;
    transform: scale(1.01);
  }
}

/* Výraznejšie tlačidlá na čiernom pozadí */
.btn-primary {
  background: var(--blue);
  border: 1px solid var(--blue-light);
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.28);
}

.btn-outline {
  border: 1px solid var(--blue-light);
  box-shadow: 0 0 12px rgba(0, 217, 255, 0.16);
}

.btn-primary:hover,
.btn-outline:hover,
.header-button:hover,
.social-link:hover,
.map-link:hover {
  box-shadow: 0 0 26px rgba(0, 217, 255, 0.42);
}

/* Malý prémiový detail pre karty kontaktu */
.contact-card {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 217, 255, 0.46);
  background: rgba(255, 255, 255, 0.048);
  box-shadow: 0 0 24px rgba(0, 217, 255, 0.14);
}

/* Dočasné sekcie "Pripravujeme" pôsobia ako zámer, nie ako chyba */
.coming-section {
  position: relative;
  overflow: hidden;
}

.coming-section::before {
  content: "";
  position: absolute;
  left: clamp(32px, 7vw, 96px);
  top: 0;
  width: 120px;
  height: 2px;
  background: var(--blue-light);
  box-shadow: 0 0 16px rgba(0, 217, 255, 0.55);
}

/* Jemnejší pohyb pre ľudí, ktorí nechcú animácie */
@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .hero-image {
    animation: none;
  }

  .btn,
  .contact-card,
  .social-link,
  .map-link {
    transition: none;
  }
}


/* ÚPRAVA: menšie nadpisy v sekciách Pripravujeme */
.coming-section h2 {
  font-size: clamp(24px, 2.35vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 780px;
}

/* Nižšia úroveň v službách nech zostane ešte jemnejšia */
.coming-subblock h3 {
  font-size: clamp(20px, 1.75vw, 30px);
  line-height: 1.16;
}


/* =========================================================
   FINÁLNE ÚPRAVY – KONTAKT + MOBIL
   ========================================================= */

/* Istota, že na mobile nevznikne horizontálne posúvanie */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Kontakt s piatimi kartami – pružná mriežka */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.contact-card h3.company-name,
.contact-card h3.contact-email,
.contact-card h3.contact-address,
.contact-card h3.contact-person {
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(18px, 1.35vw, 24px);
}

/* Mobilná titulná strana */
@media (max-width: 650px) {
  .site-header {
    min-height: 92px;
    padding: 22px 24px;
  }

  .brand {
    max-width: calc(100vw - 116px);
    font-size: 27px;
    line-height: 1.1;
    white-space: normal;
  }

  .header-actions {
    flex: 0 0 auto;
  }

  .social-link {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
  }

  .social-link svg {
    width: 24px;
    height: 24px;
  }

  .hero {
    min-height: calc(100vh - 92px);
    align-items: flex-end;
  }

  .hero-image {
    background-size: cover;
    background-position: 58% center;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 24px 48px;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 26px;
    font-size: clamp(34px, 10.2vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.028em;
    transform: none;
    overflow-wrap: normal;
  }

  .lead,
  .intro {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.55;
  }

  .lead br,
  .intro br {
    display: none;
  }

  .hero-actions {
    width: 100%;
    gap: 16px;
    margin-top: 34px;
  }

  .btn {
    width: 100%;
    height: 58px;
    min-width: 0;
    font-size: 18px;
  }

  .coming-section h2 {
    font-size: clamp(23px, 7.2vw, 32px);
  }

  .contact-heading h2 {
    font-size: clamp(30px, 9vw, 42px);
  }
}

@media (max-width: 390px) {
  .brand {
    font-size: 24px;
  }

  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero h1 {
    font-size: clamp(31px, 9.8vw, 38px);
  }

  .lead,
  .intro {
    font-size: 16px;
  }
}


/* =========================================================
   EXTRA MOBILNÁ OPRAVA + CACHE VERZIA 20260714-2
   ========================================================= */

@media (max-width: 650px) {
  .site-header {
    min-height: 82px;
    padding: 18px 20px;
  }

  .brand {
    max-width: calc(100vw - 92px);
    font-size: clamp(21px, 6.2vw, 25px);
    line-height: 1.08;
    white-space: normal;
  }

  .social-link {
    width: 48px;
    height: 48px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
    align-items: flex-end;
  }

  .hero-image {
    background-size: cover;
    background-position: 58% center;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 44px 22px 44px;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: clamp(28px, 8.7vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    transform: none;
    word-break: normal;
    overflow-wrap: normal;
  }

  .lead,
  .intro {
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.55;
  }

  .lead br,
  .intro br {
    display: none;
  }

  .hero-actions {
    width: 100%;
    gap: 14px;
    margin-top: 30px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    height: 56px;
    font-size: 17px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: clamp(27px, 8.3vw, 34px);
  }

  .lead,
  .intro {
    font-size: 15px;
  }
}


/* =========================================================
   MOBILNÉ MENU – PREKLIK MEDZI SEKCIIAMI
   ========================================================= */

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    align-items: center;
    gap: 14px 18px;
    padding: 18px 20px 12px;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(12px);
  }

  .brand {
    grid-area: brand;
    max-width: none;
    font-size: clamp(21px, 5.8vw, 27px);
    line-height: 1.1;
    white-space: normal;
  }

  .header-actions {
    grid-area: actions;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .site-search,
  .header-button {
    display: none;
  }

  .social-link {
    width: 48px;
    height: 48px;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }

  .main-nav {
    grid-area: nav;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    padding: 2px 0 4px;
    font-size: 15px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.88);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    padding: 10px 0 12px;
    white-space: nowrap;
  }

  .main-nav a.active::after,
  .main-nav a:hover::after {
    bottom: 0;
  }

  html {
    scroll-padding-top: 138px;
  }
}

@media (max-width: 390px) {
  .main-nav {
    gap: 18px;
    font-size: 14px;
  }

  html {
    scroll-padding-top: 132px;
  }
}


/* =========================================================
   PEVNÉ MENU – VIDITEĽNÉ POČAS CELEJ STRÁNKY
   ========================================================= */

/* Desktop/tablet: horné menu je stále prilepené hore */
.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
}

/* Keďže hlavička je fixed, stránka musí začínať až pod ňou */
body {
  padding-top: 96px;
}

/* Pri kliknutí na Domov/Služby/Produkty/Referencie/Kontakt
   sa začiatok sekcie neskryje pod horným menu */
html {
  scroll-padding-top: 118px;
}

/* Mobil: hlavička má dva riadky – názov + menu */
@media (max-width: 900px) {
  body {
    padding-top: 138px;
  }

  html {
    scroll-padding-top: 154px;
  }

  .site-header {
    position: fixed !important;
  }
}

@media (max-width: 390px) {
  body {
    padding-top: 132px;
  }

  html {
    scroll-padding-top: 148px;
  }
}


/* =========================================================
   ZJEDNOTENIE NADPISOV SEKCIÍ
   ========================================================= */

/* Všetky hlavné nadpisy nižších sekcií majú rovnakú veľkosť */
.coming-section h2,
.contact-heading h2 {
  max-width: 900px;
  margin: 0 0 24px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: clamp(24px, 2.35vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 400;
}

/* Malé názvy sekcií jednotne modré – aj Kontakt */
.section-kicker,
.contact-heading .section-kicker,
.coming-section .section-kicker {
  color: var(--blue-light) !important;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0 0 20px;
}

/* Text v úvode kontaktu ostáva jemný, ale už neprepisuje modrý kicker */
.contact-heading p:not(.section-kicker) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
}

/* Na mobile nech sú sekčné nadpisy stále čitateľné, ale nie obrovské */
@media (max-width: 650px) {
  .coming-section h2,
  .contact-heading h2 {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.16;
  }

  .section-kicker,
  .contact-heading .section-kicker,
  .coming-section .section-kicker {
    font-size: 12px;
    letter-spacing: 0.22em;
  }
}


/* =========================================================
   DOLADENIE KONTAKTOV + AKTÍVNE MENU
   ========================================================= */

/* Aktívna položka menu sa bude prepínať JavaScriptom pri rolovaní */
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--blue-light);
  box-shadow: 0 0 12px rgba(0, 217, 255, 0.55);
}

/* Kontaktné karty – malé názvy výraznejšie a jednotné */
.contact-label {
  color: var(--blue-light);
  letter-spacing: 0.24em;
}

/* Hlavné hodnoty v kartách jednotne – spoločnosť, osoba, e-mail, telefón, adresa */
.contact-card h3.company-name,
.contact-card h3.contact-person,
.contact-card h3.contact-email,
.contact-card h3.contact-phone,
.contact-card h3.contact-address {
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(18px, 1.18vw, 22px);
  line-height: 1.18;
}

/* Telefónne číslo sa nesmie zlomiť na dva riadky */
.contact-card h3.contact-phone,
.contact-card h3.contact-phone a {
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

/* E-mail a adresa môžu byť o trošku menšie, aby nepôsobili rozbito v úzkych kartách */
.contact-card h3.contact-email,
.contact-card h3.contact-address {
  font-size: clamp(17px, 1.08vw, 21px);
}

/* Texty v kontaktných kartách jemne čitateľnejšie */
.contact-card p:not(.contact-label) {
  color: rgba(255, 255, 255, 0.76);
}

/* Telefón kontaktnej osoby v texte nech zostane čitateľný */
.contact-card p a[href^="tel:"] {
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.contact-card p a[href^="tel:"]:hover {
  color: var(--blue-light);
}

/* Pri 5 kartách na väčších monitoroch zjemníme vnútorný rozostup,
   aby sa telefónne číslo nelámalo */
@media (min-width: 1101px) {
  .contact-card {
    padding: 26px 24px;
  }
}

/* Na užších obrazovkách nech sa karty radšej preložia na 2 stĺpce */
@media (max-width: 1250px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Na mobile ostáva jedna karta pod druhou */
@media (max-width: 650px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card h3.company-name,
  .contact-card h3.contact-person,
  .contact-card h3.contact-email,
  .contact-card h3.contact-phone,
  .contact-card h3.contact-address {
    font-size: 20px;
  }
}


/* =========================================================
   OPRAVA PRECHODU REFERENCIE → KONTAKT
   ========================================================= */

/* Kontakt dostane rovnakú modrú deliacu čiaru ako ostatné sekcie */
.contact-section-page {
  position: relative;
  overflow: hidden;
}

.contact-section-page::before {
  content: "";
  position: absolute;
  left: clamp(32px, 7vw, 96px);
  top: 0;
  width: 120px;
  height: 2px;
  background: var(--blue-light);
  box-shadow: 0 0 16px rgba(0, 217, 255, 0.55);
}

/* Istota, že aktívne menu funguje rovnako na PC aj mobile */
.main-nav a {
  position: relative;
}

.main-nav a.active::after {
  opacity: 1;
}
