/* ==========================================================================
   andapos.cz – vzhled webu
   Barvy a rozměry jsou v :root, všechno ostatní se z nich skládá.
   Styl vychází z návrhu (zdroje/chatgpt-navrh): tmavá hlavička, velké tučné
   nadpisy, bílé karty, zelená pro peníze, modrá pro značku.
   ========================================================================== */

:root {
  --navy: #0b1426;
  --ink: #0f172a;
  --text: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --line-2: #edf2f7;
  --bg: #f5f8fc;
  --white: #fff;

  --blue: #2563eb;   --blue-600: #1d4ed8;  --blue-soft: #e8f0ff;
  --green: #16a34a;  --green-600: #15803d; --green-soft: #dcfce7;
  --red: #dc2626;    --red-soft: #fee2e2;
  --amber: #b45309;  --amber-soft: #fef3c7;
  --violet: #7c3aed; --violet-soft: #ede9fe;
  --teal: #0f766e;   --teal-soft: #ccfbf1;
  --pink: #db2777;   --pink-soft: #fce7f3;
  --slate: #334155;  --slate-soft: #eef2f7;

  --radius: 22px;
  --shadow: 0 20px 50px rgba(15, 23, 42, .08);
  --shadow-sm: 0 6px 18px rgba(15, 23, 42, .05);
  --max: 1180px;
  --header: 72px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 12px); -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); font-size: 17px; line-height: 1.6; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { color: var(--ink); line-height: 1.1; margin: 0; }
