/* =========================================
   RESET
========================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{

  font-family:'Inter',sans-serif;

  background:
    linear-gradient(
      180deg,
      #000814 0%,
      #000a1d 18%,
      #0c1016 36%,
      #12161c 52%,
      #0d1117 68%,
      #000a1d 86%,
      #000814 100%
    );

  color:#fff;
  overflow-x:hidden;
}


/* =========================================
   ATMOSPHERE
   ŽÁDNÁ SVĚTLE MODRÁ — JEN ŽLUTÝ NÁDECH
========================================= */

body::before{

  content:"";
  position:fixed;
  inset:0;

  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(255,222,0,.025),
      transparent 24%
    ),

    radial-gradient(
      circle at 82% 18%,
      rgba(255,190,0,.014),
      transparent 34%
    ),

    radial-gradient(
      circle at 70% 82%,
      rgba(255,200,0,.010),
      transparent 36%
    );

  pointer-events:none;
  z-index:-2;
}

body::after{

  content:"";
  position:fixed;
  inset:0;

  background:
    rgba(0,0,0,.20);

  pointer-events:none;
  z-index:-1;
}


/* =========================================
   NAV
========================================= */

nav{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    padding:28px 4vw;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:999999;

    background:
        rgba(5,10,20,.18);

    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);

    border-bottom:
        1px solid rgba(255,255,255,.06);

}

nav::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-70px;

    width:100%;
    height:70px;

    pointer-events:none;

    background:
        linear-gradient(
            180deg,
            rgba(0,8,20,.45) 0%,
            rgba(0,8,20,.22) 35%,
            rgba(0,8,20,0) 100%
        );

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

}


/* =========================================
   CONTENT ABOVE TRUST PATTERN
========================================= */

.hero,
.video-section,
.contact{

  position:relative;

  z-index:2;
}

/* =========================================
   LOGO
========================================= */

.logo{
  display:flex;
  align-items:center;
  gap:1px;              /* bylo 18px */
}

.logo-divider{
  width:1px;
  height:56px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.24),
      rgba(255,255,255,.04)
    );

  margin-left:-20px;
  margin-right:6px;
}


.logo-mark{

  font-size:42px;
  font-weight:600;
  color:#ffde00;
  letter-spacing:.08em;

  text-shadow:
    0 0 24px rgba(255,222,0,.24);
}

.logo-mark img{
  width:130px;
  height:auto;
  display:block;
}


.logo-text h3{

  font-size:18px;
  font-weight:600;
  letter-spacing:.16em;
}

.logo-text p{

  margin-top:4px;
  font-size:12px;
  letter-spacing:.22em;
  color:#8f98a8;
}


/* =========================================
   MENU
========================================= */

.menu{
  display:flex;
  gap:42px;
  margin-right:60px;
}

.menu a{

  position:relative;

  text-decoration:none;
  color:#dfe5ef;

  font-size:14px;

  letter-spacing:.12em;

  transition:
    color .3s ease,
    transform .3s ease;
}

.menu a::after{

  content:"";

  position:absolute;

  left:0;
  bottom:-8px;

  width:0%;
  height:1px;

  background:#ffde00;

  transition:.35s ease;
}

.menu a:hover{

  color:#ffde00;

  transform:
    translateY(-1px);
}

.menu a:hover::after{

  width:100%;
}


/* =========================================
   HEADER CONTACTS
========================================= */

.header-contact{

  display:flex;
  flex-direction:column;

  justify-content:center;
  align-items:flex-start;

  min-width:190px;
  height:72px;

  padding:12px 18px;

  border-radius:18px;

  text-decoration:none;

  color:#ffffff;

  border:
    2px solid rgba(255,222,0,.25);

  background:
    rgba(255,190,0,.03);

  transition:.3s ease;
}

.header-contact::after{
  display:none !important;
}

.header-contact strong{

  display:block;

  font-size:15px;
  font-weight:700;

  margin-bottom:4px;

  letter-spacing:0;
}

.header-contact span{

  display:block;

  font-size:13px;

  color:#bfc7d3;

  letter-spacing:0;
}

.header-contact:hover{

  color:#ffde00;

  transform:translateY(-2px);

  border-color:
    rgba(255,222,0,.55);

  box-shadow:
    0 0 18px rgba(255,222,0,.15);
}

.header-contact:hover strong,
.header-contact:hover span{

  color:#ffde00;
}


/* =========================================
   FLOATING TRANSPARENCY
========================================= */

.floating-legal{

  position:fixed;

  top:40px;
  right:40px;

  width:52px;
  height:52px;

  border-radius:50%;

  background:#ffde00;

  color:#111;

  border:none;

  font-size:28px;
  font-weight:700;

  z-index:1000;

  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;

  opacity:0;
  visibility:hidden;

  transform:translateY(-15px);

  transition:
    opacity .35s ease,
    transform .35s ease,
    visibility .35s ease;
}


.floating-legal.show{

  opacity:1;

  visibility:visible;

  transform:translateY(0);
}

.floating-legal span{

  position:relative;

  left:0px;

  top:0px;
}

/* =========================================
   COOKIE TAB
========================================= */

.cookie-tab{

  position:fixed;

  left:0;
  top:50%;

  transform:translateY(-50%);

  width:32px;

  padding:18px 0;

  background:rgba(0,0,0,.15);

  color:#ffde00;

  font-size:14px;

  font-weight:700;

  text-align:center;

  line-height:1.5;

  letter-spacing:.14em;

  cursor:pointer;

  z-index:9998;

  border:
    2px solid rgba(255,222,0,.45);

  border-left:none;

  border-radius:
    0 18px 18px 0;

  box-shadow:
    0 0 15px rgba(255,222,0,.12);

  backdrop-filter:
    blur(10px);

  transition:
    .3s ease;
}

.cookie-tab:hover{

  width:42px;

  border-color:
    rgba(255,222,0,.8);

  box-shadow:
    0 0 25px rgba(255,222,0,.25);
}

/* =========================================
   HERO SOCIALS OVERLAY
========================================= */

.hero-socials{

  position:absolute;

  top:18px;
  right:18px;

  display:flex;
  align-items:center;

  gap:18px;

  z-index:5;
}

/* =========================================
   SOCIAL LABEL
========================================= */

.socials-label{

  display:flex;
  align-items:center;

  gap:12px;

  font-size:15px;

  font-weight:500;

  letter-spacing:.22em;

  text-transform:uppercase;

  color:
    rgba(255,255,255,.92);

  text-shadow:
    0 0 18px rgba(255,255,255,.08);

  animation:
    followPulse 2.6s ease-in-out infinite;
}

.socials-label span{

  color:
    rgba(255,255,255,.92);

  font-size:20px;

  position:relative;

  top:-1px;

  text-shadow:
    0 0 18px rgba(255,222,0,.34);
}

/* =========================================
   FOLLOW PULSE
========================================= */

@keyframes followPulse{

  0%{

    transform:
      scale(1);

    opacity:.72;
  }

  50%{

    transform:
      scale(1.08);

    opacity:1;
  }

  100%{

    transform:
      scale(1);

    opacity:.72;
  }
}

/* =========================================
   SOCIALS
========================================= */

.socials{

  display:flex;
  align-items:center;

  gap:18px;
}

.socials a{

  width:48px;
  height:48px;

  border-radius:50%;

  display:flex;
  justify-content:center;
  align-items:center;

  text-decoration:none;

  flex-shrink:0;

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.socials a:hover{

  transform:
    translateY(-2px)
    scale(1.06);
}

/* =========================================
   FACEBOOK
========================================= */

.social-facebook{

  background:
    #1877f2;

  box-shadow:
    0 0 24px rgba(24,119,242,.28);
}

/* =========================================
   INSTAGRAM
========================================= */

.social-instagram{

  background:

    radial-gradient(
      circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285AEB 90%
    );

  box-shadow:
    0 0 24px rgba(214,36,159,.24);
}

/* =========================================
   ICONS
========================================= */

.socials svg{

  width:20px;
  height:20px;

  stroke:#fff;
  stroke-width:2;

  fill:none;
}

/* =========================================
   HERO
========================================= */

.hero{

  min-height:100vh;

  display:flex;
  align-items:center;

  padding:
    150px 6vw 80px;

  position:relative;
}

.hero-grid{

  width:100%;

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:80px;

  align-items:center;

  position:relative;
}

.hero-left{
  max-width:720px;

position:relative;
z-index:2;
}

.hero-label{

  color:#ffde00;
  font-size:13px;
  letter-spacing:.36em;
  margin-bottom:34px;
}

.hero h1{

  font-size:clamp(58px,7vw,118px);
  line-height:.96;
  font-weight:300;
  letter-spacing:-.06em;
}

.hero h1 span{

  color:#ffde00;

  text-shadow:
    0 0 18px rgba(255,222,0,.16);
}

.hero-text{

  margin-top:42px;
  max-width:620px;

  font-size:20px;
  line-height:1.8;
  color:#b6c0cf;
}

/* =========================================
   BUTTONS
========================================= */

.hero-buttons{

  display:flex;

  align-items:center;

  gap:34px;

  margin-top:52px;

  flex-wrap:wrap;
}

.btn{

  height:58px;

  padding:0 34px;

  border:none;

  border-radius:18px;

  font-size:15px;

  font-weight:600;

  letter-spacing:.06em;

  cursor:pointer;

  transition:.35s;
}

/* =========================================
   PRIMARY BUTTON
========================================= */

.btn-primary{

  background:#ffde00;

  color:#111;

  box-shadow:
    0 0 28px rgba(255,222,0,.20),
    0 14px 40px rgba(0,0,0,.44);
}

.btn-primary:hover{

  transform:
    translateY(-3px);

  box-shadow:
    0 0 40px rgba(255,222,0,.30),
    0 20px 44px rgba(0,0,0,.48);
}

/* =========================================
   HERO LINKS
========================================= */

.hero-links{

  display:flex;

  align-items:center;

  gap:30px;

  flex-wrap:wrap;
}

.hero-links a{

  position:relative;

  text-decoration:none;

  color:#b8c0cd;

  font-size:15px;

  letter-spacing:.08em;

  transition:
    color .3s ease,
    transform .3s ease;
}

.hero-links a::after{

  content:"";

  position:absolute;

  left:0;
  bottom:-8px;

  width:0%;
  height:1px;

  background:#ffde00;

  transition:.35s;
}

.hero-links a:hover{

  color:#ffde00;

  transform:
    translateY(-1px);
}

.hero-links a:hover::after{

  width:100%;
}

/* =========================================
   HERO IMAGE
========================================= */
.hero-image{

  position:relative;

  display:flex;
  justify-content:center;
  align-items:center;

  overflow:hidden;

  border-radius:36px;

  border:
    2px solid rgba(255,210,0,.24);

  box-shadow:
    0 20px 50px rgba(0,0,0,.34);
}


.hero-image::before{

  content:"";

  position:absolute;

  width:560px;
  height:560px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(255,190,0,.03),
      transparent 72%
    );

  filter:blur(90px);
}

