:root{
  --brand:#2f7fd3;
  --brand-600:#236ab2;
  --ink:#0f172a;
  --muted:#475569;
  --bg:#f8fafc;
  --card:#ffffff;
  --ok:#10b981;
  --border:#e5e7eb;
  --shadow:0 12px 28px rgba(15,23,42,.06);
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{
  margin:0;
  padding:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--ink);
  background:#fff;
}
a{color:var(--brand);text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1180px,92%);margin:0 auto}

/* vyrovnání skrolu kvůli sticky headeru */

/* sekce, kde odkaz míří na CELÝ <section> (Jak to funguje, Ceník, Kontakt) */
#jak-to-funguje,
#cenik,
#kontakt,
#faq,
#co-kontrolujeme{
  scroll-margin-top:56px;
}


/* sekce, kde odkaz míří přímo na H2 (Reference) */
#reference{
  scroll-margin-top:96px;
}

/* HEADER / NAV */
header{
  position:sticky;
  top:0;
  background:#fff;
  border-bottom:1px solid var(--border);
  z-index:40;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

/* logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding-left: 16px;
  transition: opacity .2s ease, filter .2s ease;
}

.logo img {
  height: 46px;
  display: block;
  transition: opacity .2s ease, filter .2s ease;
}

/* hover – decentně zvýrazní logo */
.logo:hover img {
  opacity: 0.85;
  filter: brightness(1.15);
}

@media (max-width: 720px) {
  .logo {
    padding-left: 6px;
  }

  .logo img {
    height: 44px;
  }
}

.nav-links{
  display:flex;
  align-items:center;
  gap:22px;
}
.nav-links a{
  color:var(--ink);
  font-weight:600;
  position:relative;
  transition:color .15s ease;
}
.nav-links a:not(.cta)::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-4px;
  height:2px;
  border-radius:999px;
  background:var(--brand);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .15s ease;
}
.nav-links a:not(.cta):hover{
  color:var(--brand);
}
.nav-links a:not(.cta):hover::after{
  transform:scaleX(1);
}

/* CTA v hlavní navigaci */
.nav-links .cta{
  background:var(--brand);
  color:#fff;
  border:none;
  border-radius:12px;
  padding:14px 20px;
  font-weight:700;
  box-shadow:var(--shadow);
  cursor:pointer;
  display:inline-block;
  transition:background .15s ease,color .15s ease,box-shadow .15s ease;
}
.nav-links .cta:hover{
  background:var(--brand-600);
}

.nav-toggle{
  display:none;
  background:none;
  border:none;
  font-size:26px;
  cursor:pointer;
  margin-left:auto;
}

/* tlačítka */
.cta{
  background:var(--brand);
  color:#fff;
  border:none;
  border-radius:12px;
  padding:14px 18px;
  font-weight:700;
  box-shadow:var(--shadow);
  cursor:pointer;
  display:inline-block;
}
.cta:hover{background:var(--brand-600)}

.btn-secondary{
  border-radius:12px;
  padding:12px 18px;
  border:1px solid rgba(255,255,255,.7);
  color:#e2e8f0;
  font-weight:600;
  background:transparent;
  display:inline-block;
  transition:background .15s ease,color .15s ease,border-color .15s ease,box-shadow .15s ease;
}
.btn-secondary:hover{
  background:#e2e8f0;
  color:#0f172a;
  border-color:#e2e8f0;
}

/* Obecná tlačítka */
.btn {
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background .15s ease,
    color .15s ease,
    border-color .15s ease,
    box-shadow .15s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  background: var(--brand-600);
}

.btn-outline {
  background: #ffffff;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover {
  background: #e0edff;
  color: var(--brand-600);
  border-color: var(--brand);
  box-shadow:var(--shadow);
}

/* helpery pro viditelnost */
.show-mobile{display:none;}
.show-desktop{display:block;}

/* HERO */
.hero{
  position: relative;
  padding: 96px 0 64px;
  background: #0f172a;
  color:#fff;
  overflow: hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(15,23,42,.92) 0%, rgba(15,23,42,.72) 45%, rgba(15,23,42,.25) 70%, rgba(15,23,42,0) 100%),
    url("assets/hero.webp") center/cover no-repeat;
  filter:saturate(1.05);
  z-index:0;
  pointer-events:none;
}
.hero--import::before{
  background:
    linear-gradient(90deg, rgba(15,23,42,.82) 0%, rgba(15,23,42,.56) 42%, rgba(15,23,42,.18) 68%, rgba(15,23,42,0) 100%),
    url("/assets/hero-import.png") center/cover no-repeat;
}
.hero > *,
.hero .container{
  position:relative;
  z-index:1;
}

