/* ==========================================================================
   NZÚ Light — landing page
   Vizuální předloha: export z Claude Design (21. 8. 2026), _design-source/
   Runtime Claude Design zde není. Mobilní stavy jsou skutečné @media.
   ========================================================================== */

/* ---------- 1. Tokeny ---------- */
:root {
  --bg-page:#FDFBF8; --bg-sand:#F7F2EA; --bg-mint:#F4F7F1; --bg-mint-deep:#EAF2E7;
  --bg-dark:#1C1917; --bg-darker:#14110F; --bg-photo:#EDE7DD; --white:#FFFFFF;

  --ink:#14110F; --ink-2:#3F3A35; --ink-3:#4B453F; --ink-4:#5C554E;
  --muted:#6B635C; --muted-2:#8A8178; --muted-3:#A79E93;

  --red:#DA000F; --red-hover:#B80010; --red-active:#9C000D; --red-link-hover:#A8000C;
  --red-sending:#C4747B;
  --green:#4F8B62; --green-deep:#3D7A52; --green-pale:#8FC79E; --green-badge:#B7DFC0;

  --line:#EAE1D5; --line-hover:#C9BFB2; --line-2:#E7DFD3; --line-3:#EDE5D9;
  --line-mint:#E4EADF; --line-mint-hover:#CFDDCB; --line-cond:#E2D8CB;

  --font-display:'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body:'Open Sans', 'Segoe UI', Arial, sans-serif;

  --container:1248px; --gutter:24px; --radius-card:20px; --radius-btn:14px;
  --shadow-tile:0 6px 18px rgba(20,17,15,.05);
  --shadow-tile-h:0 14px 30px rgba(20,17,15,.10);
  --shadow-card:0 30px 70px rgba(0,0,0,.4);
  --sticky-h:0px;
}

/* ---------- 2. Základ ---------- */
*,*::before,*::after { box-sizing:border-box; }
[hidden] { display:none !important; }   /* atribut hidden přebíjí .sent{display:flex} ap. */
html { scroll-behavior:smooth; }
body {
  margin:0; background:var(--bg-page); color:var(--ink);
  font-family:var(--font-body); font-size:17px; line-height:1.6;
  -webkit-font-smoothing:antialiased;
  padding-bottom:var(--sticky-h);
}
img,svg { display:block; max-width:100%; }
h1,h2,h3 { font-family:var(--font-display); font-weight:600; margin:0; letter-spacing:-.03em; text-wrap:balance; }
p { margin:0; text-wrap:pretty; }
a { color:var(--red); text-decoration:none; }
a:hover { color:var(--red-link-hover); }
button { font:inherit; color:inherit; }

.section { position:relative; padding:88px 0 96px; overflow:hidden; }
.container { max-width:var(--container); margin:0 auto; padding:0 var(--gutter); position:relative; }
.grid { display:grid; grid-template-columns:repeat(12,1fr); gap:var(--gutter); align-items:start; }
.stack { display:flex; flex-direction:column; }
.wave { position:absolute; left:0; right:0; pointer-events:none; }
.wave svg { width:100%; height:100%; }
.sr-only { position:absolute; width:1px; height:1px; margin:0; padding:0; overflow:hidden;
  clip-path:inset(50%); white-space:nowrap; border:0; }   /* bod 7: margin:-1px způsoboval left:-1 */

/* ---------- 3. Focus, interakce ---------- */
button:focus-visible, a:focus-visible, input:focus-visible, [tabindex]:focus-visible {
  outline:3px solid var(--red); outline-offset:3px;
}
.is-dark button:focus-visible, .is-dark a:focus-visible { outline-color:var(--white); }

/* ---------- 4. Tlačítka ---------- */
.btn { border:0; cursor:pointer; font-family:var(--font-display); font-weight:600; text-align:center; }
.btn-primary {
  color:var(--white); background:var(--red); border-radius:var(--radius-btn);
  padding:18px 30px; font-size:17px;
  transition:background .18s ease-out, transform .18s ease-out, box-shadow .18s ease-out;
}
.btn-primary:hover { background:var(--red-hover); transform:translateY(-1px); box-shadow:0 10px 22px rgba(218,0,15,.22); }
.btn-primary:active { background:var(--red-active); transform:translateY(1px); box-shadow:none; }
.btn-primary--lg { font-size:19px; padding:22px 30px; }
.btn-pill { border-radius:99px; padding:12px 20px; font-size:15px; color:var(--white); background:var(--red);
  transition:background .18s ease-out, transform .18s ease-out, box-shadow .18s ease-out; }
.btn-pill:hover { background:var(--red-hover); transform:translateY(-1px); box-shadow:0 10px 22px rgba(218,0,15,.22); }
.btn-pill:active { background:var(--red-active); transform:translateY(1px); box-shadow:none; }
.btn-link { background:none; border:0; padding:0; cursor:pointer; font-family:var(--font-body);
  text-decoration:underline; text-underline-offset:3px; color:var(--muted); font-size:15px; }
.btn-link:hover { color:var(--ink); }

/* ---------- 5. Pomocné prvky ---------- */
.eyebrow { font-family:var(--font-body); font-weight:600; font-size:13px; letter-spacing:.12em;
  text-transform:uppercase; padding:9px 16px; border-radius:99px; align-self:flex-start; }
