/* Shared WebStrategy header and footer used by every subpage. */

#mainHeader,
#mainHeader *,
.site-footer,
.site-footer * {
  box-sizing: border-box;
}

#mainHeader {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding-top: 26px;
  overflow: visible;
  color: #fff;
  background: transparent;
  font-family: "Geom", sans-serif;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#mainHeader.hide {
  opacity: 0;
  transform: translateY(-100%);
}

#mainHeader.hide:focus-within {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#mainHeader > nav {
  display: flex;
  width: 80%;
  align-items: center;
  justify-content: space-between;
}

#mainHeader .brand {
  display: inline-flex;
  position: relative;
  z-index: 2;
  align-items: center;
  color: #fff;
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

#mainHeader .brand span,
.site-footer__wordmark span {
  color: #48bcf2;
}

#mainHeader .brand:hover {
  color: #48bcf2;
  transform: translateY(-1px);
}

#mainHeader .menu {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4.2vw, 8.5rem);
}

#mainHeader .menu > a {
  position: relative;
  padding: 10px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  opacity: 0.85;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 0.3s ease, transform 0.2s ease;
}

#mainHeader .menu > a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

#mainHeader .menu > a:not(.cta)::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

#mainHeader .menu > a:not(.cta):hover::after {
  width: 70%;
}

#mainHeader .menu .cta {
  position: relative;
  isolation: isolate;
  display: inline-block;
  padding: 0.6rem 1.2rem;
  overflow: hidden;
  border-radius: 50px;
  color: #fff;
  background: linear-gradient(135deg, #0284c7, #48bcf2);
  font-weight: 500;
  letter-spacing: 0.3px;
  opacity: 1;
  animation: wsStarPulse 4s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

#mainHeader .menu .cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  animation: wsShine 3.5s infinite;
  pointer-events: none;
}

#mainHeader .menu .cta:hover {
  background: linear-gradient(135deg, #48bcf2, #0284c7);
  box-shadow: 0 0 20px rgba(100,200,255,0.5), 0 0 40px rgba(60,160,255,0.3);
  transform: translateY(-2px) scale(1.05);
}

#mainHeader .brand:focus-visible,
#mainHeader .menu a:not(.cta):focus-visible,
#mainHeader .menu .cta:focus-visible,
#mainHeader .hamburger:focus-visible {
  outline: 2px solid #48bcf2;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  color: #00101a;
  background: #8edcff;
  font: 700 14px/1.2 "Geom", sans-serif;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-150%);
  pointer-events: none;
  transition: transform 160ms ease, opacity 160ms ease;
}

.skip-link:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#mainHeader .hamburger {
  display: none;
}

@keyframes wsStarPulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(120,200,255,0.4)); }
  50% { filter: drop-shadow(0 0 16px rgba(120,200,255,0.7)); }
}

@keyframes wsShine {
  0% { left: -120%; }
  25%, 100% { left: 120%; }
}

@media (max-width: 1800px) {
  #mainHeader .menu { gap: clamp(2rem, 3.6vw, 6.5rem); }
}

@media (max-width: 1500px) {
  #mainHeader .menu { gap: clamp(1.5rem, 2.7vw, 4.5rem); }
}

@media (max-width: 1100px) {
  #mainHeader { padding-top: 12px; }
  #mainHeader > nav { width: 92%; }
  #mainHeader .brand { font-size: clamp(20px, 6vw, 24px); }

  #mainHeader .hamburger {
    display: inline-flex;
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    outline: 0;
    color: #fff;
    background: rgba(5,15,30,0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  }

  #mainHeader .hamburger:hover {
    background: rgba(12,35,70,0.95);
    transform: translateY(-1px) scale(1.02);
  }

  #mainHeader .hamburger span {
    display: block;
    width: 55%;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.2s ease, width 0.3s ease;
  }

  #mainHeader .menu {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.72rem;
    padding: 120px 0 max(30px, env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    background: radial-gradient(circle at top, rgba(20,120,200,0.35), rgba(1,4,15,0.96));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    overscroll-behavior: contain;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  }

  #mainHeader .menu > a {
    width: 90%;
    max-width: 90%;
    flex: 0 0 auto;
    padding: 1rem 0;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    text-align: center;
  }

  #mainHeader .menu > a:hover { background: rgba(255,255,255,0.08); }
  #mainHeader .menu > a:not(.cta)::after { display: none; }

  #mainHeader .menu .cta {
    width: 90%;
    max-width: 90%;
    margin-top: 1.2rem;
    padding: 1rem 0;
    border-radius: 30px;
    text-align: center;
  }

  #mainHeader.menu-open { background-color: rgba(20,120,200,0.35); }
  #mainHeader.menu-open .menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  #mainHeader.menu-open .hamburger span:nth-child(1) { width: 65%; transform: translateY(7px) rotate(45deg); }
  #mainHeader.menu-open .hamburger span:nth-child(2) { opacity: 0; }
  #mainHeader.menu-open .hamburger span:nth-child(3) { width: 65%; transform: translateY(-7px) rotate(-45deg); }
}

.site-footer {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-top: 1px solid rgba(72,188,242,0.16);
  border-radius: 0;
  color: #fff;
  background: #000;
  font-family: "Geom", sans-serif;
  transform: none;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(96px, 22vw);
  height: 1px;
  background: #48bcf2;
  box-shadow: 0 0 14px rgba(72,188,242,0.46);
  transform: translateX(-50%);
}

.site-footer__inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 24px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(170px, 0.65fr) minmax(240px, 0.9fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
}

.site-footer__wordmark {
  display: inline-block;
  color: #fff;
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.site-footer__brand p {
  max-width: 390px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer__column h2 {
  margin: 2px 0 17px;
  color: rgba(255,255,255,0.64);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer__column address,
.site-footer__nav {
  display: grid;
  gap: 8px;
  margin: 0;
  font-style: normal;
}

.site-footer__column address a,
.site-footer__nav a {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  color: rgba(255,255,255,0.84);
  font-size: 14px;
  line-height: 1.55;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer__column address span {
  margin-top: 3px;
  color: rgba(255,255,255,0.56);
  font-size: 13px;
  line-height: 1.65;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 22px;
}

.site-footer__legal a {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer__wordmark:hover,
.site-footer__column address a:hover,
.site-footer__nav a:hover,
.site-footer__legal a:hover { color: #48bcf2; }

.site-footer__wordmark:focus-visible,
.site-footer__column address a:focus-visible,
.site-footer__nav a:focus-visible,
.site-footer__legal a:focus-visible {
  outline: 2px solid #48bcf2;
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 56px;
    row-gap: 42px;
  }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .site-footer__inner { width: min(calc(100% - 32px), 520px); padding-top: 50px; }
  .site-footer__grid { column-gap: 24px; row-gap: 34px; }
  .site-footer__brand p { max-width: 360px; font-size: 13px; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 13px; margin-top: 38px; }
  .site-footer__legal { justify-content: flex-start; gap: 7px 18px; }
  .site-footer__column address a,
  .site-footer__nav a,
  .site-footer__legal a { min-height: 40px; }
}

@media (max-width: 340px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  #mainHeader,
  #mainHeader *,
  .site-footer * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
























.form-status {
    margin-top: 15px;
    font-size: 14px;
}

.form-status.success {
    color: #35c96f;
}

.form-status.error {
    color: #ff5b5b;
}

.odeslat-button:disabled {
    opacity: .6;
    cursor: not-allowed;
}