.hero-image img{

  width:100%;

  height:780px;

  border-radius:36px;

  object-fit:cover;

  object-position:center 30%;

  box-shadow:
    0 40px 90px rgba(0,0,0,.55);

  transition:1.2s;
}

.hero-image:hover img{

  transform:scale(1.05);
}

/* =========================================
   PHOTO QUOTE
========================================= */

.photo-quote{

  position:absolute;

  right:-1px;
  bottom:-1px;

  z-index:6;

  padding:
    16px 26px;

  border-radius:
  0 0 18px 18px;

  background:
    rgba(0,0,0,.48);

  backdrop-filter:
    blur(10px);

  border:
  0px solid rgba(255,222,0,.52);

  overflow:hidden;

  min-width:705px;

  height:45px;

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;
}

/* =========================================
   QUOTE TEXT
========================================= */

.quote-text{

  position:absolute;

  left:50%;

  transform:
    translateX(-50%)
    translateY(12px);

  width:100%;

  text-align:center;

  font-size:18px;

  letter-spacing:.08em;

  color:#eef2f7;

  opacity:0;

  transition:
    opacity .8s ease,
    transform .8s ease;
}

/* =========================================
   ACTIVE QUOTE
========================================= */

.quote-text.active{

  opacity:1;

  transform:
    translateX(-50%)
    translateY(0);
}

/* =========================================
   PHOTO LINE 2
========================================= */

.photo-line{

  position:absolute;

  right:320px;

  bottom:60px;

  z-index:5;

  height:34px;
  width:420px;

  padding:
    0 26px;

  display:flex;
  align-items:center;

  border-radius:0px;

  background:
  rgba(255,255,255,.60);

  backdrop-filter:
    blur(12px);

  border:
    1px solid rgba(255,255,255,.04);

  overflow:hidden;
}

/* =========================================
   LINE FADE OUT
========================================= */

.photo-line::after{

  content:"";

  position:absolute;

  right:-120px;
  top:0;

  width:180px;
  height:100%;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.10),
      rgba(0,0,0,0)
    );
}

/* =========================================
   PHOTO LINE TEXT
========================================= */

.photo-line span{

  position:relative;

  z-index:2;

  font-size:12px;

  letter-spacing:.18em;

  text-transform:uppercase;

  color:
    rgba(255,255,255,.72);

  white-space:nowrap;
}

/* =========================================
   YELLOW NUMBER
========================================= */

.quote-text strong{

  color:#ffde00;

  font-weight:600;

  text-shadow:
    0 0 14px rgba(255,222,0,.22);
}

/* =========================================
   SECTION
========================================= */

.section{

  padding:
    180px 6vw;
}

.section-grid{

  display:grid;
  grid-template-columns:1fr 1fr;

  gap:90px;
  align-items:center;
}

.section-image img{

  width:100%;
  border-radius:30px;
  object-fit:cover;

  box-shadow:
    0 30px 80px rgba(0,0,0,.45);
}

.section-label{

  color:#ffde00;

  font-size:13px;
  letter-spacing:.28em;
  margin-bottom:26px;
}

.section h2{

  font-size:clamp(42px,5vw,76px);
  line-height:1.04;
  font-weight:300;
  letter-spacing:-.05em;
}

.section p{

  margin-top:34px;

  color:#b3bccb;
  font-size:20px;
  line-height:1.8;
  max-width:640px;
}

/* =========================================
   CARDS
========================================= */

.cards{

  margin-top:90px;

  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:28px;
}

.card{

  padding:42px;
  border-radius:30px;

  background:
    linear-gradient(
      180deg,
      rgba(255,190,0,.015),
      rgba(10,8,0,.12)
    );

  border:
    1px solid rgba(255,210,0,.05);

  transition:.4s;
}

.card:hover{

  transform:translateY(-8px);

  border-color:
    rgba(255,222,0,.20);

  box-shadow:
    0 0 30px rgba(255,222,0,.05),
    0 30px 60px rgba(0,0,0,.45);
}

.card h3{

  font-size:28px;
  font-weight:400;
}

.card p{

  margin-top:22px;

  font-size:17px;
  line-height:1.8;
  color:#aeb7c6;
}

/* =========================================
   VIDEO SECTION
========================================= */

.video-section{

  padding:
    180px 6vw;

  position:relative;
}

.video-header{

  text-align:center;

  margin-bottom:80px;
}

.video-label{

  color:#ffde00;

  font-size:13px;

  letter-spacing:.34em;

  margin-bottom:24px;
}

.video-header h2{

  font-size:clamp(44px,5vw,82px);

  font-weight:300;

  letter-spacing:-.05em;

  color:#f1f3f7;
}

.video-header p{

  margin-top:26px;

  color:#b8c0cd;

  font-size:20px;

  line-height:1.8;
}


/* =========================================
   VIDEO GRID
========================================= */

.video-grid{

  display:grid;

  grid-template-columns:
    repeat(3,1fr);

  gap:30px;
}

/* =========================================
   VIDEO CARD
========================================= */

.video-card{

  position:relative;

  border-radius:34px;

  overflow:hidden;

  text-decoration:none;

  background:
    linear-gradient(
      180deg,
      rgba(255,190,0,.02),
      rgba(10,8,0,.18)
    );

  border:
    1px solid rgba(255,210,0,.06);

  transition:.45s;

  box-shadow:
    0 20px 50px rgba(0,0,0,.38);
}

.video-card:hover{

  transform:
    translateY(-10px);

  border-color:
    rgba(255,222,0,.22);

  box-shadow:
    0 0 34px rgba(255,222,0,.08),
    0 30px 70px rgba(0,0,0,.48);
}

/* =========================================
   ACTIVE VIDEO CARD
========================================= */

.video-card.active{

  transform:
    translateY(-10px)
    scale(1.02);

  border-color:
    rgba(255,222,0,.72);

  box-shadow:

    0 0 18px rgba(255,222,0,.34),

    0 0 42px rgba(255,222,0,.22),

    0 0 90px rgba(255,222,0,.12),

    0 30px 70px rgba(0,0,0,.48);
}

/* =========================================
   VIDEO IMAGE
========================================= */

.video-thumb{

  position:relative;

  height:320px;

  overflow:hidden;
}

.video-thumb img{

  width:100%;
  height:100%;

  object-fit:cover;

  transition:1.2s;
}

.video-card:hover .video-thumb img{

  transform:scale(1.06);
}

/* =========================================
   PROCESS SECTION
========================================= */

.process-section{

  padding:
    140px 6vw;

  position:relative;
}

/* =========================================
   PROCESS HEADER
========================================= */

.process-header{

  text-align:center;

  margin-bottom:80px;
}

.process-label{

  color:#ffde00;

  font-size:13px;

  letter-spacing:.34em;

  margin-bottom:24px;
}

.process-header h2{

  font-size:clamp(44px,5vw,82px);

  font-weight:300;

  letter-spacing:-.05em;

  color:#f1f3f7;
}

.process-header p{

  margin-top:26px;

  color:#b8c0cd;

  font-size:20px;

  line-height:1.8;
}

/* =========================================
   PROCESS GRID
========================================= */

.process-grid{

  display:grid;

  grid-template-columns:
    repeat(3,1fr);

  gap:30px;
}

/* =========================================
   PROCESS CARD
========================================= */

.process-card{

  position:relative;

  padding:46px;

  border-radius:34px;

  overflow:hidden;

  background:
    linear-gradient(
      180deg,
      rgba(255,190,0,.02),
      rgba(10,8,0,.18)
    );

  border:
    2px solid rgba(255,210,0,.24);

  box-shadow:
    0 20px 50px rgba(0,0,0,.34);

  transition:.4s;
}

.process-card:hover{

  transform:
    translateY(-8px);

  border-color:
    rgba(255,222,0,.18);

  box-shadow:
    0 0 40px rgba(255,222,0,.08),
    0 30px 70px rgba(0,0,0,.44);
}

/* =========================================
   PROCESS NUMBER
========================================= */

.process-number{

  font-size:72px;

  font-weight:200;

  color:
    rgba(255,222,0,.28);

  margin-bottom:26px;

  line-height:1;
}

/* =========================================
   PROCESS TITLE
========================================= */

.process-card h3{

  font-size:28px;

  font-weight:400;

  color:#f1f3f7;
}

/* =========================================
   PROCESS TEXT
========================================= */

.process-card p{

  margin-top:22px;

  color:#b8c0cd;

  line-height:1.9;

  font-size:17px;
}

/* =========================================
   PLAY BUTTON
========================================= */