.eyebrow--green { color:var(--green-deep); background:var(--bg-mint-deep); }
.eyebrow--white { color:var(--green-deep); background:var(--white); }
.eyebrow--red { color:#F0B9BD; background:rgba(218,0,15,.18); }
.mark { background:var(--red); color:var(--white); font-family:var(--font-display); font-weight:600;
  padding:2px 8px; border-radius:5px; }
.mark--h1 { padding:0 12px 6px; border-radius:8px; -webkit-box-decoration-break:clone; box-decoration-break:clone; }
.tick { width:30px; height:30px; border-radius:99px; background:var(--bg-mint-deep); color:var(--green);
  display:flex; align-items:center; justify-content:center; font-size:15px; flex-shrink:0; }
.tick--sm { width:24px; height:24px; font-size:12px; }
.photo { position:relative; border-radius:24px; overflow:hidden; background:var(--bg-photo); }
.photo img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.photo-empty { display:flex; align-items:center; justify-content:center; padding:24px; text-align:center;
  font-size:14px; line-height:1.5; color:var(--muted-3); background:var(--bg-photo); }

/* ---------- 6. Reveal animace ---------- */
[data-reveal] { transition:opacity .42s ease-out, transform .42s ease-out; }
[data-reveal="out"] { opacity:0; transform:translateY(16px); }
[data-reveal="in"] { opacity:1; transform:none; }

/* ---------- 7. Header ---------- */
.header { position:relative; z-index:20; background:var(--bg-dark); }
.header .container { display:flex; align-items:center; justify-content:space-between;
  padding:18px 0; }   /* locked design: hlavička bez horizontálního paddingu → obsah 1248 px */
.header__logo { height:24px; width:211px; object-fit:contain; object-position:left center; flex-shrink:0; }
.header__right { display:flex; align-items:center; gap:30px; }
.nav { display:flex; align-items:center; gap:30px; }
.nav__link { font-family:var(--font-body); font-size:15px; color:#E2DBD3; cursor:pointer;
  background:none; border:0; padding:6px 0; transition:color .16s ease-out; }
.nav__link:hover { color:var(--white); }
.nav__link[aria-current="true"] { color:var(--white); }
.header__divider { display:flex; align-items:center; gap:12px; padding-left:14px;
  border-left:1px solid rgba(253,251,248,.18); }

/* ---------- 8. Hero ---------- */
.hero { position:relative; background:var(--bg-dark); padding:56px 0 0; overflow:hidden; }
.hero__bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:62% 62%; }
.hero__scrim { position:absolute; inset:0;
  background:linear-gradient(100deg,
    rgba(20,17,15,.97) 0%,
    rgba(20,17,15,.93) 30%,
    rgba(20,17,15,.72) 52%,
    rgba(20,17,15,.34) 72%,
    rgba(20,17,15,.08) 100%); }
.hero__glow { position:absolute; left:-8%; top:0; width:66%; height:100%;
  background:radial-gradient(62% 58% at 32% 46%,rgba(20,17,15,.72) 0%,rgba(20,17,15,0) 100%); }
.hero__wave-photo { display:none; }
.hero__wave { bottom:-2px; height:170px; color:var(--bg-page); z-index:2; }
/* bod 13: hero má zlomkovou výšku (1851,148 px), takže na hranici pod wave ořezem
   prosvítala 1px tmavá linka. Krycí pásek ve barvě pozadí, bez dopadu na layout. */
.hero::after { content:''; position:absolute; left:0; right:0; bottom:0; height:2px;
  background:var(--bg-page); z-index:3; pointer-events:none; }