/* desktop grid */
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:48px;
  align-items:center;
}

/* mobilní IMG hero je defaultně skrytý – zapne se v @media */
.hero-mobile-media{
  display:none;
}

/* desktop hlavička */
.hero-desktop-head{
  display:block;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.12);
  color:#fff;
  padding:6px 10px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
}
h1{
  font-size:44px;
  line-height:1.08;
  margin:16px 0 12px;
  color:#fff;
}
.lead{
  font-size:18px;
  color:#e2e8f0;
  max-width:60ch;
  line-height:1.55;
}
.hero-actions{
  display:flex;
  gap:14px;
  margin-top:20px;
  flex-wrap:wrap;
}

.statbar{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:18px;
}
.stat{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:12px;
  backdrop-filter:blur(4px);
  color:#e2e8f0;
}
.stat i{
  width:18px;
  height:18px;
  border-radius:12px;
  background:var(--ok);
  display:inline-block;
}

.hero-logos{
  display:flex;
  gap:18px;
  align-items:center;
  margin-top:12px;
  opacity:.9;
}
.hero-logos img{
  height:22px;
  filter:brightness(0) invert(1) opacity(.9);
}

/* hero meta box */
.hero-meta{
  margin-top:16px;
  color:#cbd5e1;
  font-size:14px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  background:#020617;
  border-radius:14px;
  padding:12px 16px;
  max-width:460px;
  box-shadow:0 16px 40px rgba(15,23,42,.85);
  border:1px solid rgba(15,23,42,.9);
}


/* STRIP (Proč nás zvolit) */
.strip{
  background:var(--bg);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

/* sjednocené mezery mezi sekcemi */
section{
  padding:40px 0;
}
.section-heading{
  display:flex;
  align-items:end;
  justify-content:space-between;
  margin-bottom:18px;
}
.section-heading h2{margin:0;font-size:28px}

/* Krátký popis pod nadpisem sekce (stejné použití jako v Ceníku) */
.section-intro{
  margin: 6px 0 22px;
  font-size: 16px;
  color: #667085; /* stejné jako pricing-header p */
  max-width: 70ch;
}


.pill{
  background:#eef2ff;
  color:#3730a3;
  border-radius:999px;
  padding:8px 14px;
  font-weight:700;
  font-size:13px;
  line-height:1.15;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  max-width:100%;
  white-space:normal;
}

/* KARTY – CO KONTROLUJEME / REFERENCE */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:transform .16s ease, box-shadow .16s ease;
}
.card:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(15,23,42,.08);
}
.card .content{padding:16px}
.card h3{margin:0 0 6px}
.card p{margin:0;color:var(--muted)}

/* Reference – rámečky stejné jako Jak to funguje */
.reference-card{
  border:2px solid #d9e4ff;
}

/* PROČ NÁS ZVOLIT */
.trust{
  max-width: 480px;
  margin: 26px auto 0;
  padding: 16px 20px 18px;
  border-radius: 18px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}
.trust-title{
  margin:0;
  font-weight:600;
}
.logos{
  margin-top:4px;
  display:flex;
  gap:24px;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  opacity:.95;
}
.logos img{
  height:25px;
  filter:grayscale(15%);
}

.list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.check{
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.check i{
  background: var(--ok);
  color: white;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  font-size: 13px;
  font-style: normal;
}

.muted{color:var(--muted);font-size:14px}

/* extra mezera pro strip */
.strip .container{
  padding-top:32px;
  padding-bottom:28px;
}

/* FAQ – celý box klikací */
.faq details{
  position: relative;
  background:#0b1220;
  border:1px solid #233044;
  border-radius:14px;
  padding:0;                /* důležité */
  margin-bottom:12px;
  transition:border-color .15s ease, transform .15s ease;
  overflow:hidden;
}

.faq details:hover{
  border-color:rgba(47,127,211,.55);
  transform:translateY(-1px);
}

/* summary = celý klikací header */
.faq summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;

  padding:14px 16px;
  cursor:pointer;
  font-weight:800;
  color:#e5e7eb;

  user-select:none;         /* aby se netahal text */
  list-style:none;
}

