/* =========================================================
   VARIABLES – COLOR SYSTEM
========================================================= */
:root{
  --bg:#1e242b;
  --bg-deep:#161b21;
  --accent:#d4a017;
  --text:#f4f6f8;
  --text-dark:#1e242b;
  --muted:rgba(244,246,248,.65);
  --grid:rgba(212,160,23,.18);
}

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

html,body{
  width:100%;
  min-height:100%;
  background:var(--bg);
  color:var(--text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto;
  overflow-x:hidden;
}

/* =========================================================
   STAGE
========================================================= */
.stage{
  position:relative;
  width:100vw;
  min-height:100vh;
  min-height:100svh; /* notebook / browser UI safe */
  overflow:hidden;
}

/* =========================================================
   TECH FIELD (GRID + LASERS)
========================================================= */
.tech-field{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
}

/* GRID */
.grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg,var(--grid) 1px, transparent 1px);
  background-size:260px 260px;
  opacity:.35;
}

/* LASERS */
.lasers{ position:absolute; inset:0; }

.laser{
  position:absolute;
  opacity:.9;
}

/* vertical */
.laser.v{
  width:2px;
  height:140%;
  top:-20%;
  background:linear-gradient(to bottom, transparent, var(--accent), transparent);
  box-shadow:0 0 40px rgba(212,160,23,.55);
  animation:scan-v 18s linear infinite;
}

/* horizontal */
.laser.h{
  height:2px;
  width:140%;
  left:-20%;
  background:linear-gradient(to right, transparent, var(--accent), transparent);
  box-shadow:0 0 40px rgba(212,160,23,.55);
  animation:scan-h 22s linear infinite;
}

/* positions */
.l1{ left:14%; animation-delay:0s }
.l2{ left:78%; animation-delay:8s }
.l3{ top:70%; animation-delay:4s }

@keyframes scan-v{
  from{ transform:translateY(-30%) }
  to{ transform:translateY(30%) }
}

@keyframes scan-h{
  from{ transform:translateX(-30%) }
  to{ transform:translateX(30%) }
}

/* =========================================================
   HERO IMAGE
========================================================= */
.hero{
  position:absolute;
  inset:0;
  width:110%;
  height:110%;
  object-fit:cover;
  opacity:.9;
  z-index:2;
  pointer-events:none;
}

/* =========================================================
   CONTENT ZONE
========================================================= */
.content-zone{
  position:relative;
  z-index:5;
  max-width:1400px;
  margin:0 auto;
  padding:110px 56px 0;
  background:var(--bg);
}

/* ambient glow */
.content-zone::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:420px;
  background:radial-gradient(
    600px 200px at 20% 20%,
    rgba(212,160,23,.06),
    transparent
  );
  pointer-events:none;
}

/* =========================================================
   HERO HEADLINE
========================================================= */
.manifest{
  font-size:clamp(2.8rem,5.5vw,4.6rem);
  line-height:1.05;
  font-weight:800;
  letter-spacing:-0.02em;
  margin-bottom:28px;
  color:var(--text);
  text-shadow:
    0 1px 0 rgba(0,0,0,.4),
    0 0 40px rgba(212,160,23,.08);
}

.manifest span{ display:block; position:relative; }
.manifest span:nth-child(2){ margin-left:.4em; }
.manifest span:nth-child(3){ margin-left:.8em; }

.manifest span:last-child::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:72px;
  height:4px;
  background:var(--accent);
}

/* =========================================================
   HERO LEAD
========================================================= */
.hero-lead{
  max-width:760px;
  font-size:1.05rem;
  line-height:1.6;
  color:var(--muted);
  margin-bottom:10px;
}

/* =========================================================
   CARDS
========================================================= */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px;
}

.card{
  position:relative;
  padding:40px 36px;
  background:var(--bg-deep);
  border:2px solid rgba(244,246,248,.18);
  font-size:1.15rem;
  line-height:1.35;
  font-weight:600;
  color:var(--text);
  transition:transform .25s ease, border-color .25s ease;
}

.card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:6px;
  height:100%;
  background:var(--accent);
}

.card strong{
  display:block;
  margin-top:10px;
  font-size:1.35rem;
  font-weight:800;
  color:var(--accent);
}

.card:hover{
  transform:translateY(-6px);
  border-color:var(--accent);
}

/* scan effect */


@keyframes scan-card{
  from{ top:-40%; }
  to{ top:120%; }
}

/* CTA */
.card.cta{
  background:var(--accent);
  color:var(--text-dark);
  border-color:var(--accent);
}

.card.cta::before{ background:var(--bg); }
.card.cta strong{ color:var(--text-dark); }

/* =========================================================
   SCROLL INVITE
========================================================= */
.scroll-invite{
  position:absolute;
  bottom:56px;
  left:50%;
  transform:translateX(-50%);
  z-index:6;
  text-align:center;
  opacity:.85;
  animation:float 3.6s ease-in-out infinite;
}

