
:root {
/* barvy */
--bg: #ffffff;
--bg2: #000000;
--tx: #000000;
--tx2: #ffffff;
--bra: #48bcf2; /* akcent – světle modrá */
--bra2: #0284c7;
--bra3: #a5d6fe;
--border: #e3e8ef;
--success: #16a34a;
--warning: #f59e0b;
--danger: #dc2626;

/* typografie */

--fs-xxl: clamp(2rem, 4vw, 3rem);
--fs-xl: clamp(1.5rem, 3vw, 2.25rem);
--fs-lg: clamp(1.125rem, 2vw, 1.375rem);
--fs-md: 1rem;
--fs-sm: 0.875rem;


/* rozměry */
--radius-lg: 16px;
--radius-md: 12px;
--radius-sm: 8px;
--container: 1800px;
--shadow: 0 10px 30px rgba(0,0,0,.06);

}


/* ========== Základ rozvržení ========== */
body {
color: var(--tx);
font-family: "Anta", sans-serif;
margin: 0; 
line-height: 1.5;
-webkit-font-smoothing: antialiased;
  background: radial-gradient(1200px 800px at 50% 30%, #0e1726 0%, #0a1220 60%, #070d1a 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;     /* roztáhne a zafixuje gradient ke viewportu */
  background-size: cover;           /* přizpůsobí celému oknu */
  background-color: #070d1a;        /* pojistka pro velmi dlouhé stránky */
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;

}

/* Firefox */
html, body { scrollbar-width: none; }
/* IE/Edge starší */
html, body { -ms-overflow-style: none; }
/* Chrome/Safari/Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar { display: none; }






/* ========== header ========== */
/* ========== header ========== */
/* ========== header ========== */
/* ========== header ========== */
/* ========== header ========== */
/* ========== header ========== */
header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  overflow: hidden;
  background: transparent;
  transition: transform 0.3s ease, opacity 0.3s ease;
  padding-top: 26px;

}

header.hide {
  transform: translateY(-100%);
  opacity: 0;
}

/* Vnitřní rozložení */
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
}

/* Logo */
header .brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

header .brand img {
  width: 15vw;
  display: block;
}

header .brand:hover {
  transform: scale(1.01);
}

/* Menu (desktop) */
header .menu {
  display: flex;
  gap: 8.5rem;
}
@media (max-width: 1800px) {
  header .menu {
    display: flex;
    gap: 6.5rem;
  }
}

@media (max-width: 1500px) {
  header .menu {
    display: flex;
    gap: 4.5rem;
  }
}



header .menu a {
  position: relative;
  color: var(--tx2);
  text-decoration: none;
  font-size: var(--fs-md);
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.2s ease;
  backdrop-filter: blur(8px);
  padding: 10px;
  border-radius: var(--fs-lg);
}

header .menu a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* CTA tlačítko */
header .menu .cta {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--bra2), var(--bra));
  color: var(--tx2);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
  overflow: hidden;
}

header .menu .cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 3s infinite;
  pointer-events: none;
}

header .menu .cta:hover {
  background: linear-gradient(135deg, var(--bra), var(--bra2));
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 15px rgba(72, 188, 242, 0.4);
}

/* Animace podtržení */
header .menu a:not(.cta)::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--tx2);
  transition: width 0.4s ease, left 0.4s ease;
  border-radius: 2px;
  transform: translateX(-50%);
}

header .menu a:not(.cta):hover::after {
  width: 70%;
}


/* ========== HAMBURGER BUTTON (desktop hidden) ========== */
.hamburger {
  display: none;
}


/* =========================================================
     MOBILNÍ VERZE (max-width: 768px)
   ========================================================= */
@media (max-width: 1300px) {

  header {
    padding-top: 12px;
  }

  /* Když je hamburger otevřený → sjednotíme pozadí headeru */



  header nav {
    width: 92%;
  }

  /* Logo menší */
  header .brand img {
    width: 32vw;
    max-width: 170px;
  }

  /* Zobraz hamburger */
  .hamburger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(5, 15, 30, 0.75);
    backdrop-filter: blur(10px);
    cursor: pointer;
    padding: 0;
    outline: none;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  }

  .hamburger:hover {
    background: rgba(12, 35, 70, 0.95);
    transform: translateY(-1px) scale(1.02);
  }

  .hamburger span {
    display: block;
    height: 2px;
    width: 55%;
    margin: 0 auto;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.3s ease, opacity 0.2s ease, width 0.3s ease;
  }

  /* Desktop menu se schová */
  header .menu {
    position: fixed;
    inset: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 120px; /* prostor pro logo + hamburger */
    gap: 1.4rem;
    background: radial-gradient(circle at top, rgba(20, 120, 200, 0.35), rgba(1, 4, 15, 0.96));
    backdrop-filter: blur(15px);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    z-index: 1; /* ↓↓↓ menší než logo + hamburger */
  }

  /* ===== FULL-WIDTH odkazy ===== */
  header .menu a {
    width: 100%;
    max-width: 90%;
    text-align: center;
    padding: 1rem 0;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    transition: all 0.3s ease;
  }

  header .menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
  }

  /* CTA plná šířka */
  header .menu .cta {
    max-width: 90%;
    width: 100%;
    padding: 1rem 0;
    text-align: center;
    border-radius: 30px;
    margin-top: 1.2rem;
  }

  /* Bez podtržení */
  header .menu a:not(.cta)::after {
    display: none;
  }

  /* ===== Otevřený hamburger -> X ===== */
  header.menu-open .menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    
  }

  header.menu-open {
    background-color: rgba(20, 120, 200, 0.35);
}

  header.menu-open .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 65%;
  }

  header.menu-open .hamburger span:nth-child(2) {
    opacity: 0;
  }

  header.menu-open .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 65%;
  }
  header .brand,
header .hamburger {
  position: relative;
  z-index: 2; /* nad menu */
}

}







/* ========== HERO ========== */
/* ========== HERO ========== */
/* ========== HERO ========== */
/* ========== HERO ========== */
/* ========== HERO ========== */
/* ===== PŮVODNÍ NASTAVENÍ – DESKTOP (BEZ ZMĚN) ===== */

#hero {
  position: relative;
  width: 100vw;        /* použij 100vw místo 100% */
  height: 100vh;       /* celá výška okna */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

#hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;         /* taky 100vw, ne 100% */
  height: 100vh;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.5;
}

#hero .content {
  position: relative;
  z-index: 1;
  color: var(--tx2);
  text-align: center;
}

#hero h1 {
  font-size: 170px;
  font-weight: 100;
}

#hero h1 b {
  
  font-weight: 900;
}

#hero h2 {
  margin-top: -150px;
  font-weight: 100;
  letter-spacing: 1px;
  font-size: 17px;
}

.btn-light {
  margin-top: 100px;
  display: inline-block;
  padding: 0.6rem 1.4rem;
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

/* Hover efekt – jemné prosvícení */
.btn-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Fokus pro přístupnost */
.btn-light:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(72, 188, 242, 0.5);
}

/* ✨ Efekt odlesku */
.btn-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 3s infinite;
  pointer-events: none;
}

/* ✨ Klíčová animace – odlesk projede zleva doprava */
@keyframes shine {
  0% {
    left: -75%;
  }
  10% {
    left: 125%; /* projede přes tlačítko */
  }
  100% {
    left: 125%; /* pak pauza, dokud se znovu nespustí */
  }
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 1px;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 80%,
    rgba(255, 255, 255, 0) 100%);
}

#hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 80%;
  width: 1px;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 80%,
    rgba(255, 255, 255, 0) 100%);
}

#hero .center-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 80%,
    rgba(255, 255, 255, 0) 100%);
}

.hero-fade {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(7, 13, 26, 0) 0%, #070d1a 100%);
}

/* ===== RESPONSIVNÍ ÚPRAVY – MOBIL / TABLET ===== */

/* Lehké zmenšení pro větší notebooky a tablety */
@media (max-width: 1200px) {
  #hero h1 {
    font-size: 130px;
  }

  #hero h2 {
    margin-top: -110px;
  }

  .btn-light {
    margin-top: 70px;
  }
}

/* Tablety a menší laptopy */
@media (max-width: 992px) {
  #hero {
    padding: 0 20px;
  }

  #hero h1 {
    font-size: 96px;
  }

  #hero h2 {
    margin-top: -70px;
    font-size: 15px;
  }

  .btn-light {
    margin-top: 50px;
  }
}

/* Mobily na výšku */
@media (max-width: 768px) {
  #hero {
    width: 100%;
    height: auto;         /* ať to není napevno */
    min-height: 100vh;    /* pořád přes celou výšku */
    padding: 0 16px;
    box-sizing: border-box;
  }

  #hero h1 {
    font-size: 56px;
  }

  #hero h2 {
    margin-top: 10px;     /* pryč s velkým negativním marginem */
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  .btn-light {
    margin-top: 30px;
    padding: 0.6rem 1.8rem;
  }
}

/* Menší mobily < 480px */
@media (max-width: 480px) {
  #hero {
    padding: 0 12px;
  }

  #hero h1 {
    font-size: 40px;
  }

  #hero h2 {
    font-size: 13px;
    margin-top: 8px;
  }

  .btn-light {
    margin-top: 24px;
    width: 100%;
    text-align: center;
  }

  /* Skryjeme svislé linie, ať nepřekáží */
  #hero::before,
  #hero::after,
  #hero .center-line {
    display: none;
  }
}

