/* ===========================================================
   Němčina do kapsy — prodejní landing page
   Světlý / teplý / konverzní design
   =========================================================== */

:root {
  --paper:    #f9f4e9;   /* krémový papír podle obálky */
  --paper-2:  #f0e8d5;
  --white:    #fffdf8;
  --ink:      #22414f;   /* petrolejová podle obálky */
  --ink-soft: #3e5765;
  --muted:    #71838e;
  --line:     #e3dbc7;

  --accent:   #b9892b;   /* zlatá/okrová podle obálky */
  --accent-d: #9a7015;
  --accent-ink:#ffffff;
  --hl:       #f0cf6f;   /* zvýrazňovač — zlatý marker */
  --green:    #2f9e6b;
  --dark:     #22414f;

  --display: "Sora", system-ui, sans-serif;
  --body:    "Inter", system-ui, sans-serif;
  --hand:    "Caveat", cursive;

  --radius:  18px;
  --radius-sm: 12px;
  --maxw:    1140px;
  --pad:     clamp(18px, 5vw, 36px);
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --shadow:  0 24px 60px -28px rgba(33, 29, 24, 0.4);
  --shadow-sm: 0 10px 30px -18px rgba(33, 29, 24, 0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(16px, 1.05vw, 17px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }
::selection { background: var(--hl); color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.narrow { max-width: 820px; }
.center { text-align: center; margin-inline: auto; }

/* přístupnost */
.skip { position: absolute; left: 12px; top: -60px; z-index: 300; background: var(--accent); color: #fff; font-family: var(--display); font-weight: 700; padding: 0.7em 1.2em; border-radius: 100px; transition: top 0.25s var(--ease); }
.skip:focus { top: 12px; }
main:focus { outline: none; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* ---------- typografie ---------- */
.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.eyebrow--light { color: var(--hl); }
.h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.8vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.h2--light { color: var(--white); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--ink-soft); margin-top: 1rem; }
.lead--light { color: rgba(255,255,255,0.82); }
.lead strong { color: var(--ink); }
.lead--light strong { color: #fff; }
.mark {
  background: linear-gradient(transparent 58%, var(--hl) 58%, var(--hl) 92%, transparent 92%);
  padding: 0 0.05em;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95em 1.6em;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-align: center;
}
.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 12px 26px -10px rgba(185, 137, 43, 0.55);
}
.btn--primary:hover { background: var(--accent-d); transform: translateY(-3px); box-shadow: 0 18px 34px -10px rgba(185, 137, 43, 0.65); }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); transform: translateY(-3px); }
.btn--lg { padding: 1.15em 2em; font-size: 1.08rem; }
.btn--sm { padding: 0.65em 1.1em; font-size: 0.92rem; }
.btn--block { width: 100%; }
.btn__price { display: inline-flex; align-items: baseline; gap: 0.3em; }
.btn__price s { opacity: 0.7; font-size: 0.82em; font-weight: 600; }

/* ===========================================================
   TOPBAR + NAV
   =========================================================== */
.topbar {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.86rem;
  text-align: center;
}
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 0.6em; padding: 0.6rem 0; }
.topbar strong { color: var(--hl); }
.topbar__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(47,158,107,0.25); animation: pulse 2s infinite; flex: none; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(249, 244, 233, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 20px -16px rgba(0,0,0,0.4); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.55em; font-family: var(--display); }
.brand__mark { display: grid; place-items: center; width: 34px; height: 34px; background: var(--accent); color: #fff; border-radius: 10px; font-weight: 800; }
.brand__name { font-size: 1.02rem; font-weight: 600; }
.brand__name strong { font-weight: 800; color: var(--accent); }
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a { font-family: var(--body); font-weight: 600; font-size: 0.94rem; color: var(--ink-soft); transition: color 0.2s; }
.nav__links a:hover { color: var(--accent); }

/* ===========================================================
   HERO
   =========================================================== */
.hero { padding: clamp(36px, 6vw, 72px) 0 clamp(40px, 6vw, 80px); }
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 5vw, 64px); align-items: center; }