.play-btn{

  position:absolute;

  left:50%;
  top:50%;

  transform:
    translate(-50%,-50%);

  width:88px;
  height:88px;

  border-radius:50%;

  background:
    rgba(0,0,0,.46);

  backdrop-filter:blur(10px);

  border:
    1px solid rgba(255,255,255,.12);

  display:flex;
  justify-content:center;
  align-items:center;

  box-shadow:
    0 0 30px rgba(255,222,0,.16);
}

.play-btn::before{

  content:"";

  margin-left:6px;

  border-left:
    24px solid #ffde00;

  border-top:
    14px solid transparent;

  border-bottom:
    14px solid transparent;
}

/* =========================================
   VIDEO CONTENT
========================================= */

.video-content{

  padding:25px;
}

.video-content h3{

  font-size:30px;

  font-weight:400;

  color:#f1f3f7;
}

.video-content p{

  margin-top:18px;

  color:#b8c0cd;

  line-height:1.8;

  font-size:17px;
}

.video-link{

  margin-top:24px;

  display:flex;
  align-items:center;

  gap:10px;

  color:#ffde00;

  font-size:13px;

  letter-spacing:.22em;

  text-transform:uppercase;
}

/* =========================================
   CONTACT
========================================= */

.contact{

  padding:180px 6vw 120px;

  max-width:1400px;

  margin:auto;
}

.contact-header{

  text-align:center;

  padding-top:40px;

  margin-bottom:70px;
}

.contact-label{

  color:#ffde00;

  font-size:13px;

  letter-spacing:.34em;

  margin-bottom:24px;
}

.contact-header h2{

  font-size:clamp(54px,7vw,110px);

  font-weight:300;

  letter-spacing:-.05em;

  color:#f1f3f7;
}

.contact-header h2 span{

  color:#ffde00;
}

/* =========================================
   LAYOUT
========================================= */

.contact-layout{

  display:grid;

  grid-template-columns:
    420px 1fr;

  gap:60px;

  align-items:start;
}

/* =========================================
   LEFT
========================================= */

.contact-left{

  position:relative;
}

.contact-story{
  max-width:380px;
  color:#b8c0cd;

  font-size:20px;

  line-height:1.8;
}

.contact-story p{

  margin-bottom:6px;
}

/* =========================================
   RIGHT
========================================= */

.contact-right{

  width:100%;
}


/* =========================================
   FORM PANEL
========================================= */

.contact-form{

  padding:36px;

  border-radius:34px;

  background:
    linear-gradient(
      180deg,
      rgba(255,190,0,.015),
      rgba(10,8,0,.16)
    );

  border:
    2px solid rgba(255,210,0,.15);

  box-shadow:
    0 0 34px rgba(255,222,0,.04);
}

.contact-row{

  display:grid;

  grid-template-columns:
    1fr 1fr;

  gap:16px;

  margin-bottom:16px;
}

.contact-form input,
.contact-form textarea{

  width:100%;

  border:none;

  border-radius:18px;

  background:
    rgba(255,190,0,.025);

  color:#fff;

  outline:none;

  padding:18px 22px;
}

.contact-form textarea{

  height:140px;

  resize:none;

  margin-top:16px;
}

.contact-form button{

  width:100%;

  height:68px;

  margin-top:20px;

  border:none;

  border-radius:18px;

  background:#ffde00;

  color:#111;

  font-size:18px;

  font-weight:600;

  cursor:pointer;

  box-shadow:
    0 0 30px rgba(255,222,0,.25);
}

/* =========================================
   CONTACT LINKS
========================================= */

/* =========================================
   CONTACT LINKS
========================================= */

.contact-links{

  display:grid;

  grid-template-columns:
    repeat(2,1fr);

  gap:22px;

  width:100%;
}

.contact-link{

  min-height:140px;

  padding:30px;

  padding-top:34px;

  border-radius:24px;

  text-decoration:none;

  color:#fff;

  display:flex;

  flex-direction:column;

  justify-content:flex-start;

  background:
    rgba(255,190,0,.03);

  border:
    2px solid rgba(255,210,0,.25);

  transition:.35s ease;
}

.contact-link:hover{

  transform:translateY(-4px);

  border-color:
    rgba(255,222,0,.55);

  box-shadow:
    0 0 24px rgba(255,222,0,.12);
}

.contact-link:hover strong,
.contact-link:hover span{

  color:#ffde00;
}

.contact-link strong{

  display:block;

  font-size:22px;

  margin-bottom:10px;

  color:#ffffff;

  transition:.35s ease;
}

.contact-link span{

  color:#bfc7d3;

  font-size:15px;

  transition:.35s ease;
}

/* =========================================
   STICKMAN
========================================= */

.contact-character{

  position:relative;

  width:160px;

  margin-top:40px;
}

.contact-character img{

  width:240px;

  display:block;
}

/* =========================================
   FOOTER
========================================= */

footer{

  padding:40px;

  text-align:center;
  color:#6f7b8f;
  font-size:14px;
}

/* =========================================
   scroll-margin-top
========================================= */

#finance,
#kontakt{

    scroll-margin-top:170px;

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:980px){

  .hero-grid,
  .section-grid{

    grid-template-columns:1fr;
  }

  .cards{

    grid-template-columns:1fr;
  }

  .menu{
    display:none;
  }

  .hero h1{
    font-size:72px;
  }

  .section h2{
    font-size:56px;
  }

  .contact-box h2{
    font-size:44px;
  }
}

/* =========================================
   AI TRIGGER
========================================= */

.ai-trigger{

  position:absolute;

  left:0;
  top:0;

  z-index:8;

  width:140px;
  height:140px;

  overflow:hidden;

  border-top-left-radius:36px;

  cursor:pointer;
}

/* =========================================
   GLASS
========================================= */

.ai-trigger-glass{

  position:absolute;

  inset:0;

  background:
    rgba(0,0,0,.10);

  backdrop-filter:
    blur(20px);

  -webkit-backdrop-filter:
    blur(20px);

  mask-image:
    linear-gradient(
      135deg,
      #000 0%,
      #000 49.5%,
      transparent 50%
    );

  -webkit-mask-image:
    linear-gradient(
      135deg,
      #000 0%,
      #000 49.5%,
      transparent 50%
    );

  border-right:
    1px solid rgba(255,222,0,.22);

  border-bottom:
    1px solid rgba(255,222,0,.22);

  transition:.4s;
}

/* =========================================
   HOVER
========================================= */

.ai-trigger:hover .ai-trigger-glass{

  background:
    rgba(0,0,0,.42);

  border-right:
    1px solid rgba(255,222,0,.45);

  border-bottom:
    1px solid rgba(255,222,0,.45);
}


/* =========================================
   TEXT
========================================= */

.ai-trigger span{

  position:absolute;

  top:28px;
  left:18px;

  z-index:2;

  color:#ffde00;

  font-size:13px;

  font-weight:600;

  letter-spacing:.24em;
}

/* =========================================
   AI OVERLAY
========================================= */

.ai-overlay{

  position:absolute;

  inset:0;

  z-index:20;

  display:flex;
  justify-content:center;
  align-items:center;

  padding:0;

  opacity:0;
  pointer-events:none;

  transition:.45s;

  background:
    rgba(0,0,0,.42);

  backdrop-filter:
    blur(10px);

  border-radius:36px;

  overflow:hidden;

  isolation:isolate;
}

.ai-overlay.active{

  opacity:1;

  pointer-events:auto;
}


/* =========================================
   AI WINDOW
========================================= */

.ai-window{

  width:100%;
  height:100%;

  border-radius:36px;

  overflow:hidden;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.24),
      rgba(0,0,0,.52)
    );

  border:
  1px solid rgba(255,222,0,.35);

  box-shadow:
    0 40px 100px rgba(0,0,0,.55);

  display:flex;
  flex-direction:column;
}


/* =========================================
   AI TOP
========================================= */

.ai-top{

  height:78px;

  padding:
    0 28px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  border-bottom:
    1px solid rgba(255,255,255,.06);
}

.ai-title{

  color:#f1f3f7;

  font-size:18px;

  letter-spacing:.06em;
}

.ai-close{

  width:42px;
  height:42px;

  border:none;

  border-radius:50%;

  background:
    rgba(255,255,255,.08);

  color:#fff;

  font-size:16px;

  transition:.3s;
}

.ai-close:hover{

  background:
    rgba(255,255,255,.14);
}
/* =========================================
   AI MESSAGES
========================================= */

.ai-messages{

  flex:1;

  padding:30px;

  overflow:auto;
}

.ai-message{

  max-width:520px;

  padding:22px;

  border-radius:24px;

  line-height:1.8;

  background:
    rgba(255,255,255,.06);

  color:#eef2f7;
}


/* =========================================
   QUICK BUTTONS
========================================= */

.ai-quick{

  padding:
    0 30px 20px;

  display:flex;
  flex-wrap:wrap;

  gap:14px;
}

.ai-quick button{

  height:42px;

  padding:
    0 18px;

  border:none;

  border-radius:30px;

  cursor:pointer;

  background:
    rgba(255,222,0,.08);

  color:#ffde00;

  border:
    1px solid rgba(255,222,0,.18);
}


/* =========================================
   AI INPUT
========================================= */

.ai-input{

  height:92px;

  padding:
    20px 30px;

  display:flex;

  gap:14px;

  border-top:
    1px solid rgba(255,255,255,.06);
}

.ai-input input{

  flex:1;

  border:none;

  border-radius:18px;

  padding:
    0 20px;

  background:
    rgba(255,255,255,.06);

  color:#fff;

  outline:none;
}

.ai-input button{

  width:140px;

  border:none;

  border-radius:18px;

  background:#ffde00;

  color:#111;

  font-weight:600;

  cursor:pointer;
}


/* =========================================
   COOPERATION STICKMAN ANIMATION
========================================= */

.process-section{
  overflow:hidden;
}