/* Nízké displeje (např. notebook s malou výškou nebo mobil na šířku) */
@media (max-height: 600px) {
  #hero {
    height: auto;
    min-height: 100vh;
  }

  #hero h1 {
    font-size: 80px;
  }

  #hero h2 {
    margin-top: -50px;
  }

  .btn-light {
    margin-top: 30px;
  }
}














/* ========== ABOUTUS ========== */
/* ========== ABOUTUS ========== */
/* ========== ABOUTUS ========== */
/* ========== ABOUTUS ========== */
/* ========== ABOUTUS ========== */

#solar{
  position: relative;
  width: 100%;
  height: 120vh;
  display: grid;
  place-items: center;
  color: var(--tx2, #fff);
  overflow: hidden;
}

.scroll-text h2 {
  position: absolute;
  margin-top: -140px;
  font-size: 200px;
  text-align: center;
  opacity: 0.02;
  white-space: nowrap;
  animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.solar-small-text-div{
  position: absolute;
  left: 5%;
  top: 20%;
}

.solar-big-text-div{
  position: absolute;
  right: 5%;
  top: 20%;
}

.solar-big-text{
  font-size: 1.3vh;
  letter-spacing: 0.1vh;
  line-height: 5px;
  text-align: right;
}

.ABOUT-US-TEXT{
  width: 600px;
  height: auto;
  position: absolute;
  left: 5%;
  bottom: 5%;
}

.ABOUT-US-TEXT h3{
  font-size: 50px;
}

.ABOUT-US-TEXT p{
  font-size: 20px;
  padding-bottom: 20px;
}
.ABOUT-US-TEXT .sec-btn-web{
  margin-left: 20px;
}


.ABOUT-US-TEXT-2{
  width: 450px;
  height: auto;
  position: absolute;
  right: 5%;
  bottom: 5%;
  font-size: 15px;
}

/* === STARFIELD LAYERS === */
.stars{
  position: absolute;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
}
.system{ z-index: 1; }
.stars--back  { --parallax: 6; }
.stars--mid   { --parallax: 12; }
.stars--front { --parallax: 20; }

.star{
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  opacity: .65;
  box-shadow: 0 0 6px rgba(255,255,255,.35);
  animation: twinkle var(--twinkle, 4s) ease-in-out infinite;
}

@keyframes twinkle{
  0%, 100% { opacity: .35; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.2); }
}

.stars{
  animation: drift var(--drift, 120s) linear infinite;
}

@keyframes drift{
  0%   { transform: translate3d(0,0,0); }
  100% { transform: translate3d(0,-40px,0); }
}

@media (prefers-reduced-motion: reduce){
  .stars{ animation: none !important; }
  .star { animation: none !important; }
}

.meteors{
  position: absolute;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  overflow: hidden;
}

.meteor{
  position: absolute;
  width: var(--len, 140px);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.9) 45%,
    rgba(255,255,255,0.0) 100%);
  filter: blur(.3px);
  opacity: 0;
  transform: translate(var(--sx, 0px), var(--sy, 0px)) rotate(var(--angle, -35deg)) translateX(0);
  animation: shoot var(--dur, 1.4s) ease-in forwards;
}

@keyframes shoot{
  0%   { opacity: 0; transform: translate(var(--sx), var(--sy)) rotate(var(--angle)) translateX(0); }
  10%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--sx), var(--sy)) rotate(var(--angle)) translateX(var(--dist, 420px)); }
}

@media (prefers-reduced-motion: reduce){
  .meteor{ animation: none !important; display: none !important; }
}

/* Plátno soustavy */
.system{
  position: relative;
  width: min(90vmin, 900px);
  height: min(90vmin, 900px);
  isolation: isolate;
}

/* Slunce */
.sun{
  position: absolute;
  inset: 50% auto auto 50%;
  width: 34px; height: 34px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #ffd86b 0%, #ffac2f 60%, #ea8c00 100%);
  box-shadow:
    0 0 20px 8px rgba(255,191,0,.25),
    0 0 60px 20px rgba(255,191,0,.12);
  z-index: 2;
}

/* Oběžné dráhy + planety – nechávám přesně, jak máš */
.orbit{
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: visible;
}

.orbit::before{
  content:"";
  position:absolute;
  inset:0;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,.7) 55%, rgba(0,0,0,0) 100%);
          mask-image: radial-gradient(circle, rgba(0,0,0,.7) 55%, rgba(0,0,0,0) 100%);
  pointer-events:none;
}

.orbit--mercury{  width: 90px;  height: 90px;  --r: 45px;  animation: spin 5.9s linear infinite; }
.orbit--venus  {  width:140px; height:140px;  --r: 70px;  animation: spin 9.4s linear infinite; }
.orbit--earth  {  width:200px; height:200px;  --r:100px;  animation: spin 12s linear infinite; }
.orbit--mars   {  width:260px; height:260px;  --r:130px;  animation: spin 16.5s linear infinite; }
.orbit--jupiter{  width:360px; height:360px;  --r:180px;  animation: spin 41.3s linear infinite; }
.orbit--saturn {  width:460px; height:460px;  --r:230px;  animation: spin 65.1s linear infinite; }
.orbit--uranus {  width:560px; height:560px;  --r:280px;  animation: spin 110s linear infinite; }
.orbit--neptune{  width:650px; height:650px;  --r:325px;  animation: spin 154s linear infinite; }

.planet{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(var(--r));
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,255,255,.15);
}

.mercury{ width: 6px;  height: 6px;  background:#cfcfcf; }
.venus  { width: 8px;  height: 8px;  background:#d9b38c; }
.earth  { width: 9px;  height: 9px;  background:#7fb3ff; box-shadow: 0 0 12px rgba(127,179,255,.35); }
.mars   { width: 7px;  height: 7px;  background:#d17a5c; }
.jupiter{ width: 16px; height: 16px; background:#e3c9a4; }
.saturn { width: 14px; height: 14px; background:#e5d3a8; position: relative; }
.uranus { width: 10px; height: 10px; background:#a6e7f2; }
.neptune{ width: 10px; height: 10px; background:#6fa8ff; }

.saturn .ring{
  position: absolute;
  inset: 50% auto auto 50%;
  width: 40px; height: 1px;
  transform: translate(-50%, -50%) rotate(20deg);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  filter: blur(.2px);
  pointer-events: none;
}

@keyframes spin{
  from { transform: translate(-50%, -50%) rotate(var(--initial-rot, 0deg)); }
  to   { transform: translate(-50%, -50%) rotate(calc(var(--initial-rot, 0deg) + 360deg)); }
}

.planet[title]{
  position: relative;
}

.planet[title]::after{
  content: attr(title);
  position: absolute;
  left: 50%; bottom: 150%;
  transform: translateX(-50%);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 10px;
  color: #fff;
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  white-space: nowrap;
}

.planet:hover::after{ opacity: 1; }

@media (prefers-reduced-motion: reduce){
  .orbit{ animation: none !important; }
}

.earth { position: relative; }

.moon-orbit{
  position: absolute;
  top: 50%; left: 50%;
  width: 26px; height: 26px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  animation: moon-spin var(--T-moon, 2.2s) linear infinite;
  pointer-events: none;
}

.moon{
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  background: #dfe7ff;
  border-radius: 50%;
  transform: translate(-50%, -50%) translateX(var(--mr, 13px));
  box-shadow: 0 0 6px rgba(255,255,255,.25);
}

@keyframes moon-spin{
  from{ transform: translate(-50%, -50%) rotate(var(--initial-rot-moon, 0deg)); }
  to  { transform: translate(-50%, -50%) rotate(calc(var(--initial-rot-moon, 0deg) + 360deg)); }
}


@media (max-width: 1700px) {

#solar{
  height: 1400px;
}

.scroll-text h2 {
  margin-top: -350px;
  font-size: 100px;
}
.system{
  position: relative;
  width: min(90vmin, 900px);
  height: min(90vmin, 900px);
  isolation: isolate;
  margin-top: -1100px;
}
.solar-small-text-div{
  left: 5%;
  top: 10%;
  font-size: 10px;
  color: #8e8e8e;
}

.solar-big-text-div{
  right: 5%;
  top: 10%;
  color: #8e8e8e;
}
.ABOUT-US-TEXT{
  width: 600px;
  height: auto;
  position: absolute;
  left: 5%;
  bottom: 12%;
}

.ABOUT-US-TEXT-2{
  width: 450px;
  height: auto;
  position: absolute;
  right: 5%;
  bottom: 12%;
  font-size: 15px;
}




@media (max-width: 1200px) {

  .ABOUT-US-TEXT-2{
    display: none;
  }

}


}

@media (max-width: 768px) {

#solar{
  height: 1000px;
}

.scroll-text h2 {
  margin-top: -278px;
  font-size: 100px;
}

.solar-small-text-div{
  left: 5%;
  top: 10%;
  font-size: 10px;
  color: #8e8e8e;
}

.solar-big-text-div{
  right: 5%;
  top: 10%;
  color: #8e8e8e;
}

.solar-big-text{
  font-size: 10px;
}

.ABOUT-US-TEXT{
  width: 94%;
  height: auto;
  position: absolute;
  left: 3%;
  padding: 0px 0px;
  top: 45%;
  z-index: 5;

}

.ABOUT-US-TEXT-2{
  display: none;
}

.system{
  position: relative;
  width: min(90vmin, 900px);
  height: min(90vmin, 900px);
  isolation: isolate;
  margin-top: -800px;
}


.orbit--uranus { display: none;}
.orbit--neptune{  display: none;}


}


@media (max-width: 630px) {
  #solar{
    height: 1300px;
  }
  .scroll-text h2 {
    margin-top: -335px;
    font-size: 100px;
  }

  .system{
    position: relative;
    width: min(90vmin, 900px);
    height: min(90vmin, 900px);
    isolation: isolate;
    margin-top: -1100px;
  }
}


@media (max-width: 514px) {


.ABOUT-US-TEXT .sec-btn-web{
  display: none;
}


.ABOUT-US-TEXT{
  width: 94%;
  height: auto;
  position: absolute;
  left: 3%;
  padding: 0px 0px;
  top: 42%;
  z-index: 5;
}
  
}


@media (max-width: 380px) {

  .ABOUT-US-TEXT{
    width: 94%;
    height: auto;
    position: absolute;
    left: 3%;
    padding: 0px 0px;
    top: 36%;
    z-index: 5;
  }
  .solar-small-text-div{
    display: none;
  }
  .system{
    position: relative;
    width: min(90vmin, 900px);
    height: min(90vmin, 900px);
    isolation: isolate;
    margin-top: -1200px;
  }

}







/* ========== WEB ========== */
/* ========== WEB ========== */
/* ========== WEB ========== */
/* ========== WEB ========== */
/* ========== WEB ========== */


#web {
  position: relative;
  width: 100%;
  height: 1500px;
  overflow: hidden;
}


/* wrapper na střed šířky */
#web .double-text {
  position: absolute;
  left: 50%;
  top: 17%;                    /* výška sekce */
  transform: translateX(-50%);
  display: grid;               /* vrstvy přes sebe */
  place-items: center;
  text-align: center;
  pointer-events: none;
}

/* jednotný styl textů */
#web .double-text .text {
  font-family: "Geom", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  font-size: clamp(36px, 8vw, 120px);
  margin: 0;
}

/* spodní plný text */
#web .double-text .text--fill {
  color: #ffffff;
  z-index: 10;
    filter: drop-shadow(10px 0px 20px rgba(0, 0, 0, 0.966));
}

/* obrázek mezi texty */
#web .double-text .text-image {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: auto;
  filter: drop-shadow(10px 0px 20px rgba(0, 0, 0, 0.966));
  pointer-events: none;
  z-index: 11;
  transition: transform 0.1s linear;
}

