:root{
  /* Svetlý základ */
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface2: #f2f4f8;

  --text: #0b1220;
  --muted: #52607a;
  --line: rgba(15, 23, 42, .12);

  --shadow: 0 18px 60px rgba(2, 6, 23, .10);
  --radius: 18px;

  /* Akcent */
  --accent: #82b648;
  --accent2: #62a431;

  --container: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 500px at 15% -10%, rgba(130,182,72,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(2, 6, 23, .06), transparent 60%),
    linear-gradient(180deg, var(--bg), #ffffff 55%, var(--bg));
}

a{ color: #1f4b99; text-decoration:none; }
a:hover{ text-decoration:underline; }
p{ line-height:1.65; margin:0 0 14px; }
ul{ margin:0; padding-left: 18px; }
li{ line-height:1.55; margin: 8px 0; }

.container{
  width:min(var(--container), calc(100% - 36px));
  margin:0 auto;
}

.skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus{
  left:14px;
  top:14px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background: var(--surface);
  border:1px solid var(--line);
  border-radius: 10px;
  z-index:9999;
}

/* ===== Header ===== */
.siteHeader{
  position: static;     /* alebo jednoducho vymazať position */
  top: auto;
  left: auto;
  width: 100%;
  z-index: auto;

  backdrop-filter: blur(10px);
  background: linear-gradient(90deg, rgba(130,182,72,.20), rgba(255,255,255,.92));
  border-bottom: 2px solid rgba(15, 23, 42, .10);
}

/* ZRUŠIŤ odsadenie, ktoré bolo len kvôli fixed headeru */
body{
  padding-top: 0;
}

@media (max-width: 720px){
  body{ padding-top: 0; }
}

.headerRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;   /* pôvodne 14px – vyšší header */
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}
.brandMark{
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), rgba(11,18,32,.15));
  box-shadow: 0 0 0 6px rgba(130,182,72,.16);
}
.brandText{
  font-weight: 900;
  letter-spacing: .2px;
  color: var(--text);
}

.nav{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  justify-content:flex-end;
}
.nav a{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--muted);
  background: transparent;
  text-decoration:none;
  transition: .15s ease;
}
.nav a:hover{
  color: var(--text);
  background: rgba(2, 6, 23, .04);
  border-color: rgba(2, 6, 23, .08);
  text-decoration:none;
}
.nav a[aria-current="page"]{
  color: var(--text);
  background: rgba(130,182,72,.16);
  border-color: rgba(130,182,72,.38);
}

/* Mobilné menu – horizontálny scroll */
@media (max-width: 720px){
  .nav{
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding-bottom: 6px;
  }
  .nav a{ white-space: nowrap; }
}

/* ===== Hero ===== */
.hero{
  padding: 42px 0 18px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items:start;
}
@media (max-width: 920px){
  .heroGrid{ grid-template-columns: 1fr; }
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border: 1px solid rgba(2, 6, 23, .10);
  background: rgba(255,255,255,.70);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .3px;
}

.h1{
  margin: 14px 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.6px;
}
.lead{
  font-size: 16.5px;
  color: var(--muted);
  max-width: 62ch;
}

.trustRow{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 12px;
  margin: 16px 0 18px;
}
.trustItem{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(2, 6, 23, .08);
  color: var(--muted);
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(130,182,72,.95);
  box-shadow: 0 0 0 6px rgba(130,182,72,.16);
}

.ctaCard{
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(2, 6, 23, .10);
  box-shadow: var(--shadow);
  max-width: 560px;
}