/* šipka */
.faq summary::after{
  content:"▾";
  transition:transform .2s ease;
  color:#94a3b8;
}

.faq details[open] summary::after{
  transform:rotate(180deg);
}

/* obsah */
.faq p{
  padding:0 16px 16px;
  margin:0;
  color:#cbd5e1;
  line-height:1.6;
}

/* mobil */
@media (max-width:480px){
  .faq summary{
    padding:12px 14px;
    font-size:15px;
  }
  .faq p{
    padding:0 14px 14px;
    font-size:14px;
  }
}


/* -------------------------------------------
   FAQ – full-width sekce (světlá varianta)
------------------------------------------- */

.faq-section{
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-grid{
  display:grid;
  grid-template-columns: 1fr; /* 1 sloupec */
  gap:16px;
  width: 100%;               /* natáhne se na šířku .container */
}



/* Na mobilu 1 sloupec */
@media (max-width: 920px){
  .faq-grid{
    grid-template-columns: 1fr;
  }
}

/* Přepsání tmavých FAQ stylů jen uvnitř FAQ sekce */
.faq-section .faq details{
  background:#fff;
  border:2px solid #d9e4ff;
  border-radius:18px;
  margin-bottom: 0; /* ✅ grid gap už řeší mezery */
}

.faq-section .faq details:hover{
  border-color:#bfdbfe;
}

.faq-section .faq details[open]{
  border-color:#93c5fd;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
}


.faq-section .faq summary{
  font-size:18px;        /* bylo menší → teď je to "hero" styl */
  font-weight:800;
  line-height:1.25;
  padding:18px 20px;     /* vyšší = vypadá moderně */
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  color: var(--ink); /* ✅ DŮLEŽITÉ – aby text nebyl "bílý" */
}

.faq-section .faq summary::after{
  color:#64748b;
  font-size:18px;
  opacity:.8;
}

.faq-section .faq p{
  font-size:16px;
  line-height:1.55;
  padding: 0 20px 18px 20px;
  color: var(--muted);
}






/* KONTAKT */
.contact{background:#0b1220;color:#e5e7eb}
.contact h2{color:#fff}
.contact-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
}
.contact .box{
  background:#0f172a;
  border:1px solid #1f2937;
  border-radius:14px;
  padding:18px;
  line-height:1.40;  
}
label{
  display:block;
  font-size:13px;
  color:#cbd5e1;
  margin:8px 0 6px;
}
input,textarea{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:1px solid #334155;
  background:#0b1220;
  color:#e5e7eb;
}
textarea{min-height:120px}
.inline{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}
.tel{font-size:20px;font-weight:800}

/* FOOTER */
footer{
  padding:24px 0;
  border-top:1px solid var(--border);
  color:#64748b;
  font-size:14px;
}
footer a{
  color:#64748b;
  position:relative;
  text-decoration:none;
  transition:color .15s ease;
}
footer a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-4px;
  height:2px;
  border-radius:999px;
  background:var(--brand);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .15s ease;
}
footer a:hover{
  color:#64748b;
}
footer a:hover::after{
  transform:scaleX(1);
}

/* WhatsApp button */
.wa{
  position:fixed;
  right:18px;
  bottom:18px;
  background:#25D366;
  color:#fff;
  border-radius:999px;
  padding:12px 16px;
  font-weight:800;
  z-index:50;
  box-shadow:var(--shadow);
}
.wa:hover{filter:brightness(.95)}

/* -------------------------------------------
   CENÍK
------------------------------------------- */

.pricing-section {
  padding:20px 0 56px;
  background: #f7f9fc;
}

.pricing-header {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-header h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.pricing-header p {
  color: #667085;
  font-size: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pricing-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 22px 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid #d9e4ff;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  border-color: #bfdbfe;
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--brand);
}

.pricing-tagline {
  color: #4b5563;
  font-size: 16px;
  margin-bottom: 18px;
}

.pricing-tagline strong {
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #111827;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

/* čtvercová ikonka ve feature seznamu */
.feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--brand);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  margin-top: 3px;
}