/* horní obrysový text */
#web .double-text .text--stroke {
  color: transparent;
  -webkit-text-stroke: 2px #ffffff;
  z-index: 12;
  position: absolute;
  top: 0; left: 0;
}




/* Orbit container – celý systém pod textem */
.ws-orbit-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1; /* pod textem i obrázkem */
}

/* Planeta uprostřed orbit */
.ws-orbit-planet {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  object-fit: contain;
  z-index: -1;
  pointer-events: none;
  filter: drop-shadow(10px 0px 50px rgba(48, 142, 192, 0.966));
  animation: ws-planet-float 6s ease-in-out infinite alternate;
}

/* Planeta jemně „dýchá“ */
@keyframes ws-planet-float {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.95; }
  100% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

/* Každý kruh (orbita) */
.ws-orbit {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.01);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.03) inset;
  animation: ws-rotate 70s linear infinite;
}

/* Velikosti orbit */
.ws-orbit--2 { width: 650px; height: 650px; animation-duration: 55s; }
.ws-orbit--3 { width: 800px; height: 800px; animation-duration: 70s; }
.ws-orbit--4 { width: 950px; height: 950px; animation-duration: 90s; }

/* Rotace orbit kolem středu */
@keyframes ws-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* === SATELITY === */

/* vypneme původní tečku a popisek */
.ws-orbit::before,
.ws-orbit::after {
  display: none !important;
}

/* wrapper satelitu – nastaví úhel */
.ws-sat-wrap {
  position: absolute;
  inset: 0;
  transform: rotate(var(--angle, 0deg));
  transform-origin: 50% 50%;
  pointer-events: none;
}

/* samotný satelit */
.ws-sat {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(44, 57, 68, 0.5));
  pointer-events: auto;
  opacity: 0.5;
}

/* tooltip s názvem satelitu */
.ws-sat[data-label] {
  position: relative;
}
.ws-sat[data-label]::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translate(-50%, -100%);
  font: 500 11px/1.2 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  letter-spacing: .04em;
  color: #fff;
  background: rgba(0,0,0,.55);
  padding: 4px 8px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.ws-sat:hover::after {
  opacity: 1;
  transform: translate(-50%, -110%);
}

/* Rešpektuj snížené animace */
@media (prefers-reduced-motion: reduce) {
  .ws-orbit, .ws-orbit-planet { animation: none !important; }
}




  .space-sale-text {
    position: absolute;            /* absolutní střed vůči SECTION */
    top: 78%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
      filter: drop-shadow(0 0 10px rgb(0, 0, 0));

  }

  .space-sale-text h2 {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 50px;
    
  }



  .space-sale-text .lead {
    color: #ffffff66;
    margin-top: -50px;
    font-size: 15px;
    letter-spacing: 8px;
  }

  .space-sale-text .body {
    margin-top: 60px;
    padding-left: 10px;
    padding-right: 10px;
    color: #ffffff;
    font-size: 20px;
  }



.main-btn-web-pozice{
  margin-top: 40px;
}

.main-btn {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--bra2), var(--bra));
  color: var(--tx2);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 0 0 transparent;
  overflow: hidden;
  isolation: isolate;
  text-transform: uppercase;
}

/* ✨ Shine efekt */
.main-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 3.5s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% { left: -75%; }
  50% { left: 125%; }
  100% { left: 125%; }
}

/* 🪐 Hover efekt – vesmírná záře */
.main-btn:hover {
  background: linear-gradient(135deg, var(--bra), var(--bra2));
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 20px rgba(100, 200, 255, 0.5),
              0 0 40px rgba(60, 160, 255, 0.3);
}

/* ✨ Aktivní a focus efekty */
.main-btn:active {
  transform: scale(0.97);
  box-shadow: 0 0 10px rgba(100, 200, 255, 0.3);
}

.main-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(72, 188, 242, 0.5);
}

/* 🌌 Jemné pulzování jako hvězda */
@keyframes starPulse {
  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));
  }
}

.main-btn {
  animation: starPulse 4s ease-in-out infinite;
}






@media (max-width: 768px) {
    #web {
    position: relative;
    width: 100%;
    height: 1400px;
    overflow: hidden;
  }
    #web .double-text .text-image {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: auto;
    filter: drop-shadow(10px 0px 20px rgba(0, 0, 0, 0.966));
    pointer-events: none;
    z-index: 11;
    transition: transform 0.1s linear;
  }

    #web .double-text .text {
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    font-size: clamp(100px, 8vw, 120px);
    margin: 0;

  }

  .space-sale-text {
    position: absolute;            /* absolutní střed vůči SECTION */
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
      filter: drop-shadow(0 0 10px rgb(0, 0, 0));

  }

    .space-sale-text h2 {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 30px;

  }



  .space-sale-text .lead {
    color: #ffffff66;
    margin-top: -25px;
    font-size: 10px;
    letter-spacing: 5px;
  }

  .space-sale-text .body {
    margin-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
    color: #ffffff;
    font-size: 18px;
  }

}


@media (max-width: 500px) {

      #web .double-text .text {
    font-size: clamp(80px, 8vw, 120px);
  }
  
}


@media (max-width: 500px) {

      #web .double-text .text {
    font-size: clamp(70px, 8vw, 120px);

  }
  
}













/* ========== black-hole-video ========== */
/* ========== black-hole-video ========== */
/* ========== black-hole-video ========== */
/* ========== black-hole-video ========== */
/* ========== black-hole-video ========== */

.space-video-full {
  position: relative;
  width: 100%;
  overflow: hidden;
}


/* 🔹 Video přes celou šířku (16:9 poměr, responzivní) */
.space-video-full video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  transform-origin: center center;
  transition: transform 0.1s ease-out;
}


.black-hole-newsletter{ 
  position:absolute;
  width:25%;
  height:auto;
  left:4%;
  top:20%;
  padding:22px 22px 26px;
  background: rgba(141, 142, 143, 0.029);
  backdrop-filter: blur(2px);
  border-radius:18px;
  border:1px solid rgba(255, 255, 255, 0.034);
  color:#fff;
  z-index:2;
}

/* malé „eyebrow“ */
.bh-eyebrow{
  margin:0 0 6px 0;
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(255,255,255,0.6);
  font-weight:700;
}

/* title */
.bh-title{
  margin:0 0 16px 0;
  font-size:18px;
  font-weight:900;
}

.bh-desc{
  margin:0 0 14px 0;
  font-size:13px;
  line-height:1.6;
  color:rgba(255, 255, 255, 0.7);
}


/* form */
.bh-form{
  display:flex;
  gap:8px;
}

.bh-form input{
  flex:1;
  background:transparent;
  border:none;
  border-bottom:1px solid rgba(255,255,255,0.35);
  padding:8px 4px;
  color:#fff;
  font-size:14px;
  outline:none;
}

.bh-form input::placeholder{
  color:rgba(255,255,255,0.5);
}

/* button – jen symbol */
.bh-form button{
  background:none;
  border:none;
  color:var(--bra3);
  font-size:18px;
  font-weight:900;
  cursor:pointer;
  padding:0 6px;
  transition:transform .2s ease, color .2s ease;
}