.scroll-invite span{
  display:block;
  margin-bottom:12px;
  font-size:11px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--muted);
}

.scroll-invite img{
  width:140px;
  max-width:60vw;
  filter:drop-shadow(0 20px 40px rgba(212,160,23,.45));
}

@keyframes float{
  0%,100%{ transform:translate(-50%,0); opacity:.7; }
  50%{ transform:translate(-50%,14px); opacity:1; }
}

/* =========================================================
   LOGO
========================================================= */
/* =========================================================
   LOGO – top right (fixed visual presence)
========================================================= */
.site-logo{
  position:absolute;
  top:32px;
  right:32px;
  z-index:10;

  width:280px;        /* explicitně – brand size */
  max-width:30vw;     /* pojistka pro menší NTB */
  height:auto;

  opacity:.9;
  transition:opacity .2s ease;
}


.site-logo:hover{ opacity:1; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media(max-width:1100px){
  .cards{ grid-template-columns:1fr 1fr; }
}

@media(max-width:700px){
  .content-zone{ padding:90px 28px 0; }
  .cards{ grid-template-columns:1fr; }
  .manifest{ font-size:2.4rem; }
  .site-logo{ top:20px; right:20px; height:28px; }
}

/* notebook height fix */
@media(max-height:800px){
  .content-zone{ padding-top:80px; }
  .hero-lead{ margin-bottom:56px; }
  .cards{ gap:28px; }
  .card{ padding:32px 30px; }
}
/* =========================================================
   NOTEBOOK TUNING – HERO HEADLINE
========================================================= */
@media (max-height: 850px){
  .manifest{
    font-size:clamp(2.2rem,4.5vw,3.6rem);
    margin-bottom:22px;
  }

  .manifest span:last-child::after{
    bottom:-8px;
    height:3px;
    width:56px;
  }
}
@media(max-width:700px){
  .site-logo{
    width:230px;
    top:20px;
    right:20px;
  }
}
/* =========================================================
   PAGE TRANSITION
========================================================= */
#page-transition{
  position:fixed;
  inset:0;
  background:var(--accent);
  z-index:999;
  transform:translateX(-100%);
  transition:transform .7s cubic-bezier(.7,0,.3,1);
  pointer-events:none;
}

/* aktivní stav */
#page-transition.active{
  transform:translateX(0);
}
/* =========================================================
   WEBDESIGN FUNNEL SECTIONS
========================================================= */

.wd-section{
  max-width:1200px;
  margin:0 auto;
  padding:140px 56px;
}

/* jemné oddělení sekcí */
.wd-section + .wd-section{
  border-top:1px solid rgba(244,246,248,.08);
}

/* ---------------------------------------------------------
   HEADINGS
--------------------------------------------------------- */
.wd-section h2{
  font-size:clamp(2rem,4vw,3rem);
  font-weight:800;
  letter-spacing:-0.02em;
  margin-bottom:48px;
  color:var(--text);
}

/* menší podnadpisy */
.wd-section h3{
  font-size:1.35rem;
  font-weight:700;
  margin-bottom:12px;
  color:var(--text);
}

/* ---------------------------------------------------------
   TEXT
--------------------------------------------------------- */
.wd-section p{
  font-size:1.05rem;
  line-height:1.65;
  color:var(--muted);
  max-width:760px;
}

.wd-note{
  margin-top:32px;
  font-style:italic;
  color:rgba(244,246,248,.55);
}

/* ---------------------------------------------------------
   LISTY
--------------------------------------------------------- */
.wd-list{
  list-style:none;
  margin:0;
  padding:0;
  max-width:720px;
}

.wd-list li{
  position:relative;
  padding-left:28px;
  margin-bottom:16px;
  font-size:1.05rem;
  line-height:1.6;
}

/* žlutý bod – jemný */
.wd-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.65em;
  width:8px;
  height:8px;
  background:var(--accent);
}

/* ---------------------------------------------------------
   PROBLEM
--------------------------------------------------------- */
.wd-problem{
  background:linear-gradient(
    to bottom,
    rgba(212,160,23,.04),
    transparent
  );
}

/* ---------------------------------------------------------
   SOLUTION – COLUMNS
--------------------------------------------------------- */
.wd-columns{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:48px;
}

.wd-columns p{
  max-width:none;
}

/* ---------------------------------------------------------
   PROCESS – STEPS
--------------------------------------------------------- */
.wd-steps{
  list-style:none;
  counter-reset:step;
  padding:0;
  margin:0;
  max-width:900px;
}

.wd-steps li{
  counter-increment:step;
  position:relative;
  padding-left:64px;
  margin-bottom:36px;
  font-size:1.05rem;
  line-height:1.6;
}