.pricing-btn {
  margin-top: auto;
  text-align: center;
  display: inline-block;
  width: 100%;
}

/* Zvýrazněná karta – Premium */
.pricing-card--highlighted {
  border: 2px solid var(--brand);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.16);
}

.pricing-card--highlighted .pricing-price {
  color: var(--brand);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--brand);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Poznámka pod ceníkem */
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  margin-top: 26px;
}

/* Specifické sekundární tlačítko v ceníku */
.pricing-section .btn-secondary {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}
.pricing-section .btn-secondary:hover {
  background: #dbeafe;
}

/* Platby – Apple Pay, Google Pay, karty */
.payment-strip {
  margin-top: 28px;
}

.payment-strip-inner {
  max-width: 440px;
  margin: 0 auto;
  padding: 16px 20px 18px;
  border-radius: 18px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.payment-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color:var(--muted);
}

.payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.payment-logos img {
  height: 38px;
  display: block;
  filter:grayscale(15%);
}

.payment-divider {
  width: 1px;
  height: 24px;
  background: #cbd5e1;
  border-radius: 999px;
}

/* Mobil – loga trochu menší */
@media (max-width: 480px) {
  .payment-strip-inner {
    max-width: 100%;
  }

  .payment-logos img {
    height: 26px;
  }
}

/* -------------------------------------------
   Jak to funguje
------------------------------------------- */

.how-it-works {
  padding:40px 0;
  background: #ffffff;
}

.how-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.how-header h2 {
  font-size: 28px;
  margin: 0;
}

.how-badge {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #e0ebff;
  color: #2563eb;
  font-weight: 600;
  white-space: nowrap;
}

/* obal pro spojovací linku */
.how-steps-wrapper {
  position: relative;
  margin-top: 10px;
}

/* jemná gradientová linka spojující kroky */
.how-steps-wrapper::before {
  content: "";
  position: absolute;
  top: 110px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(219, 234, 254, 0),
    #dbeafe 15%,
    #bfdbfe 50%,
    #dbeafe 85%,
    rgba(219, 234, 254, 0)
  );
  z-index: 0;
  pointer-events: none;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  position: relative;
  z-index: 1;
}

.how-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 22px 24px;
  box-shadow: var(--shadow);
  border: 2px solid #d9e4ff;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease;
}

/* hover – stejné zvednutí jako karty v "Co kontrolujeme" */
.how-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15,23,42,.08);
  border-color: #bfdbfe;
}

.how-step-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #1d4ed8;
  background: #e0ebff;
  margin-bottom: 16px;
}

/* ikonka s glow efektem */
.how-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffffff 0, #eff6ff 35%, #dbeafe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.12);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease;
}

.how-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: #1d4ed8;
  fill: none;
}

/* micro-animace při hoveru */
.how-card:hover .how-card-icon {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.2);
}

.how-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.how-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 0 10px;
}

.how-card small {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}

