:root{
      --text: rgba(255,255,255,.92);
      --muted: rgba(255,255,255,.72);
      --stroke: rgba(255,255,255,.12);

      --accent:#ef2d55;
      --mint:#10d7b8;

      --shadow: 0 18px 55px rgba(0,0,0,.42);
      --shadowHero: 0 16px 60px rgba(0,0,0,.58);

      --radius: 18px;
      --max: 1160px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color:var(--text);
      background: #070a0c;
      overflow-x:hidden;
    }

    /* ✅ Center container 1160px */
    .container{
      max-width: var(--max);
      margin:0 auto;
      padding:0 20px;
    }
	#heroSeoChip {
		
		font-size: 14px;
	}
.hero-seo-chip{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  backdrop-filter: blur(12px);
}
header.hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 1.02;
  letter-spacing: -1px;
}
.hero-seo-chip.is-hidden{
  display: none;
}
    a{color:inherit; text-decoration:none}

    /* Buttons (minimal, ak už máš v projekte, vyhoď) */
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:.55rem;
      padding:12px 16px;
      border-radius:999px;
      font-weight:800;
      letter-spacing:.2px;
      border:1px solid transparent;
      user-select:none;
      white-space:nowrap;
      transition: transform .15s ease, filter .15s ease, background .15s ease, border-color .15s ease;
    }
    .btn:active{transform: translateY(1px)}
    .btn-primary{
      background: linear-gradient(135deg, rgba(239,45,85,1), rgba(239,45,85,.78));
      box-shadow: 0 18px 55px rgba(239,45,85,.25);
    }
    .btn-primary:hover{filter:brightness(1.06)}
    .btn-ghost{
      background: rgba(255,255,255,.07);
      border-color: rgba(255,255,255,.14);
      backdrop-filter: blur(10px);
    }
    .btn-ghost:hover{background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.20)}

    /* Chip */
    .chip{
      display:inline-flex; align-items:center; gap:.5rem;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.12);
      color:var(--muted);
      font-weight:700;
      font-size:13px;
      backdrop-filter: blur(12px);
    }
    .dot{
      width:8px; height:8px; border-radius:999px;
      background: var(--mint);
      box-shadow: 0 0 0 6px rgba(16,215,184,.14);
    }

    /* ===== HERO SLIDER ===== */
    header.hero{
      position:relative;
      min-height: 78vh;
      display:flex;
      align-items:center;
      padding: 92px 0 72px;
      overflow:hidden;
      isolation:isolate;
    }

    /* Full width backgrounds */
    .hero-bg{ position:absolute; inset:0; z-index:-3; }
    .hero-bg .bg{
      position:absolute; inset:-2px;
      background-size: cover;
      background-position: center;
      transform: scale(1.03);
      opacity:0;
      transition: opacity .6s ease;
      filter: none;
    }
    .hero-bg .bg.is-active{ opacity:1; }

    /* Overlay */
   header.hero::after{
content: "";
  position: absolute;
   inset: 0;
   background:
    /* zelený glow */
    radial-gradient(900px 520px at 18% 28%,
      rgba(16,215,184,.20),
      transparent 62%),

    /* červený glow vpravo */
    radial-gradient(760px 520px at 85% 40%,
      rgba(239,45,85,.24),
      transparent 60%),

    /* tmavší overlay (cca +35%) */
    linear-gradient(90deg,
      rgba(7,10,12,0) 0%,
      rgba(7,10,12,0) 35%,
      rgba(7,10,12,0) 65%,
      rgba(7,10,12,0) 100%
    );
  z-index: -2;
    }
 
    /* Noise */
    .hero-noise{
      position:absolute; inset:0; z-index:-1;
      opacity:.1;
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
      mix-blend-mode: overlay;
      pointer-events:none;
    }

    /* ✅ Grid centered (1160px via .container) */
    .hero-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 26px;
      align-items:stretch;
    }

    header.hero h2{
      margin:14px 0 10px;
      font-size: clamp(38px, 4.8vw, 58px);
      line-height: 1.02;
      letter-spacing: -1px;
    }
    header.hero p.lead{
      margin:0 0 18px;
      color: var(--muted);
      font-size: 16px;
      line-height:1.65;
      max-width: 56ch;
    }
    .hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}

    /* Hero card */
    .hero-card{
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.05));
      border: 1px solid rgba(255,255,255,.14);
      box-shadow: var(--shadowHero);
      backdrop-filter: blur(14px);
      padding: 16px;
      align-self:center;
    }
    .facts{display:grid; gap:12px}
    .fact{
      display:flex; align-items:baseline; justify-content:space-between;
      gap:14px;
      padding:12px 12px;
      border-radius:14px;
      background: rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.12);
    }
    .fact strong{font-size:16px; letter-spacing:-.2px}
    .fact span{font-size:13px; color:var(--muted); font-weight:700; text-align:right}

    /* Slider UI aligned to container */
    .hero-ui{
      position:absolute;
      left:0;
      right:0;
      bottom: 22px;
      z-index: 5;
    }
    .hero-ui .inner{
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 20px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }

    .hero-arrows{display:flex; gap:10px; align-items:center;}
    .hero-arrow{
      width:44px; height:44px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.08);
      color: rgba(255,255,255,.92);
      font-weight:900;
      cursor:pointer;
      display:grid;
      place-items:center;
      backdrop-filter: blur(12px);
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }
    .hero-arrow:hover{ background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22); }
    .hero-arrow:active{ transform: translateY(1px); }

    .hero-dots{
      display:flex;
      gap:10px;
      align-items:center;
      justify-content:center;
      flex-wrap:wrap;
    }
    .hero-dot{
      width:9px; height:9px;
      border-radius:99px;
      background: rgba(255,255,255,.26);
      border: 1px solid rgba(255,255,255,.12);
      cursor:pointer;
      transition: transform .15s ease, background .15s ease;
    }
    .hero-dot.is-active{
      background: rgba(16,215,184,.78);
      transform: scale(1.12);
    }

    .hero-progress{
      flex:1;
      height: 3px;
      border-radius: 99px;
      background: rgba(255,255,255,.12);
      overflow:hidden;
      max-width: 280px;
      margin-left:auto;
    }
    .hero-progress > span{
      display:block;
      height:100%;
      width:0%;
      background: rgba(239,45,85,.75);
      transition: width .2s linear;
    }

    /* Text fade */
    .hero-copy{ transition: opacity .35s ease, transform .35s ease; }
    .hero-copy.is-switching{ opacity:0; transform: translateY(6px); }

    @media (max-width: 980px){
      .hero-grid{grid-template-columns: 1fr}
      header.hero{min-height:72vh; padding: 78px 0 64px;}
      .hero-progress{display:none;}
    }