.bh-form button:hover{
  transform:translateX(3px);
}

/* mobile */
@media (max-width:900px){
  .black-hole-newsletter{
display: none;
  }
}






















/* ========== reference ========== */
/* ========== reference ========== */
/* ========== reference ========== */
/* ========== reference ========== */
/* ========== reference ========== */
.our-work {
  background-color: #000000;
  color: var(--tx2);
  padding-top: 10px;
  padding-bottom: 100px;
  text-align: center;
  height: auto;
}


.our-work-reference{
  background-color: #00000000 !important;
}

.work-content{
  padding-bottom: 60px;
}
.eyebrow{
  letter-spacing: 5px;
  color: #555555;
}

.our-work h2{
    text-transform: uppercase;
    font-size: 44px;
}

.our-work .subhead{
   letter-spacing: 0px;
  color: #9ea19e;
  margin-top: -35px;
  font-size: 14px;
}



/* --- Horizontální scroller --- */
.item-section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  cursor: grab;
  display: flex;
  flex-direction: row;
  gap: 39px;                /* mezery mezi itemy */
  padding: 12px 16px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.item-section > * {
  flex-shrink: 0;
}
.item-section.grabbing{
  cursor: grabbing;
}
.item-section.no-select{
  user-select: none;
}


.item {
  position: relative; /* nutné, aby šlo umístit tlačítko dovnitř */
  flex: 0 0 338px;
  height: 560px;
  border-radius: 25px;
  scroll-snap-align: start;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  transition: background-position 8s linear;
  will-change: background-position;
  cursor: grab;
  overflow: hidden;
}

.item-0{
    background-image: url("images/screencapture-menusveta-cz-2025-03-06-14_37_18.png");
}
.item-1{
    background-image: url("images/screencapture-foodfactoryolomouc-cz-2025-03-06-14_39_13.png");
}
.item-2{
    background-image: url("images/screencapture-mytikelimku-cz-2025-03-06-14_41_15.png");
}
.item-3{
    background-image: url("images/screencapture-odrazkuvmlyn-cz-2025-11-19-00_45_08.png");
}
.item-4{
    background-image: url("images/screencapture-hravekontinenty-cz-2025-11-19-00_46_33.png");
}
.item-5{
    background-image: url("images/screencapture-bohemiart-eu-2025-11-19-00_49_46.png");
}
.item-6{
    background-image: url("images/screencapture-127-0-0-1-5501-index-html-2025-11-19-00_53_28.png");
}
/* --- tlačítko --- */
.item-btn {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #3da75d;
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;
  transition: all 0.3s ease;

  opacity: 0.8;
}

/* efekt při hoveru */
.item-btn:hover {
  background-color: #49c36b;
  opacity: 1;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* animace obrázku při hoveru */
.item:hover {
  background-position: center bottom;
}

/* levé kulaté průhledné tlačítko */
.item-info-btn{
  position:absolute; bottom:10px; right: 10px;
  width:44px; height:44px; border-radius:50%;
  background:transparent;
  border:2px solid rgba(255,255,255,.7);
  color:#fff; font-weight:700; font-size:18px; line-height:1;
  display:flex; align-items:center; justify-content:center;
  backdrop-filter: blur(2px);
  transition:transform .2s ease, border-color .2s ease, opacity .2s ease;
  cursor:pointer; opacity:.9;
}
.item-info-btn:hover{ transform:translateY(-2px); border-color:#ffffff; opacity:1; }

/* ===== Modal ===== */
.modal{ 
  position:fixed; inset:0; display:none; z-index:9999;
}
.modal.open{ display:flex; }

/* kliknutím mimo dialog zavřeš */
.modal-backdrop{
  position:absolute; inset:0; background:rgba(0,0,0,.55);
}

.modal-dialog{
  position:relative; margin:auto; max-width:720px; width:clamp(320px, 80vw, 720px);
  background:#0e1726; color:#fff; border-radius:18px; padding:24px;
  box-shadow:0 20px 60px rgba(0,0,0,.5);
}

.modal-close{
  position:absolute; top:10px; right:12px;
  width:36px; height:36px; border-radius:50%;
  border:none; background:rgba(255,255,255,.12); color:#fff; font-size:20px; cursor:pointer;
}
.modal-close:hover{ background:rgba(255,255,255,.2); }

.reviews{ margin:10px 0 0 18px; }
.reviews li{ margin:6px 0; }

/* když je modal otevřený, vypnem scroll stránky */
body.modal-open{ overflow:hidden; }






/* ===== Scrollbar: jen zelený „thumb“ ===== */
.item-section {
  /* vypnout skákání (snap) */
  scroll-snap-type: none;       /* dřív jsi měl x mandatory */
  /* volitelné: normální chování scrollu */
  scroll-behavior: auto;

  /* Firefox: jen zelený palec, průhledná „kolej“ */
  scrollbar-color: #252525 transparent;
  scrollbar-width: thin;
}

/* WebKit (Chrome, Edge, Safari) */
.item-section::-webkit-scrollbar {
  height: 10px;                 /* tloušťka lišty */
  background: transparent;      /* žádné pozadí */
}

.item-section::-webkit-scrollbar-track {
  background: transparent;      /* schovat track */
}

.item-section::-webkit-scrollbar-thumb {
  background: #3da75d;          /* jen zelený palec */
  border-radius: 6px;
  border: none;                  /* žádný okraj */
}

/* schovat šipky a rohy */
.item-section::-webkit-scrollbar-button { display: none; width: 0; height: 0; }
.item-section::-webkit-scrollbar-corner { background: transparent; }

/* Pro jistotu zneplatnit případné staré styly */
.item-section { overscroll-behavior-x: contain; }  /* nech si klidně */
.item { scroll-snap-align: none; }                 /* vypnout snap i na itemu */


.our-work-main-btn-positon{
  margin-top: 50px;
}


@media (max-width:1400px){

  .our-work h2{
    padding: 0px 20px;
  }

  .our-work .subhead{
    padding: 0px 20px;
  }

}


@media (max-width:600px){

  .our-work h2{
    padding: 0px 20px;
    font-size: 30px;
  }

  .our-work .subhead{
    padding: 0px 20px;
    padding-top: 50px;
  }

}












/* ========== recenze ========== */
/* ========== recenze ========== */
/* ========== recenze ========== */
/* ========== recenze ========== */
/* ========== recenze ========== */

.case-section{

  padding:110px 0;
  background-color: #000;
  color: var(--tx2);
}

.case-section-transparent{
  background-color: #00000000 !important;
}

.case-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

/* header */
.case-head{
  max-width:760px;
  margin-bottom:44px;
}

.case-label{
  display:inline-block;
  font-size:14px;
  font-weight:800;
  letter-spacing:1px;
  color:var(--bra3);
  margin-bottom:14px;
}

.case-title{
  margin:0 0 14px 0;
  font-size:44px;
  line-height:1.15;
  font-weight:900;
}
.case-title span{ color:var(--bra3); }

.case-desc{
  margin:0;
  font-size:16px;
  line-height:1.7;
}

/* layout */
.case{
  border-radius:26px;
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
}

.case-left{
  padding:22px;

}

.case-right{
  padding:28px 28px 26px;
}

.case-tag{
  display:inline-flex;
  align-items:center;

  color:var(--bra3);
  font-weight:900;
  font-size:12px;
  margin-bottom:14px;
}

.case-name{
  margin:0 0 8px 0;
  font-size:26px;
  font-weight:900;

}

.case-tagline{
  margin:0 0 18px 0;
  line-height:1.6;
  font-weight:600;
}

.case-block{
  margin-top:18px;
}

.case-block h4{
  margin:0 0 8px 0;
  font-size:14px;
  font-weight:900;

}

.case-block p{
  margin:0;
  line-height:1.75;
  font-size:15px;
}

.case-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.case-list li{
  position:relative;
  padding-left:28px;
  font-weight:700;
  font-size:14px;
  line-height:1.6;
}

.case-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--bra3);
  font-weight:900;
}

/* quote */
.case-quote{
  grid-column:1 / -1;
  padding:22px 26px;
  display: none;
}

.quote-stars{
  color:#f7ef10;
  letter-spacing:2px;
  font-size:14px;
  margin-bottom:10px;
}

.quote-text{
  margin:0 0 10px 0;
  font-size:15px;
  line-height:1.75;

  font-weight:700;
}

.quote-author{
  margin:0;
  font-size:13px;
  font-weight:800;
}

/* compare */
.compare{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  background:#000;
  margin-top: 70px;
}

.compare-inner{
  position:relative;
  width:100%;
  aspect-ratio:16 / 19;
}

.compare-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  user-select:none;
  pointer-events:none;
  
}

.compare-divider{
  position:absolute;
  top:0;
  bottom:0;
  width:2px;
  left:50%;
  background:rgba(255,255,255,0.8);
}

.compare-handle{
  position:absolute;
  top:50%;
  left:50%;
  width:46px;
  height:46px;
  transform:translate(-50%, -50%);
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgb(0, 0, 0);
  border:2px solid var(--bra3);
  color:#ffffff;
  font-weight:900;
}

.compare-range{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  cursor:ew-resize;
}

.compare-hint{
  position:absolute;
  left:14px;
  bottom:14px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(17,17,17,0.55);
  color:#fff;
  font-weight:800;
  font-size:12px;
  backdrop-filter:blur(6px);
}