.process-card{
  opacity:0;
  transform:translateY(46px);
}

.process-card.is-visible{
  opacity:1;
  transform:none;
}

.process-card.is-settled{

  animation:
    cardSettle .65s ease-out;
}

@keyframes cardArrive{

  0%{
    opacity:0;
    transform:translateY(46px);
  }

  100%{
    opacity:1;
    transform:translateY(0px);
  }
}


@keyframes cardSettle{

  0%{
    transform:translateX(0px);
  }

  20%{
    transform:translateX(-6px);
  }

  40%{
    transform:translateX(6px);
  }

  60%{
    transform:translateX(-4px);
  }

  80%{
    transform:translateX(4px);
  }

  100%{
    transform:translateX(0px);
  }
}


.cooperation-scene{
  position:absolute;
  inset:0;
  z-index:30;
  pointer-events:none;
}

.stickman{
  position:absolute;
  width:92px;
  height:122px;
  left:100%;
  top:58%;
  transform:translate(-50%,-50%);
  overflow:visible;
  filter:
    drop-shadow(0 0 14px rgba(255,222,0,.24));
}

.stickman circle,
.stickman line{
  fill:none;
  stroke:#ffde00;
  stroke-width:8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.stickman .stick-head{
  fill:#ffde00;
}

.coffee{

  opacity:0;

  transition:
    opacity .5s ease;
}

.coffee rect,
.coffee path{

  fill:none;

  stroke:#ffde00;

  stroke-width:4;

  stroke-linecap:round;

  stroke-linejoin:round;
}


.sit-leg-1,
.sit-leg-2{

  opacity:0;

  stroke:#ffde00;
  stroke-width:8;

  stroke-linecap:round;
}


.leg-left,
.leg-right,
.arm-left{

  transform-box:fill-box;
  transform-origin:top center;
}

.arm-right{

  transform-box:view-box;

  transform-origin:60px 55px;
}

/* CHŮZE */

.stickman.walking{

  animation:
    walkBob .45s linear infinite;
}

@keyframes walkBob{

  0%{
    transform:
      translate(-50%,-50%)
      translateY(0px);
  }

  50%{
    transform:
      translate(-50%,-50%)
      translateY(-4px);
  }

  100%{
    transform:
      translate(-50%,-50%)
      translateY(0px);
  }
}

.stickman.walking .leg-left{
  animation: legLeft .8s linear infinite;
}

.stickman.walking .leg-right{
  animation: legRight .8s linear infinite;
}

.stickman.walking .arm-left{
  animation: armLeft .8s linear infinite;
}

.stickman.walking .arm-right{
  animation: armRight .8s linear infinite;
}

@keyframes legLeft{

  0%{transform:rotate(14deg);}
  50%{transform:rotate(-14deg);}
  100%{transform:rotate(14deg);}
}

@keyframes legRight{

  0%{transform:rotate(-14deg);}
  50%{transform:rotate(14deg);}
  100%{transform:rotate(-14deg);}
}

@keyframes armLeft{

  0%{transform:rotate(-16deg);}
  50%{transform:rotate(16deg);}
  100%{transform:rotate(-16deg);}
}

@keyframes armRight{

  0%{transform:rotate(16deg);}
  50%{transform:rotate(-16deg);}
  100%{transform:rotate(16deg);}
}




.stickman.is-waving .arm-right{
  animation:stickWave .36s ease-in-out 6;
}

@keyframes stickWave{
  0%{
    transform:rotate(0deg);
  }

  50%{
    transform:rotate(-32deg);
  }

  100%{
    transform:rotate(0deg);
  }
}

.push-number{
  position:absolute;
  left:100%;
  top:52%;
  transform:translate(-50%,-50%);

  font-size:76px;
  font-weight:200;
  color:rgba(255,222,0,.34);

  line-height:1;

  text-shadow:
    0 0 24px rgba(255,222,0,.18);
}

.chair{
  position:absolute;
  width:66px;
  height:66px;

  left:100%;
  top:70%;

  opacity:0;
  transform:
  translate(-50%,-50%)
  scaleX(-1);

  filter:
    drop-shadow(0 0 12px rgba(255,222,0,.18));
}

.coffee-cup{

  position:absolute;

  font-size:26px;

  opacity:0;

  z-index:40;

  pointer-events:none;

  transition:
    opacity .5s ease;
}



.chair line{
  stroke:#ffde00;
  stroke-width:7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.chair.moving{

  animation:
    chairBounce .45s ease-in-out infinite;
}

@keyframes chairBounce{

  0%{

    transform:
      translate(-50%,-50%)
      scaleX(-1)
      translateY(0px);
  }

  50%{

    transform:
      translate(-50%,-50%)
      scaleX(-1)
      translateY(-4px);
  }

  100%{

    transform:
      translate(-50%,-50%)
      scaleX(-1)
      translateY(0px);
  }
}


.stickman.is-sitting{
  width:82px;
  height:104px;
}

.stickman.is-sitting .leg-left,
.stickman.is-sitting .leg-right{

  opacity:0;
}

.stickman.is-sitting .sit-leg-1,
.stickman.is-sitting .sit-leg-2{

  opacity:1;
}


.stickman.is-idle .arm-right{
  animation:idleWave .9s ease-in-out;
}

@keyframes idleWave{
  0%{
    transform:rotate(0deg);
  }

  50%{
    transform:rotate(-24deg);
  }

  100%{
    transform:rotate(0deg);
  }
}

.stickman.look-left{
  transform:translate(-50%,-50%) rotate(-4deg);
}

.stickman.look-right{
  transform:translate(-50%,-50%) rotate(4deg);
}

/* =========================================
   WALK TRAIL
========================================= */

.walk-trail{

  position:absolute;

  width:28px;
  height:6px;

  border-radius:999px;

  background:
    rgba(255,222,0,.28);

  filter:
    blur(4px);

  pointer-events:none;

  z-index:25;

  animation:
    trailFade .9s ease-out forwards;
}

@keyframes trailFade{

  0%{

    opacity:.85;

    transform:
      translate(-50%,-50%)
      scale(1);
  }

  100%{

    opacity:0;

    transform:
      translate(-50%,-50%)
      scale(1.8);
  }
}

@media(max-width:980px){

  .cooperation-scene{
    display:none;
  }

  .process-card{
    opacity:1;
    transform:none;
  }
}

/* =========================================
   FAQ / ČASTÉ DOTAZY
========================================= */

.faq-section{

  position:relative;

  padding:140px 6vw;

  overflow:hidden;
}

.faq-inner{

  width:100%;
  max-width:1200px;

  margin:auto;
}

.faq-heading{

  text-align:center;

  margin-bottom:80px;
}

.faq-kicker{

  color:#ffde00;

  font-size:13px;

  letter-spacing:.34em;

  margin-bottom:24px;

  display:block;
}

.faq-heading h2{

  font-size:clamp(44px,5vw,82px);

  font-weight:300;

  letter-spacing:-.05em;

  color:#f1f3f7;

  line-height:1.05;
}

.faq-heading p{

  margin-top:26px;

  color:#b8c0cd;

  font-size:20px;

  line-height:1.8;

  max-width:760px;

  margin-left:auto;
  margin-right:auto;
}

.faq-list{

  display:flex;
  flex-direction:column;

  gap:24px;
}

/* =========================================
   FAQ CARD
========================================= */

.faq-item{

  position:relative;

  border-radius:34px;

  overflow:hidden;

  background:
    linear-gradient(
      180deg,
      rgba(255,190,0,.02),
      rgba(10,8,0,.18)
    );

  border:
    2px solid rgba(255,210,0,.24);

  box-shadow:
    0 20px 50px rgba(0,0,0,.34);

  transition:.4s;
}

.faq-item:hover{

  transform:
    translateY(-8px);

  border-color:
    rgba(255,222,0,.18);

  box-shadow:
    0 0 40px rgba(255,222,0,.08),
    0 30px 70px rgba(0,0,0,.44);
}

.faq-item.active{

  border-color:
    rgba(255,222,0,.42);

  box-shadow:

    0 0 18px rgba(255,222,0,.18),

    0 0 42px rgba(255,222,0,.10),

    0 30px 70px rgba(0,0,0,.44);
}

/* =========================================
   QUESTION
========================================= */

.faq-question{

  width:100%;

  min-height:96px;

  padding:28px 40px;

  display:flex;

  align-items:center;

  gap:28px;

  border:none;

  background:none;

  color:#f1f3f7;

  text-align:left;

  cursor:pointer;

  font-size:28px;

  font-weight:300;

  letter-spacing:-.02em;
}

/* =========================================
   NUMBER
========================================= */

.faq-question span{

  flex-shrink:0;

  color:
    rgba(255,222,0,.18);

  font-size:58px;

  font-weight:200;

  line-height:1;

  background:none;

  border:none;

  box-shadow:none;
}

/* =========================================
   ANSWER
========================================= */

.faq-answer{

  max-height:0;

  overflow:hidden;

  opacity:0;

  padding:0 40px;

  transition:
    max-height .45s ease,
    opacity .35s ease,
    padding .45s ease;
}

.faq-item.active .faq-answer{

  max-height:1300px;

  opacity:1;

  padding:
    0 40px 36px 126px;
}
.faq-typing{

  font-size:17px;

  line-height:1.9;

  color:#b8c0cd;
}

.faq-answer .legal-link-btn{

  margin-top:28px;
}

/* =========================================
   CURSOR
========================================= */

.faq-cursor{

  display:inline-block;

  width:8px;
  height:18px;

  margin-left:6px;

  background:#ffde00;

  box-shadow:
    0 0 12px rgba(255,222,0,.4);

  animation:
    faqCursorBlink .9s infinite;
}

@keyframes faqCursorBlink{

  0%,45%{
    opacity:1;
  }

  46%,100%{
    opacity:0;
  }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:980px){

  .faq-question{

    font-size:22px;

    padding:24px;
  }

  .faq-question span{

    font-size:42px;
  }

  .faq-item.active .faq-answer{

    padding:
      0 24px 24px 86px;
  }

  .faq-typing{

    font-size:16px;
  }
}

/* =========================================
   ABOUT
========================================= */

.about-section{

  padding:
    180px 6vw;

  position:relative;
}

.about-grid{

  display:grid;

  grid-template-columns:
    1fr 1fr;

  gap:80px;

  align-items:center;
}

/* =========================================
   VIDEO
========================================= */

.about-video{

  position:relative;

  overflow:hidden;

  border-radius:34px;

  background:
    linear-gradient(
      180deg,
      rgba(255,190,0,.02),
      rgba(10,8,0,.18)
    );

  border:
    2px solid rgba(255,210,0,.24);

  box-shadow:
    0 20px 50px rgba(0,0,0,.34);
}

.about-video{

  position:relative;

  display:block;

  text-decoration:none;

  overflow:hidden;

  border-radius:34px;

  background:
    linear-gradient(
      180deg,
      rgba(255,190,0,.02),
      rgba(10,8,0,.18)
    );

  border:
    2px solid rgba(255,210,0,.24);

  box-shadow:
    0 20px 50px rgba(0,0,0,.34);

  transition:.45s;
}

.about-video:hover{

  transform:
    translateY(-10px);

  border-color:
    rgba(255,222,0,.22);

  box-shadow:
    0 0 34px rgba(255,222,0,.08),
    0 30px 70px rgba(0,0,0,.48);
}

.about-video img{

  width:100%;

  height:780px;

  display:block;

  object-fit:cover;

  object-position:center 30%;

  transition:1.2s;
}

.about-video:hover img{

  transform:scale(1.05);
}

/* =========================================
   CONTENT
========================================= */

.about-label{

  color:#ffde00;

  font-size:13px;

  letter-spacing:.34em;

  margin-bottom:24px;
}

.about-content h2{

  font-size:clamp(44px,5vw,82px);

  font-weight:300;

  letter-spacing:-.05em;

  color:#f1f3f7;

  line-height:1.04;
}

.about-content p{

  margin-top:30px;

  color:#b8c0cd;

  font-size:20px;

  line-height:1.9;
}

/* =========================================
   STATS
========================================= */

.about-stats{

  margin-top:50px;

  display:grid;

  grid-template-columns:
    repeat(2,1fr);

  gap:26px;
}

.about-stat{

  padding:28px;

  border-radius:24px;

  background:
    linear-gradient(
      180deg,
      rgba(255,190,0,.02),
      rgba(10,8,0,.18)
    );

  border:
    2px solid rgba(255,210,0,.24);

  box-shadow:
    0 20px 50px rgba(0,0,0,.22);
}

.about-stat strong{

  display:block;

  font-size:42px;

  font-weight:300;

  color:#ffde00;

  line-height:1;
}

.about-stat span{

  display:block;

  margin-top:10px;

  color:#b8c0cd;

  font-size:15px;

  letter-spacing:.08em;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:980px){

  .about-grid{

    grid-template-columns:1fr;
  }

  .about-content h2{

    font-size:56px;
  }

  .about-stats{

    grid-template-columns:1fr;
  }
}

/* =========================================
   LEGAL PANEL
========================================= */

.legal-panel{

  position:fixed;

  left:0;
  top:-100%;

  width:100%;
  height:100vh;

  overflow:auto;

  z-index:2000000;

  padding:140px 6vw;

  background:
    linear-gradient(
      180deg,
      #000814 0%,
      #000a1d 18%,
      #0c1016 36%,
      #12161c 52%,
      #0d1117 68%,
      #000a1d 86%,
      #000814 100%
    );

  transition:
    top .9s cubic-bezier(.2,.8,.2,1);
}

.legal-panel.active{

  top:0;
}

.legal-close{

  position:absolute;

  top:30px;
  right:40px;

  width:56px;
  height:56px;

  border-radius:50%;

  border:none;

  background:
    rgba(255,222,0,.12);

  color:#ffde00;

  font-size:24px;

  cursor:pointer;

  z-index:2000001;

  display:flex;
  align-items:center;
  justify-content:center;

  opacity:0;
  visibility:hidden;
  pointer-events:none;

  transition:
    opacity .25s ease,
    visibility .25s ease,
    transform .25s ease;
}

.legal-panel.active .legal-close{

  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

body.legal-open .floating-legal{

  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
}

body.legal-open{

  overflow:hidden;
}

/* =========================================
   LEGAL BUTTON
========================================= */

.legal-link-btn{

  display:flex;
  width:max-content;

  align-items:center;
  justify-content:center;

  margin-top:24px;

  padding:14px 26px;

  border-radius:14px;

  text-decoration:none;

  font-size:14px;

  letter-spacing:.12em;

  text-transform:uppercase;

  color:#ffde00;

  border:
    1px solid rgba(255,222,0,.35);

  background:
    rgba(255,222,0,.08);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 20px rgba(255,222,0,.08);

  transition:.35s ease;
}

.legal-link-btn:hover{

  transform:translateY(-2px);

  background:
    rgba(255,222,0,.15);

  border-color:
    rgba(255,222,0,.6);

  box-shadow:
    0 0 24px rgba(255,222,0,.25);
}

.contact-bubble{

  position:absolute;

  left:110px;
  top:0px;

  z-index:10;

  padding:20px 28px;

  border-radius:60px;

   background:#07111f;

  border:
    2px solid rgba(255,222,0,.25);

  color:#ffde00;

  font-size:18px;

  line-height:1.35;

  box-shadow:
    0 0 20px rgba(255,222,0,.08);
}

.contact-bubble::after{

  content:"";

  position:absolute;

  right:-8.5px;
  top:50%;

  width:16px;
  height:16px;

  margin-top:-8px;

  background:#07111f;

  border-right:
    2px solid rgba(255,222,0,.25);

  border-top:
    2px solid rgba(255,222,0,.25);

  transform:
    rotate(45deg);
}

.contact-stickman{

  position:relative;

  width:120px;

  margin-top:20px;

  margin-left:48px;

  animation:
    contactFloat 3s ease-in-out infinite;
}

.contact-man{

  width:70px;

  overflow:visible;

  transform-origin:center 90px;

  animation:
    sitBob 4s ease-in-out infinite;
}

@keyframes sitBob{

  0%{
    transform:
      scaleX(-1)
      translateX(-94px)
      translateY(40px)
      rotate(-2deg);
  }

  50%{
    transform:
      scaleX(-1)
      translateX(-94px)
      translateY(40px)
      rotate(2deg);
  }

  100%{
    transform:
      scaleX(-1)
      translateX(-94px)
      translateY(40px)
      rotate(-2deg);
  }

}

.contact-man .arm-right{

  transform-box:view-box;

  transform-origin:60px 55px;

  animation:
    bubbleWave .8s ease-in-out infinite;
}

@keyframes bubbleWave{

  0%{
    transform:rotate(0deg);
  }

  25%{
    transform:rotate(-12deg);
  }

  50%{
    transform:rotate(-22deg);
  }

  75%{
    transform:rotate(-12deg);
  }

  100%{
    transform:rotate(0deg);
  }
}

.contact-man circle{

  fill:#ffde00;
}

.contact-man line{

  stroke:#ffde00;

  stroke-width:8;

  stroke-linecap:round;
}

.contact-chair{

  position:absolute;

  left:220px;

  top:70px;

  width:70px;
}

.contact-chair svg{

  width:100%;
}

.contact-chair line{

  stroke:#ffde00;

  stroke-width:7;

  stroke-linecap:round;
}

.contact-coffee{

  position:absolute;

  left:270px;

  top:52px;

  font-size:26px;
}

@keyframes contactFloat{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-3px);
  }

  100%{
    transform:translateY(0px);
  }
}

/* =========================================
   MOBILE OPTIMALIZACE – FINÁLNÍ BLOK
   VLOŽENO KVŮLI SPRÁVNÉMU ZOBRAZENÍ NA MOBILU
========================================= */

html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

body{
  position:relative;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

img,
svg,
video{
  max-width:100%;
}

.hero-grid,
.video-grid,
.process-grid,
.about-grid,
.contact-layout,
.contact-row,
.about-stats{
  min-width:0;
}

.hero-left,
.hero-image,
.video-card,
.process-card,
.faq-item,
.about-video,
.about-content,
.contact-left,
.contact-right,
.contact-form,
.legal-panel,
.legal-inner,
.faq-inner{
  min-width:0;
  max-width:100%;
}

@media(max-width:980px){

  /* HLAVIČKA */

 nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999999999999;
}

  .logo{
    gap:14px;
  }

  .logo-mark{
    font-size:40px;
  }

  .logo-divider{
    height:64px;
  }

  .logo-text h3{
    font-size:18px;
    letter-spacing:.14em;
  }

  .logo-text p{
    font-size:12px;
    letter-spacing:.20em;
  }

  .menu{
    display:none;
  }

  /* HERO */

  .hero{
    min-height:auto;
    padding:70px 6vw 90px;
    align-items:flex-start;
  }

  .hero-grid{
    display:flex;
    flex-direction:column;
    gap:70px;
  }

  .hero-left{
    width:100%;
    max-width:100%;
  }

  .hero-label,
  .video-label,
  .process-label,
  .faq-kicker,
  .about-label,
  .contact-label{
    font-size:13px;
    letter-spacing:.34em;
  }

  .hero h1{
    font-size:clamp(58px,18vw,88px);
    line-height:1.03;
    letter-spacing:-.06em;
  }

  .hero-text{
    margin-top:46px;
    max-width:100%;
    font-size:20px;
    line-height:1.8;
  }

  .hero-buttons{
    margin-top:52px;
    flex-direction:column;
    align-items:flex-start;
    gap:34px;
  }

  .btn-primary{
    width:auto;
    min-width:220px;
    height:64px;
    padding:0 34px;
    border-radius:20px;
  }

  .hero-links{
    width:100%;
    display:flex;
    align-items:center;
    gap:28px 34px;
    flex-wrap:wrap;
  }

  .hero-links a{
    font-size:17px;
  }

  .hero-image{
    width:100%;
    border-radius:30px;
  }

  .hero-image img{

  width:100%;
  height:560px;

  border-radius:30px;

  object-fit:cover;

  object-position:center top;
}

  .hero-socials{
    top:18px;
    right:14px;
    gap:12px;
  }

  .socials-label{
    display:none;
  }

  .socials{
    gap:12px;
  }

  .socials a{
    width:52px;
    height:52px;
  }

  .ai-trigger{
    width:118px;
    height:118px;
    border-top-left-radius:30px;
  }

  .ai-trigger span{
    top:25px;
    left:16px;
  }

  .photo-quote{
    left:0;
    right:0;
    bottom:0;
    width:100%;
    min-width:0;
    height:48px;
    border-radius:0 0 30px 30px;
    padding:12px 18px;
  }

  .quote-text{
    font-size:16px;
  }

  /* SEKCE OBECNĚ */

  .video-section,
  .process-section,
  .faq-section,
  .about-section,
  .contact{
    padding-left:6vw;
    padding-right:6vw;
  }

  .video-section{
    padding-top:110px;
    padding-bottom:110px;
  }

  .video-header,
  .process-header,
  .faq-heading,
  .contact-header{
    margin-bottom:58px;
  }

  .video-header h2,
  .process-header h2,
  .faq-heading h2,
  .about-content h2{
    font-size:clamp(46px,13vw,64px);
    line-height:1.08;
    letter-spacing:-.05em;
  }

  .video-header p,
  .process-header p,
  .faq-heading p,
  .about-content p{
    max-width:100%;
    font-size:20px;
    line-height:1.75;
  }

  /* VIDEO KARTY */

  .video-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:30px;
  }

  .video-card{
    width:100%;
    border-radius:30px;
  }

  .video-thumb{
    height:260px;
  }

  .video-content{
    padding:28px;
  }

  .video-content h3{
    font-size:34px;
  }

  .video-content p{
    font-size:18px;
  }


  /* SPOLUPRÁCE */

  .process-section{
    padding-top:110px;
    padding-bottom:110px;
    overflow:hidden;
  }

  .process-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:28px;
  }

  .process-card{
    width:100%;
    padding:34px;
    border-radius:30px;
    opacity:1;
    transform:none;
  }

  .process-number{
    font-size:58px;
    margin-bottom:22px;
  }

  .process-card h3{
    font-size:32px;
  }

  .process-card p{
    font-size:18px;
  }

  .cooperation-scene{
  display:none !important;
}

  /* FAQ */

  .faq-section{
    padding-top:110px;
    padding-bottom:110px;
    overflow:hidden;
  }

  .faq-inner,
  .faq-list{
    width:100%;
  }

  .faq-list{
    gap:22px;
  }

  .faq-item{
    width:100%;
    max-width:100%;
    border-radius:28px;
  }

  .faq-question{
    width:100%;
    min-height:auto;
    padding:24px 24px;
    gap:18px;
    font-size:24px;
    line-height:1.25;
  }

  .faq-question span{
    font-size:46px;
  }

  .faq-item.active .faq-answer{
    padding:0 24px 28px 24px;
  }

  .faq-typing{
    font-size:17px;
    line-height:1.8;
  }

  /* O MNĚ */

  .about-section{
    padding-top:110px;
    padding-bottom:110px;
  }

  .about-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:56px;
  }

  .about-video{
    width:100%;
    border-radius:30px;
  }

  .about-video img{
    width:100%;
    height:560px;
    object-fit:cover;
    object-position:center top;
  }

  .about-stats{
    display:grid;
    grid-template-columns:1fr;
    gap:24px;
  }

  .about-stat{
    width:100%;
    padding:32px;
    border-radius:28px;
  }

  .about-stat strong{
    font-size:56px;
  }

  .about-stat span{
    font-size:18px;
  }

  /* KONTAKT */

  .contact{
    padding-top:110px;
    padding-bottom:110px;
    max-width:100%;
    overflow:hidden;
  }

  .contact-header h2{
    font-size:clamp(52px,14vw,70px);
    line-height:1.08;
    letter-spacing:-.055em;
  }

  .contact-layout{
    display:grid;
    grid-template-columns:1fr;
    gap:52px;
  }

  .contact-story{
    width:100%;
    max-width:100%;
    font-size:20px;
    line-height:1.8;
  }

  .contact-character{
  width:100%;
  max-width:360px;
  height:160px;
  margin-top:46px;
  overflow:visible;
}

  .contact-bubble{
    left:0;
    top:12px;
    padding:22px 28px;
    font-size:22px;
  }

  .contact-stickman{

  width:320px;

  margin-left:0;
  margin-right:auto;

  margin-top:30px;
}

  .contact-form{
    width:100%;
    padding:26px;
    border-radius:30px;
  }

  .contact-row{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
  }

  .contact-form input,
  .contact-form textarea{
    font-size:16px;
    border-radius:18px;
    padding:18px 20px;
  }

  .contact-form textarea{
    height:150px;
  }

  .contact-form button{
    height:66px;
    font-size:18px;
  }

  /* LEGAL PANEL / TRANSPARENTNOST */

  .legal-panel{
    width:100%;
    max-width:100vw;
    padding:92px 6vw 70px;
    overflow-x:hidden;
  }

  .legal-close{
    top:22px;
    right:22px;
    width:50px;
    height:50px;
  }

  .legal-inner{
    width:100%;
    max-width:100%;
  }

  .legal-panel .faq-heading{
    text-align:left;
    margin-bottom:54px;
  }

  .legal-panel .faq-heading h2{
    font-size:clamp(44px,13vw,62px);
    line-height:1.08;
  }

  .legal-panel .faq-heading p{
    font-size:19px;
    line-height:1.7;
  }

  .legal-link-btn{
    width:100%;
    max-width:100%;
    text-align:center;
    white-space:normal;
    line-height:1.45;
  }

  .floating-legal{
    top:42px;
    right:18px;
    width:48px;
    height:48px;
    font-size:27px;
  }


  footer{
    padding:36px 6vw;
  }

}