.how-link {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.how-link:hover {
  text-decoration: underline;
}

/* -------------------------------------------
   RESPONSIVE – Jak to funguje + Ceník
------------------------------------------- */

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

  .pricing-card--highlighted {
    transform: none;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .how-steps-wrapper::before {
    display: none;
  }

  .how-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* -------------------------------------------
   RESPONSIVE – obecně
------------------------------------------- */

@media (max-width: 1024px){
  .hero-grid{grid-template-columns:1fr}
}

@media (max-width: 920px){
  .grid,
  .contact-grid,
  .list{grid-template-columns:1fr}
  .hero{padding:64px 0 42px}
  section{padding:48px 0;}  /* na mobilu mírně větší mezera než 40px */
}

/* HERO – responzivní úprava pro mobily */
@media (max-width: 768px){
  .hero{
    padding-top:0;
    padding-bottom:40px;
    background:#020617;
  }

  /* Použijeme mobilní IMG hero místo backgroundu */
  .hero::before{
    display:none;
  }

  .hero-grid{
    grid-template-columns:1fr;
    margin-top:0;
  }

  /* Mobilní hero obrázek + text přes něj */
  .hero-mobile-media{
    display:block;
    position:relative;
    height:260px;
    overflow:hidden;
  }

  .hero-mobile-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
  }

 /* OPRAVENO: správný název třídy hero-mobile-overlay */
  .hero-mobile-overlay{
    position:absolute;
    left:0;
    right:0;
    top:24px;
    padding:0 16px;
    display:flex;
    flex-direction:column;
    gap:10px;
    z-index:2;
  }

  .hero-mobile-overlay .badge{
    background:rgba(15,23,42,.85);
    border-radius:999px;
    padding:6px 12px;
    align-self:flex-start;
    backdrop-filter:blur(8px);
  }

  .hero-mobile-title{
    margin:0;
    font-size:28px;
    line-height:1.1;
    font-weight:800;
    color:#fff;
    text-shadow:0 2px 12px rgba(0,0,0,0.5);
  }

  /* Skryj desktop hlavičku na mobilu – text je nahoře přes fotku */
  .hero-desktop-head{
    display:none !important;
  }
}


/* Checks carousel – základní styly (desktop) */
.checks-carousel{position:relative;}
.checks-dots{display:none;}

@media (min-width: 769px){
  .checks-dots{
    display:none !important;
  }
}

/* Checks carousel – mobilní carousel */
@media (max-width: 768px){
  .checks-carousel{
    overflow:hidden;
    padding-right:6%;
    padding-bottom:6px;
    margin-bottom:34px;
    touch-action:pan-y;
  }
  .checks-grid{
    display:flex;
    gap:14px;
    will-change:transform;
  }
  .checks-grid .card{
    flex:0 0 86%;
    min-width:86%;
    scroll-snap-align:start;
  }
  .checks-grid .card:hover{
    transform:none;
  }
  .checks-grid .content{
    padding:14px 14px 16px;
  }
  .checks-grid .card h3{
    font-size:18px;
    line-height:1.15;
  }
  .checks-dots{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-top:16px;
    padding-right:6%;
  }
  .checks-dot{
    width:8px;
    height:8px;
    border:none;
    border-radius:999px;
    background:#cbd5e1;
    padding:0;
    cursor:pointer;
    transition:transform .2s ease, background-color .2s ease;
  }
  .checks-dot.is-active{
    background:var(--brand);
    transform:scale(1.15);
  }

  .section-heading{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .section-heading h2{
    font-size:26px;
    line-height:1.08;
  }
  .pill{
    align-self:flex-start;
    max-width:220px;
    text-align:left;
    justify-content:flex-start;
  }
}

/* MOBILE MENU / NAV */
@media (max-width: 960px){
  .nav{
    flex-wrap:wrap;
    padding:12px 0;
    gap:8px;
  }

  .nav-toggle{
    display:block;
    cursor:pointer;
    font-size:26px;
  }

  .nav-links{
    width:100%;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    padding-top:14px;
  }
  .nav-links.open{
    display:flex;
  }

  .nav-links a{
    font-size:18px;
    padding:6px 0;
  }

  .nav-links .cta{
    padding:12px 18px;
    border-radius:10px;
    align-self:flex-start;
    margin-top:4px;
  }
}



/* PODSTRÁNKY */
.hero--subpage {
  padding: 96px 0 64px;
  background: #0f172a;
  color: #fff;
}

.price-big {
  font-size: 36px;
  font-weight: 800;
  margin: 16px 0;
}

.price-big span {
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
}

.checklist {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.checklist li {
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 700;
}

.pricing-box {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}







/* =========================================
   CHECKOUT (Objednávka) – 2 kroky + Stripe styl
   Použití: <body class="page-checkout">
========================================= */

.page-checkout{
  background:#fff;
}

/* Header jen s logem */
.checkout-header{
  position:sticky;
  top:0;
  background:#fff;
  border-bottom:1px solid var(--border);
  z-index:50;
}
.checkout-header .container{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding:14px 0;
}

/* Hlavní layout */
.checkout{
  padding:28px 0 56px;
  background:#fff;
}
.checkout-wrap{
  width:min(980px,92%);
}

/* Horní blok: nadpis + text + stepper */
.checkout-top{
  text-align:center;
  margin: 6px 0 22px;
}
.page-checkout h1{
  color:var(--ink);
  font-size:34px;
  margin:0 0 8px;
  line-height:1.12;
}
.page-checkout .muted{
  color:var(--muted);
}

/* Stepper */
.stepper{
  margin:16px auto 0;
  width:min(520px, 100%);
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:12px;
  position:relative;
}

.step{
  width:34px;
  height:34px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  border:2px solid #cbd5e1;
  color:#64748b;
  background:#fff;
}

.step.active{
  border-color:var(--brand);
  color:var(--brand);
  box-shadow:0 0 0 4px rgba(47,127,211,.12);
}

.step-line{
  height:2px;
  background:#e5e7eb;
  border-radius:999px;
}

.step-labels{
  grid-column:1 / -1;
  display:flex;
  justify-content:space-between;
  margin-top:10px;
  font-weight:700;
  font-size:13px;
  color:#94a3b8;
  padding:0 2px;
}
.step-labels .active{
  color:var(--ink);
}

/* Grid: form + summary */
.checkout-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:start;
  margin-top:18px;
}

/* Panel (levá strana) */
.checkout-panel{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow: var(--shadow);
  padding:22px;
}

.page-checkout h2{
  font-size:20px;
  margin:0 0 14px;
  color:var(--ink);
}

/* Form prvky (světlý styl, ať to nepřebírá tmavé z contact sekce) */
.page-checkout label{
  color:#475569;
  font-weight:700;
  margin:10px 0 6px;
}

.page-checkout input,
.page-checkout textarea{
  background:#fff;
  color:var(--ink);
  border:1px solid #d1d5db;
  border-radius:12px;
  padding:12px;
  width:100%;
}

.page-checkout textarea{
  min-height:120px;
  resize:vertical;
}

.page-checkout input::placeholder,
.page-checkout textarea::placeholder{
  color:#94a3b8;
}

.page-checkout input:focus,
.page-checkout textarea:focus{
  outline:none;
  border-color:#93c5fd;
  box-shadow:0 0 0 4px rgba(59,130,246,.12);
}

/* Action row */
.actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}

/* Payment methods */
.payment-methods{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:8px 0 14px;
}

.pm{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px 12px;
  border:1px solid #e5e7eb;
  border-radius:14px;
  background:#f8fafc;
  cursor:pointer;
}

.pm input{
  width:auto;
  margin-top:2px;
}

.pm:hover{
  border-color:#bfdbfe;
  background:#eff6ff;
}

.consents{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid #e5e7eb;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.ck{
  display:flex;
  gap:10px;
  align-items:flex-start;
  cursor:pointer;
  color:#475569;
  font-weight:600;
}

.ck input{
  width:auto;
  margin-top:3px;
}

/* Summary (pravá strana) */
.checkout-summary{
  /* sticky bude jen na širších displejích níž */
}

.summary-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow: var(--shadow);
  padding:18px;
}