/* responsive */
@media (max-width:980px){
  .case{
    grid-template-columns:1fr;
  }
  .case-left{
    border-right:none;
    border-bottom:1px solid rgba(17,17,17,0.10);
  }
  .case-title{
    font-size:38px;
  }

  .compare-inner{
  position:relative;
  width:100%;
  aspect-ratio:16 / 9;
}
}












/* ========== formular ========== */
/* ========== formular  ========== */
/* ========== formular  ========== */
/* ========== formular  ========== */
/* ========== formular  ========== */


  .black-disolve{
    width: 100%;
    height: 150px;
background: linear-gradient(
  to bottom,
  rgba(0, 0, 0, 0) 0%,
  rgba(0, 0, 0, 1) 100%
);

  }

  .contact-section {
    width: 100%;
    background: transparent; /* sekce přebere pozadí webu */
    padding: 80px 0 60px;
    background-color: #000;
  }
  

  .kontaktForm-nadpis {
    text-align: center;
    color: #fff;
    margin: 0 0 40px;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    padding: 0px 20px;
  }

  .kontaktForm-p{
    text-align: center;
    color: white;

    padding: 0 20px 100px 20px;
  }

  /* Moderní rozvržení: 2 sloupce s fallbackem na 1 sloupec */
  .kontaktForm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: min(1200px, 92%);
    margin: 0 auto;
  }

  .kontakt-left,
  .kontakt-right {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .form {
    display: grid;
    gap: 28px;
    width: 100%;
    max-width: 520px;
  }

  .input,
  .textarea,
  .select-wrap select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    padding: 12px 0;
    font-size: 18px;
    outline: none;
    transition: border-color 0.2s ease;
  }

  .input::placeholder,
  .textarea::placeholder {
    color: #cfcfcf;
    opacity: 1;
  }

  .input:focus,
  .textarea:focus,
  .select-wrap select:focus {
    border-bottom-color: #7ec8ff; /* jemná modrá při focusu */
    box-shadow: 0 2px 0 -1px #7ec8ff;
  }

  .textarea {
    resize: vertical;
    min-height: 96px;
  }

  /* Select – vlastní šipka a lepší klikací plocha */
  .select-wrap {
    position: relative;
  }
  .select-wrap::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 12px;
    height: 12px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%23cfcfcf"><polygon points="0,0 12,0 6,12"/></svg>');
    background-size: 12px 12px;
    background-repeat: no-repeat;
  }
  .select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 28px; /* místo pro šipku */
  }
  .option {
    color: #000; /* barva textu v rozbaleném menu */
  }

  /* Tlačítko */
  .odeslat-button {
    background-color: #92f385;
    color: #000;
    border: none;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.15s ease, background-color 0.2s ease, opacity 0.2s ease;
    border-radius: 6px;
  }
  .odeslat-button::before {
    content: "";
    position: absolute;
    inset: 0;
    left: -120%;
    background: linear-gradient(120deg, transparent, rgba(126, 200, 255, 0.7), transparent, rgba(0, 0, 0, 0.1));
    animation: shine 2.2s infinite;
  }
  @keyframes shine {
    0% { left: -120%; }
    25% { left: 120%; }
    100% { left: 120%; }
  }
  .odeslat-button:hover { transform: scale(1.04); }
  .odeslat-button:active { transform: scale(0.98); }
  .odeslat-button:focus-visible {
    outline: 2px solid #7ec8ff;
    outline-offset: 2px;
  }

  /* Video */
  .kontakt-right-video {
    width: 100%;
    max-width: 760px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
  }

  /* Pomocná třída pro vizuálně skryté popisky (accessibility) */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 1160px) {
    .kontakt-right-video { 
      max-width: 600px; 
      margin-top: 100px;
    }
  }
  @media (max-width: 980px) {
    .kontaktForm {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .kontakt-right-video { max-width: 520px; }
  }
  @media (max-width: 560px) {
    .kontaktForm-nadpis { font-size: 32px; margin-bottom: 28px; }
    .contact-section { padding: 56px 0 48px; }
    .odeslat-button { width: 100%; }
  }

  /* Respektuj preferenci omezených animací */
  @media (prefers-reduced-motion: reduce) {
    .odeslat-button::before { animation: none; }
    .odeslat-button { transition: none; }
    .kontakt-right-video { animation: none; }
  }

















/* ========== footer ========== */
/* ========== footer ========== */
/* ========== footer ========== */
/* ========== footer ========== */
/* ========== footer ========== */

footer {
  width: 100%;
  background-color: #000;
  position: relative;
  overflow: hidden;
}

.footer-content {
  background:  var(--bra2);
  color: #fff;
  text-align: center;
  padding: 0px 20px 30px;
}

.footer-logo h3 {
  margin: 0;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-logo p {
  color: #ccc;
  margin-top: 5px;
  font-size: 0.95rem;
}

.footer-nav {
  margin: 25px 0 20px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #000000;
}

.footer-socials {
  margin: 15px 0 20px;
}

.footer-socials a img {
  width: 28px;
  height: 28px;
  margin: 0 8px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-socials a:hover img {
  transform: translateY(-3px);
  filter: brightness(1) invert(1);
}

.footer-copy {
  color: #ccc;
  font-size: 0.85rem;
  margin-top: 10px;
  opacity: 0.8;
}

/* Vlny – zachovány z původního stylu */
svg {
  width: 100%;
  height: 250px;
  display: block;
}

.wave {
  animation: wave 3s linear infinite;
  fill: var(--bra2);  
}

#wave2 {
  animation-duration: 5s;
  animation-direction: reverse;
  opacity: 0.6;
}

#wave3 {
  animation-duration: 7s;
  opacity: 0.3;
}

@keyframes wave {
  to {
    transform: translateX(-100%);
  }
}


/* Responsivita */
@media (max-width: 530px){

.footer-nav a {
  text-decoration: none;
  margin: 0 5px;
  font-size: 13PX;
}
}


/* Responsivita */
@media (max-width: 400px){
.footer-nav a {
  font-size: 10PX;
}
}





















/* ========== alien-trigger ========== */
/* ========== alien-trigger ========== */
/* ========== alien-trigger ========== */
/* ========== alien-trigger ========== */
/* ========== alien-trigger ========== */

  /* Spouštěč v levém dolním rohu */
  .alien-trigger {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 50px;
    height: auto;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.25s ease;
    display: none; /* skrytý při načtení */
  }

  .alien-trigger:hover {
    transform: scale(1.08);
  }

  /* Zobrazení po 15 sekundách */
  .alien-trigger.show {
    display: block;
    animation: popin 0.3s ease-out;
  }

  @keyframes popin {
    from {
      transform: scale(0.9);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  /* Tmavý překryv (klikem mimo okno se zavře) */
  .overlay {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.55);
  }

  /* Samotné okno – vlevo dole */
  .popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 720px;
    width: min(90vw, 720px);
    background: #bf7bd1; /* fialová */
    border: 2px dashed #7afb87;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    padding: 18px;
    transform: translateY(-8px);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .overlay.show {
    display: block;
  }

  .overlay.show .popup {
    opacity: 1;
    transform: translateY(0);
  }

  /* Kulaté X v horním-pravém rohu (lehce přesahuje) */
  .close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-size: 20px;
    line-height: 3px;
    border: 2px solid #000;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  }

  .close:hover {
    transform: scale(1.05);
  }

  .popup-inner {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    align-items: start;
  }

  .popup-img {
    width: 120px;
    height: auto;
    border-radius: 8px;
    display: block;
  }

  .popup-body {
    color: #111;

  }

  .popup-body h2 {
    margin: 4px 0 10px;
  }

  .label {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    letter-spacing: 0.4px;
    font-weight: 800;
  }

  .popup-body p {
    margin: 0 0 16px;
    color: #1f1f1f;
    line-height: 1.5;
  }

  .popup-form {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .popup-form input {
    flex: 1 1 auto;
    min-width: 220px;
    padding: 10px 12px;
    border-radius: 6px;
    border: 2px solid #eee;
    background: #fff;
    font-size: 15px;
  }

  .popup-form button {
    padding: 12px 18px;
    border: none;
    border-radius: 6px;
    font-weight: 800;
    background: #111;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 3px 0 #000;
  }

  .popup-form button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 #000;
  }

  /* Responsivita */
  @media (max-width: 560px) {
    .popup-inner {
      grid-template-columns: 1fr;
    }

    .popup-img {
      width: 84px;
    }
  }













































/* ========== onás ========== */
/* ========== onás ========== */
/* ========== onás ========== */
/* ========== onás ========== */
/* ========== onás ========== */
/* ========== onás ========== */
/* ========== onás ========== */
/* ========== onás ========== */
/* ========== onás ========== */
/* ========== onás ========== */

main.pozadi-space{
  position: relative;
  overflow: hidden;

}



.about-us-main{
  width: 100%;
  height: auto;
}

.about-us-main-div{
  text-align: center;
  margin-top: 200px;
  padding: 0px 20px;

}

.about-us-main-div h1{
  letter-spacing: 4px;
  font-size: 17px;
  color: white;
  font-weight: 400;
}

.about-us-main-div h2{
  margin-top: 15px;
  font-size: 55px;
  color: white;
    line-height: 60px;
    text-transform: uppercase;
}

.about-us-main-div p{
  margin-top: -15px;
  color: white;
  font-weight: 400;
}

.about-us-main-div2{
  width: 100%;
  height: auto;
  margin-top: 110px;
  display: flex;
}


.about-us-main-div2-left,
.about-us-main-div2-center,
.about-us-main-div2-right{
  flex: 1;
  margin-left: 2%;
  margin-right: 2%;
  padding: 0px 30px;

}


.about-us-main-div2-box{
  width: 100%;
  margin-top: 50px;
  overflow: hidden;
  border-radius: 14px;

  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.about-us-main-div2-box:hover{
  transform: translateY(-2px);

}

/* obrázek uvnitř */
.about-us-main-div2-box img{
  width: 100%;
  height: auto;
  display: block;

  transition: transform 0.6s ease;
}

.about-us-main-div2-box:hover img{
  transform: scale(1.02);
  transform: translateY(-2px);
}


.about-us-main-div2-box img{
  width: 100%;
  height: auto;          /* výška se dopočítá podle šířky */
  display: block;
  object-fit: cover;     /* bezpečné i pro budoucí úpravy */
  object-position: top;  /* VŽDY nahoře */
}


.about-us-main-div2-box-small{
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;

  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.about-us-main-div2-box-small:hover{
  transform: translateY(-2px);

}

.about-us-main-div2-box-small img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}

.about-us-main-div2-box-small:hover img{
  transform: scale(1.02);
  transform: translateY(-2px);
}




.about-us-main-div2-box-wrap{
  background-color: #ffffff;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.about-us-main-div2-box-socialbar{
  width: 100%;
  background-color: #e9e9e9;
  min-height: 40px;
}

.about-us-main-div2-box-socialbar a img {
  width: 20px;
  padding: 10px;
  position: absolute;
  
}

.about-us-main-div2-box-socialbar p  {
  text-align: end;
  padding: 10px;

}



.about-us-main-div2-box-aboutbar{
  padding: 0px 20px 10px 20px;

}

.about-us-main-div2-box-aboutbar-p1{
  font-size: 20px;
  font-weight: 700;
}



@media (max-width: 1400px) {
  .about-us-main-div2 {
    flex-direction: column;
    align-items: center;
    gap: 50px; /* mezery mezi kartami */
  }

  .about-us-main-div2-left,
  .about-us-main-div2-center,
  .about-us-main-div2-right {
    width: 40%;
    max-width: 600px;
    margin: 0;
    padding: 0 20px;
  }

  .about-us-main-div2-box,
  .about-us-main-div2-box-small {
    width: 100%;
  }
}


@media (max-width: 1100px) {

  .about-us-main-div2-left,
  .about-us-main-div2-center,
  .about-us-main-div2-right {
    width: 60%;
    max-width: 600px;
    margin: 0;
    padding: 0 20px;
  }


}




@media (max-width: 900px){
  .about-us-main-div h2{
    margin-top: 15px;
    font-size: 28px;
    color: white;
    line-height: normal;
    text-transform: uppercase;
  }
  .about-us-main-div p{
    font-size: 18px;
  }
}









/* ========== NÁŠ PŘÍBĚH ========== */
/* ========== NÁŠ PŘÍBĚH ========== */
/* ========== NÁŠ PŘÍBĚH ========== */

.ws-manifesto{
  color: var(--tx2);
  padding:150px 0;
  overflow:hidden;
}

.ws-manifesto-inner{
  width:100%;
  max-width:1300px; /* velké monitory */
  margin:0 auto;
  padding:0 48px;
}

/* header */
.ws-manifesto-head{
  max-width:900px;
  margin-bottom:80px;
}

.ws-eyebrow{
  font-size:12px;
  font-weight:900;
  letter-spacing:3px;
  color: var(--bra3);
  margin-bottom:16px;
  display:inline-block;
}

.ws-title{
  font-size: 60px;
  line-height:1.05;
  font-weight:900;
  margin:0 0 18px 0;

}

.ws-title span{
  color:var(--bra3);
}

.ws-lead{
  font-size:18px;
  line-height:1.7;
  color:#c7c7c7;
  font-weight:600;
  max-width:720px;
}

/* grid */
.ws-manifesto-grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:80px;
}

.ws-col{
  font-size:17px;
  line-height:1.9;
  color:#c7c7c7;
}

.ws-col p{
  margin:0 0 22px 0;
}

.ws-col strong{
  font-weight:900;
  color: var(--tx2);
}

/* left accent */
.ws-col-left{
  padding-left:28px;
  border-left:4px solid var(--bra3);
}

.ws-highlight{
  font-size:20px;
  margin-top:36px;

}

/* ending block */
.ws-end-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.ws-end-list li {
  position: relative;
  color: #ffffff;

  font-weight: 600;
}

.ws-end-list li::before {

  position: absolute;
  left: 0;
  color: var(--bra3);
  font-weight: 800;
}

/* CTA */
.ws-cta{
  margin-top:80px;
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}

.ws-btn{
  padding:16px 32px;
  border-radius:999px;
  background:#ff2d6f;
  color:#fff;
  font-weight:900;
  text-decoration:none;
  font-size:15px;
  transition:.25s;
}

.ws-btn:hover{
  background:#e62662;
}

.ws-note{
  font-size:14px;
  color:#666;
  font-weight:700;
}

/* responsive */
@media (max-width: 900px){
  .ws-manifesto{
    padding:100px 0;
  }

  .ws-manifesto-inner{
    padding:0 20px;
  }

  .ws-manifesto-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .ws-col-left{
    padding-left:18px;
  }
}












/* ========== about us 1 ========== */
/* ========== about us 1 ========== */
/* ========== about us 1 ========== */
/* ========== about us 1 ========== */
/* ========== about us 1 ========== */

.about-us-vision-tolife {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  color: #ffffff;
}

.vision-header {
  text-align: center;
  margin-bottom: 40px;
}

.vision-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.vision-header p {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}

.vision-image {
  width: 100%;
  margin-bottom: 40px;
}

.vision-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

.vision-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.vision-stats .stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.vision-stats .stat strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 6px;
}

.vision-stats .stat span {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
}

.vision-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.vision-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.vision-content p {
  font-size: 19px;
  line-height: 1.7;
  color: #ffffff;
}

@media (max-width: 768px) {
  .vision-header h2 {
    font-size: 32px;
  }

  .vision-stats {
    gap: 16px;
    padding: 20px;
  }

  .vision-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .vision-stats {
    flex-direction: column;
  }

  .vision-stats .stat {
    text-align: center;
  }
}



/* ========== about us 2 ========== */
/* ========== about us 2 ========== */
/* ========== about us 2 ========== */
/* ========== about us 2 ========== */
    .vsmr-bws-hero-section{
      position:relative;
      padding:56px 16px 86px;
      overflow:hidden;
  
    }

    .vsmr-bws-hero-section::after{
      content:"";
      position:absolute;
      left:0;
      right:0;
      bottom:0;
      height:78px;

    }

    .vsmr-bws-hero-wrap{
      max-width:1500px;
      margin:0 auto;
      display:grid;
      grid-template-columns:1.05fr 1fr;
      align-items:center;
      gap:8px;
      position:relative;
      z-index:1;
    }

    .vsmr-bws-hero-illustration-col{
      display:flex;
      align-items:center;
      justify-content:flex-start;
    }

    .vsmr-bws-hero-illustration-img{
      width:520px;
      max-width:100%;
      height:auto;
      display:block;
    }

    .vsmr-bws-hero-content-col{
      padding-top:2px;
    }

    .vsmr-bws-hero-kicker{
      margin:0 0 10px;
      font-size:18px;
      font-weight:700;
      letter-spacing:.16em;
      text-transform:uppercase;
      color:#ffffff;
    }

    .vsmr-bws-hero-title{
      margin:0 0 14px;
      font-size:50px;
      line-height:1.18;
      font-weight:700;
      color:#ffffff;
    }

    .vsmr-bws-hero-description{
      margin:0 0 18px;
      max-width:520px;
      font-size:18px;
      line-height:1.75;
      color:#ffffff;
    }

    .vsmr-bws-hero-cta-row{
      display:flex;
      align-items:center;
      gap:12px;
    }

    .vsmr-bws-hero-cta-primary{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:132px;
      padding:10px 18px;
      font-size:13px;
      font-weight:600;
      color:#ffffff;
      text-decoration:none;
      border-radius:999px;
      background:linear-gradient(90deg, #214289, #35586e);
      box-shadow:0 10px 22px rgba(29, 59, 142, 0.18);
      transition:transform .12s ease, box-shadow .12s ease;
    }

    .vsmr-bws-hero-cta-primary:hover{
      transform:translateY(-1px);
      box-shadow:0 14px 26px rgba(29, 110, 157, 0.22);
    }

    @media (max-width:900px){
      .vsmr-bws-hero-section{
        padding:44px 16px 76px;
      }

      .vsmr-bws-hero-wrap{
        grid-template-columns:1fr;
        gap:26px;
      }

      .vsmr-bws-hero-illustration-col{
        justify-content:center;
      }

      .vsmr-bws-hero-content-col{
        text-align:center;
      }

      .vsmr-bws-hero-description{
        margin-left:auto;
        margin-right:auto;
      }

      .vsmr-bws-hero-cta-row{
        justify-content:center;
      }
    }


























/* ========== weby ========== */
/* ========== weby ========== */
/* ========== weby ========== */
/* ========== weby ========== */
/* ========== weby ========== */
/* ========== weby ========== */
/* ========== weby ========== */
/* ========== weby ========== */


.web-solution {
  padding: 180px 0px 0px 0px;
  color: var(--tx2);
  position: relative;
  overflow: hidden;
}



.web-solution__grid {
  position: relative;
  z-index: 1;
  max-width: 1700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.web-solution__content {
  max-width: 720px;
  margin-left: 120px;
}

.web-solution__label {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;

}

.web-solution h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 32px;
  font-weight: 800;
}

.web-solution h2 span {
  color: var(--bra3);
}

.web-solution p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.web-solution__list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.web-solution__list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-weight: 600;
}

.web-solution__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--bra3);
  font-weight: 800;
}