/* číslo kroku */
.wd-steps li::before{
  content:counter(step);
  position:absolute;
  left:0;
  top:0;
  width:40px;
  height:40px;
  border-radius:50%;
  border:2px solid var(--accent);
  color:var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
}

/* ---------------------------------------------------------
   FIT GRID
--------------------------------------------------------- */
.wd-fit-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  max-width:900px;
}

.wd-fit-grid ul{
  list-style:none;
  padding:0;
}

.wd-fit-grid li{
  position:relative;
  padding-left:24px;
  margin-bottom:14px;
}

/* check / cross */
.wd-fit-grid li::before{
  content:"–";
  position:absolute;
  left:0;
  color:var(--accent);
}

/* ---------------------------------------------------------
   CTA SECTION
--------------------------------------------------------- */
.wd-cta{
  text-align:left;
  background:linear-gradient(
    to right,
    rgba(212,160,23,.08),
    transparent
  );
}

.cta-primary{
  display:inline-block;
  margin-top:40px;
  padding:18px 36px;
  background:var(--accent);
  color:var(--text-dark);
  font-weight:700;
  text-decoration:none;
  letter-spacing:.02em;
  transition:transform .25s ease, box-shadow .25s ease;
}

.cta-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 50px rgba(212,160,23,.35);
}

.wd-small{
  margin-top:16px;
  font-size:.9rem;
  color:rgba(244,246,248,.55);
}

/* =========================================================
   RESPONSIVE – WEBDESIGN PAGE
========================================================= */
@media(max-width:1000px){
  .wd-columns{
    grid-template-columns:1fr;
    gap:36px;
  }

  .wd-fit-grid{
    grid-template-columns:1fr;
    gap:48px;
  }
}

@media(max-width:700px){
  .wd-section{
    padding:100px 28px;
  }

  .wd-section h2{
    font-size:2rem;
  }

  .wd-steps li{
    padding-left:56px;
  }
}
/* =========================================================
   HERO 100VH – WEBDESIGN
========================================================= */
.hero-vh{
  min-height:100vh;
  min-height:100svh;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* CTA row */
.hero-cta-row{
  margin-top:56px;
  display:flex;
  gap:32px;
  align-items:center;
}

/* sekundární CTA */
.cta-secondary{
  background:none;
  border:none;
  color:var(--muted);
  font-size:1rem;
  font-weight:600;
  cursor:pointer;
  position:relative;
  padding:0;
}

.cta-secondary::after{
  content:"→";
  margin-left:10px;
  color:var(--accent);
  transition:transform .25s ease;
}

.cta-secondary:hover::after{
  transform:translateX(6px);
}
/* =========================================================
   CONTACT FORM
========================================================= */
.wd-contact{
  background:linear-gradient(
    to right,
    rgba(212,160,23,.06),
    transparent
  );
}

.contact-lead{
  max-width:640px;
  margin-bottom:48px;
  font-size:1.05rem;
  color:var(--muted);
}

/* FORM */
.contact-form{
  max-width:720px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  margin-bottom:32px;
}

label{
  display:flex;
  flex-direction:column;
  font-size:.85rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(244,246,248,.6);
}

label.full{
  margin-bottom:32px;
}

/* INPUTS */
input,
textarea{
  margin-top:8px;
  padding:14px 16px;
  background:var(--bg-deep);
  border:2px solid rgba(244,246,248,.15);
  color:var(--text);
  font-size:1rem;
  font-family:inherit;
  resize:none;
  transition:border-color .25s ease, box-shadow .25s ease;
}

input::placeholder,
textarea::placeholder{
  color:rgba(244,246,248,.35);
}

input:focus,
textarea:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(212,160,23,.12);
}

/* FOOTER */
.form-footer{
  display:flex;
  align-items:center;
  gap:32px;
}

.form-note{
  font-size:.9rem;
  color:rgba(244,246,248,.5);
}

/* RESPONSIVE */
@media(max-width:700px){
  .form-row{
    grid-template-columns:1fr;
  }

  .form-footer{
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
  }
}
/* =========================================================
   CONTACT INFO BLOCK
========================================================= */

.contact-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:64px;
  align-items:flex-start;
}

/* =========================================================
   CONTACT INFO – BEZ RÁMEČKU
========================================================= */

.contact-info{
  padding:0;
  background:transparent;
  border:none;
}

/* nadpis */
.contact-info h3{
  margin-bottom:24px;
  font-size:1.4rem;
}

/* osoba */
.contact-person{
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin-bottom:24px;
  color:var(--text);
}

/* seznam kontaktů */
.contact-list{
  list-style:none;
  padding:0;
  margin:0 0 24px 0;
}

.contact-list li{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
  font-size:1rem;
}

/* odkazy */
.contact-list a{
  color:var(--text);
  text-decoration:none;
}