@media(max-width:430px){

  .hero h1{
    font-size:clamp(54px,17vw,76px);
  }

  .hero-text{
    font-size:21px;
  }

  .video-header h2,
  .process-header h2,
  .faq-heading h2,
  .about-content h2,
  .contact-header h2{
    font-size:clamp(42px,13vw,58px);
  }

  .video-thumb{
    height:230px;
  }

  .about-video img{
    height:520px;
  }

.hero-image img{
  height:520px;
}

  .contact-character{
    max-width:330px;
  }

  @media(max-width:430px){

  .contact-stickman{
    margin-left:0;
  }

  .contact-bubble{
    font-size:21px;
    padding:20px 26px;
  }

}

@media(max-width:430px){

  .contact-stickman{
    margin-left:0;
  }

  .contact-bubble{
    font-size:21px;
    padding:20px 26px;
  }
 }
}

@media(max-width:980px){

  .contact-man{

    width:110px !important;

    transform:
      scaleX(-1)
      translateX(50px)
      translateY(45px) !important;
  }
}

/* =========================================
   MOBIL - SILNĚJŠÍ LINKY
========================================= */

.process-card,
.video-card,
.faq-item,
.about-video,
.about-stat,
.contact-form,
.contact-link{

  border-width:3px !important;

  border-color:
    rgba(255,222,0,.40) !important;

  box-shadow:
    0 0 18px rgba(255,222,0,.08);
}