.web-solution__actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
}





/* RIGHT IMAGE */
.web-solution__visual {
  position: relative;
  margin-right: 120px;
  display: flex;
  justify-content: center;
}

.web-solution__img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  
  position: relative;
  z-index: 2;
}

/* jemný glow, aby to bylo "space", ale nenápadné */
.web-solution__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgb(45, 188, 255), transparent 70%);
  filter: blur(40px);
  z-index: 1;
  transform: translateY(20px);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .web-solution__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .web-solution__content {
    margin: 0 24px;
  }
  .web-solution__visual {
    margin: 0 24px;
    justify-content: flex-start;
  }
  .web-solution__glow {
    width: 420px;
    height: 420px;
  }
}






/* ========== statistika ========== */
/* ========== statistika ========== */
/* ========== statistika ========== */
/* ========== statistika ========== */
/* ========== statistika ========== */

  .stats-video{
    padding: 64px 0;
    overflow: hidden;
    position: relative;
    margin-top: 100px;
    color: var(--tx2);
  }

  .stats-video::before{
    content:"";
    position:absolute;
    pointer-events:none;
  }

  .sv__container{
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .sv__col{
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .sv__col--right{
    text-align: right;
    align-items: flex-end;
  }

  .sv__stat{ max-width: 260px; 
  margin-top: 50px;
  }

  .sv__num{
    font-size: 56px;
    line-height: 1;
    font-weight: 500;

    letter-spacing: -0.02em;
  }

  .sv__label{
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.4;

  }

  .sv__center{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sv__videoWrap{
    margin-top: 50px;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(0,0,0,0.25);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
  }

  .sv__video{
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
  }

  .sv__shine{
    position:absolute;
    inset:-40%;
    background: linear-gradient(
      115deg,
      transparent 35%,
      rgba(255,255,255,0.16) 50%,
      transparent 65%
    );
    transform: translateX(-30%) rotate(10deg);
    animation: svShine 7s ease-in-out infinite;
    mix-blend-mode: screen;
    pointer-events:none;
  }

  @keyframes svShine{
    0%   { transform: translateX(-35%) rotate(10deg); opacity: .35; }
    50%  { transform: translateX(25%)  rotate(10deg); opacity: .55; }
    100% { transform: translateX(-35%) rotate(10deg); opacity: .35; }
  }

  /* Responsive */
  @media (max-width: 980px){
    .sv__container{
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .sv__col--right{
      text-align: left;
      align-items: flex-start;
    }

    .sv__videoWrap{
      max-width: 560px;
      aspect-ratio: 16 / 9;
    }

    .sv__num{ font-size: 46px; }
  }










/* ========== nabidka webu ========== */
/* ========== nabidka webu ========== */
/* ========== nabidka webu ========== */
/* ========== nabidka webu ========== */

  .web-offers{
    padding:110px 0;
    color: var(--tx2);
  }

  .wo__wrap{
    max-width:1200px;
    margin:0 auto;
    padding:0 24px;
    
  }

  .wo__head{
    max-width:720px;
    margin-bottom:44px;
  }

  .wo__label{
    display:inline-block;
    font-size:14px;
    font-weight:800;
    letter-spacing:1px;
    color:var(--bra3);
    margin-bottom:16px;
  }

  .wo__title{
    font-size:46px;
    line-height:1.15;
    font-weight:900;
    margin:0 0 16px 0;

    text-transform: uppercase;
  }

  .wo__title span{ color:var(--bra3); }

  .wo__desc{
    margin:0;
    font-size:16px;
    line-height:1.7;
  }

  .wo__grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
    align-items:stretch;
    
  }

  .wo__card{
    position:relative;
    border-radius:22px;
        background-color: #00000018;
    border:1px solid #00000000;
    padding:26px 26px 24px;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;

  }

  

  .wo__card:hover{
    transform:translateY(-6px);
    border-color:var(--bra2);

  }


  .rocket{
    position: absolute;
    display: block;
    width: 75px;
    top: -20px;
    left: -25px;
  }

  .flame {
    position: absolute;
    display: block;
    width: 60px;
    top: -20px;
    left: -15px;
  }


  .wo__cardTitle{
    margin: 0px 0 15px 20px;
    font-size:32px;
    font-weight:900;

  }

  .wo__cardDesc{
    margin:0 0 16px 0;
    font-size:17px;
    line-height:1.65;
    color:#ffffffd3;
  }

  .wo__list{
    list-style:none;
    padding:0;
    margin:0 0 22px 0;
    display:flex;
    flex-direction:column;
    gap:10px;
  }

  .wo__list li{
    position:relative;
    padding-left:28px;
    font-weight:600;
    color:#ffffff;
    font-size:15px; 
  }

  .wo__list li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#2dc3ff;
    font-weight:900;
  }

  .wo__actions{
    display:flex;
    gap:12px;
    align-items:center;
    margin-top:auto;
  }




  /* featured card */
  .wo__card--featured{
    border-color:#184cac59;
    box-shadow:0 22px 70px #1c8fc463;
  }

  .wo__badge{
    position:absolute;
    top:16px;
    right:16px;
    background:#1c8fc4;
    font-weight:900;
    font-size:12px;
    padding:8px 10px;
    border-radius:999px;
  }

    .wo__badge2{
    position:absolute;
    top:16px;
    right:16px;
    opacity: 0.7;
    font-weight:900;
    font-size:12px;
    padding:8px 10px;
    border-radius:999px;
  }

  /* responsive */
  @media (max-width: 980px){
    .wo__grid{ grid-template-columns:1fr; }
    .wo__title{ font-size:38px; }
  }














/* ========== nabidka webu ========== */
/* ========== nabidka webu ========== */
/* ========== nabidka webu ========== */
/* ========== nabidka webu ========== */

.full-service{
  color: var(--tx2);
  padding:110px 0;
}

.fs__wrap{
  max-width:1100px;
  margin:0 auto;
  padding:0 24px;
}

.fs__head{
  max-width:720px;
  margin-bottom:36px;
}

.fs__label{
  display:inline-block;
  font-size:14px;
  font-weight:800;
  letter-spacing:1px;
  color:var(--bra3);
  margin-bottom:14px;
}

.fs__title{
  font-size:44px;
  line-height:1.15;
  font-weight:900;
  margin:0 0 16px 0;

}

.fs__title span{   color:var(--bra3); }

.fs__intro{
  margin:0;
  font-size:16px;
  line-height:1.7;

}

.fs__content{
  max-width:820px;
  font-size:17px;
  line-height:1.8;

}

.fs__content p{
  margin:0 0 18px 0;
}

.fs__content strong{
  color:#ffffff;
  font-weight:800;
}

.fs__list{
  list-style:none;
  padding:0;
  margin:28px 0 0 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 28px;
}

.fs__list li{
  position:relative;
  padding-left:28px;
  font-weight:700;

}

.fs__list li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--bra3);
  font-weight:900;
}