.hero .grid { padding-bottom:150px; align-items:start; z-index:3; }
.hero__col { grid-column:1 / span 6; display:flex; flex-direction:column; gap:24px; padding-bottom:24px; }
.hero__badge { color:var(--green-badge); background:rgba(79,139,98,.24); }
.hero h1 { font-size:60px; line-height:1.24; color:var(--bg-page); }
.hero__lead { font-size:19.5px; line-height:1.6; color:#D6CFC7; max-width:42ch; }
.hero__amount-wrap { display:flex; flex-direction:column; gap:14px; padding-top:8px; }
.hero__kicker { font-family:var(--font-body); font-weight:600; font-size:15px; letter-spacing:.04em;
  color:#A39C94; text-transform:uppercase; }
.hero__amount { display:flex; align-items:baseline; gap:10px; white-space:nowrap;
  background-image:linear-gradient(100deg,#FF2233 0%,#F0407A 40%,#C452C9 70%,#8E6BEB 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero__num { font-family:var(--font-display); font-weight:700; font-size:96px; line-height:.92; letter-spacing:-.05em; }
.hero__unit { font-family:var(--font-display); font-weight:600; font-size:36px; letter-spacing:-.01em; }
.hero__note { font-size:18px; line-height:1.5; color:#D6CFC7; max-width:34ch; }
.hero__pills { display:flex; align-items:center; gap:10px; flex-wrap:wrap; padding-top:6px; }
.pill { display:flex; align-items:center; gap:9px; font-size:15.5px; color:var(--white);
  background:rgba(253,251,248,.22); border:1px solid rgba(253,251,248,.42); padding:11px 18px; border-radius:99px; }
.pill span { color:var(--green-pale); }

/* ---------- 9. Formulářová karta ---------- */
.card { grid-column:8 / span 5; position:relative; z-index:3; background:var(--white);
  border-radius:var(--radius-card); box-shadow:var(--shadow-card); overflow:hidden; }
.card__head { padding:22px 30px 20px; background:var(--bg-sand); display:flex; flex-direction:column; gap:4px; }
.card__title { font-family:var(--font-display); font-weight:600; font-size:19px; color:var(--ink); }
.card__sub { font-size:15px; line-height:1.5; color:var(--muted); }
.card__body { padding:26px 30px 28px; display:flex; flex-direction:column; gap:14px; }
.field { display:flex; flex-direction:column; gap:6px; }
.field label { font-family:var(--font-body); font-weight:600; font-size:15px; line-height:normal; color:var(--ink-2); }
.field label .req { color:var(--red); }
.field__row { display:grid; grid-template-columns:110px 1fr; gap:12px; }
.input { font-family:var(--font-body); font-size:17px; color:var(--ink); padding:14px 16px;
  border:1.5px solid var(--line); border-radius:12px; background:var(--white); width:100%;
  transition:border-color .18s ease-out, box-shadow .18s ease-out; }
.input:hover { border-color:var(--line-hover); }
.input:focus { outline:none; border-color:var(--ink); box-shadow:0 0 0 3px rgba(20,17,15,.16); }
.input[aria-invalid="true"] { border-color:var(--red); }
.input[aria-invalid="true"]:focus { box-shadow:0 0 0 3px rgba(218,0,15,.18); }
.err { min-height:18px; font-size:13.5px; color:var(--red); }
.consent { display:flex; gap:12px; align-items:flex-start; cursor:pointer; }
.consent input { width:22px; height:22px; margin:2px 0 0; accent-color:var(--red); flex-shrink:0; }
.consent span { font-size:15px; line-height:1.5; color:var(--ink-3); }
.submit { display:flex; align-items:center; justify-content:center; gap:10px; padding:20px 28px;
  border-radius:var(--radius-btn); font-family:var(--font-display); font-weight:600; font-size:18px;
  border:0; color:var(--white); background:var(--red); cursor:pointer; transition:background .16s ease-out; }
.submit:hover { background:var(--red-hover); }
.submit[disabled] { background:var(--red-sending); cursor:progress; }
.card__legal { font-size:14px; line-height:1.5; color:var(--muted-2); text-align:center; }
.form-status { font-size:14.5px; line-height:1.5; border-radius:12px; padding:12px 14px; }
.form-status--error { background:#FDECEE; color:#8E0009; border:1px solid #F3C9CD; }
.sent { display:flex; flex-direction:column; gap:16px; padding:14px 0 18px; }
.sent__icon { width:56px; height:56px; border-radius:99px; background:var(--green); color:var(--white);
  display:flex; align-items:center; justify-content:center; font-size:26px; }
.sent h3 { font-size:26px; line-height:1.18; letter-spacing:-.015em; }
.sent p { font-size:16px; line-height:1.6; color:var(--ink-4); }
.hp { position:absolute; width:1px; height:1px; overflow:hidden;
  clip-path:inset(50%); white-space:nowrap; }   /* bod 7: dřív left:-9999px → přesah mimo viewport */

/* ---------- 10. Trust ---------- */
.trust { background:var(--bg-page); padding:56px 0 60px; }
.trust__intro { grid-column:1 / span 3; display:flex; flex-direction:column; gap:6px; }
.trust__title { font-family:var(--font-display); font-weight:600; font-size:20px; line-height:1.25; letter-spacing:-.01em; }
.trust__sub { font-size:15.5px; line-height:1.5; color:var(--muted); }
.trust__items { grid-column:5 / span 8; display:grid; grid-template-columns:repeat(3,1fr); gap:var(--gutter); }
.trust__item { display:flex; flex-direction:column; gap:6px; padding-left:20px; border-left:2px solid var(--line-3); }
.trust__num { font-family:var(--font-display); font-weight:700; font-size:34px; line-height:1; letter-spacing:-.03em; }
.trust__lbl { font-size:15px; line-height:1.45; color:var(--muted); }
.trust__logo { width:300px; height:78px; overflow:hidden; display:flex; align-items:flex-start; }
.trust__logo img { width:340px; max-width:none; height:auto; margin:-56px 0 0 -14px;
  mix-blend-mode:multiply; }   /* max-width:none — jinak globální img{max-width:100%} zmenší 340→300 a ořízne logo shora */

/* ---------- 11. Je to pro vás ---------- */
.forwho { background:var(--bg-sand); }
.forwho__left { grid-column:1 / span 5; display:flex; flex-direction:column; gap:22px; padding-right:20px; }
.forwho h2 { font-size:48px; line-height:1.04; }
.forwho__lead { font-size:19px; line-height:1.6; color:var(--ink-3); max-width:34ch; }
.forwho__photo { height:280px; margin-top:8px; }
.forwho__list { grid-column:7 / span 6; display:flex; flex-direction:column; }
.forwho__item { display:flex; gap:20px; align-items:flex-start; padding:26px 0; border-bottom:1px solid var(--line-2); }
.forwho__item:last-of-type { border-bottom:0; }
.forwho__item h3 { font-size:22px; line-height:1.25; letter-spacing:-.012em; }
.forwho__item p { font-size:16.5px; line-height:1.55; color:var(--ink-4); max-width:46ch; }
.forwho__cta { display:flex; align-items:center; gap:20px; padding-top:28px; }
.forwho__cta span { font-size:16px; color:var(--muted); }

/* ---------- 12. Ověření nároku (info sekce) ---------- */
.verify { background:var(--bg-page); }
.verify__wave-top { top:0; height:130px; color:var(--bg-sand); }
.verify .grid { align-items:center; padding-top:36px; }
.verify__left { grid-column:1 / span 5; display:flex; flex-direction:column; gap:24px; padding-right:24px; }
.verify h2 { font-size:52px; line-height:1.04; max-width:20ch; }
.verify__lead { font-size:19px; line-height:1.6; color:var(--ink-3); max-width:40ch; }
.verify__list { display:flex; flex-direction:column; gap:14px; max-width:42ch; padding-top:6px; }
.verify__list div { display:flex; gap:14px; align-items:center; }
.verify__list span:last-child { font-size:17px; color:var(--ink-2); }
.verify__photo-col { grid-column:7 / span 6; }
.verify__photo { height:560px; }
.verify__photo img { object-position:50% 42%; }

/* ---------- 13. Kolik můžete získat ---------- */
.amounts { background:var(--bg-mint); }
.amounts__wave { bottom:0; height:200px; color:var(--bg-mint-deep); }
.amounts__inner { display:flex; flex-direction:column; gap:52px; }
.amounts__head { grid-column:1 / span 7; display:flex; flex-direction:column; gap:20px; }
.amounts h2 { font-size:48px; line-height:1.04; }
.amounts__left { grid-column:1 / span 7; display:flex; flex-direction:column; }
.tiles { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.tile { position:relative; display:flex; flex-direction:column; justify-content:flex-end; gap:18px;
  min-height:178px;   /* locked design: renderovaná výška dlaždice */ background:var(--white); border:1px solid var(--line-mint); border-radius:16px;
  padding:22px; box-shadow:var(--shadow-tile);
  transition:box-shadow .22s ease-out, border-color .22s ease-out, transform .22s ease-out, background .22s ease-out; }
.tile:hover { box-shadow:var(--shadow-tile-h); border-color:var(--line-mint-hover); transform:translateY(-2px); background:#FEFFFE; }
.tile__plus { position:absolute; top:18px; right:20px; font-family:var(--font-display); font-weight:500;
  font-size:18px; line-height:1; color:var(--green); transition:transform .22s ease-out, color .22s ease-out; }
.tile:hover .tile__plus { transform:rotate(90deg) scale(1.06); color:var(--green-deep); }
.tile__label { font-family:var(--font-display); font-weight:600; font-size:19.5px; line-height:1.28;
  letter-spacing:-.012em; padding-right:22px; }
.amounts__note { margin-top:22px; font-size:16px; line-height:1.6; color:#5C625B; max-width:52ch; }
.maxcard { grid-column:9 / span 4; display:flex; flex-direction:column; gap:18px; padding-top:8px; }
.maxcard__kicker { font-family:var(--font-body); font-weight:600; font-size:13px; letter-spacing:.1em;
  text-transform:uppercase; color:var(--muted-2); }
.maxcard__az { font-family:var(--font-display); font-weight:500; font-size:22px; line-height:1;
  letter-spacing:-.01em; color:#5C625B; }
.maxcard__amount { display:flex; align-items:baseline; gap:10px; }
.maxcard__num { font-family:var(--font-display); font-weight:700; font-size:78px; line-height:.9; letter-spacing:-.045em; }
.maxcard__unit { font-family:var(--font-display); font-weight:600; font-size:30px; letter-spacing:-.01em; }
.maxcard__hairline { display:none; height:1px; background:#F2ECE3; }
.maxcard__text { font-size:17px; line-height:1.55; color:var(--ink-3); max-width:26ch; }
.maxcard .btn-primary { align-self:flex-start; margin-top:6px; }

/* ---------- 14. Jak to probíhá ---------- */
.process { background:var(--bg-page); }
.process__inner { display:flex; flex-direction:column; gap:48px; }
.process__head { align-items:end; }
.process__head h2 { grid-column:1 / span 6; font-size:48px; line-height:1.04; }
.process__head p { grid-column:8 / span 5; margin-bottom:6px; font-family:var(--font-display);
  font-weight:600; font-size:26px; line-height:1.24; letter-spacing:-.02em; }
.process__track { position:relative; }
.process__line { position:absolute; left:0; right:0; top:34px; height:2px; background:var(--line-3); }
.process__line--done { right:auto; width:26%; background:var(--red); }
.steps { position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:var(--gutter); }
.step { display:flex; flex-direction:column; gap:14px; }
.step__num { width:70px; height:70px; border-radius:99px; background:var(--white);
  border:1.5px solid var(--line-3); color:var(--ink); display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:600; font-size:24px; }
.step--active .step__num { background:var(--red); color:var(--white); border:0; box-shadow:0 12px 26px rgba(218,0,15,.22); }
.step h3 { font-size:22px; line-height:1.25; letter-spacing:-.012em; }
.step p { font-size:16.5px; line-height:1.55; color:var(--ink-4); max-width:26ch; }
.process__photo { height:360px; border-radius:28px; margin-top:8px; }

/* ---------- 15. Co budete potřebovat ---------- */
.need { background:var(--bg-sand); }
.need__intro { grid-column:1 / span 4; display:flex; flex-direction:column; gap:18px; padding-right:20px; }
.need h2 { font-size:44px; line-height:1.06; }
.need__intro p { font-size:18px; line-height:1.6; color:var(--ink-3); }
.need__col--a { grid-column:6 / span 3; }
.need__col--b { grid-column:10 / span 3; }
.need__col { display:flex; flex-direction:column; gap:16px; }
.need__col h3 { font-size:18px; }
.need__col ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px;
  font-size:16.5px; line-height:1.5; }
.need__col li { display:flex; gap:12px; }
.need__tick { color:var(--green); flex-shrink:0; }
.need__dot  { color:var(--muted-3); flex-shrink:0; }
.need__txt  { color:var(--ink-3); }   /* stejná neutrální barva jako odstavec sekce */

/* ---------- 16. Férový dodavatel ---------- */
.fair { background:var(--bg-darker); }
.fair__left { grid-column:1 / span 5; display:flex; flex-direction:column; gap:20px; padding-right:24px; }
.fair h2 { font-size:46px; line-height:1.05; color:var(--bg-page); }
.fair__lead { font-size:18.5px; line-height:1.62; color:#C9C2BA; }
.fair__grid { grid-column:7 / span 6; display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.fair__card { background:rgba(253,251,248,.06); border-radius:18px; padding:24px;
  display:flex; flex-direction:column; gap:10px;
  transition:background .2s ease-out, transform .2s ease-out, box-shadow .2s ease-out; }
.fair__card:hover { background:rgba(253,251,248,.10); transform:translateY(-2px); box-shadow:0 14px 30px rgba(0,0,0,.28); }
.fair__card h3 { font-size:18.5px; line-height:1.3; color:var(--bg-page);
  letter-spacing:normal; }   /* locked design: karty férového dodavatele bez negativní prostrkanosti */
.fair__card p { font-size:16px; line-height:1.55; color:#B9B2AA; }

/* ---------- 17. Reference ---------- */
.refs { background:var(--bg-page); }
.refs__inner { display:flex; flex-direction:column; gap:44px; }
.refs h2 { grid-column:1 / span 6; font-size:48px; line-height:1.04; }
.ref { display:flex; flex-direction:column; gap:18px; }
.ref--lg { grid-column:1 / span 5; }
.ref--sm:nth-of-type(2) { grid-column:7 / span 3; }
.ref--sm:nth-of-type(3) { grid-column:10 / span 3; }
.ref--lg .photo { height:300px; }
.ref--sm .photo { height:220px; }
.ref__label { font-family:var(--font-display); font-weight:600; font-size:22px; line-height:1.3; }
.ref--sm .ref__label { font-size:19px; }

/* ---------- 18. Podmínky ---------- */
.cond { background:var(--bg-sand); }
.cond__intro { grid-column:1 / span 4; display:flex; flex-direction:column; gap:16px; padding-right:24px; }
.cond h2 { font-size:44px; line-height:1.06; }
.cond__intro p { font-size:18px; line-height:1.6; color:var(--ink-3); }
.cond__surface { grid-column:5 / span 8; background:var(--bg-page); border-radius:28px;
  padding:44px 40px 36px; display:flex; flex-direction:column; gap:30px; }
.cond__house { display:flex; align-items:flex-end; gap:16px; }
.cond__glyph { display:flex; flex-direction:column; align-items:center; flex-shrink:0; }
.cond__roof { width:52px; height:26px; background:var(--red); clip-path:polygon(50% 0,100% 100%,0 100%); }
.cond__walls { width:38px; height:30px; border:2px solid var(--ink); border-top:none; background:var(--bg-page); }
.cond__house-txt { display:flex; flex-direction:column; gap:2px; padding-bottom:2px; }
.cond__house-txt strong { font-family:var(--font-display); font-weight:600; font-size:21px; line-height:1.25; letter-spacing:-.015em; }
.cond__house-txt span { font-size:16px; line-height:1.5; color:var(--muted); }
.cond__track { position:relative; padding-top:6px; }
.cond__line { position:absolute; left:9px; right:calc(25% - 9px); top:14px; height:2px; background:var(--line-cond); }
.cond__line--done { right:auto; width:25%; background:var(--red); }
.cond__nodes { position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:0; align-items:start; }
.cond__node { display:flex; flex-direction:column; }
.cond__dot-wrap { height:18px; display:flex; align-items:center; }
.cond__dot { width:18px; height:18px; border-radius:99px; background:var(--bg-page);
  border:2px solid var(--line-hover); flex-shrink:0; }
.cond__node--active .cond__dot { background:var(--red); border:0; }
.cond__body { display:flex; flex-direction:column; gap:10px; padding-top:20px; padding-right:16px; }
.cond__body strong { font-family:var(--font-display); font-weight:600; font-size:19px; line-height:1.28; letter-spacing:-.01em; }
.cond__body span { font-size:15.5px; line-height:1.5; color:var(--ink-4); }
.cond__sfzp { display:flex; align-items:center; gap:16px; padding:20px 22px;
  background:var(--bg-mint-deep); border-radius:16px; }
.cond__sfzp > span:first-child { width:28px; height:28px; border-radius:99px; background:var(--green);
  color:var(--white); display:flex; align-items:center; justify-content:center; font-size:14px; flex-shrink:0; }
.cond__sfzp p { font-size:16.5px; line-height:1.5; color:#2F3B31; }
.cond__sfzp strong { font-family:var(--font-display); font-weight:600; }

/* ---------- 19. Financování ---------- */
.finance { background:var(--bg-page); padding:80px 0 88px; }
.finance .grid { align-items:center; }
.finance__photo { grid-column:1 / span 5; height:300px; }
.finance__text { grid-column:7 / span 6; display:flex; flex-direction:column; gap:20px; }
.finance h2 { font-size:42px; line-height:1.06; max-width:24ch; }
.finance__text p { font-size:18.5px; line-height:1.6; color:var(--ink-3); max-width:46ch; }

/* ---------- 20. FAQ ---------- */
.faq { background:var(--bg-sand); }
.faq__inner { display:flex; flex-direction:column; gap:36px; }
.faq__head { display:flex; flex-direction:column; gap:14px; max-width:44ch; }
.faq h2 { font-size:44px; line-height:1.06; }
.faq__head p { font-size:18px; line-height:1.6; color:var(--ink-3); }
.faq__list { display:flex; flex-direction:column; gap:12px; max-width:860px; }
.faq__item { background:var(--white); border-radius:18px; overflow:hidden;
  transition:box-shadow .2s ease-out; box-shadow:0 8px 20px rgba(20,17,15,.04); }
.faq__item.is-open { box-shadow:0 12px 28px rgba(20,17,15,.09); }
.faq__q { width:100%; display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding:24px 28px; background:none; border:0; cursor:pointer; text-align:left; }
.faq__q > span:first-child { font-family:var(--font-display); font-weight:600; font-size:20px; line-height:1.35; }
.faq__sign { font-family:var(--font-display); font-size:20px; flex-shrink:0; color:var(--muted-2); }
.faq__item.is-open .faq__sign { color:var(--red); }
.faq__a { padding:0 28px 26px; animation:faqIn .22s ease-out; }
.faq__a p { font-size:16.5px; line-height:1.6; color:var(--ink-3); max-width:60ch; }
@keyframes faqIn { from { opacity:0; transform:translateY(-4px); } to { opacity:1; transform:none; } }

/* ---------- 21. Závěrečné CTA ---------- */
.final { position:relative; overflow:hidden; background:var(--bg-mint); padding:92px 0 100px; }
/* position:relative CHYBĚLA — .final nepoužívá .section, takže se absolutně pozicované
   vlny počítaly proti initial containing blocku a vykreslovaly se v hero.
   Tím byl současně: dekorativní vlnka v hero (bod 2) + neviditelný horní ořez (4A)
   + neviditelná vnitřní vlnka zelené plochy (4B). */
.final__wave-top { top:0; height:150px; color:var(--bg-sand); }
.final__wave-line { bottom:-10px; height:180px; opacity:.5; color:#B7D6B9; }
.final .grid { align-items:center; padding-top:24px; }
.final__text { grid-column:1 / span 7; display:flex; flex-direction:column; gap:22px; }
.final h2 { font-size:54px; line-height:1.02; letter-spacing:-.032em; max-width:22ch; }
.final__text p { font-size:19.5px; line-height:1.6; color:#42463F; max-width:44ch; }
.final__cta { grid-column:9 / span 4; display:flex; flex-direction:column; gap:14px; }
.final__cta span { font-size:14.5px; line-height:1.5; color:#6E736C; text-align:center; }

/* ---------- 22. Footer ---------- */
.footer { background:var(--bg-darker); padding:64px 0 52px; }   /* bod 5: bottom 32 → 52 */
.footer .container { display:flex; flex-direction:column; gap:44px; }
.footer__brand { grid-column:1 / span 4; display:flex; flex-direction:column; gap:16px; }
.footer__logo { height:22px; width:194px; object-fit:contain; object-position:left center; align-self:flex-start; }
.footer__brand p { font-size:16px; line-height:1.6; color:#A8A199; max-width:32ch; }
.footer__col--a { grid-column:6 / span 2; }
.footer__col--b { grid-column:8 / span 2; }
.footer__col--c { grid-column:11 / span 2; }
.footer__col { display:flex; flex-direction:column; gap:12px; align-items:flex-start; }
.footer__col h2 { font-family:var(--font-display); font-weight:600; font-size:15px; color:var(--bg-page); letter-spacing:0; }
.footer__col a, .footer__col button, .footer__col span { font-family:var(--font-body); font-size:15px;
  color:#A8A199; background:none; border:0; padding:0; text-align:left; transition:color .16s ease-out; }
.footer__col a, .footer__col button { cursor:pointer; }
.footer__col a:hover, .footer__col button:hover { color:var(--bg-page); }
.footer__sfzp { display:grid; grid-template-columns:repeat(12,1fr); gap:var(--gutter);
  padding-top:28px; border-top:1px solid rgba(253,251,248,.12); align-items:start; }
.footer__sfzp-logo { grid-column:1 / span 3; background:var(--bg-page); border-radius:10px;
  padding:18px 16px 20px; display:flex; align-items:center;   /* bod 5: víc prostoru kolem loga */
  /* Wrapper musí být tak široký jako jeho obsah. Track 1/span 3 dává jen 282 px,
     ale okénko + padding potřebuje 304 px, takže 22 px okénka leželo mimo bílé
     pozadí a mix-blend-mode:multiply je nad tmavou patičkou zčernalo — logo tím
     působilo vodorovně oříznuté. max-width:100% brání kolizi s odstavcem
     na úzkých desktopových šířkách. */
  width:max-content; max-width:100%; }
/* Okénko zůstává 272 px — shodné s mobilem. Ověřeno v pixelech: obsah loga leží
   ve zdroji na x 80–724, výřez pokrývá x 31–731, takže logo neřeže. */
.footer__sfzp-logo div { width:272px; flex:0 0 272px; height:70px; overflow:hidden; }
.footer__sfzp-logo img { width:310px; max-width:none; height:auto; margin:-52px 0 0 -12px;
  mix-blend-mode:multiply; }   /* dtto */
.footer__sfzp p { grid-column:5 / span 8; font-size:14px; line-height:1.65; color:#8F8880; }
.footer__legal { display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding-top:20px; border-top:1px solid rgba(253,251,248,.12); flex-wrap:wrap; }
.footer__legal > span { font-size:13.5px; color:#77716A; }
.footer__legal nav { display:flex; gap:24px; }
.footer__legal nav a { font-size:13.5px; color:#77716A; }
.footer__legal nav a:hover { color:var(--bg-page); }

/* ---------- 23. Sticky CTA (mobil) ---------- */
.sticky { position:fixed; left:0; right:0; bottom:0; box-sizing:border-box;
  padding:12px 20px 16px; background:rgba(253,251,248,.96); border-top:1px solid var(--line);
  z-index:80; display:none; gap:10px; align-items:center;
  transform:translateY(110%); transition:transform .26s ease-out; }
.sticky.is-visible { transform:none; }
.sticky .btn { flex:1; min-height:52px; border-radius:var(--radius-btn); font-size:17px;
  background:var(--red); color:var(--white); }

/* ==========================================================================
   24. RESPONSIVE — přepis mobilních stavů z exportu na skutečné breakpointy
   ========================================================================== */

/* --- 24a. Plynulé zúžení desktopu (1247–768 px). Stejný design systém,
       žádná nová art direction: jen měkčí typografie a menší mezery. --- */
@media (max-width:1247px) {
  .section { padding:72px 0 78px; }
  .hero h1 { font-size:clamp(40px,4.4vw,60px); }
  .hero__num { font-size:clamp(64px,7vw,96px); }
  .hero__unit { font-size:clamp(28px,2.6vw,36px); }
  .hero .grid { padding-bottom:120px; }
  .forwho h2, .amounts h2, .process__head h2, .refs h2, .final h2 { font-size:clamp(34px,3.8vw,54px); }
  .verify h2 { font-size:clamp(36px,4vw,52px); }
  .need h2, .cond h2, .faq h2, .fair h2 { font-size:clamp(32px,3.4vw,46px); }
  .maxcard__num { font-size:clamp(54px,6vw,78px); }
  .verify__photo { height:clamp(380px,42vw,560px); }
  .tiles { grid-template-columns:repeat(2,1fr); }
  .fair__grid { gap:14px; }
}

@media (max-width:1023px) {
  .trust .grid { row-gap:32px; }
  .trust__intro { grid-column:1 / span 12; }
  .trust__items { grid-column:1 / span 12; }
  .forwho__left, .forwho__list,
  .verify__left, .verify__photo-col,
  .amounts__head, .amounts__left, .maxcard,
  .fair__left, .fair__grid,
  .cond__intro, .cond__surface,
  .need__intro, .need__col--a, .need__col--b,
  .finance__photo, .finance__text,
  .final__text, .final__cta,
  .process__head h2, .process__head p,
  .refs h2, .ref--lg, .ref--sm:nth-of-type(2), .ref--sm:nth-of-type(3),
  .card, .hero__col { grid-column:1 / span 12; }
  .grid { row-gap:32px; }
  .forwho__left, .verify__left, .cond__intro, .need__intro, .fair__left { padding-right:0; }
  .steps { grid-template-columns:repeat(2,1fr); row-gap:34px; }
  .process__line { display:none; }
  .cond__nodes { grid-template-columns:repeat(2,1fr); row-gap:28px; }
  .cond__line { display:none; }
  .card { max-width:560px; }
  .hero .grid { padding-bottom:96px; }
  .hero__wave { height:110px; }
}

/* --- 24b. Mobil ≤767 px. Přepis 59 pravidel z [data-mode="mobile"].
       Referenční šířka schváleného návrhu je 390 px. --- */
@media (max-width:767px) {
  body { font-size:17px; }
  .container { padding-left:20px; padding-right:20px; }
  .section { padding:56px 0 60px; }
  .grid { display:flex; flex-direction:column; gap:26px; align-items:stretch; }
  /* desktopové align-items:center by v column flexu smrsklo sloupce na obsah
     (foto v Ověření nároku mělo šířku 0, CTA v zelené sekci 179 px) */
  .verify .grid, .finance .grid, .final .grid, .amounts .grid { align-items:stretch; }
  .grid > * { max-width:100%; padding-right:0; }

  /* typografie — hodnoty přesně dle schváleného mobilního návrhu (390 px).
     Selektory musí odpovídat specificitě clamp pravidel z bloku ≤1247 px. */
  .hero h1 { font-size:34px; line-height:1.3; }
  h2,
  .forwho h2, .verify h2, .amounts h2, .process__head h2, .refs h2,
  .need h2, .cond h2, .faq h2, .fair h2, .final h2, .finance h2 {
    font-size:30px; line-height:1.12;
  }
  h3, .forwho__item h3, .step h3 { font-size:23px; }
  /* locked design: titulek karty je 18,5 px i na mobilu (v exportu je to <span>,
     mobilní pravidlo pro h3 se ho netýká) */
  .fair__card h3 { font-size:18.5px; }
  .hero__num { font-size:56px; }
  .hero__unit { font-size:22px; }
  .maxcard__num { font-size:40px; }
  .maxcard__unit { font-size:24px; }
  .footer__col h2 { font-size:15px; }
  .card__title { font-size:19px; }
  .sent h3 { font-size:26px; }
  .verify__photo { height:340px; }

  /* header */
  .header .container { padding:14px 20px; }
  .header__logo { width:150px; height:17px; }
  .header__right { gap:10px; }
  .nav { display:none; }                    /* D-3: na mobilu žádné menu ani hamburger */
  .header__divider { border-left:0; padding-left:0; }
  .header .btn-pill { padding:11px 14px; font-size:14px; }

  /* hero */
  .hero { padding-top:0; background:var(--bg-dark); }
  .hero__bg { top:0; bottom:auto; height:420px; width:100%; object-fit:cover; object-position:52% 78%; }
  .hero__scrim { top:0; bottom:auto; height:420px;
    background:linear-gradient(180deg,
      rgba(28,25,23,.34) 0%,
      rgba(28,25,23,.70) 38%,
      rgba(28,25,23,.94) 74%,
      #1C1917 100%); }
  .hero__glow { display:none; }
  .hero .container { padding-top:196px; padding-bottom:58px; z-index:3; }
  .hero .grid { padding-bottom:0; }
  .hero__col { padding-bottom:0; }
  /* bod 13: vlnkový prvek v pozadí hero se na mobilu nezobrazuje;
     schválený wave-shaped ořez hero (.hero__wave) zůstává */
  .hero__wave-photo { display:none; }
  .hero__wave { top:auto; bottom:-2px; height:64px; color:var(--bg-page); z-index:4; }
  /* bod 6 (mobile only): 2px pás .hero::after slouží na desktopu ke krytí seamu pod wave.
     Na mobilu je navíc — wave sama přesahuje hero o 2px (bottom:-2px) — a na hranici
     nad blokem „Dotace řešíme každý den" se vykresloval jako tenký separátor. */
  .hero::after { display:none; }
  .card { max-width:none; }

  /* trust */
  .trust__items { display:flex; flex-direction:column; gap:22px; }
  .trust__logo { width:100%; max-width:300px; }

  /* fotky */
  .photo { height:220px; }
  .forwho__photo { height:220px; }
  .verify__photo { height:340px; width:100%; }
  .verify__photo img { object-position:50% 38%; }
  .ref--lg .photo, .ref--sm .photo { height:220px; }
  .process__photo { height:auto; aspect-ratio:1 / 1; margin-top:26px; border-radius:22px; }
  .finance__photo { height:220px; }

  /* dlaždice */
  .tiles { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
  .tile { min-height:0; padding:16px 18px; gap:10px; }
  .tile__label { font-size:17.5px; padding-right:18px; }
  .tile__plus { top:14px; right:16px; font-size:17px; }
  .tile:hover { transform:none; box-shadow:var(--shadow-tile); border-color:var(--line-mint); background:var(--white); }
  .tile:hover .tile__plus { transform:none; color:var(--green); }
  .tile:active { background:#F7FAF6; transform:scale(.985); }
  button:active { transform:scale(.985); }

  /* max karta */
  .maxcard { background:var(--white); border-radius:20px; padding:30px; gap:16px;
    box-shadow:0 18px 44px rgba(20,17,15,.08); }
  .maxcard__az { display:none; }
  .maxcard__amount { flex-direction:row; align-items:baseline; gap:8px; }
  .maxcard__hairline { display:block; }
  /* bod 3 (mobile only): CTA „Spočítat pro můj dům" se na mobilu nezobrazuje.
     display:none ho vyjme z flex flow, takže po něm nezůstává gap ani margin. */
  .maxcard > .btn-primary { display:none; }

  /* bod 18 (mobile only): text pod nadpisem je podnadpis, ne druhý headline */
  .process__head p { font-family:var(--font-body); font-weight:400; font-size:17px;
    line-height:1.55; letter-spacing:normal; color:var(--muted); margin-bottom:0; }

  /* proces + podmínky: vodorovná osa → svislá */
  .steps { display:flex; flex-direction:column; gap:26px; }
  .cond__surface { padding-left:22px; padding-right:22px; padding-top:32px; padding-bottom:28px; }
  .cond__nodes { display:flex; flex-direction:column; gap:0; }
  .cond__node { position:relative; padding-top:0; padding-bottom:26px; }
  .cond__node .cond__body { padding-top:10px; padding-left:34px; }
  .cond__node::before { content:''; position:absolute; left:8px; top:20px; bottom:-4px; width:2px; background:var(--line-cond); }
  .cond__node--active::before { background:var(--red); }
  .cond__node:last-child { padding-bottom:0; }
  .cond__node:last-child::before { display:none; }

  /* férový dodavatel */
  .fair__grid { display:flex; flex-direction:column; gap:26px; }
  /* locked design: karty jsou potomky [data-grid], takže jim obecné mobilní pravidlo
     vynutí padding-right:0 → obsah 326 px, ne 302. Replikováno kvůli zalamování. */
  .fair__grid > * { padding-right:0; }

  /* bod 21: CTA na celou dostupnou šířku, bez přesahu mimo mobile padding */
  .final__cta { align-self:stretch; }
  .final__cta .btn { width:100%; }

  /* footer */
  .footer__sfzp { display:flex; flex-direction:column; gap:20px; }
  .footer__sfzp-logo { align-self:flex-start; }
  .footer__sfzp-logo div { width:272px; flex:0 0 272px; }
  .footer__legal { flex-direction:column; align-items:flex-start; gap:14px; }

  /* sticky CTA */
  .sticky { display:flex; }
}

/* --- 24c. Pod 390 px. 390 px je REFERENČNÍ šířka schváleného návrhu, proto se
       jeho typografie nepřepisuje. Níž jen přirozené dolaďování ze stejného
       design systému, bez nové art direction. --- */
@media (max-width:389px) {
  .container { padding-left:18px; padding-right:18px; }
  .hero h1 { font-size:31px; }
  .hero__num { font-size:50px; }
  .field__row { grid-template-columns:92px 1fr; gap:10px; }
  .card__head { padding:20px 22px 18px; }
  .card__body { padding:22px 22px 24px; }
  .maxcard { padding:26px 22px; }
  .tile__label { font-size:16.5px; }
  .tiles { gap:10px; }
}

/* ---------- 25. prefers-reduced-motion ---------- */
@media (prefers-reduced-motion:reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { transition-duration:1ms !important; animation-duration:1ms !important; }
  [data-reveal="out"] { opacity:1 !important; transform:none !important; }
  .sticky { transition:none; }
  .tile:hover { transform:none; }
  .tile:hover .tile__plus { transform:none; }
}

/* ---------- 26. Print ---------- */
@media print {
  .header, .sticky, .hero__wave, .hero__wave-photo, .wave { display:none !important; }
  body { background:#fff; }
}