.contact-list a:hover{
  text-decoration:underline;
}

/* poznámka */
.contact-note{
  font-size:.9rem;
  color:rgba(244,246,248,.55);
  max-width:320px;
}


/* RESPONSIVE */
@media(max-width:900px){
  .contact-grid{
    grid-template-columns:1fr;
    gap:48px;
  }
}
/* =========================================================
   SVG CONTACT ICONS
========================================================= */

.contact-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  flex-shrink:0;
}

.contact-icon img{
  width:100%;
  height:100%;
  filter:invert(68%) sepia(55%) saturate(520%) hue-rotate(8deg);
  opacity:.95;
}


/* zarovnání textu s ikonou */
.contact-person{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.contact-person strong{
  display:block;
}

/* seznam */
.contact-list li{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
}
/* =========================================================
   HERO SCROLL ARROW – CONTACT
========================================================= */

.hero-scroll{
  position:absolute;
  left:56px;
  bottom:56px;
  display:flex;
  align-items:center;
  gap:16px;

  text-decoration:none;
  color:var(--muted);
  font-size:.8rem;
  letter-spacing:.18em;
  text-transform:uppercase;

  z-index:6;
  opacity:.85;
  transition:opacity .25s ease;
}

.hero-scroll:hover{
  opacity:1;
}

/* text */
.scroll-text{
  color:rgba(244,246,248,.6);
}

/* arrow svg */
.scroll-arrow{
  width:28px;
  height:28px;
  stroke:var(--accent);
  stroke-width:2;
  fill:none;

  filter:drop-shadow(0 8px 24px rgba(212,160,23,.35));
  animation:arrow-float 2.8s ease-in-out infinite;
}

/* hover = větší jistota */
.hero-scroll:hover .scroll-arrow{
  animation-play-state:paused;
  transform:translateY(4px);
}

/* animace */
@keyframes arrow-float{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(10px);
  }
}

/* MOBILE */
@media(max-width:700px){
  .hero-scroll{
    left:28px;
    bottom:36px;
  }
}
/* =========================================================
   PAPER MENU – DESKTOP (v3.1 FINAL TUNE)
========================================================= */
/* =========================================================
   PAPER MENU – STABLE BASE (DESKTOP + NOTEBOOK)
========================================================= */

.paper-menu{
  position:fixed;
  top:200px;          /* bezpečné pod logo */
  right:0;
  z-index:9000;

  display:flex;
  flex-direction:column;
  gap:14px;

  max-height:calc(100vh - 240px);
}