.dots-list{

}

.dots-list p{
      font-size: 18px;

      display: flex;
      justify-content: space-between;
      color: #ffffff;
      line-height: 30px;
}

.dots {
      color: #ff6200;
      font-weight: bold;
}



.fs__cta{
  margin-top:42px;
  display:flex;
  align-items:center;
  gap:22px;
}



.fs__note{
  font-size:14px;
  color:#ffffffcc;
}

@media (max-width: 800px){
  .fs__title{ font-size:36px; }
  .fs__list{ grid-template-columns:1fr; }
  .fs__cta{ flex-direction:column; align-items:flex-start; }
}














/* ========== time line ========== */
/* ========== time line ========== */
/* ========== time line ========== */
/* ========== time line ========== */

.process-timeline{
  padding:110px 0;
  color: var(--tx2);
}

.pt__wrap{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

.pt__head{
  max-width:720px;
  margin-bottom:52px;
}

.pt__label{
  display:inline-block;
  font-size:14px;
  font-weight:800;
  letter-spacing:1px;
  color:var(--bra3);
  margin-bottom:14px;
}

.pt__title{
  font-size:44px;
  line-height:1.15;
  font-weight:900;
  margin:0 0 16px 0;

}

.pt__title span{   color:var(--bra3); }

.pt__intro{
  margin:0;
  font-size:16px;
  line-height:1.7;
}

/* timeline */
.pt__timeline{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:32px;
  position:relative;
}

/* spojovací linka */
.pt__timeline::before{
  content:"";
  position:absolute;
  top:28px;
  left:0;
  right:0;
  height:2px;
  background:linear-gradient(
    to right,
    rgba(60, 245, 50, 0.555),
    rgba(45, 237, 255, 0.449),
    rgba(44, 20, 201, 0.2)
  );
}

.pt__step{
  position:relative;
  padding-top:56px;
  text-align:left;
}

.pt__dot{
  position:absolute;
  top:0;
  left:0;
  width:56px;
  height:56px;
  border-radius:999px;
  background:#000000;
  border:2px solid #000000;
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:25px;
}

.pt__step h3{
  margin-top: 50px;
  font-size:18px;
  font-weight:900;
  color:#ffffff;
}

.pt__step p{
  margin:0;
  font-size:15px;
  line-height:1.6;
  color:#ffffff;
}

/* mobile → vertical */
@media (max-width: 900px){
  .pt__timeline{
    grid-template-columns:1fr;
    gap:36px;
  }

  .pt__timeline::before{
    top:0;
    left:26px;
    bottom:0;
    width:2px;
    height:auto;
    background:linear-gradient(
      to bottom,
      rgba(255,45,111,0.2),
      rgba(255,45,111,0.6),
      rgba(255,45,111,0.2)
    );
  }

  .pt__step{
    padding-left:72px;
    padding-top:0;
  }

  .pt__dot{
    left:0;
    top:0;
  }
}












/* ========== faq ========== */
/* ========== faq ========== */
/* ========== faq ========== */
/* ========== faq ========== */

.faq-section {
  padding: 60px 20px;
  height: 600px;

}

.faq-title {
  text-align: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 45px;

}

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 0.99vw;
  font-weight: 600;
  padding: 15px;
  cursor: pointer;
  color: #ffffff;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.5em;
  transition: transform 0.3s;
  margin-top: -12px;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
  color: #ffffff;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
    .faq-title {
        font-size: 5.13vw;
    }
    .faq-question {
        font-size: 2vw;
    }

}
@media (max-width: 762px) {
    .faq-title {
        font-size: 6.13vw;
    }
    .faq-question {
        font-size: 3vw;
    }
}













    