.priceLine{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.priceLabel{
  color: var(--muted);
  font-size: 13px;
}
.price{
  display:flex;
  align-items:baseline;
  gap: 10px;
  font-weight: 900;
}
.price .old{
  color: rgba(11,18,32,.45);
  text-decoration: line-through;
  font-weight: 700;
}
.price .new{
  font-size: 26px;
  color: var(--text);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing:.2px;
  cursor:pointer;
  text-decoration:none;
  transition: .15s ease;
  user-select:none;
}
.btnPrimary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #08110a;
}
.btnPrimary:hover{
  filter: brightness(1.04);
  text-decoration:none;
}
.btnGhost{
  background: rgba(2, 6, 23, .03);
  border-color: rgba(2, 6, 23, .10);
  color: var(--text);
}
.btnGhost:hover{
  background: rgba(2, 6, 23, .05);
  text-decoration:none;
}
.note{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13.5px;
}

/* ===== MiniCard (Čo v ňom nájdete) ===== */
.miniCard{
  padding: 14px 14px 12px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(2, 6, 23, .10);
  box-shadow: 0 10px 30px rgba(2, 6, 23, .06);
}
.miniCard.underCta{
  margin-top: 12px;
  max-width: 560px;
}
.miniTitle{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .2px;
}
.cleanList{
  padding-left: 18px;
  color: var(--muted);
}
.cleanList li{ margin: 8px 0; }

/* Na stredných šírkach spraviť zoznam kompaktnejší */
@media (min-width: 560px) and (max-width: 920px){
  .cleanList{
    columns: 2;
    column-gap: 22px;
  }
  .cleanList li{
    break-inside: avoid;
  }
}
@media (max-width: 559px){
  .cleanList{ columns: 1; }
}

.heroRight{
  display:flex;
  flex-direction:column;
  gap: 14px;
}