.pill {
  display: inline-flex; align-items: center; gap: 0.5em;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.5em 1em;
  font-size: 0.86rem; font-weight: 500;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.pill__star { color: var(--hl); letter-spacing: -1px; -webkit-text-stroke: 0.4px #c39a2e; }
.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.1rem, 5.4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 1.1rem 0 1rem;
}
.hero__lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--ink-soft); max-width: 52ch; }
.hero__lead strong { color: var(--ink); }
.hero__checks { margin: 1.6rem 0; display: grid; gap: 0.6rem; }
.hero__checks li { position: relative; padding-left: 2rem; color: var(--ink-soft); }
.hero__checks li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: 0.72rem; font-weight: 700;
  display: grid; place-items: center;
}
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.hero__cta-note { font-size: 0.9rem; color: var(--muted); }
.hero__cta-note strong { color: var(--ink); }
.trustrow { display: flex; flex-wrap: wrap; gap: 1.2rem; font-size: 0.88rem; color: var(--muted); }

/* book mockup */
.hero__visual { position: relative; display: grid; place-items: center; }
.hero__visual::before {
  content: ""; position: absolute; inset: -8%;
  background: radial-gradient(closest-side, rgba(185, 137, 43, 0.14), rgba(34, 65, 79, 0.05) 55%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
}
.book {
  position: relative;
  width: min(340px, 80%);
  aspect-ratio: 1 / 1.4;
  transform: rotate(-3deg) perspective(1400px) rotateY(-12deg);
  transition: transform 0.5s var(--ease);
  filter: drop-shadow(0 40px 50px rgba(33,29,24,0.35));
}
.book::before {
  content: ""; position: absolute; top: 1.5%; bottom: 1%; right: -9px; width: 16px;
  background: repeating-linear-gradient(to bottom, #fdfaf3 0 2.5px, #ded5c2 2.5px 4px);
  border-radius: 2px 8px 8px 2px;
}
.book:hover { transform: rotate(-1deg) perspective(1400px) rotateY(-6deg); }
.book__cover {
  position: relative;
  height: 100%;
  border-radius: 6px 14px 14px 6px;
  background: linear-gradient(160deg, #fdfaf1, #f5eeda);
  color: var(--ink);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(34, 65, 79, 0.08);
  border-bottom: 10px solid var(--ink);
}
.book__cover::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 14px;
  background: rgba(34, 65, 79, 0.08);
  box-shadow: inset -3px 0 6px rgba(34, 65, 79, 0.12);
}
.book__cover::after {
  content: ""; position: absolute; right: -30%; top: -20%; width: 70%; height: 60%;
  background: radial-gradient(circle, rgba(255,255,255,0.5), transparent 70%);
}
.book__eyebrow { font-family: var(--hand); font-weight: 700; font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--accent); line-height: 1; }
.book__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.5rem); line-height: 1.04; letter-spacing: -0.02em; margin: auto 0 0.6rem; color: var(--ink); }
.book__title-gold { color: var(--accent); }
.book__sub { font-size: 0.85rem; line-height: 1.45; max-width: 26ch; color: var(--ink-soft); }
.book__sub strong { color: var(--ink); }
.book__gold { color: var(--accent); font-weight: 600; }
.book__foot { margin-top: 1.4rem; padding-top: 1rem; border-top: 1px solid rgba(34, 65, 79, 0.15); display: flex; justify-content: space-between; align-items: center; font-family: var(--display); font-size: 0.78rem; }
.book__author { display: flex; flex-direction: column; }
.book__author small { font-family: var(--body); font-weight: 600; font-size: 0.56rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }
.book__sign { font-family: var(--hand); font-size: 1.6rem; font-weight: 700; line-height: 1; color: var(--ink); }
.book__chip { background: var(--ink); color: #fff; font-weight: 600; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.6em 1em; border-radius: 100px; }

.hero__badge {
  position: absolute;
  font-family: var(--display); font-weight: 700; font-size: 0.85rem;
  background: var(--white); color: var(--ink);
  border: 1px solid var(--line);
  padding: 0.55em 0.9em; border-radius: 100px;
  box-shadow: var(--shadow-sm);
  animation: bob 5s ease-in-out infinite;
}
.hero__badge--1 { top: 8%; right: 2%; }
.hero__badge--2 { bottom: -4%; left: -3%; animation-delay: -2.2s; color: var(--accent); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero__scribble {
  position: absolute; top: -3%; left: -4%;
  font-family: var(--hand); font-weight: 600; font-size: 1.4rem; line-height: 1.05;
  color: var(--ink-soft); text-align: right;
  transform: rotate(-9deg);
}

/* ===========================================================
   TICKER FRÁZÍ
   =========================================================== */
.ticker { background: var(--ink); overflow: hidden; padding: 0.8rem 0; }
.ticker__track { display: flex; width: max-content; animation: ticker 42s linear infinite; }
.ticker__group { display: flex; align-items: baseline; }
.ticker__group span {
  display: inline-flex; align-items: baseline; gap: 0.5em; white-space: nowrap;
  font-family: var(--display); font-weight: 600; font-size: 0.95rem; color: var(--paper);
}
.ticker__group span::after { content: "✦"; color: var(--accent); font-size: 0.7em; margin-inline: 1.6rem; align-self: center; }
.ticker__group i { font-style: normal; font-family: var(--body); font-weight: 400; font-size: 0.85em; color: rgba(255,255,255,0.45); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ===========================================================
   STATS
   =========================================================== */
.stats { border-block: 1px solid var(--line); background: var(--white); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 1.6rem 1rem; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--accent); letter-spacing: -0.02em; }
.stat span { font-size: 0.85rem; color: var(--muted); }

/* ===========================================================
   SECTIONS
   =========================================================== */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--soft { background: var(--paper-2); }
.section__head { max-width: 760px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section__head.center { margin-inline: auto; }
.section__head .lead { margin-top: 0.8rem; }

/* problem */
.painlist { display: grid; gap: 0.7rem; margin: 2rem 0; }
.pain {
  display: flex; align-items: center; gap: 0.9rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 1rem 1.3rem;
  font-weight: 500;
}
.pain span { flex: none; width: 26px; height: 26px; border-radius: 50%; background: #f1e6c8; color: var(--accent); display: grid; place-items: center; font-weight: 700; }
.quotebox {
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-sm);
  font-size: 1.1rem;
}
.quotebox strong { color: var(--accent); }

/* dark / princip */
.section--dark { position: relative; overflow: hidden; background: var(--dark); color: #fff; }
.section--dark::before {
  content: ""; position: absolute; top: -30%; right: -12%; width: 60%; height: 85%;
  background: radial-gradient(circle, rgba(185, 137, 43, 0.18), transparent 65%);
  pointer-events: none;
}
.section--dark > .container { position: relative; }
.quotecard {
  position: relative;
  max-width: 640px;
  margin: 2.2rem auto 2.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  padding: 2.8rem 2.4rem 2rem;
  text-align: left;
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.7);
}
.quotecard__mark {
  position: absolute;
  top: 0.6rem; left: 1.6rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--hl);
}
.quotecard blockquote {
  position: relative;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 1.4rem 0 1.8rem;
}
.quotecard__author { display: flex; align-items: center; gap: 0.9rem; }
.quotecard__avatar {
  flex: none; width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(150deg, var(--accent), var(--accent-d));
  color: #fff; font-family: var(--display); font-weight: 800; font-size: 1.05rem;
  display: grid; place-items: center;
}
.quotecard__who { display: flex; flex-direction: column; line-height: 1.35; }
.quotecard__who strong { color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.02rem; }
.quotecard__who small { color: rgba(255, 255, 255, 0.6); font-size: 0.82rem; }
.section--dark .btn--primary { margin-top: 1rem; }

/* kapitoly */
.chapgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.chap {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.4rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.chap:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent); }
.chap__n { font-family: var(--display); font-weight: 800; font-size: 1.3rem; color: var(--accent); }
.chap h3 { font-family: var(--display); font-weight: 700; font-size: 1.12rem; margin: 0.5rem 0 0.4rem; line-height: 1.15; }
.chap p { font-size: 0.92rem; color: var(--muted); }
.chap em { color: var(--ink-soft); font-style: italic; }

/* ukázky — index karty s páskou */
.samplecols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.samplecol {
  position: relative;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: rotate 0.35s var(--ease), translate 0.35s var(--ease);
}
.samplecol::before {
  content: ""; position: absolute; top: -13px; left: 50%; width: 92px; height: 26px;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(240, 207, 111, 0.6);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
}
.samplecol:nth-child(1) { rotate: -1.2deg; }
.samplecol:nth-child(2) { rotate: 0.9deg; translate: 0 8px; }
.samplecol:nth-child(2)::before { transform: translateX(-50%) rotate(2.5deg); }
.samplecol:nth-child(3) { rotate: -0.7deg; }
.samplecol:hover { rotate: 0deg; translate: 0 0; }
.samplecol__label { font-family: var(--display); font-weight: 700; font-size: 0.92rem; color: var(--accent); margin-bottom: 1rem; }
.phrase { padding: 0.7rem 0; border-top: 1px dashed var(--line); }
.phrase:first-of-type { border-top: 0; }
.phrase b { display: block; font-family: var(--display); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.phrase span { font-size: 0.88rem; color: var(--muted); }
.handnote { font-family: var(--hand); font-size: 1.5rem; color: var(--accent); text-align: right; margin-top: 1.2rem; }

/* bonusy */
.bonusgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.bonus { display: flex; gap: 1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; }
.bonus > span { flex: none; width: 38px; height: 38px; border-radius: 11px; background: #f1e6c8; color: var(--accent); font-weight: 800; font-size: 1.3rem; display: grid; place-items: center; }
.bonus h3 { font-family: var(--display); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.25rem; }
.bonus p { font-size: 0.9rem; color: var(--muted); }

/* pro koho */
.forwho { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.forwho__col { border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.2rem); border: 1px solid var(--line); background: var(--white); }
.forwho__col--yes { border-color: rgba(47,158,107,0.4); background: linear-gradient(160deg, rgba(47,158,107,0.08), var(--white) 60%); }
.forwho__h { font-family: var(--display); font-weight: 700; font-size: 1.15rem; margin-bottom: 1.1rem; }
.forwho__col li { position: relative; padding-left: 1.9rem; margin-bottom: 0.7rem; color: var(--ink-soft); }
.forwho__col--yes li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.forwho__col--no li::before { content: "✕"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

/* transformace */
.ba { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.2rem; align-items: center; }
.ba__col { border-radius: var(--radius); padding: 1.6rem; border: 1px solid var(--line); }
.ba__col--before { background: var(--white); }
.ba__col--after { background: linear-gradient(160deg, rgba(185,137,43,0.1), var(--white) 60%); border-color: rgba(185,137,43,0.4); }
.ba__label { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; color: var(--muted); margin-bottom: 1rem; }
.ba__col--after .ba__label { color: var(--accent); }
.ba__col li { padding-left: 1.4rem; position: relative; margin-bottom: 0.7rem; color: var(--ink-soft); font-size: 0.96rem; }
.ba__col li::before { content: "—"; position: absolute; left: 0; color: var(--muted); }
.ba__arrow { font-family: var(--display); font-weight: 800; font-size: 2rem; color: var(--accent); }

/* pravidla */
.rules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.rule { display: flex; gap: 1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; }
.rule > span { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--display); font-weight: 800; display: grid; place-items: center; }
.rule h3 { font-family: var(--display); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.2rem; }
.rule p { font-size: 0.9rem; color: var(--muted); }

/* ===========================================================
   NABÍDKA
   =========================================================== */
.section--offer { background: var(--paper-2); }
.offerwrap { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 1.4rem; align-items: start; max-width: 940px; margin-inline: auto; }
.offercard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
}
.offercard__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 1.3rem; }
.offercard__name { font-family: var(--display); font-weight: 800; font-size: 1.5rem; }
.offercard__meta { font-size: 0.9rem; color: var(--muted); margin-top: 0.2rem; }
.offercard__tag { flex: none; background: var(--hl); color: var(--ink); font-family: var(--display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.4em 0.7em; border-radius: 100px; }
.offercard__list { display: grid; gap: 0.6rem; margin-bottom: 1.5rem; }
.offercard__list li { position: relative; padding-left: 1.9rem; color: var(--ink-soft); }
.offercard__list li::before { content: "✓"; position: absolute; left: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: #fff; font-size: 0.72rem; font-weight: 700; display: grid; place-items: center; top: 1px; }

/* objednávkový formulář (FAPI) */
.orderform {
  border-top: 1px solid var(--line);
  margin-top: 1.4rem;
  padding-top: 1.4rem;
}
.orderform__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1rem;
}
.orderform__label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
}
.orderform__pay {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-size: 0.82rem; color: var(--muted);
}
.pay-logo { height: 22px; width: auto; display: block; }
/* nech FAPI formuláři prostor a ať se vejde do karty */
.orderform form,
.orderform input,
.orderform select,
.orderform textarea { max-width: 100%; }

.offercard__price { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.priceline { display: flex; align-items: baseline; gap: 0.7rem; }
.priceline__now { font-family: var(--display); font-weight: 800; font-size: 2.6rem; letter-spacing: -0.03em; }
.priceline__old { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; }
.priceline__note { font-size: 0.85rem; color: var(--muted); }
.offercard__secure { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 0.9rem; }

.sidebox { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm); }
.sidebox__h { font-family: var(--display); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.8rem; }
.sidebox li { position: relative; padding-left: 1.7rem; margin-bottom: 0.55rem; font-size: 0.92rem; color: var(--ink-soft); }
.sidebox li:last-child { margin-bottom: 0; }
.sidebox li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* ===========================================================
   KARTIČKY (upsell detail)
   =========================================================== */
.cardsplit { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.cardsplit__visual { display: grid; place-items: center; min-height: 280px; }
.flashstack { position: relative; width: min(300px, 80%); aspect-ratio: 1.6; }
.flash {
  position: absolute; inset: 0;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 1.4rem;
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: var(--shadow);
}
.flash b { font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: var(--ink); }
.flash span { color: var(--muted); margin-top: 0.3rem; }
.flash--1 { transform: rotate(-7deg) translate(-12px, 14px); }
.flash--2 { transform: rotate(3deg) translate(8px, 4px); z-index: 2; }
.flash--3 { transform: rotate(10deg) translate(22px, -10px); }
.ticks { display: grid; gap: 0.6rem; margin: 1.4rem 0 1.8rem; }
.ticks li { position: relative; padding-left: 1.9rem; color: var(--ink-soft); }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* ===========================================================
   AUTOR
   =========================================================== */
.author { display: grid; grid-template-columns: 0.4fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.author__photo {
  position: relative;
  width: 100%;
  background: var(--white);
  padding: 12px 12px 54px;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  transition: transform 0.4s var(--ease);
}
.author__photo:hover { transform: rotate(-0.5deg); }
.author__photo img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; object-position: center 20%; display: block; border-radius: 2px; }
.author__caption {
  position: absolute; left: 0; right: 0; bottom: 14px;
  text-align: center;
  font-family: var(--hand); font-weight: 600; font-size: 1.3rem; color: var(--ink-soft);
}
.author__text p { margin-top: 1rem; color: var(--ink-soft); }
.author__text em { color: var(--ink); font-weight: 500; }
.author__sign { font-family: var(--hand); font-size: 2rem; color: var(--accent); margin-top: 1rem !important; }

/* ===========================================================
   FAQ
   =========================================================== */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.3rem 0; font-family: var(--display); font-weight: 700; font-size: clamp(1.05rem, 1.7vw, 1.25rem); display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--accent); font-size: 1.5rem; transition: transform 0.25s var(--ease); line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--ink-soft); padding-bottom: 1.4rem; max-width: 70ch; }