.summary-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding-bottom:12px;
  border-bottom:1px solid #e5e7eb;
}

.summary-title{
  font-weight:900;
  font-size:16px;
  color:var(--ink);
  margin-top:2px;
}

.summary-price{
  font-weight:900;
  font-size:18px;
  color:var(--ink);
  white-space:nowrap;
}

.summary-bullets{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
  color:#475569;
  line-height:1.45;
  font-size:14px;
}

.summary-bullets li{
  position:relative;
  padding-left:20px;
}

.summary-bullets li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  color:var(--ok);
  font-weight:900;
}

.summary-trust{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid #e5e7eb;
  display:flex;
  flex-direction:column;
  gap:8px;
  color:#475569;
  font-size:14px;
}

/* Responsive */
@media (max-width: 920px){
  .checkout-grid{
    grid-template-columns:1fr;
  }
  .checkout-summary{
    order:2; /* na mobilu klidně summary pod formem */
  }
  .checkout-panel{
    order:1;
  }
}

/* Sticky summary pouze desktop/tablet */
@media (min-width: 920px){
  .checkout-summary{
    position:sticky;
    top:84px; /* pod headerem */
  }
}

/* Jemné doladění typografie na menších displejích */
@media (max-width: 560px){
  .page-checkout h1{
    font-size:28px;
  }
  .checkout-panel{
    padding:18px;
  }
  .summary-card{
    padding:16px;
  }
}