/* ========== Reference ========== */
/* ========== Reference ========== */
/* ========== Reference ========== */
/* ========== Reference ========== */
/* ========== Reference ========== */
/* ========== Reference ========== */
/* ========== Reference ========== */
/* ========== Reference ========== */
/* ========== Reference ========== */
/* ========== Reference ========== */
/* ========== Reference ========== */

.ref-hero{

  padding: 250px 0 200px 0;
  position:relative;
  overflow:hidden;
  color:var(--tx2);
}

.ref-hero::before{
  content:"";
  position:absolute;
  top:-240px;
  right:-240px;
  width:520px;
  height:520px;
  border-radius:999px;
  pointer-events:none;
}

.rh__wrap{
  max-width:1450px;
  margin:0 auto;
  padding:0 24px;
}

.rh__grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:56px;
}

.rh__label{
  font-size:14px;
  font-weight:800;
  letter-spacing:1px;
}

.rh__title{
  font-size:46px;
  font-weight:900;
  line-height:1.15;
  margin:14px 0;
}

.rh__title span{ color:var(--bra3); }

.rh__desc{
  font-size:16px;
  line-height:1.7;

  margin-bottom:26px;
}

.rh__proof{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-bottom:28px;
}

.rh__proofItem{
  border-left:3px solid var(--bra3);
  padding-left:14px;
}

.rh__proofNum{
  font-size:34px;
  font-weight:900;
}

.rh__proofText{
  font-size:15px;
  opacity: 0.7;
  font-weight:700;
}

.rh__cta{
  display:flex;
  gap:12px;
}


/* RIGHT */
.rh__clients{
  display:flex;
  gap:10px;
  margin-bottom:14px;
  margin-top: 60px;
}

.rh__client{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(17,17,17,0.12);
  background:#fff;
  font-weight:900;
  cursor:pointer;
}

.rh__client.is-active{
  background:var(--bra);
  color: var(--tx2);
  border-color:#000000;
}

.rh__reviews{
  position:relative;
  min-height:220px;
}

.rh__quote{
  position:absolute;
  inset:0;
  opacity:0;
  transform:translateY(8px);
  pointer-events:none;
  transition:.25s;
  border-radius:22px;
  border:1px solid rgba(17,17,17,0.10);
  box-shadow:0 18px 55px rgba(0,0,0,0.06);
  padding:22px;
}

.rh__quote.is-active{
  opacity:1;
  transform:none;
  pointer-events:auto;
  position:relative;
}

.rh__stars{ color:#f7ef10; margin-bottom:10px; font-size: 20px;}

.rh__quoteMeta{
  display:flex;
  gap:12px;
  align-items:center;
}

.rh__avatar{
  width:44px;
  height:44px;
  border-radius:999px;
  background:rgba(255, 255, 255, 0.1);
  color:var(--bra2);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

@media (max-width:980px){
  .rh__grid{ grid-template-columns:1fr; }
}






















.ref-selected{
  color: var(--tx2);
  padding:90px 0;
}

.rs__wrap{
  max-width:1100px;
  margin:0 auto;
  padding:0 24px;
}

.rs__head{
  max-width:720px;
  margin-bottom:48px;
}

.rs__title{
  font-size:42px;
  font-weight:900;
  line-height:1.15;
  margin:0 0 14px;

}

.rs__title span{ color:var(--bra3); }

.rs__desc{
  font-size:16px;
  line-height:1.7;
}

.rs__project{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:36px;
  margin-bottom:70px;
  align-items:center;
}

.rs__media img{
  width:100%;
  border-radius:24px;
  box-shadow:0 20px 60px rgba(0,0,0,0.12);
}

.rs__tag{
  display:inline-block;
  margin-bottom:10px;
  font-size:13px;
  font-weight:800;
  color:var(--bra3);
}

.rs__content h3{
  margin:0 0 14px;
  font-size:28px;
  font-weight:900;
}

.rs__content p{
  margin:0 0 10px;
  font-size:15px;
  line-height:1.7;
}

.rs__btn{
  margin-top:14px;
}

@media (max-width: 900px){
  .rs__project{
    grid-template-columns:1fr;
  }
}































/* ========== kontakt ========== */
/* ========== kontakt ========== */
/* ========== kontakt ========== */
/* ========== kontakt ========== */
/* ========== kontakt ========== */
/* ========== kontakt ========== */
/* ========== kontakt ========== */
/* ========== kontakt ========== */
/* ========== kontakt ========== */
    
.kontakt{
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -100PX;
}
.centered {
    margin-top: 200px;
    width: 1300px; /* Nastavte šířku dle potřeby */
    height: 500px;
    text-align: center;

    display: flex; /* Použití flexbox layoutu */
    justify-content: center; /* Zarovnání prvků na střed v ose X */
    align-items: center; /* Zarovnání prvků na střed v ose Y */
}
.rectangle {
    width: 420px;
    height: 250px;
    display: inline-block;
    margin: 10px; /* Odsazení mezi obdélníky */
    position: relative; /* Nastavení relativní pozice pro potomka */
}
.circle {
    width: 125px;
    height: 125px;
    margin-top: -20px;    
    border: 3px solid #22e5ff61;
    border-radius: 50%; /* Vytvoření kruhového tvaru */
    position: absolute; /* Nastavení absolutní pozice uvnitř obdélníku */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Posunutí kolečka na střed obdélníku */
    -webkit-transition:all 0.2s ease-in-out;
    transition:all 0.2s ease-in-out;
    cursor: pointer;
    user-select: none;
  }
  .circle:hover {
    background-color: #ffffff19;
  }
  .kontaktIcon{
    width: 70px;
    margin-top: 25px;
  }
  .circle:hover img.kontaktIcon {
    filter: brightness(0) saturate(100%) invert(67%) sepia(18%) saturate(1000%) hue-rotate(180deg) brightness(95%) contrast(97%);


  }
  .KontaktText{
    margin-top: 230px;
    color: #f1f1f1;
    font-size: 25px;
    font-weight: 400;
  }
  
  .centeredmapa{
    margin-top: 50px;
    width: 100%; /* Nastavte šířku dle potřeby */
    height: 100%; /* Nastavte výšku dle potřeby */
    display: flex; /* Použití flexbox layoutu */
    justify-content: center; /* Zarovnání prvků na střed v ose X */
    align-items: center; /* Zarovnání prvků na střed v ose Y */
  }
  .kontaktyMap2{
    display: none;
}


  @media(max-width:1300px){

    .centered {
        height: auto; /* Adjust height to fit content */
        text-align: center;
        display: flex;
        flex-direction: column; /* Stack rectangles vertically */
        align-items: center;
    }
    
    .rectangle {
        margin-top: 70px;
    }
    .kontaktyMap2{
        display: block;
    }
    .kontaktyMap{
        display: none;
    }
    
  }

  .googlemap{
    margin-top: 200px;
    padding-bottom: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
  }









    





















































/* === MAIN BUTTON – WEB === */
/* === MAIN BUTTON – WEB === */
/* === MAIN BUTTON – WEB === */
/* === MAIN BUTTON – WEB === */
/* === MAIN BUTTON – WEB === */
/* === MAIN BUTTON – WEB === */
/* === MAIN BUTTON – WEB === */
.main-btn-web {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--bra2), var(--bra));
  color: var(--tx2);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
  overflow: hidden;
  text-decoration: none;
}


.main-btn-web:before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 3s infinite;
  pointer-events: none;
}


.main-btn-web:hover {
  background: linear-gradient(135deg, var(--bra), var(--bra2));
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 15px rgba(72, 188, 242, 0.4);
}


.sec-btn-web{
  display: inline-block;
  padding: 0.6rem 1.4rem;
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  letter-spacing: 0.4px;
  position: relative;
  overflow: hidden;
}

/* Hover efekt – jemné prosvícení */
.sec-btn-web:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}




.save{
      border:2px solid rgba(56, 156, 124, 0.25);
    color:#4bb08e;
}















