/* ---------------------------------------------------------
   PAPÍR – VŠE VIDITELNÉ
--------------------------------------------------------- */
.paper-tab{
  position:relative;
  display:flex;
  align-items:center;

  width:260px;
  min-height:52px;
  padding:14px 26px 14px 34px;

  background:#d4a017;
  color:#1e242b;
  text-decoration:none;

  font-weight:700;
  font-size:.95rem;
  line-height:1.25;

  /* 🔑 všechny stejně vytažené */
  transform:translateX(24px);

  box-shadow:-8px 8px 22px rgba(0,0,0,.28);

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

/* ---------------------------------------------------------
   JEMNÝ ZÁHYB (NEPŘEKÁŽÍ)
--------------------------------------------------------- */
.paper-tab::before{
  content:"";
  position:absolute;
  top:0;
  left:0;

  width:12px;
  height:12px;

  background:linear-gradient(
    135deg,
    rgba(0,0,0,.25),
    rgba(255,255,255,.25)
  );
}

/* ---------------------------------------------------------
   HOVER – MALÝ, BEZ POSUNU LAYOUTU
--------------------------------------------------------- */
.paper-tab:hover{
  box-shadow:-12px 12px 30px rgba(0,0,0,.38);
}

/* ---------------------------------------------------------
   AKTIVNÍ STRÁNKA – FUNKČNÍ A JASNÁ
--------------------------------------------------------- */
.paper-tab.active{
  background:#f1c232;
  transform:translateX(6px);
  box-shadow:
    -18px 18px 40px rgba(0,0,0,.5),
    inset -4px 0 0 rgba(0,0,0,.25);
}
/* =========================================================
   LOGO + MENU ALIGN
========================================================= */

.logo-wrap{
  position:fixed;
  top:-100px;                 /* necháme jak máš */
  right:-100px;
  z-index:25;

  transform:translateX(24px);   /* ⬅️ stejný posun jako menu */
  transition:
    transform .35s cubic-bezier(.4,0,.2,1),
    opacity .25s ease;
}

/* samotné logo */
.site-logo{
  height:200x;              /* nebo co máš */
  width:auto;
  display:block;
}

/* ---------------------------------------------------------
   KDYŽ JE NĚJAKÁ STRÁNKA AKTIVNÍ
   (přidáme třídu na body)
--------------------------------------------------------- */
body.has-active-menu .logo-wrap{
  transform:translateX(8px);   /* ⬅️ stejně jako active tab */
}
.hero-human{
  max-width:720px;
  margin-top:0px;
  font-size:.95rem;
  line-height:1.6;
  color:rgba(244,246,248,.6);
}
.hero-points{
  margin-top:0px;        /* menší mezera */
  margin-bottom:36px;     /* aby to netlačilo karty dolů */
  padding:0;
  list-style:none;
  max-width:720px;
}

.hero-points li{
  position:relative;
  padding-left:18px;
  font-size:1.0rem;
  line-height:1.5;
  color:rgba(244,246,248,.65);
}

.hero-points li + li{
  margin-top:-5px;
}

/* jemný akcent místo klasické odrážky */
.hero-points li::before{
  content:"–";
  position:absolute;
  left:0;
  color:var(--accent);
}
.hero-meta{
  margin-top:18px;
  max-width:720px;
}

.hero-meta p{
  margin:0 0 8px 0;
  font-size:.95rem;
  line-height:1.5;
  color:rgba(244,246,248,.7);
}

.hero-meta ul{
  margin:0;
  padding:0;
  list-style:none;
}

.hero-meta li{
  position:relative;
  padding-left:16px;
  font-size:.85rem;
  line-height:1.4;
  color:rgba(244,246,248,.6);
}

.hero-meta li + li{
  margin-top:4px;
}

.hero-meta li::before{
  content:"–";
  position:absolute;
  left:0;
  color:var(--accent);
}
.brand-note{
  position:absolute;
  top:200px;          /* lehce pod logo */
  right:40px;
  text-align:right;
  font-size:1.4rem;
  line-height:1.35;
  color:rgba(244,246,248,.55);
  max-width:350px;
}

.brand-note span{
  display:block;
}

.brand-note span + span{
  margin-top:4px;
}

/* akcent */
.brand-note span::before{
  
  color:var(--accent);
}
.brand-wrap{
  position:fixed;
  top:32px;
  right:32px;
  z-index:20;
  text-align:right;
}

/* logo */
.site-logo{
  display:block;
  margin-left:auto;
}

/* note */
.brand-note{
  margin-top:10px;
  font-size:.75rem;
  line-height:1.35;
  color:rgba(244,246,248,.55);
  max-width:220px;
}

.brand-note span{
  display:block;
}

.brand-note span + span{
  margin-top:4px;
}
/* =========================================================
   PATCH: BRAND (LOGO + NOTE) – FIX CONFLICTS
   Zachovává původní velikosti a vizuál
========================================================= */

/* přebije všechny staré site-logo definice */
.site-logo{
  position:static !important;
  width:500px;
  max-width:30vw;
  height:auto;
  display:block;
  margin-left:auto;
  opacity:.9;
}

/* sjednocený wrapper */
.brand-wrap{
  position:fixed;
  top:10px;
  right:32px;
  z-index:30;
  text-align:right;
}

/* přebije staré absolute/right:-200px */
.brand-note{
  margin-top:10px;  
  margin-right: 50px;      /* ⬅️ bylo 10px */
  font-size:1.4rem;
  line-height:1.25;     /* ⬅️ lehce utaženo */
  color:rgba(244,246,248,.55);
  max-width:350px;
}


.brand-note span{
  display:block;
}

.brand-note span + span{
  margin-top:4px;
}
/* =========================================================
   PROČ VĚTŠINA WEBŮ NEFUNGUJE – FINAL CLEAN
========================================================= */

.wd-problem{
  padding-bottom:120px;
}

.wd-problem-list{
  list-style:none;
  margin:56px 0 0 0;
  padding:0;
  max-width:880px;
}

/* jeden řádek */
.wd-problem-list li{
  position:relative;
  padding-left:48px;          /* místo pro X */
  margin-bottom:30px;

  font-size:1.25rem;
  line-height:1.6;
  color:rgba(244,246,248,.92);

  /* 🔑 ZAKÁZAT ROZPAD TEXTU */
  word-break:normal;
  overflow-wrap:normal;
  hyphens:none;
}

/* X */
.wd-problem-list .x{
  position:absolute;
  left:0;
  top:0.2em;

  font-size:1.6rem;
  font-weight:600;
  line-height:1;

  color:var(--accent);
  opacity:.85;
}

/* zvýraznění – bez barvy */
.wd-problem-list strong{
  font-weight:700;
  color:#fff;
}

/* doplňkový text */
.wd-problem-list small{
  display:block;
  margin-top:6px;
  font-size:.95rem;
  line-height:1.45;
  color:rgba(244,246,248,.55);
}

/* =========================================================
   POSLEDNÍ VĚTA – VÝZVA NAD CTA
========================================================= */

.wd-problem-list li.result{
  margin-top:48px;
  padding-top:36px;

  border-top:1px solid rgba(244,246,248,.15);

  font-size:1.4rem;
  font-weight:700;
  line-height:1.45;
  color:#fff;
}

.wd-problem-list li.result .x{
  opacity:.6;
}
/* =========================================================
   WEBDESIGN – SOLUTION (CHECK APPROACH)
========================================================= */

.wd-solution{
  padding-top:120px;
}

/* seznam */
.wd-solution-list{
  list-style:none;
  margin:56px 0 0 0;
  padding:0;
  max-width:900px;
}

/* řádek */
.wd-solution-list li{
  position:relative;
  display:flex;
  gap:28px;

  margin-bottom:48px;
  align-items:flex-start;
}

/* check */
.wd-solution-list .check{
  flex-shrink:0;

  font-size:1.6rem;
  font-weight:700;
  line-height:1;

  color:var(--accent);
  margin-top:6px;
}

/* nadpis */
.wd-solution-list h3{
  margin:0 0 8px 0;
  font-size:1.4rem;
  font-weight:800;
  color:#fff;
}

/* text */
.wd-solution-list p{
  margin:0;
  font-size:1.05rem;
  line-height:1.6;
  color:rgba(244,246,248,.75);
  max-width:680px;
}
/* =========================================================
   PROCESS – CLEAN & FINAL
========================================================= */

.wd-steps{
  list-style:none;
  counter-reset:step;
  padding:0;
  margin:56px 0 0 0;
  max-width:820px;
}

.wd-steps li{
  counter-increment:step;
  position:relative;

  padding-left:64px;
  margin-bottom:36px;
}

/* jediný kruh */
.wd-steps li::before{
  content:counter(step);
  position:absolute;
  left:0;
  top:0;

  width:40px;
  height:40px;
  border-radius:50%;

  border:2px solid var(--accent);
  color:var(--accent);
  background:transparent;

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

  font-weight:800;
  font-size:1rem;
}

/* text */
.wd-steps strong{
  display:block;
  font-size:1.25rem;
  font-weight:800;
  margin-bottom:6px;
  color:#fff;
}

.wd-steps p{
  margin:0;
  font-size:1.05rem;
  line-height:1.6;
  color:rgba(244,246,248,.75);
}
/* =========================================================
   FIT SECTION – YES / NO
========================================================= */

.wd-fit-grid ul{
  list-style:none;
  padding:0;
  margin:0;
}

/* společné */
.wd-fit-grid li{
  position:relative;
  padding-left:28px;
  margin-bottom:16px;
  font-size:1.05rem;
  line-height:1.6;
  color:rgba(244,246,248,.85);
}

/* ANO – check */
.fit-yes li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--accent);
  font-weight:700;
}