@media(max-width:980px){

  .contact-links{

    grid-template-columns:1fr;
  }

}

/* =========================================
   COOKIE PANEL
========================================= */

.cookie-panel{

  position:fixed;

  left:-360px;
  top:50%;

  transform:translateY(-50%);

  width:320px;

  padding:28px;

  background:
    rgba(7,17,31,.96);

  border:
    2px solid rgba(255,222,0,.25);

  border-radius:
    0 24px 24px 0;

  backdrop-filter:
    blur(18px);

  z-index:9999;

  transition:left .4s ease;
}

.cookie-panel.open{

  left:0;
}

.cookie-panel h3{

  color:#ffde00;

  margin-bottom:16px;
}

.cookie-panel p{

  color:#d5dbe6;

  line-height:1.7;

  margin-bottom:14px;
}

.cookie-buttons{

  display:flex;

  gap:12px;

  margin-top:20px;
}

.cookie-buttons button{

  flex:1;

  height:50px;

  font-size:14px;

  border:none;

  border-radius:14px;

  cursor:pointer;

  font-weight:700;
}

#cookieAccept{

  background:#ffde00;

  color:#111;
}

#cookieMore{

  background:transparent;

  color:#ffde00;

  border:
    1px solid rgba(255,222,0,.4);
}

@media(max-width:980px){

  .cookie-tab{

    width:20px;

    padding:10px 0;

    font-size:10px;

    line-height:1.2;

    letter-spacing:.05em;
  }
}

@media(max-width:980px){

  .cookie-tab{
    display:none;
  }

  .cookie-panel{

    left:0;

    width:100%;

    max-width:none;

    top:auto;

    bottom:-400px;

    transform:none;

    border-radius:24px 24px 0 0;

    transition:
      bottom .4s ease;
  }

  .cookie-panel.open{

    bottom:0;
  }

}

/* =========================================
   FOOTER OFFICES
========================================= */