p, figure { margin: 0; }
:focus-visible { outline: 3px solid #93c5fd; outline-offset: 2px; border-radius: 6px; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.container-narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 300; background: #fff; color: var(--ink); padding: 8px 14px; border-radius: 8px; }
.skip-link:focus { left: 8px; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.ico { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.is-green { color: var(--green); }
.is-blue { color: var(--blue); }
.is-red { color: var(--red); }

/* barevné podklady ikon */
.c-green  { background: var(--green-soft);  color: var(--green-600); }
.c-blue   { background: var(--blue-soft);   color: var(--blue-600); }
.c-red    { background: var(--red-soft);    color: var(--red); }
.c-amber  { background: var(--amber-soft);  color: var(--amber); }
.c-violet { background: var(--violet-soft); color: var(--violet); }
.c-teal   { background: var(--teal-soft);   color: var(--teal); }
.c-pink   { background: var(--pink-soft);   color: var(--pink); }
.c-slate  { background: var(--slate-soft);  color: var(--slate); }

/* ---------- tlačítka ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 22px; border-radius: 14px; border: 1px solid transparent; font: inherit; font-weight: 800; font-size: 16px; line-height: 1.1; text-decoration: none !important; white-space: nowrap; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn .ico { width: 20px; height: 20px; }
.btn-lg { min-height: 60px; padding: 0 28px; font-size: 18px; border-radius: 16px; }
.btn-block { width: 100%; }
.btn-ghost { background: #fff; color: var(--ink); border-color: #d5dfeb; }
.btn-play { background: linear-gradient(180deg, #19b45a, #0e9a49); color: #fff; box-shadow: 0 10px 24px rgba(22, 163, 74, .22); }
.btn-play .ico { width: 22px; height: 22px; fill: currentColor; stroke: none; }
.btn-play > span { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.btn-play small { font-size: 12px; font-weight: 600; opacity: .8; letter-spacing: .02em; }
.btn-play.is-soon { background: linear-gradient(180deg, #1e293b, #0f172a); box-shadow: none; cursor: default; }
.btn-play.is-soon:hover { transform: none; }
.btn-play.is-soon .ico { color: #4ade80; }

/* ---------- hlavička ---------- */
.site-header { position: sticky; top: 0; z-index: 100; height: var(--header); background: linear-gradient(90deg, #15233a, #0a1426); color: #fff; }
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; margin-right: auto; text-decoration: none !important; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-word { font-size: 26px; font-weight: 900; letter-spacing: -.04em; color: #fff; line-height: 1; }
.brand-word b { color: #3b8bff; font-weight: 900; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav > a { color: #d6e2f3; font-weight: 650; font-size: 15.5px; }
.site-nav > a:hover { color: #fff; text-decoration: none; }
.site-nav .nav-play { display: none; }
.header-cta .btn-play { min-height: 46px; padding: 0 16px; border-radius: 12px; font-size: 15px; }
.header-cta .btn-play.is-soon { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .16); }
.nav-toggle { display: none; }

/* ---------- úvod ---------- */
.hero { position: relative; overflow: hidden; padding: 64px 0 56px; background: radial-gradient(900px 520px at 88% 12%, #dde9ff 0, transparent 62%), radial-gradient(700px 420px at 0% 100%, #e6f8ed 0, transparent 58%), var(--bg); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px; align-items: center; }
/* zelený štítek nad nadpisem – „polovině prodejců stačí verze zdarma“ */
.promo { display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px 6px 6px; border-radius: 999px; background: #fff; border: 1.5px solid #86efac; box-shadow: 0 8px 22px rgba(22, 163, 74, .14); color: var(--ink); font-size: 15px; font-weight: 750; line-height: 1.25; text-decoration: none !important; }
.promo:hover { border-color: var(--green); }
.promo-tag { flex: none; padding: 5px 11px; border-radius: 999px; background: var(--green); color: #fff; font-size: 14px; font-weight: 900; white-space: nowrap; }
.promo > .ico { width: 18px; height: 18px; color: var(--green); }
/* kulatá nálepka přes obrázek v úvodu */
.sticker { position: absolute; z-index: 4; top: -14px; left: 168px; width: 150px; height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; line-height: 1; border-radius: 50%; background: radial-gradient(circle at 30% 25%, #34d399, #16a34a 58%, #15803d); color: #fff; box-shadow: 0 18px 40px rgba(22, 163, 74, .35); transform: rotate(-10deg); text-decoration: none !important; transition: transform .2s ease; }
.sticker::before { content: ""; position: absolute; inset: 7px; border-radius: 50%; border: 2px dashed rgba(255, 255, 255, .55); }
.sticker:hover { transform: rotate(-4deg) scale(1.04); }
.sticker b { font-size: 25px; font-weight: 900; letter-spacing: -.02em; text-transform: uppercase; }
.sticker span { margin-top: 6px; font-size: 12.5px; font-weight: 800; line-height: 1.2; }
.hero h1 { margin-top: 22px; font-size: clamp(40px, 5.4vw, 68px); font-weight: 900; letter-spacing: -.045em; line-height: 1.02; text-transform: uppercase; }
.hero h1 span { color: var(--blue); }
.hero-price { margin-top: 22px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 14px; }
.hero-price strong { font-size: clamp(38px, 4.4vw, 56px); font-weight: 900; letter-spacing: -.04em; line-height: 1; color: var(--green); }
.hero-price span { font-size: 19px; font-weight: 700; color: var(--ink); }
.hero-lead { margin-top: 16px; max-width: 540px; font-size: clamp(17px, 1.5vw, 19.5px); color: #475569; }
.hero-cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin-top: 18px; display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--muted); }
.hero-note .ico { color: var(--green); }
.hero-visual { position: relative; height: 540px; }
.hero-visual .device--tablet { position: absolute; top: 34px; left: 90px; width: 660px; }
.hero-visual .device--phone { position: absolute; left: 0; bottom: 0; width: 236px; z-index: 2; }

.benefits { position: relative; z-index: 3; list-style: none; margin: 44px 0 0; padding: 16px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.benefits li { display: flex; align-items: center; gap: 14px; padding: 6px 10px; }
.benefit-ico { width: 48px; height: 48px; flex: none; display: grid; place-items: center; border-radius: 14px; background: var(--blue-soft); color: var(--blue); }
.benefit-ico .ico { width: 26px; height: 26px; }
.benefits b, .trust b { display: block; color: var(--ink); font-size: 16px; line-height: 1.25; }
.benefits small, .trust small { display: block; color: var(--muted); font-size: 14px; line-height: 1.35; }

/* ---------- zařízení (rámečky telefonu a tabletu) ---------- */
.device { position: relative; background: #0d1321; box-shadow: 0 30px 70px rgba(15, 23, 42, .26), inset 0 0 0 1.5px #2b3548; }
.device-screen { overflow: hidden; background: #fff; }
.device-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.device--phone { border-radius: 40px; padding: 9px; }
.device--phone .device-screen { border-radius: 32px; aspect-ratio: 720 / 1516; }
.device--phone::after { content: ""; position: absolute; top: 17px; left: 50%; width: 58px; height: 15px; margin-left: -29px; border-radius: 99px; background: #0d1321; }
.device--tablet { border-radius: 26px; padding: 12px; }
.device--tablet .device-screen { border-radius: 14px; aspect-ratio: 1400 / 823; }

/* ---------- sekce ---------- */
.section { padding: 88px 0; }
.section-white { background: #fff; }
.section-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.kicker { font-size: 14.5px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--blue); }
.title { margin-top: 10px; font-size: clamp(30px, 4vw, 48px); font-weight: 900; letter-spacing: -.035em; line-height: 1.06; text-transform: uppercase; }
.lead { margin-top: 14px; font-size: clamp(17px, 1.5vw, 19px); color: #526077; }
.small { margin-top: 14px; font-size: 15px; color: var(--muted); }

.pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 800; line-height: 1.2; }
.pill .ico { width: 17px; height: 17px; stroke-width: 2.4; }
.pill-green { background: var(--green-soft); color: #166534; }
.pill-red { background: var(--red-soft); color: #b91c1c; }
.pill-blue { background: var(--blue-soft); color: var(--blue-600); }
.pill-slate { background: var(--slate-soft); color: var(--slate); }

/* seznam s fajfkami */
.checks { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.checks li { position: relative; padding-left: 34px; font-weight: 600; color: var(--text); }
.checks li::before { content: ""; position: absolute; left: 0; top: 2px; width: 24px; height: 24px; border-radius: 50%; background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315803d' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7'/%3E%3C/svg%3E") center / 14px no-repeat; }
.checks.crosses li::before { background: var(--red-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc2626' stroke-width='3.2' stroke-linecap='round'%3E%3Cpath d='M7 7l10 10M17 7L7 17'/%3E%3C/svg%3E") center / 13px no-repeat; }
.checks li.is-soon { color: var(--muted); }
.checks li.is-soon::before { background: var(--amber-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b45309' stroke-width='2.6' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='7.5'/%3E%3Cpath d='M12 8v4.2l2.6 1.6'/%3E%3C/svg%3E") center / 16px no-repeat; }
.checks em { font-style: normal; margin-left: 6px; padding: 2px 8px; border-radius: 999px; background: var(--amber-soft); color: #92400e; font-size: 12.5px; font-weight: 800; }

/* ---------- tři důvody ---------- */
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reason { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 30px; background: #fff; border: 1px solid var(--line-2); border-radius: 26px; box-shadow: var(--shadow-sm); }
.reason-ico { position: relative; width: 84px; height: 84px; margin-bottom: 8px; display: grid; place-items: center; border-radius: 24px; }
.reason-ico > .ico { width: 46px; height: 46px; stroke-width: 1.7; }
.reason-ico i { position: absolute; right: -7px; bottom: -7px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; border: 3px solid #fff; background: var(--green); color: #fff; }
.reason-ico i .ico { width: 17px; height: 17px; stroke-width: 3.2; }
.reason h3 { font-size: 21px; font-weight: 900; letter-spacing: -.02em; text-transform: uppercase; }
.reason-value { font-size: clamp(34px, 3.3vw, 44px); font-weight: 900; letter-spacing: -.04em; line-height: 1.02; }
.reason-text { margin-top: 6px; font-size: 16px; color: var(--muted); }

.trust { list-style: none; margin: 28px 0 0; padding: 24px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; border-top: 1px solid var(--line); }
.trust li { display: flex; align-items: center; gap: 12px; }
.trust > li > .ico { width: 30px; height: 30px; color: var(--blue); }

/* ---------- funkce ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature { position: relative; display: flex; flex-direction: column; gap: 12px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-sm); }
.feature h3 { font-size: 18px; font-weight: 850; letter-spacing: -.01em; }
.feature p { margin-top: 4px; font-size: 15px; line-height: 1.45; color: var(--muted); }
.feature.is-soon { border-style: dashed; background: #fbfcfe; box-shadow: none; }
.feature-ico { width: 54px; height: 54px; flex: none; display: grid; place-items: center; border-radius: 16px; }
.feature-ico .ico { width: 29px; height: 29px; }
.tag { position: absolute; top: 16px; right: 16px; padding: 4px 9px; border-radius: 999px; font-size: 12px; font-weight: 800; letter-spacing: .02em; }
.tag-full { background: var(--green-soft); color: #166534; }
.tag-soon { background: var(--amber-soft); color: #92400e; }
.extras { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.extras li { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--bg); border: 1px solid var(--line); border-radius: 999px; font-size: 15px; font-weight: 700; color: var(--ink); }
.extras .ico { color: var(--blue); }

/* ---------- text + obrázek vedle sebe ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 56px; align-items: center; }
.split--reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.split-visual { display: flex; justify-content: center; }
.split-visual .device--phone { width: 286px; }
.section-qr { background: linear-gradient(180deg, #fff, #eef4ff); }

.steps { list-style: none; counter-reset: krok; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.steps li { counter-increment: krok; position: relative; padding: 14px 16px 14px 66px; background: #fff; border: 1px solid var(--line-2); border-radius: 16px; }
.steps li::before { content: counter(krok); position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--blue); color: #fff; font-weight: 900; }
.steps b { display: block; color: var(--ink); }
.steps span { display: block; font-size: 15px; color: var(--muted); }
.callout { margin-top: 18px; display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; border-radius: 16px; background: var(--green-soft); color: #14532d; }
.callout .ico { width: 28px; height: 28px; margin-top: 1px; }

/* ---------- telefon i tablet ---------- */
.devices { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) 250px; gap: 36px; align-items: end; }
.device-points { list-style: none; max-width: 1060px; margin: 40px auto 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.device-points li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; }
.device-points .ico { width: 22px; height: 22px; margin-top: 2px; color: var(--green); stroke-width: 2.8; }
.device-points b { color: var(--ink); }

/* ---------- poukázky ---------- */
.vouchers { position: relative; display: block; height: 430px; }
.voucher { position: absolute; width: 80%; border-radius: 16px; box-shadow: 0 24px 50px rgba(15, 23, 42, .2); }
.voucher.v1 { left: 0; top: 0; transform: rotate(-5deg); }
.voucher.v2 { left: 12%; top: 118px; transform: rotate(2deg); }
.voucher.v3 { left: 20%; top: 236px; transform: rotate(-1.5deg); }

/* ---------- EET ---------- */
.section-eet { color: #cbd5e1; background: radial-gradient(820px 420px at 92% 0%, rgba(37, 99, 235, .38), transparent 62%), linear-gradient(160deg, #0f1d35, #0a1325); }
.eet-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 56px; align-items: center; }
.kicker-light { color: #7fb0ff; }
.title-light { color: #fff; }
.lead-light { color: #b6c3d6; }
.eet-date { margin-top: 26px; display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 14px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14); color: #e2e8f0; font-weight: 600; }
.eet-date b { color: #fff; }
.eet-date .ico { color: #fca5a5; }
.eet-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.eet-steps li { display: flex; gap: 16px; padding: 18px 20px; border-radius: 18px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); }
.eet-num { flex: none; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: var(--blue); color: #fff; font-weight: 900; }
.eet-steps b { color: #fff; font-size: 17px; }
.eet-steps p { margin-top: 2px; font-size: 15.5px; color: #aebbd0; }

/* ---------- ceník ---------- */
.pricing { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.06fr; gap: 24px; align-items: start; }
.price-card { position: relative; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); }
.price-card--full { border: 2px solid #22c55e; box-shadow: 0 24px 60px rgba(22, 163, 74, .14); }
.price-flag { position: absolute; top: -15px; right: 28px; padding: 6px 16px; border-radius: 999px; background: var(--green); color: #fff; font-size: 14px; font-weight: 800; }
.price-top { display: flex; gap: 18px; align-items: center; }
.price-ico { width: 78px; height: 78px; flex: none; display: grid; place-items: center; border-radius: 22px; }
.price-ico .ico { width: 42px; height: 42px; stroke-width: 1.7; }
.price-card h3 { font-size: 21px; font-weight: 900; text-transform: uppercase; }
.price-num { font-size: 46px; font-weight: 900; letter-spacing: -.04em; line-height: 1.05; color: var(--ink); }
.price-once { font-size: 16px; font-weight: 700; color: var(--ink); }
.price-top .pill { margin-top: 6px; }
.pills { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.checks-title { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); font-weight: 800; color: var(--ink); }
.checks-title + .checks { margin-top: 12px; }
.checks--ruled { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.limits { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; }
.limits span { padding: 12px 14px; text-align: center; background: #f8fafc; font-weight: 700; color: var(--ink); }
.limits span + span { border-left: 1px solid var(--line); }
.price-card .btn { margin-top: 24px; }
.pricing-notes { max-width: 1000px; margin: 26px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pricing-notes p { display: flex; gap: 12px; padding: 16px 18px; background: #fff; border: 1px solid var(--line-2); border-radius: 16px; font-size: 15.5px; }
.pricing-notes .ico { width: 24px; height: 24px; margin-top: 1px; color: var(--blue); }

/* ---------- „polovině prodejců stačí Free“ ---------- */
.free-callout { max-width: 1000px; margin: 0 auto 36px; display: flex; align-items: center; gap: 22px; padding: 20px 26px; background: linear-gradient(135deg, #effcf4, #eaf1ff); border: 1px solid #bbf7d0; border-radius: 22px; }
.free-callout-num { flex: none; width: 112px; height: 112px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #fff; border-radius: 26px; box-shadow: var(--shadow-sm); line-height: 1; }
.free-callout-num b { font-size: 36px; font-weight: 900; letter-spacing: -.04em; color: var(--green); }
.free-callout-num small { margin-top: 6px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.free-callout h3 { font-size: 22px; font-weight: 900; letter-spacing: -.02em; }
.free-callout p { margin-top: 6px; }

/* ---------- podrobné porovnání verzí (rozbalovací pod ceníkem) ---------- */
.plans { max-width: 1000px; margin: 28px auto 0; }
.plans > summary { list-style: none; display: flex; width: fit-content; margin: 0 auto; }
.plans > summary::-webkit-details-marker { display: none; }
.plans-toggle .ico { transition: transform .2s ease; }
.plans[open] .plans-toggle .ico { transform: rotate(180deg); }
.plans-hide, .plans[open] .plans-show { display: none; }
.plans[open] .plans-hide { display: inline; }
.plans-body { margin-top: 20px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.plans-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 15.5px; }
.plans-col-name { width: 52%; }
.plans-table th, .plans-table td { padding: 11px 16px; border-bottom: 1px solid var(--line-2); text-align: center; vertical-align: middle; }
.plans-table th[scope="row"] { text-align: left; font-weight: 600; color: var(--text); }
.plans-table .is-full { background: #f4fcf7; }
/* záhlaví sloupců zůstává při posouvání dlouhé tabulky pod hlavičkou webu */
.plans-table thead th { position: sticky; top: var(--header); z-index: 2; padding: 16px; background: #fff; border-bottom: 2px solid var(--line); color: var(--ink); font-size: 17px; font-weight: 900; }
.plans-table thead th:first-child { text-align: left; border-top-left-radius: 22px; }
.plans-table thead th:last-child { border-top-right-radius: 22px; }
.plans-table thead th.is-full { background: #ecfbf2; color: var(--green-600); }
.plans-table thead small { display: block; margin-top: 2px; font-size: 13px; font-weight: 700; color: var(--muted); }
.plans-group th { padding: 18px 16px 8px; text-align: left; background: #f8fafc; color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.yes { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--green-soft); color: var(--green-600); vertical-align: middle; }
.yes .ico { width: 15px; height: 15px; stroke-width: 3.2; }
.no { color: #cbd5e1; font-size: 20px; font-weight: 800; line-height: 1; }
.val { color: var(--ink); font-size: 14.5px; font-weight: 700; }
.soon { display: inline-block; padding: 3px 9px; border-radius: 999px; background: var(--amber-soft); color: #92400e; font-size: 12.5px; font-weight: 800; }
.plans-foot { padding: 14px 16px 16px; text-align: center; font-size: 14.5px; color: var(--muted); }

/* ---------- srovnání ---------- */
.compare { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 26px; }
.compare-cards { display: grid; gap: 16px; }
.cmp { padding: 24px 26px; border: 1px solid var(--line-2); border-radius: 22px; }
.cmp-good { background: linear-gradient(135deg, #fff, #effcf4); border-color: #bbf7d0; }
.cmp-bad { background: linear-gradient(135deg, #fff, #fff4f4); border-color: #fecaca; }
.cmp h3 { font-size: 20px; font-weight: 900; }
.cmp h3 b { color: var(--blue); }
.cmp-row { margin-top: 6px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 12px; }
.cmp-price { font-size: 38px; font-weight: 900; letter-spacing: -.04em; line-height: 1.1; }
.cmp-when { font-size: 18px; font-weight: 900; text-transform: uppercase; color: var(--ink); }
.cmp .checks { margin-top: 12px; gap: 7px; }
.chart { display: flex; flex-direction: column; padding: 24px; background: var(--bg); border: 1px solid var(--line-2); border-radius: 22px; }
.chart-legend { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.chart-legend span { display: inline-flex; align-items: center; gap: 8px; }
.chart-legend span::before { content: ""; width: 14px; height: 14px; border-radius: 4px; background: var(--c); }
.chart-bars { height: 300px; margin-top: 18px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; border-bottom: 2px solid #cbd5e1; }
.chart-pair { height: 100%; display: flex; align-items: flex-end; justify-content: center; gap: 6px; }
.bar { position: relative; width: min(36px, 42%); height: var(--h); border-radius: 8px 8px 0 0; }
.bar-anda { background: var(--green); }
.bar-sub { background: #f87171; }
.bar span { position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); margin-bottom: 4px; font-size: 12px; font-weight: 800; color: var(--ink); white-space: nowrap; }
.chart-labels { margin-top: 8px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; text-align: center; font-size: 14px; font-weight: 700; color: var(--muted); }
.chart-total { margin-top: 14px; text-align: center; font-size: 16px; }
.compare-note { max-width: 820px; margin: 20px auto 0; text-align: center; font-size: 15px; color: var(--muted); }

/* ---------- co potřebujete ---------- */
.needs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.need { padding: 22px; background: #fff; border: 1px solid var(--line-2); border-radius: 20px; box-shadow: var(--shadow-sm); }
.need .feature-ico { margin-bottom: 14px; }
.need h3 { font-size: 18px; font-weight: 850; }
.need h3 small { display: inline-block; margin-left: 4px; font-size: 13px; font-weight: 700; color: var(--muted); }
.need p { margin-top: 6px; font-size: 15px; color: var(--muted); }

/* ---------- časté otázky ---------- */
.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { padding: 0 20px; background: var(--bg); border: 1px solid var(--line-2); border-radius: 16px; }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; font-size: 17px; font-weight: 800; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: var(--blue); font-size: 20px; font-weight: 600; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding-bottom: 18px; }

/* ---------- kontakt ---------- */
.contact { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 48px; align-items: center; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-card { display: flex; gap: 14px; align-items: center; padding: 18px; background: #fff; border: 1px solid var(--line-2); border-radius: 18px; box-shadow: var(--shadow-sm); color: var(--text); text-decoration: none !important; }
a.contact-card:hover { border-color: #bfd3fb; }
.contact-card .feature-ico { width: 48px; height: 48px; border-radius: 14px; }
.contact-card b { display: block; font-size: 17px; color: var(--ink); overflow-wrap: anywhere; }
.contact-card small { display: block; font-size: 14px; color: var(--muted); }
.contact-card--wide { grid-column: 1 / -1; }

/* ---------- patička ---------- */
.site-footer { padding-top: 64px; background: linear-gradient(160deg, #0e1a2f, #08111f); color: #aab7ca; font-size: 15.5px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; }
.footer-tagline { margin-top: 12px; color: #c3d0e2; }
.footer-badges { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badges span { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(34, 197, 94, .5); background: rgba(34, 197, 94, .08); color: #d1fae5; font-size: 14px; font-weight: 700; }
.footer-badges .ico { width: 15px; height: 15px; stroke-width: 3; color: #4ade80; }
.footer-heading { position: relative; margin-bottom: 16px; padding-bottom: 10px; color: #fff; font-size: 17px; font-weight: 800; }
.footer-heading::after { content: ""; position: absolute; left: 0; bottom: 0; width: 32px; height: 3px; border-radius: 3px; background: var(--blue); }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: #c9d5e6; }
.site-footer a:hover { color: #fff; }
.footer-contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-contact .ico { color: #7fb0ff; }
.footer-company { padding: 18px 0; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 14px; color: #8d9bb0; }
.footer-company strong { color: #c9d5e6; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); }
.footer-bottom-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 24px; padding: 18px 0; font-size: 14px; }
.footer-cz { display: inline-flex; align-items: center; gap: 8px; }
.footer-cz svg { width: 24px; height: 16px; border-radius: 2px; }
.footer-top { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; }

/* ---------- podstránky ---------- */
.page { padding: 56px 0 88px; }
.page h1 { margin-top: 8px; font-size: clamp(30px, 4vw, 44px); font-weight: 900; letter-spacing: -.03em; }
.page-updated { margin-top: 8px; font-size: 15px; color: var(--muted); }
.prose h2 { margin: 38px 0 10px; font-size: 22px; font-weight: 850; }
.prose h3 { margin: 22px 0 6px; font-size: 18px; font-weight: 800; }
.prose p, .prose ul, .prose ol { margin: 0 0 12px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose .box { margin: 22px 0; padding: 18px 20px; background: #fff; border: 1px solid var(--line-2); border-radius: 16px; }
.prose .box p:last-child { margin-bottom: 0; }
.error-page { padding: 40px 0; text-align: center; }
.error-code { font-size: 120px; font-weight: 900; letter-spacing: -.05em; line-height: 1; color: var(--blue); }
.error-page .btn { margin-top: 20px; }

/* ==========================================================================
   Menší obrazovky
   ========================================================================== */
@media screen and (max-width: 1140px) {
  .site-nav { gap: 18px; }
  .site-nav > a { font-size: 15px; }
  .hero-visual .device--tablet { width: 580px; left: 70px; }
  .features { grid-template-columns: repeat(3, 1fr); }
}

@media screen and (max-width: 980px) {
  .nav-toggle { display: grid; place-items: center; width: 46px; height: 46px; margin-left: auto; border: 0; border-radius: 12px; background: rgba(255, 255, 255, .08); color: #fff; cursor: pointer; }
  .nav-toggle .ico { width: 26px; height: 26px; }
  .header-cta { display: none; }
  .site-nav { position: fixed; top: var(--header); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 6px 20px 22px; background: #0c1729; box-shadow: 0 24px 40px rgba(0, 0, 0, .3); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .18s, transform .18s, visibility .18s; }
  .nav-open .site-nav { opacity: 1; visibility: visible; transform: none; }
  .site-nav > a { padding: 14px 4px; border-bottom: 1px solid rgba(255, 255, 255, .08); font-size: 17px; }
  .site-nav .nav-play { display: flex; margin-top: 16px; }

  .section { padding: 68px 0; }
  .hero { padding-top: 44px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { height: auto; padding: 0 0 40px 60px; }
  .hero-visual .device--tablet { position: relative; top: auto; left: auto; width: 100%; }
  .hero-visual .device--phone { width: 30%; min-width: 150px; max-width: 220px; }
  .sticker { top: -30px; left: auto; right: 12px; width: 132px; height: 132px; }
  .sticker b { font-size: 22px; }
  .sticker span { font-size: 11.5px; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .reasons { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .split, .split--reverse, .eet-grid, .compare, .contact { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split-visual { order: 2; }
  .devices { grid-template-columns: minmax(0, 1fr) 190px; gap: 20px; }
  .device-points, .needs { grid-template-columns: repeat(2, 1fr); }
  .pricing, .pricing-notes { grid-template-columns: 1fr; max-width: 580px; }
  .vouchers { max-width: 560px; margin: 0 auto; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media screen and (max-width: 640px) {
  body { font-size: 16px; }
  .container, .container-narrow { width: calc(100% - 32px); }
  .brand-word { font-size: 23px; }
  .brand-mark { width: 34px; height: 34px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 32px; }

  /* Úvod na telefonu: obrázek mobilu musí být vidět hned po načtení (Robert 14. 9. 2026).
     Telefon stojí vedle ceny a textu, tlačítka jsou až pod ním. */
  .hero { padding: 26px 0 44px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 148px; grid-template-areas: "h1 h1" "price phone" "lead phone" "sticker phone" "cta cta" "note note"; grid-template-rows: auto auto auto 1fr auto auto; column-gap: 16px; row-gap: 0; align-items: start; }
  .hero-copy { display: contents; }
  /* Na telefonu bez zeleného štítku; nálepka ZDARMA stojí pod textem vedle obrázku (Robert 14. 9. 2026). */
  .promo { display: none; }
  .sticker { grid-area: sticker; position: relative; top: auto; left: auto; right: auto; align-self: center; justify-self: end; width: 112px; height: 112px; margin: 14px 2px 0 0; }
  .sticker b { font-size: 20px; }
  .sticker span { margin-top: 4px; font-size: 11px; }
  .hero h1 { grid-area: h1; margin-top: 0; }
  .hero-price { grid-area: price; margin-top: 18px; flex-direction: column; align-items: flex-start; gap: 2px; }
  .hero-price strong { font-size: 38px; }
  .hero-price span { font-size: 15px; }
  .hero-lead { grid-area: lead; margin-top: 10px; font-size: 15.5px; line-height: 1.5; }
  .hero-cta { grid-area: cta; margin-top: 22px; flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-note { grid-area: note; align-items: flex-start; }
  .hero-note .ico { margin-top: 3px; }
  .hero-visual { display: contents; }
  .hero-visual .device--tablet { display: none; }
  .hero-visual .device--phone { grid-area: phone; align-self: start; margin-top: 18px; position: relative; left: auto; bottom: auto; width: 100%; min-width: 0; max-width: none; padding: 6px; border-radius: 26px; }
  .hero-visual .device--phone .device-screen { border-radius: 20px; }
  .hero-visual .device--phone::after { top: 11px; width: 34px; height: 9px; margin-left: -17px; }

  .free-callout { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px; }
  .free-callout-num { width: auto; height: auto; padding: 8px 14px; flex-direction: row; align-items: baseline; gap: 8px; }
  .free-callout-num small { margin-top: 0; }
  .free-callout h3 { font-size: 19px; }
  .benefits, .trust, .device-points, .needs, .contact-cards { grid-template-columns: 1fr; }

  .features { grid-template-columns: 1fr; gap: 10px; }
  .feature { flex-direction: row; align-items: center; gap: 14px; padding: 14px 16px; }
  .feature .feature-ico { width: 48px; height: 48px; border-radius: 14px; }
  .feature .feature-ico .ico { width: 26px; height: 26px; }
  .feature h3 { font-size: 17px; }
  .tag { position: static; align-self: flex-start; margin-left: auto; white-space: nowrap; }

  .devices { grid-template-columns: 1fr; }
  .devices .device--phone { width: 220px; justify-self: center; }
  .split-visual .device--phone { width: 250px; }
  .vouchers { height: 330px; }
  .voucher { width: 84%; }
  .voucher.v2 { top: 90px; left: 8%; }
  .voucher.v3 { top: 180px; left: 16%; }

  .plans > summary { width: 100%; }
  .plans-table { font-size: 14px; }
  .plans-col-name { width: auto; }
  .plans-table th, .plans-table td { padding: 10px 8px; }
  .plans-table th[scope="row"], .plans-table thead th:first-child { padding-left: 12px; }
  .plans-table thead th { padding-top: 12px; padding-bottom: 12px; font-size: 14.5px; }
  .plans-table thead small { font-size: 11.5px; }
  .plans-group th { padding: 14px 12px 6px; font-size: 12px; }
  .val { font-size: 12.5px; }
  .soon { padding: 2px 7px; font-size: 11px; }

  .price-card { padding: 24px 20px; }
  .price-ico { width: 64px; height: 64px; border-radius: 18px; }
  .price-num { font-size: 40px; }
  .chart { padding: 18px 14px; }
  .chart-bars { height: 220px; gap: 8px; }
  .bar span { display: none; }
  .chart-labels { gap: 8px; font-size: 13px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { margin-left: 0; }
  .error-code { font-size: 90px; }
}

@media screen and (max-width: 360px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) 120px; column-gap: 12px; }
  .hero h1 { font-size: 34px; }
  .hero-price strong { font-size: 32px; }
  .hero-lead { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .site-nav { transition: none; }
}