/* NE – X */
.fit-no li::before{
  content:"✕";
  position:absolute;
  left:0;
  top:0;
  color:rgba(244,246,248,.45);
  font-weight:700;
}
/* =========================================================
   BENEFITS – 2x2 SQUARE BLOCK (FINAL, NO MERGE)
========================================================= */

/* =========================================================
   BENEFITS – ROCK SOLID VERSION
========================================================= */

.wd-benefit-list{
  list-style:none;
  padding:0;
  margin:56px 0 0 0;
}

.wd-benefit-list li{
  display:flex;
  align-items:flex-start;
  gap:24px;
  margin-bottom:36px;
}

/* 2x2 MARK */
.benefit-mark{
  flex-shrink:0;
  display:grid;
  grid-template-columns:repeat(2, 7px);
  grid-template-rows:repeat(2, 7px);
  gap:6px;                 /* ⬅️ MEZERA MEZI ČTVERCI */
  margin-top:6px;
}

.benefit-mark::before,
.benefit-mark::after,
.benefit-mark span,
.benefit-mark span::after{
  content:"";
}

/* vytvoření 4 kostiček */
.benefit-mark{
  background:
    linear-gradient(var(--accent),var(--accent)) 0 0 /7px 7px no-repeat,
    linear-gradient(var(--accent),var(--accent)) 13px 0 /7px 7px no-repeat,
    linear-gradient(var(--accent),var(--accent)) 0 13px /7px 7px no-repeat,
    linear-gradient(var(--accent),var(--accent)) 13px 13px /7px 7px no-repeat;
}

/* text */
.benefit-text strong{
  display:block;
  font-size:1.25rem;
  font-weight:800;
  margin-bottom:6px;
  color:#fff;
}

.benefit-text span{
  font-size:1.05rem;
  line-height:1.6;
  color:rgba(244,246,248,.75);
}

.wd-benefit-list li{
  list-style:none !important;
}
/* =========================================================
   CONTACT – WITHOUT HERO
========================================================= */

.wd-contact{
  padding-top:100px;
}
/* =========================================================
   COOKIE BANNER – CLEAN CZ STYLE
========================================================= */