/* Payment option – radio + obsah vedle */
.pm.pm-static{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

/* radio vlevo */
.pm.pm-static input{
  margin-top:3px;
}

/* tělo vpravo */
.pm-body{
  display:block;
}

/* Ikony vždy pod textem */
.pay-icons{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:12px;
  flex-wrap:wrap;
}

.pay-icons img{
  height:22px;
  width:auto;
  display:block;
}

/* (volitelné) lehce zmenšit ikony na menších displejích */
@media (max-width: 560px){
  .pay-icons img{ height:20px; }
}

.pm.pm-static{
  border-color:#bfdbfe;
  background:#eff6ff;
}


#jak-to-funguje,
#cenik,
#co-kontrolujeme{
  border-top: 1px solid var(--border);
}


/* Kontakt – pravý box: kanály + texty */
.contact-info h3{
  margin-top: 18px;     /* menší mezera nad nadpisem */
  margin-bottom: 6px;   /* malá mezera k textu */
}

.contact-info p{
  margin: 0 0 10px;     /* žádná mezera nahoře, jen dole */
  line-height: 1.5;
}

.contact-lead{
  margin: 8px 0 10px;
  color:#e5e7eb;
  font-size:15px;
  line-height:1.55;
}

.contact-note{
  margin: 0 0 14px;
  color:#cbd5e1;
  font-size:14px;
  line-height:1.55;
}

.contact-channels{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:10px;
}

.contact-link{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid #1f2937;
  background:#0b1220;
  color:#e5e7eb;
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
}

.contact-link:hover{
  border-color: rgba(47,127,211,.65);
  background:#0a162a;
  transform: translateY(-1px);
}

.contact-icon{
  width:28px;
  height:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:#0f172a;
  border:1px solid #1f2937;
  flex: 0 0 auto;
  color:#cbd5e1;
}

.contact-icon svg{
  width:16px;
  height:16px;
  display:block;
}

.contact-link:hover .contact-icon{
  color:#93c5fd; /* lehké zvýraznění při hoveru */
}

.contact-divider{
  height:1px;
  background:#1f2937;
  margin:16px 0;
  opacity:.9;
}

/* mobil: ať se to hezky čte */
@media (max-width: 920px){
  .contact-link{
    padding:12px 12px;
  }
}





/* ===== PV Cookie (dark, clean) ===== */
:root{
  --pv-panel: rgba(15, 23, 42, 0.92);
  --pv-border: rgba(148, 163, 184, 0.18);
  --pv-text: #e2e8f0;
  --pv-muted: rgba(226, 232, 240, 0.72);
  --pv-accent: #38bdf8; /* případně slaď s brand barvou */
  --pv-shadow: 0 18px 60px rgba(0,0,0,.45);
  --pv-radius: 16px;
}

.pv-cookie{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: none;
}
.pv-cookie.pv-cookie--show{ display:block; }

.pv-cookie__inner{
  max-width: 1040px;
  margin: 0 auto;
  background: var(--pv-panel);
  border: 1px solid var(--pv-border);
  border-radius: var(--pv-radius);
  box-shadow: var(--pv-shadow);
  backdrop-filter: blur(10px);
  padding: 16px;
  display: grid;
  gap: 14px;
}

.pv-cookie__title{
  font-weight: 700;
  letter-spacing: .2px;
  color: var(--pv-text);
  margin-bottom: 4px;
}
.pv-cookie__desc{
  color: var(--pv-muted);
  line-height: 1.35;
  font-size: 14px;
}
.pv-cookie__link{
  color: var(--pv-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(226,232,240,.35);
}
.pv-cookie__link:hover{
  text-decoration-color: rgba(56,189,248,.7);
}
.pv-cookie__sep{ margin: 0 8px; color: rgba(226,232,240,.35); }

.pv-cookie__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pv-btn{
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--pv-border);
  cursor: pointer;
  color: var(--pv-text);
  background: rgba(30, 41, 59, 0.55);
  transition: transform .05s ease, border-color .2s ease, background .2s ease;
}
.pv-btn:active{ transform: translateY(1px); }
.pv-btn--primary{
  border-color: rgba(56,189,248,.45);
  background: rgba(56,189,248,.14);
}
.pv-btn--primary:hover{
  background: rgba(56,189,248,.20);
  border-color: rgba(56,189,248,.65);
}
.pv-btn--ghost:hover{
  border-color: rgba(226,232,240,.30);
  background: rgba(30,41,59,.70);
}

/* ===== Modal ===== */
.pv-modal{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}
.pv-modal.pv-modal--show{ display:block; }