.footer-offices{

    margin-top:70px;
    margin-bottom:28px;

    display:flex;
    flex-direction:row;

    justify-content:center;
    align-items:center;

    gap:60px;

    text-align:center;
}

.footer-office span{

    font-size:20px;
    color:#9ea8b7;
    line-height:1.8;
}

.footer-office strong{

    color:#ffde00;
    font-weight:600;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-right:10px;
}


@media (max-width:980px){

    .footer-offices{

        flex-direction:column;

        gap:14px;
    }

}

/* =========================================
   RESPONSIVE FIX – MOBILY A TABLETY
   Desktop nad 1200 px zůstává beze změny.
========================================= */

@media (max-width:1200px){

  html{scroll-padding-top:116px;}
  body{min-width:0;}

  nav{
    min-height:104px;
    padding:calc(18px + env(safe-area-inset-top)) 4vw 18px;
    gap:20px;
  }

  nav::after{
    bottom:-42px;
    height:42px;
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
  }

  .logo{min-width:0;gap:14px;}
  .logo-mark{font-size:36px;flex:0 0 auto;}
  .logo-divider{height:48px;margin:0 2px;}
  .logo-text{min-width:0;}

  .logo-text h3{
    font-size:16px;
    letter-spacing:.12em;
    white-space:nowrap;
  }

  .logo-text p{
    font-size:10px;
    letter-spacing:.16em;
    white-space:nowrap;
  }

  .menu{gap:14px;margin-right:0;}

  .header-contact{
    min-width:150px;
    height:64px;
    padding:10px 14px;
  }

  .header-contact strong{font-size:14px;}
  .header-contact span{font-size:12px;}
  .hero{padding-top:150px;}
  .hero-grid{gap:48px;}
  .hero h1{font-size:clamp(52px,7vw,92px);}
  .hero-image img,.about-video img{height:700px;}

  .video-section,
  .process-section,
  .faq-section,
  .about-section,
  .contact{
    padding-left:5vw;
    padding-right:5vw;
  }

  .contact-layout{
    grid-template-columns:minmax(300px,360px) minmax(0,1fr);
    gap:40px;
  }

  .footer-office span,
  footer{overflow-wrap:anywhere;}
}

@media (max-width:980px){

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

  body{
    width:100%;
    max-width:100%;
    overflow-x:clip;
  }

  nav{
    min-height:88px;
    padding:calc(12px + env(safe-area-inset-top)) max(18px,5vw) 12px;
    justify-content:flex-start;
    background:rgba(5,10,20,.88);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(255,255,255,.08);
    z-index:10000;
  }

  nav::after{
    bottom:-26px;
    height:26px;
    background:linear-gradient(180deg,rgba(0,8,20,.72) 0%,rgba(0,8,20,.24) 55%,rgba(0,8,20,0) 100%);
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }

  .menu{display:none !important;}
  .logo{gap:11px;max-width:calc(100vw - 40px);}
  .logo-mark{font-size:31px;letter-spacing:.05em;}
  .logo-divider{height:42px;}
  .logo-text h3{font-size:14px;letter-spacing:.10em;}
  .logo-text p{margin-top:3px;font-size:9px;letter-spacing:.14em;}

  .floating-legal{
    /* Finální mobilní pozice – pod pevnou hlavičkou */
    top:calc(104px + env(safe-area-inset-top));
    right:16px;
    width:44px;
    height:44px;
    font-size:24px;
    z-index:10001;
  }

  .hero{
    min-height:auto;
    padding:calc(116px + env(safe-area-inset-top)) 5vw 84px;
    align-items:flex-start;
  }

  .hero-grid{
    display:flex;
    flex-direction:column;
    gap:48px;
  }

  .hero-left,.hero-image{width:100%;max-width:100%;}

  .hero-label,
  .video-label,
  .process-label,
  .faq-kicker,
  .about-label,
  .contact-label{
    font-size:12px;
    line-height:1.45;
    letter-spacing:.24em;
    overflow-wrap:anywhere;
  }

  .hero h1{
    font-size:clamp(44px,12vw,72px);
    line-height:1.02;
    letter-spacing:-.055em;
    overflow-wrap:normal;
    word-break:normal;
  }

  .hero-text,
  .video-header p,
  .process-header p,
  .faq-heading p,
  .about-content p,
  .contact-story{
    font-size:clamp(17px,2.6vw,20px);
    line-height:1.75;
    overflow-wrap:anywhere;
  }

  .hero-text{margin-top:34px;}
  .hero-buttons{margin-top:38px;gap:26px;}

  .btn-primary{
    min-width:0;
    width:100%;
    max-width:320px;
    height:58px;
    padding:0 24px;
  }

  .hero-links{gap:18px 24px;}
  .hero-links a{font-size:16px;}
  .hero-image{border-radius:26px;}

  .hero-image img{
    height:clamp(430px,78vw,620px);
    border-radius:26px;
    object-position:center top;
  }

  .hero-socials{top:14px;right:12px;gap:10px;}
  .socials{gap:10px;}
  .socials a{width:44px;height:44px;}
  .ai-trigger{width:96px;height:96px;border-top-left-radius:26px;}

  .ai-trigger span{
    top:20px;
    left:13px;
    font-size:11px;
    letter-spacing:.18em;
  }

  .photo-quote{
    width:100%;
    min-width:0;
    height:48px;
    padding:10px 14px;
    border-radius:0 0 26px 26px;
  }

  .quote-text{font-size:15px;letter-spacing:.04em;}

  .video-section,
  .process-section,
  .faq-section,
  .about-section,
  .contact{
    padding-top:92px;
    padding-bottom:92px;
    padding-left:5vw;
    padding-right:5vw;
  }

  .video-header,
  .process-header,
  .faq-heading,
  .contact-header{
    margin-bottom:48px;
  }

  .video-header h2,
  .process-header h2,
  .faq-heading h2,
  .about-content h2,
  .contact-header h2{
    font-size:clamp(38px,9.5vw,58px);
    line-height:1.08;
    letter-spacing:-.045em;
    overflow-wrap:anywhere;
  }

  .video-grid,
  .process-grid,
  .about-grid,
  .contact-layout{
    grid-template-columns:1fr;
  }

  .video-grid,.process-grid{gap:24px;}

  .video-card,
  .process-card,
  .faq-item,
  .about-video,
  .about-stat,
  .contact-form,
  .contact-link{
    border-radius:24px;
  }

  .video-thumb{height:clamp(220px,56vw,340px);}
  .video-content{padding:24px;}

  .video-content h3,
  .process-card h3{
    font-size:clamp(26px,5vw,32px);
  }

  .video-content p,
  .process-card p,
  .faq-typing{
    font-size:17px;
    line-height:1.75;
    overflow-wrap:anywhere;
  }

  .process-card{padding:28px;}
  .process-number{font-size:52px;}
  .faq-list{gap:18px;}

  .faq-question{
    min-height:0;
    padding:22px;
    gap:16px;
    font-size:clamp(19px,4vw,24px);
    line-height:1.3;
    overflow-wrap:anywhere;
  }

  .faq-question span{font-size:40px;}
  .faq-item.active .faq-answer{padding:0 22px 24px;}
  .about-grid{gap:46px;}

  .about-video img{
    height:clamp(430px,78vw,620px);
    object-position:center top;
  }

  .about-stats{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
  }

  .about-stat{padding:24px;}
  .about-stat strong{font-size:clamp(34px,7vw,48px);}
  .about-stat span{font-size:16px;overflow-wrap:anywhere;}

  .contact{
    max-width:100%;
    overflow:visible;
  }

  .contact-header{padding-top:0;}
  .contact-layout{gap:42px;}
  .contact-left,.contact-right{min-width:0;}

  .contact-character{
    width:100%;
    max-width:340px;
    height:170px;
    margin-top:34px;
    overflow:visible;
  }

  .contact-stickman{
    width:280px;
    max-width:100%;
    margin-top:26px;
  }

  .contact-bubble{
    left:0;
    top:10px;
    max-width:190px;
    padding:17px 22px;
    font-size:18px;
  }

  .contact-links{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
  }

  .contact-link{
    min-height:118px;
    padding:24px 20px;
  }

  .contact-link strong{font-size:20px;}
  .contact-link span{font-size:14px;overflow-wrap:anywhere;}

  .legal-panel{
    height:100dvh;
    padding:calc(84px + env(safe-area-inset-top)) 5vw calc(54px + env(safe-area-inset-bottom));
    z-index:2000000;
    overscroll-behavior:contain;
  }

  .legal-close{
    position:fixed;
    top:calc(18px + env(safe-area-inset-top));
    right:18px;
    width:46px;
    height:46px;
    z-index:2000001;
  }

  .legal-panel .faq-heading{
    text-align:left;
    margin-bottom:42px;
  }

  .legal-panel .faq-heading h2{font-size:clamp(36px,9vw,54px);}
  .legal-panel .faq-heading p{font-size:17px;line-height:1.7;}

  .legal-link-btn{
    width:100%;
    max-width:100%;
    padding:13px 18px;
    line-height:1.45;
    white-space:normal;
  }

  .cookie-panel{
    left:0;
    top:auto;
    bottom:-110%;
    width:100%;
    max-width:none;
    max-height:min(78dvh,620px);
    overflow:auto;
    padding:24px max(18px,5vw) calc(24px + env(safe-area-inset-bottom));
    transform:none;
    border-radius:22px 22px 0 0;
    transition:bottom .35s ease;
  }

  .cookie-panel.open{bottom:0;}
  .cookie-buttons{flex-direction:column;}

  .footer-offices{
    margin-top:42px;
    padding:0 5vw;
    gap:14px;
  }

  .footer-office span{
    display:block;
    font-size:16px;
    line-height:1.65;
    overflow-wrap:anywhere;
  }

  .footer-office strong{
    display:block;
    margin:0 0 4px;
    font-size:14px;
  }

  footer{
    padding:28px 5vw calc(28px + env(safe-area-inset-bottom));
    font-size:12px;
    line-height:1.7;
    overflow-wrap:anywhere;
  }
}