.cookie-banner{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:9999;

  background:rgba(22,27,33,.96);
  backdrop-filter:blur(6px);

  border-top:1px solid rgba(244,246,248,.12);
}

.cookie-content{
  max-width:1400px;
  margin:0 auto;
  padding:18px 32px;

  display:flex;
  gap:24px;
  align-items:center;
  justify-content:space-between;
}

.cookie-content p{
  margin:0;
  font-size:.9rem;
  line-height:1.45;
  color:rgba(244,246,248,.75);
}

.cookie-content a{
  color:var(--accent);
  text-decoration:none;
}

.cookie-content a:hover{
  text-decoration:underline;
}

.cookie-actions{
  display:flex;
  gap:12px;
  flex-shrink:0;
}

.cookie-btn{
  padding:10px 16px;
  font-size:.85rem;
  font-weight:700;
  border:none;
  cursor:pointer;
  transition:all .2s ease;
}

/* primary */
.cookie-btn.accept{
  background:var(--accent);
  color:var(--text-dark);
}

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

/* secondary */
.cookie-btn.essential{
  background:transparent;
  color:rgba(244,246,248,.85);
  border:1px solid rgba(244,246,248,.25);
}

.cookie-btn.essential:hover{
  border-color:var(--accent);
}

/* tertiary */
.cookie-btn.decline{
  background:none;
  color:rgba(244,246,248,.55);
}

.cookie-btn.decline:hover{
  color:rgba(244,246,248,.85);
}