/* ===== Cover ===== */
.coverCard{
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(2, 6, 23, .10);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.coverImg{
  display:block;
  width:100%;
  height:auto;
}
.coverMeta{
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(2, 6, 23, .08);
}
.coverTitle{ font-weight: 900; letter-spacing: .2px; }
.coverSub{ color: var(--muted); font-size: 13px; margin-top: 3px; }

.sideHint{
  padding: 14px 14px 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(2, 6, 23, .08);
}
.sideHintTitle{ font-weight: 900; margin-bottom: 6px; }

/* ===== Sections ===== */
.section{ padding: 28px 0; }
.h2{ margin: 0 0 10px; font-size: 22px; letter-spacing: -.2px; }
.muted{ color: var(--muted); }

.cards3{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 920px){
  .cards3{ grid-template-columns: 1fr; }
}
.infoCard{
  padding: 14px 14px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(2, 6, 23, .10);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(2, 6, 23, .05);
}
.infoTitle{ font-weight: 900; margin-bottom: 6px; }

/* ===== FAQ – rámovaný dizajn (ako miniCard) ===== */
.faqSection{
  padding: 28px 0;
  background: transparent;
}

.faq{
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

/* Každá položka: rám + jemný tieň */
.faqItem{
  width: 100%;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(2, 6, 23, .10);
  box-shadow: 0 10px 30px rgba(2, 6, 23, .06);
  overflow: hidden;
}

/* Zruší default šípku */
.faqItem summary{
  list-style: none;
}
.faqItem summary::-webkit-details-marker{
  display: none;
}

/* Otázka – celé klikateľné, ikonka vpravo */
.faqItem summary{
  cursor: pointer;
  padding: 14px 54px 14px 16px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.25;
  position: relative;
  user-select: none;
}

/* Ikona v kruhu: + / − (bez šípok) */
.faqItem summary::after{
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #08110a;
  background: rgba(130,182,72,.22);
  border: 1px solid rgba(130,182,72,.35);
}

.faqItem[open] summary::after{
  content: "−";
  background: rgba(130,182,72,.28);
}

/* Jemná deliaca linka po otvorení */
.faqItem[open] summary{
  border-bottom: 1px solid rgba(2, 6, 23, .08);
}

/* Text odpovede */
.faqItem p{
  margin: 0;
  padding: 12px 16px 14px 16px;
  color: var(--muted);
}

/* Fokus (prístupnosť) */
.faqItem summary:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(130,182,72,.22);
  border-radius: 14px;
}

/* ===== CTA strip ===== */
.ctaStrip{
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(2, 6, 23, .10);
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 35px rgba(2, 6, 23, .08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
@media (max-width: 720px){
  .ctaStrip{ flex-direction:column; align-items:stretch; }
}
.ctaStripTitle{ font-weight: 900; margin-bottom: 3px; color: var(--text); }

/* ===== Footer ===== */
.footer{
  padding: 22px 0;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.80);
}
.footRow{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  color: rgba(11,18,32,.70);
  font-size: 14px;
}
.smallLinks a{ color: rgba(11,18,32,.70); }
.smallLinks a:hover{ color: rgba(11,18,32,.90); }

.linkRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 10px;
}
 /* ===== CTA: 2 stĺpce, bez "Cena", rovnaká veľkosť button vs ceny ===== */

.ctaCard.cta2col{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 16px;
  align-items: center;
}

.ctaLeft .note{
  margin: 8px 0 0;
}

/* ceny v jednom riadku, vizuálne rovnako výrazné */
.priceInline{
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

/* 18€ aj 9€ rovnaká veľkosť */
.priceInline .old,
.priceInline .new{
  font-size: 18px;        /* rovnaká veľkosť */
  font-weight: 900;
}

/* stará cena ostane preškrtnutá, ale rovnako veľká */
.priceInline .old{
  color: rgba(11,18,32,.55);
  text-decoration: line-through;
}

/* nová cena zvýraznená len farbou (nie veľkosťou) */
.priceInline .new{
  color: var(--text);
}

/* tlačidlo vizuálne rovnako veľké ako ceny */
.btnSameSize{
  font-size: 18px;
  padding: 12px 16px;     /* nech je to “pevné” na klik */
  min-height: 44px;       /* mobilný štandard */
}

/* mobil: všetko pod seba */
@media (max-width: 720px){
  .ctaCard.cta2col{
    grid-template-columns: 1fr;
  }
  .ctaRight .btnSameSize{
    width: 100%;
  }
}
/* ===== Timer CTA (rovnaký rámček + odpočet) ===== */

.timerCard{
  margin-top: 12px; /* medzera medzi rámčekmi */
}

.timerTop{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.timerLabel{
  font-weight: 900;
  font-size: 18px; /* rovnako ako ceny/button (ak používate 18px) */
  color: var(--text);
}

/* “pilulka” s časom */
.timerPill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(2, 6, 23, .10);
  background: rgba(255,255,255,.85);
  box-shadow: 0 10px 30px rgba(2, 6, 23, .06);
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
}

.timerIcon{
  font-size: 16px;
  line-height: 1;
  opacity: .85;
}

/* keď akcia skončí */
.timerExpired .timerPill{
  opacity: .55;
}
.timerExpired #promoText{
  opacity: .75;
}

/* mobil: tlačidlo na celú šírku už rieši .btnSameSize + vaše @media */
.timerDigits{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(2, 6, 23, .10);
  background: rgba(255,255,255,.90);
  box-shadow: 0 10px 30px rgba(2, 6, 23, .06);

  font-weight: 900;
  font-size: 20px;
  letter-spacing: .12em;
  font-variant-numeric: tabular-nums;
}
.timerTop{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

         @media (max-width: 420px){
  .timerTop{ flex-wrap: nowrap; }
  .timerPill, .timerDigits{ flex-shrink: 0; }
}
     /* ===== MOBILE HEADER FIX ===== */
.headerRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;              /* kľúčové: dovolí zalomenie */
}

.nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;              /* menu sa zalomí do ďalšieho riadku */
  justify-content:flex-end;
}

/* mobil – logo hore, menu pod ním na celú šírku */
@media (max-width: 720px){
  .headerRow{
    flex-direction: column;
    align-items: flex-start;
  }

  .nav{
    width: 100%;
    justify-content: flex-start;
  }

  .nav a{
    padding: 10px 12px;
  }
}

/* extra: aby obrázky nikdy nepretiekli */
.siteHeader img{
  max-width: 100%;
  height: auto;
}
         