@media (max-width:640px){

  nav{
    min-height:80px;
    padding:calc(10px + env(safe-area-inset-top)) 16px 10px;
  }

  nav::after{bottom:-20px;height:20px;}
  .logo{gap:9px;max-width:calc(100vw - 82px);}
  .logo-mark{font-size:27px;}
  .logo-divider{height:36px;}
  .logo-text h3{font-size:12px;letter-spacing:.08em;}
  .logo-text p{font-size:8px;letter-spacing:.10em;}

  .floating-legal{
    /* Menší telefony – stále pod hlavičkou */
    top:calc(90px + env(safe-area-inset-top));
    right:12px;
    width:40px;
    height:40px;
    font-size:22px;
  }

  .hero{
    padding:calc(102px + env(safe-area-inset-top)) 18px 72px;
  }

  .hero-label,
  .video-label,
  .process-label,
  .faq-kicker,
  .about-label,
  .contact-label{
    font-size:11px;
    letter-spacing:.19em;
  }

  .hero h1{
    font-size:clamp(40px,13.5vw,58px);
    line-height:1.04;
  }

  .hero-text,
  .video-header p,
  .process-header p,
  .faq-heading p,
  .about-content p,
  .contact-story{
    font-size:17px;
    line-height:1.7;
  }

  .hero-buttons{margin-top:32px;}
  .hero-links{gap:16px 20px;}
  .hero-links a{font-size:15px;}
  .hero-image img{height:clamp(390px,112vw,540px);}
  .socials a{width:40px;height:40px;}
  .ai-trigger{width:82px;height:82px;}

  .ai-trigger span{
    top:17px;
    left:11px;
    font-size:10px;
  }

  .photo-quote{height:44px;}
  .quote-text{font-size:14px;}

  .video-section,
  .process-section,
  .faq-section,
  .about-section,
  .contact{
    padding:76px 18px;
  }

  .video-header h2,
  .process-header h2,
  .faq-heading h2,
  .about-content h2,
  .contact-header h2{
    font-size:clamp(34px,10.8vw,48px);
  }

  .video-thumb{height:220px;}
  .video-content,.process-card{padding:22px;}

  .faq-question{
    padding:18px;
    gap:12px;
    font-size:19px;
  }

  .faq-question span{font-size:34px;}
  .faq-item.active .faq-answer{padding:0 18px 20px;}
  .about-video img{height:clamp(390px,112vw,540px);}
  .about-stats{grid-template-columns:1fr;}
  .contact-links{grid-template-columns:1fr;}
  .contact-character{height:155px;}
  .contact-stickman{width:250px;}
  .contact-bubble{max-width:170px;font-size:17px;}
  .footer-offices{padding:0 18px;}
  footer{padding-left:18px;padding-right:18px;}
}

@media (max-width:380px){

  .logo-text h3{font-size:11px;}
  .logo-text p{font-size:7px;}
  .hero{padding-left:14px;padding-right:14px;}
  .hero h1{font-size:clamp(36px,13.2vw,48px);}

  .hero-label,
  .video-label,
  .process-label,
  .faq-kicker,
  .about-label,
  .contact-label{
    letter-spacing:.15em;
  }

  .hero-text,
  .video-header p,
  .process-header p,
  .faq-heading p,
  .about-content p,
  .contact-story{
    font-size:16px;
  }

  .video-section,
  .process-section,
  .faq-section,
  .about-section,
  .contact{
    padding-left:14px;
    padding-right:14px;
  }

  .video-header h2,
  .process-header h2,
  .faq-heading h2,
  .about-content h2,
  .contact-header h2{
    font-size:clamp(31px,10.6vw,42px);
  }

  .video-content h3,.process-card h3{font-size:25px;}
  .faq-question{font-size:18px;}
  .footer-office span{font-size:15px;}
}

/* =========================================
   FINAL FIX – TRANSPARENTNOST + FOTO RÁMEČEK
========================================= */

@media (max-width:980px){

  .hero-image{
    border-width:3px;
    border-color:rgba(255,222,0,.40);
    box-shadow:0 0 18px rgba(255,222,0,.08);
  }
}

/* =========================================
   MOBILNÍ A TABLETOVÉ TLAČÍTKO ZAVOLAT
========================================= */

@media (max-width:980px){

  nav{
    justify-content:space-between;
    gap:16px;
  }

  .logo{
    flex:1 1 auto;
    min-width:0;
  }

  .menu{
    display:flex !important;
    flex:0 0 auto;
    margin:0;
    gap:0;
  }

  /* Na mobilu a tabletu ponechat pouze telefon */
  .menu .header-contact:not(:first-child){
    display:none !important;
  }

  .menu .header-contact:first-child{
    display:flex !important;

    min-width:145px;
    width:auto;
    height:58px;

    padding:9px 15px;

    border-radius:16px;

    justify-content:center;
    align-items:flex-start;

    flex-shrink:0;
  }

  .menu .header-contact:first-child strong{
    font-size:14px;
    margin-bottom:3px;
    white-space:nowrap;
  }

  .menu .header-contact:first-child span{
    font-size:11px;
    white-space:nowrap;
  }
}

@media (max-width:640px){

  nav{
    gap:10px;
  }

  .menu .header-contact:first-child{
    min-width:112px;
    height:48px;

    padding:7px 12px;

    border-radius:14px;
  }

  .menu .header-contact:first-child strong{
    font-size:12px;
    margin-bottom:0;
  }

  .menu .header-contact:first-child span{
    display:none;
  }
}

@media (max-width:380px){

  .menu .header-contact:first-child{
    min-width:94px;
    padding:6px 9px;
  }

  .menu .header-contact:first-child strong{
    font-size:11px;
  }
}

/* =========================================
   MOBILE COOKIE BUTTONS
========================================= */

@media (max-width:980px){

    .cookie-buttons button{

        min-height:70px !important;
        padding:20px !important;

        font-size:17px !important;
    }
}

.footer-author{

    display:inline-block;

    color:#70798a;

    font-size:14px;

    letter-spacing:.02em;

    opacity:.9;

    text-decoration:none;

    line-height:1.7;

    transition:
        color .25s ease,
        opacity .25s ease;

}

.footer-author:hover{

    color:#8d99ab;

    opacity:1;

}

.footer-stelar{

    color:#70798a;

    text-decoration:none;

    transition:
        color .25s ease,
        opacity .25s ease;

}

.footer-stelar:hover{

    color:#ffde00;

}

.ai-trigger{

    display:none !important;

}




/* =========================================
   FINÁLNÍ MOBILNÍ HLAVIČKA – VŠE V JEDNOM ŘÁDKU
========================================= */

.header-contact .call-label-mobile{
    display:none;
}

@media (max-width:980px){

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

  nav{
    min-height:86px;
    padding:
      calc(10px + env(safe-area-inset-top))
      12px
      10px;

    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;

    gap:8px;
  }

  .logo{
    flex:1 1 auto;
    min-width:0;
    max-width:none;

    gap:5px;

    margin-left:-4px;
  }

  .logo-mark{
    flex:0 0 auto;
  }

  .logo-mark img{
    width:88px;
    max-width:none;
  }

  .logo-divider{
    flex:0 0 1px;

    height:42px;

    margin-left:-5px;
    margin-right:4px;
  }

  .logo-text{
    min-width:0;
  }

  .logo-text h3{
    font-size:13px;
    letter-spacing:.08em;
    white-space:nowrap;
  }

  .logo-text p{
    margin-top:3px;

    font-size:8px;
    letter-spacing:.08em;

    white-space:nowrap;
  }

  .menu{
    display:flex !important;
    flex:0 0 auto;

    margin:0 !important;
    gap:0;
  }

  .menu .header-contact:not(:first-child){
    display:none !important;
  }

  .menu .header-contact:first-child{
    display:flex !important;

    min-width:96px;
    width:96px;
    height:46px;

    padding:0 12px;

    justify-content:center;
    align-items:center;

    border-radius:14px;

    flex:0 0 auto;
  }

  .menu .header-contact:first-child strong{
    margin:0;

    font-size:12px;
    line-height:1;

    white-space:nowrap;
  }

  .call-label-desktop,
  .call-number{
    display:none !important;
  }

  .call-label-mobile{
    display:inline !important;
  }

  .hero{
    padding-top:
      calc(112px + env(safe-area-inset-top));
  }
}

@media (max-width:640px){

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

  nav{
    min-height:76px;
    padding:
      calc(8px + env(safe-area-inset-top))
      8px
      8px;

    gap:5px;
  }

  .logo{
    gap:3px;
    margin-left:-5px;
  }

  .logo-mark img{
    width:72px;
  }

  .logo-divider{
    height:36px;

    margin-left:-3px;
    margin-right:3px;
  }

  .logo-text h3{
    font-size:11px;
    letter-spacing:.06em;
  }

  .logo-text p{
    font-size:6.5px;
    letter-spacing:.055em;
  }

  .menu .header-contact:first-child{
    min-width:82px;
    width:82px;
    height:42px;

    padding:0 8px;

    border-radius:13px;
  }

  .menu .header-contact:first-child strong{
    font-size:11px;
  }

  .hero{
    padding-top:
      calc(98px + env(safe-area-inset-top));
  }
}

@media (max-width:380px){

  nav{
    padding-left:6px;
    padding-right:6px;
  }

  .logo-mark img{
    width:66px;
  }

  .logo-text h3{
    font-size:10px;
  }

  .logo-text p{
    font-size:6px;
  }

  .menu .header-contact:first-child{
    min-width:74px;
    width:74px;
    height:40px;
  }

  .menu .header-contact:first-child strong{
    font-size:10px;
  }
}