.pv-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.pv-modal__card{
  position: relative;
  max-width: 720px;
  margin: 9vh auto 0;
  background: rgba(15,23,42,.96);
  border: 1px solid var(--pv-border);
  border-radius: var(--pv-radius);
  box-shadow: var(--pv-shadow);
  color: var(--pv-text);
  overflow: hidden;
}
.pv-modal__header{
  padding: 16px 18px;
  border-bottom: 1px solid var(--pv-border);
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
}
.pv-modal__title{ font-weight: 800; }
.pv-modal__subtitle{ color: var(--pv-muted); font-size: 14px; margin-top: 4px; }
.pv-x{
  border: 1px solid var(--pv-border);
  background: rgba(30,41,59,.55);
  color: var(--pv-text);
  border-radius: 10px;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.pv-modal__body{ padding: 10px 18px 6px; }
.pv-row{
  display:flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(148,163,184,.12);
}
.pv-row:last-child{ border-bottom: none; }
.pv-row__name{ font-weight: 800; }
.pv-row__desc{ color: var(--pv-muted); font-size: 14px; margin-top: 4px; max-width: 52ch; }
.pv-pill{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.18);
  background: rgba(30,41,59,.45);
  color: var(--pv-muted);
  font-size: 13px;
  white-space: nowrap;
}
.pv-modal__footer{
  padding: 14px 18px 18px;
  border-top: 1px solid var(--pv-border);
  display:flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Switch */
.pv-switch{ display:inline-flex; align-items:center; cursor:pointer; }
.pv-switch input{ position:absolute; opacity:0; width:1px; height:1px; }
.pv-switch__ui{
  width: 46px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.22);
  background: rgba(30,41,59,.55);
  position: relative;
  transition: background .2s ease, border-color .2s ease;
}
.pv-switch__ui:before{
  content:"";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(226,232,240,.92);
  position:absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  transition: left .2s ease;
}
.pv-switch input:checked + .pv-switch__ui{
  background: rgba(56,189,248,.20);
  border-color: rgba(56,189,248,.55);
}
.pv-switch input:checked + .pv-switch__ui:before{ left: 21px; }

@media (min-width: 860px){
  .pv-cookie__inner{
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 18px;
  }
}
@media (max-width: 520px){
  .pv-modal__card{ margin: 6vh 12px 0; }
  .pv-cookie{ left: 12px; right: 12px; bottom: 12px; }
}




/* =========================================================
   PV visual system refresh 2026
   jednotné bílé sekce + jemně odlišený kontakt
========================================================= */

.how-it-works,
.pricing-section,
.checks-section,
.benefits-section,
.faq-section,
.reference-section,
.strip{
  background:#ffffff;
  border-top:none;
  border-bottom:none;
}

#jak-to-funguje,
#cenik,
#co-kontrolujeme{
  border-top:none;
}

.contact{
  background:#f8fafc;
  color:var(--ink);
  border-top:1px solid #e2e8f0;
}

.contact h2{
  color:var(--ink);
}

.contact .box{
  background:#ffffff;
  border:1px solid #d9e4ff;
  border-radius:18px;
  padding:20px;
  line-height:1.5;
  box-shadow:0 10px 24px rgba(15,23,42,.05);
}

label{
  color:#475569;
}

input,
textarea{
  background:#ffffff;
  color:var(--ink);
  border:1px solid #cbd5e1;
}

input::placeholder,
textarea::placeholder{
  color:#94a3b8;
}

input:focus,
textarea:focus{
  outline:none;
  border-color:#93c5fd;
  box-shadow:0 0 0 4px rgba(59,130,246,.12);
}

.contact-info h3{
  color:var(--ink);
}

.contact-info p{
  color:#475569;
}

.contact-lead{
  color:#334155;
}

.contact-note{
  color:#64748b;
}

.contact-link{
  background:#ffffff;
  color:var(--ink);
  border:1px solid #dbe4f0;
}

.contact-link:hover{
  border-color:#bfdbfe;
  background:#f8fbff;
  transform:translateY(-1px);
}

.contact-icon{
  background:#eff6ff;
  border:1px solid #bfdbfe;
  color:var(--brand);
}

.contact-link:hover .contact-icon{
  color:var(--brand);
}

.contact-divider{
  background:#e2e8f0;
}

footer{
  background:#f8fafc;
  border-top:1px solid #e2e8f0;
}