/* ===========================================================
   FINAL CTA + FOOTER
   =========================================================== */
.section--final { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.section--final::before {
  content: ""; position: absolute; bottom: -40%; left: -10%; width: 55%; height: 90%;
  background: radial-gradient(circle, rgba(240, 207, 111, 0.12), transparent 65%);
  pointer-events: none;
}
.section--final > .container { position: relative; }
.section--final .h2 { margin-bottom: 0.4rem; }
.section--final .btn { margin-top: 1.6rem; }
.final__note { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 1rem; }

.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 3rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; align-items: start; }
.footer__col { display: flex; flex-direction: column; align-items: flex-start; }
.brand--footer .brand__name { color: #fff; }
.footer__tag { font-size: 0.88rem; line-height: 1.55; color: rgba(255,255,255,0.55); margin-top: 0.8rem; max-width: 32ch; }
.footer__h { font-family: var(--body); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.8rem; }
.footer__link { color: #fff; font-size: 0.95rem; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,0.3); }
.footer__link:hover { color: var(--hl); }
.footer__meta { font-size: 0.84rem; line-height: 1.6; margin-top: 0.6rem; color: rgba(255,255,255,0.5); }
.footer__comgate { display: block; height: 30px; width: auto; background: #fff; border-radius: 6px; padding: 5px 9px; }
.footer__bottom {
  margin-top: 2.4rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 0.8rem 2.5rem; flex-wrap: wrap;
}
.footer__copy { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer__disclaimer { font-size: 0.68rem; line-height: 1.5; color: rgba(255,255,255,0.32); max-width: 54ch; }

/* ===========================================================
   STICKY MOBILE CTA
   =========================================================== */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  display: none;
  align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 0.7rem var(--pad);
  box-shadow: 0 -10px 30px -18px rgba(0,0,0,0.4);
}
.stickybar__price { display: flex; flex-direction: column; line-height: 1.05; }
.stickybar__price strong { font-family: var(--display); font-weight: 800; font-size: 1.3rem; }
.stickybar__price s { opacity: 0.5; font-size: 0.68em; font-weight: 600; margin-right: 0.15em; }
.stickybar__price span { font-size: 0.75rem; color: var(--muted); }

/* ===========================================================
   REVEAL
   =========================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), rotate 0.35s var(--ease), translate 0.35s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__scribble { display: none; }
  .book { width: min(280px, 70%); }
  .chapgrid { grid-template-columns: repeat(2, 1fr); }
  .samplecols { grid-template-columns: 1fr; }
  .samplecol:nth-child(2) { translate: 0 0; }
  .bonusgrid { grid-template-columns: 1fr 1fr; }
  .rules { grid-template-columns: 1fr 1fr; }
  .offerwrap { grid-template-columns: 1fr; }
  .cardsplit { grid-template-columns: 1fr; }
  .author { grid-template-columns: 1fr; text-align: center; }
  .author__photo { width: 230px; margin-inline: auto; }
}

@media (max-width: 640px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line); }
  .stat:nth-child(3) { border-left: 0; }
  .chapgrid, .bonusgrid, .rules, .forwho { grid-template-columns: 1fr; }
  .ba { grid-template-columns: 1fr; }
  .ba__arrow { transform: rotate(90deg); justify-self: center; }
  .nav__cta { display: none; }
  .topbar__more { display: none; }
  .stickybar { display: flex; }
  body { padding-bottom: 72px; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   ODKAZ JAKO TLAČÍTKO, RECENZE, MODAL
   =========================================================== */
.linklike {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; color: inherit;
  text-decoration: underline; text-underline-offset: 2px;
}
.footer .linklike:hover { color: var(--hl); }

/* pravý sloupec objednávky */
.offerside { display: flex; flex-direction: column; gap: 1.4rem; }

/* ===========================================================
   ZPRÁVY OD ČTENÁŘŮ (chat recenze)
   =========================================================== */
.msggrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: start; max-width: 1020px; margin-inline: auto; }
.msgcard {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.msgcard__head { display: flex; align-items: center; gap: 0.7rem; padding: 0.85rem 1rem; border-bottom: 1px solid var(--line); background: var(--white); }
.msgcard__avatar {
  flex: none; width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; color: #fff; font-size: 0.95rem;
}
.msgcard--fb .msgcard__avatar { background: #0084ff; }
.msgcard__who { display: flex; flex-direction: column; line-height: 1.25; }
.msgcard__who strong { font-size: 0.95rem; }
.msgcard__who small { font-size: 0.72rem; color: var(--muted); }
.msgcard__app {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 0.45em;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--muted);
}
.msgcard__app::before { content: ""; width: 8px; height: 8px; border-radius: 50%; }
.msgcard--fb .msgcard__app::before { background: #0084ff; }
.msgcard__chat {
  padding: 1rem; display: flex; flex-direction: column; gap: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem; line-height: 1.45;
}
.bubble { max-width: 88%; padding: 0.6rem 0.8rem 0.55rem; border-radius: 14px; }
.bubble--in { align-self: flex-start; border-bottom-left-radius: 4px; background: #f0f2f5; }
.bubble--out { align-self: flex-end; border-bottom-right-radius: 4px; background: #0084ff; color: #fff; }
/* e-mail karta */
.mail__head {
  padding: 1rem 1.1rem 0.85rem; border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.25rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
}
.mail__row { color: var(--ink-soft); }
.mail__label { color: var(--muted); margin-right: 0.4em; }
.mail__addr { color: var(--muted); }
.mail__subject { font-weight: 700; font-size: 0.98rem; color: var(--ink); margin-top: 0.35rem; }
.mail__body {
  padding: 1rem 1.1rem 1.2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem; line-height: 1.55; color: var(--ink-soft);
}
.mail__body p { margin-bottom: 0.7rem; }
.mail__body p:last-child { margin-bottom: 0; }
.msgnote { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 1.6rem; }
@media (max-width: 980px) { .msggrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .msggrid { grid-template-columns: 1fr; } }

/* modal / popup */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: clamp(12px, 4vw, 40px); }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(20, 16, 12, 0.6); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.modal__dialog {
  position: relative;
  background: var(--paper);
  border-radius: 18px;
  width: min(680px, 100%);
  max-height: 86vh;
  overflow: auto;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.55);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  -webkit-overflow-scrolling: touch;
}
.modal__close {
  position: sticky; top: 0; float: right;
  margin: -0.5rem -0.5rem 0 0;
  background: var(--white); border: 1px solid var(--line);
  width: 38px; height: 38px; border-radius: 50%;
  font-size: 1.4rem; line-height: 1; color: var(--ink); cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.2s, color 0.2s;
}
.modal__close:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.modal__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 1.2rem; padding-right: 2rem; }
.modal__content h3 { font-family: var(--display); font-weight: 700; font-size: 1.15rem; margin: 1.6rem 0 0.6rem; color: var(--accent-d); }
.modal__content p { font-size: 0.92rem; line-height: 1.6; color: var(--ink-soft); margin-bottom: 0.7rem; }
.modal__content a { color: var(--accent-d); text-decoration: underline; }
.modal__note { font-size: 0.82rem; color: var(--muted); margin-top: 1.4rem; }
body.modal-open { overflow: hidden; }