/* MOBILE */
@media(max-width:800px){
  .cookie-content{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .cookie-actions{
    width:100%;
    flex-wrap:wrap;
  }

  .cookie-btn{
    flex:1 1 auto;
  }
}
/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-toggle{
  position:fixed;
  top:22px;
  left:22px;
  z-index:50;

  width:36px;
  height:26px;
  display:none;
  flex-direction:column;
  justify-content:space-between;

  background:none;
  border:none;
  cursor:pointer;
}

.mobile-toggle span{
  height:3px;
  width:100%;
  background:var(--accent);
  transition:.3s;
}

.mobile-toggle.active span:nth-child(1){
  transform:translateY(11px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2){
  opacity:0;
}
.mobile-toggle.active span:nth-child(3){
  transform:translateY(-11px) rotate(-45deg);
}

/* overlay */
.mobile-menu{
  position:fixed;
  inset:0;
  z-index:45;

  background:rgba(22,27,33,.98);
  backdrop-filter:blur(6px);

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:32px;

  transform:translateX(-100%);
  transition:transform .4s cubic-bezier(.4,0,.2,1);
}

.mobile-menu a{
  font-size:1.6rem;
  font-weight:800;
  color:#fff;
  text-decoration:none;
}

.mobile-menu a.active{
  color:var(--accent);
}

.mobile-menu.active{
  transform:translateX(0);
}

/* =========================================================
   NEXT PAGE (MOBILE)
========================================================= */

.next-page{
  position:fixed;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  z-index:40;

  display:none;
  flex-direction:column;
  align-items:center;
  gap:4px;

  text-decoration:none;
  text-align:center;
}

.next-page span{
  font-size:.6rem;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:var(--muted);
}

.next-page strong{
  font-size:1rem;
  font-weight:800;
  color:var(--accent);
}

/* breakpoints */
@media(max-width:900px){
  .mobile-toggle{ display:flex; }
  .paper-menu{ display:none; }
  .next-page{ display:flex; }
}

/* =========================================================
   MOBILE PATCH – BRAND + HERO
   (pouze přepis, desktop zůstává beze změny)
========================================================= */
@media (max-width: 700px){

  /* --- BRAND WRAP: vycentrovat --- */
  .brand-wrap{
    position:relative !important;
    top:auto;
    right:auto;
    left:auto;

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

    width:100%;
    margin:0 auto 24px;
    text-align:center;
  }

  /* --- LOGO: větší + střed --- */
  .site-logo{
    position:static !important;
    width:350px;          /* 🔧 ideální velikost pro mobil */
    max-width:100vw;
    margin:0 auto;
    margin-top: -150px;
    margin-bottom: -50px;
  }

  /* --- BRAND NOTE: skrýt --- */
  .brand-note{
    display:none !important;
  }

  /* --- HERO: dovolit scroll --- */
  .stage{
    min-height:auto;
    overflow:visible;
  }

  .content-zone{
    padding-top:120px;
    padding-bottom:50px; /* ⬅️ klíčové: CTA už se neschová */
  }

  /* --- KARTY: dýchat --- */
  .cards{
    margin-bottom:80px;
  }

}
/* =========================================================
   MOBILE + LANDSCAPE PATCH
   (malá výška = mobil naležato)
========================================================= */
@media (max-height: 500px){

  /* --- BRAND WRAP: vycentrovat --- */
  .brand-wrap{
    position:relative !important;
    top:auto;
    right:auto;
    left:auto;

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

    width:100%;
    margin:0 auto 16px;
    text-align:center;
  }

  /* --- LOGO: větší + střed --- */
  .site-logo{
    position:static !important;
    width:320px;
    max-width:90vw;
    margin:0 auto;
    margin-top:-120px;
    margin-bottom:-40px;
  }

  /* --- BRAND NOTE: skrýt --- */
  .brand-note{
    display:none !important;
  }

  /* --- HERO: povolit scroll --- */
  .stage{
    min-height:auto;
    overflow:visible;
  }

  .content-zone{
    padding-top:90px;
    padding-bottom:60px;
  }

  .cards{
    margin-bottom:60px;
  }
}
/* =========================================================
   FLOATING ACTION BUTTON – MOBILE
========================================================= */
/* =========================================================
   FLOATING ACTION BUTTON – FINAL SVG VERSION
========================================================= */

.fab-stack{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:60;

  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}

/* jen mobile */
@media (min-width:901px){
  .fab-stack{ display:none; }
}

/* =========================================================
   FAB BUTTON – BASE
========================================================= */

.fab-btn{
  width:56px;
  height:56px;
  border-radius:50%;
  
  display:flex;
  align-items:center;
  justify-content:center;

  background:var(--bg-deep);            /* ⬅️ tmavé */
  border:2px solid rgba(244,246,248,.25);
  cursor:pointer;

  box-shadow:0 12px 28px rgba(0,0,0,.45);
  transition:transform .2s ease, box-shadow .2s ease;
}

.fab-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(0,0,0,.6);
}

/* =========================================================
   FAB ICONS (SVG)
========================================================= */

.fab-btn img{
  width:22px;
  height:22px;
  display:block;
  pointer-events:none;
  filter:none;
}

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

.fab-sub{
  width:46px;
  height:46px;
}

/* =========================================================
   HIDE TOP HAMBURGER
========================================================= */

.mobile-toggle{
  display:none !important;
}
.fab-btn{
  background:var(--accent);
  border:none;
}

.fab-btn img{
  filter:invert(1);
}
/* =========================================================
   HERO CTA – MOBILE FIX (AVOID FAB OVERLAP)
========================================================= */
@media (max-width: 700px){

  .hero-cta-row{
    flex-direction:column-reverse;   /* ⬅️ secondary jde nahoru */
    align-items:flex-start;
    gap:20px;
    margin-bottom:90px;              /* ⬅️ prostor pro FAB */
  }

  .cta-secondary{
    order:-1;                        /* pojistka */
  }
}


/* Kontaktni formular – stavove zpravy a honeypot */
.hp-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.form-alert{
  max-width:1200px;
  margin:0 auto 24px;
  padding:14px 18px;
  border-radius:14px;
  line-height:1.5;
}

.form-alert-success{
  background:rgba(72, 187, 120, 0.15);
  border:1px solid rgba(72, 187, 120, 0.35);
}

.form-alert-error{
  background:rgba(245, 101, 101, 0.15);
  border:1px solid rgba(245, 101, 101, 0.35);
}
/* success / kontakt bez prázdného hero prostoru */
.stage-compact{
  min-height:auto;
  height:auto;
  overflow:visible;
}

/* SUCCESS – full screen bez prázdného horního prostoru */
.stage.stage-compact{
  min-height: auto;
  height: auto;
  overflow: visible;
}

#success-page{
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}

#success-page .contact-grid{
  width: 100%;
  align-items: center;
}

@media (min-width: 901px){
  .wd-contact{
    padding-top: 24px;
  }

  #success-page{
    padding-top: 24px;
  }

  #success-page .contact-form,
  #success-page .contact-info{
    margin-top: 0;
    align-self: center;
  }
}

/* =========================================================
   REFERENCES PAGE
========================================================= */
.wd-references{
  padding-top: 100px;
}

.reference-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
  margin-top:48px;
}

.reference-card{
  display:block;
  padding:28px;
  background:var(--bg-deep);
  border:2px solid rgba(244,246,248,.14);
  text-decoration:none;
  color:var(--text);
  transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;
}

.reference-card:hover{
  transform:translateY(-4px);
  border-color:var(--accent);
  box-shadow:0 18px 40px rgba(0,0,0,.22);
}

.reference-card strong{
  display:block;
  font-size:1.35rem;
  margin-bottom:10px;
  color:var(--text);
}

.reference-card p{
  max-width:none;
  margin:0;
}

.reference-domain{
  display:inline-block;
  margin-bottom:14px;
  font-size:.85rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--accent);
}

.references-cta{
  margin-top:42px;
}

@media(max-width:900px){
  .reference-grid{
    grid-template-columns:1fr;
  }
}
