/* ============================================================
   Pokladna v mobilu — landing page
   site.css · plain CSS, žádný build krok, žádné npm
   Umístění v projektu: wwwroot/css/site.css
   ============================================================ */

/* ---------- 1. DESIGN TOKENY ---------- */
:root {
  /* Barvy — brand */
  --green:            #52B250;  /* akcent, logo, badge */
  --green-cta:        #1F7A3A;  /* primární tlačítka, eyebrow, odkazy */
  --green-cta-hover:  #196331;
  --green-dark:       #0F1D15;  /* tmavé sekce */
  --green-darkest:    #0B1410;  /* footer */
  --green-claim:      #2F7A3E;  /* claim pod H1 */
  --mint:             #7FD494;  /* text/✓ na tmavém pozadí */
  --green-pale:       #EAF5E9;  /* pozadí ikon/badge */

  /* Barvy — modrý akcent (jen QR platba, střídmě) */
  --blue:             #6485C3;
  --blue-ink:         #3F5DA8;
  --blue-pale:        #E9EEF8;

  /* Neutrály */
  --ink:              #15191C;  /* hlavní text, nadpisy */
  --text:            #566069;  /* odstavce */
  --text-muted:       #8A948C;  /* popisky, poznámky */
  --line:             #EEF1EE;
  --line-2:           #E6EBE6;
  --line-dark:        #1C3325;  /* linky na tmavém */

  /* Pozadí */
  --bg:               #FFFFFF;
  --bg-soft:          #F5F8F4;  /* hero, tablet, kontakt */
  --bg-faint:         #FBFCFB;  /* kontextový pruh */
  --bg-card:          #F7F9F6;  /* světlé karty */
  --tile-dark:        #13241A;  /* dlaždice na tmavém */
  --device:           #0E1114;  /* rám telefonu/tabletu */

  /* Typografie */
  --font-display: 'Schibsted Grotesk', system-ui, sans-serif;
  --font-body:    'Hanken Grotesk', system-ui, sans-serif;

  /* Rozměry */
  --container: 1200px;
  --radius-card: 20px;
  --radius-btn: 12px;
  --radius-tile: 16px;
  --radius-pill: 999px;

  /* Stíny */
  --shadow-cta:    0 6px 18px rgba(31,122,58,0.28);
  --shadow-form:   0 10px 30px rgba(20,40,25,0.06);
  --shadow-phone:  0 30px 70px rgba(20,40,25,0.28), 0 6px 16px rgba(0,0,0,0.12);
  --shadow-dark:   0 20px 50px rgba(15,29,21,0.25);
}

/* ---------- 2. RESET / ZÁKLAD ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; }
p { margin: 0; }
section { scroll-margin-top: 84px; }
::selection { background: #cdeccb; }

/* ---------- 3. LAYOUT ---------- */
.container {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}
.section      { padding-block: clamp(64px, 8vw, 104px); }
.section--soft { background: var(--bg-soft); border-block: 1px solid var(--line); }
.section--dark { background: var(--green-dark); color: #fff; }

.lead-block { max-width: 680px; }

/* ---------- 4. TYPOGRAFIE ---------- */
.eyebrow {
  font: 700 13px var(--font-body);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-cta);
}
.section--dark .eyebrow { color: var(--mint); }

.h2 {
  font: 700 clamp(28px, 4vw, 42px) var(--font-display);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-top: 14px;
}
.lead {
  font: 400 17px var(--font-body);
  color: var(--text);
  line-height: 1.6;
  margin-top: 16px;
}
.section--dark .lead { color: #AAB8AF; }

/* ---------- 5. TLAČÍTKA ---------- */
.btn {
  display: inline-block;
  font: 600 16px var(--font-body);
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.btn--primary { color: #fff; background: var(--green-cta); box-shadow: var(--shadow-cta); }
.btn--primary:hover { background: var(--green-cta-hover); }
.btn--ghost { color: #1f3a24; background: #fff; border: 1.5px solid #d6ddd6; }
.btn--ghost:hover { border-color: var(--green); color: var(--green-cta); }
.btn--accent { color: #08140c; background: var(--green); }
.btn--accent:hover { background: #67c765; }
.btn--block { display: block; width: 100%; text-align: center; }

/* ---------- 6. NAVIGACE ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #ebeeec;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__icon { width: 34px; height: 34px; display: block; flex: 0 0 auto; border-radius: 9px; }
.brand__name { font: 700 18px var(--font-display); letter-spacing: -0.3px; }
.nav__links { display: flex; align-items: center; gap: 26px; font: 500 15px var(--font-body); color: #48535b; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { font: 600 15px var(--font-body); color: #fff; background: var(--green-cta); padding: 10px 18px; border-radius: 10px; }
.nav__cta:hover { background: var(--green-cta-hover); }
.nav__toggle { display: none; } /* hamburger — viz responsivita */

/* ---------- 7. HERO ---------- */
.hero { position: relative; background: linear-gradient(180deg, #f5f8f4 0%, #ffffff 78%); border-bottom: 1px solid var(--line); overflow: hidden; }
.hero__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 48px; padding-block: clamp(48px,7vw,92px) clamp(56px,7vw,96px); }
.hero__copy { flex: 1 1 440px; min-width: 300px; position: relative; z-index: 2; }
.hero__media { flex: 1 1 360px; min-width: 280px; display: flex; justify-content: center; position: relative; z-index: 2; }
.hero h1 { font: 800 clamp(40px,6vw,68px) var(--font-display); line-height: 1.02; letter-spacing: -1.8px; margin-top: 20px; }
.hero__claim { font: 600 clamp(19px,2.4vw,24px) var(--font-body); color: var(--green-claim); margin-top: 18px; }
.hero__lead { font: 400 clamp(16px,1.9vw,18px) var(--font-body); color: var(--text); line-height: 1.6; margin-top: 18px; max-width: 520px; }
.hero__actions { display: flex; flex-wrap: nowrap; align-items: center; gap: 14px; margin-top: 30px; }
.google-play-badge { display: inline-flex; align-items: center; flex: 0 0 auto; text-decoration: none; transition: transform .18s ease, opacity .18s ease; }
.google-play-badge img { display: block; width: 220px; height: auto; max-width: 100%; }
.google-play-badge:hover { transform: translateY(-1px); opacity: .94; }
.google-play-badge--step { margin-top: auto; }
.google-play-badge--footer { margin-top: 18px; }
.google-play-badge--footer img { width: 188px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 34px; }
.trust-item { display: flex; align-items: center; gap: 8px; font: 500 14px var(--font-body); color: #48535b; }
.trust-item::before { content: "✓"; color: var(--green); font-weight: 700; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale); color: var(--green-cta);
  font: 600 13px var(--font-body); padding: 6px 13px; border-radius: var(--radius-pill);
}
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* ---------- 8. MOCKUPY ZAŘÍZENÍ ---------- */
.phone { position: relative; width: clamp(260px,80%,310px); aspect-ratio: 1080/2340; background: var(--device); border-radius: 42px; padding: 11px; box-shadow: var(--shadow-phone); }
.phone--float { animation: floaty 6s ease-in-out infinite; }
.phone::before { content: ""; position: absolute; top: 22px; left: 50%; transform: translateX(-50%); width: 46px; height: 7px; border-radius: 4px; background: #23282d; z-index: 2; }
.phone__screen { width: 100%; height: 100%; border-radius: 32px; overflow: hidden; background: #fff; }
.phone__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.phone--sm { width: clamp(150px,42%,210px); border-radius: 30px; padding: 8px; box-shadow: 0 22px 50px rgba(20,40,25,0.22); }
.phone--sm .phone__screen { border-radius: 23px; }
.phone--tilt-l { transform: translateY(-14px) rotate(-3deg); }
.phone--tilt-r { transform: translateY(14px) rotate(3deg); }

.tablet { width: clamp(320px,100%,680px); aspect-ratio: 2944/1840; background: var(--device); border-radius: 24px; padding: 14px; box-shadow: 0 24px 56px rgba(20,40,25,0.20); }
.tablet__screen { width: 100%; height: 100%; border-radius: 12px; overflow: hidden; background: #fff; }
.tablet__screen img { width: 100%; height: 100%; object-fit: cover; }
.device-shot {
  border: 0;
  cursor: zoom-in;
  font: inherit;
}
.device-shot:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 6px;
}

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- 9. KONTEXTOVÝ PRUH ---------- */
.strip { background: var(--bg-faint); border-bottom: 1px solid var(--line); }
.strip__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 28px; padding-block: 26px; }
.strip__label { font: 600 13px var(--font-body); color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.strip__item { font: 600 15px var(--font-body); color: #3a463d; }
.strip__sep { color: #cdd5ce; }

/* ---------- 10. KARTY / GRIDY ---------- */
.grid { display: grid; gap: 18px; }
.grid--audience { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid--features { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: 18px; overflow: hidden; margin-top: 44px; }
.grid--shots    { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.grid--mini     { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.grid--pricing  { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 880px; margin-inline: auto; }
.grid--steps    { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; max-width: 980px; margin-inline: auto; }

.card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-tile); padding: 26px; }
.card__icon { width: 44px; height: 44px; border-radius: 11px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; color: var(--green-cta); }
.card__icon .material-symbols-outlined { font-size: 25px; line-height: 1; font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24; }
.card__title { font: 700 18px var(--font-display); margin: 16px 0 6px; }
.card__text { font: 400 15px var(--font-body); color: #5a646c; line-height: 1.55; }

.tile { background: var(--tile-dark); padding: 30px; }
.tile__icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(127, 212, 148, .12); color: var(--mint); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.tile__icon .material-symbols-outlined { font-size: 24px; line-height: 1; font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24; }
.tile__title { font: 700 19px var(--font-display); color: #fff; }
.tile__text { font: 400 15px var(--font-body); color: #9fb0a4; line-height: 1.55; margin-top: 8px; }

.mini { background: var(--bg-card); border: 1px solid var(--line); border-radius: 12px; padding: 16px; font: 600 15px var(--font-body); }

.shot { aspect-ratio: 1080/2340; border-radius: 22px; overflow: hidden; background: #0a130d; border: 1px solid var(--line-dark); padding: 0; cursor: zoom-in; }
.shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.shot:focus-visible { outline: 3px solid var(--mint); outline-offset: 4px; }

/* ---------- 11. SPLIT SEKCE (text + media) ---------- */
.split { display: flex; flex-wrap: wrap; align-items: center; gap: 56px; }
.split__text  { flex: 1 1 380px; min-width: 300px; }
.split__media { flex: 1 1 320px; min-width: 280px; display: flex; justify-content: center; gap: 18px; }

/* položka s ikonou (Platby) */
.feature-row { display: flex; gap: 14px; }
.feature-row__icon { flex: none; width: 30px; height: 30px; border-radius: 8px; background: var(--green-pale); color: var(--green-cta); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.feature-row__icon .material-symbols-outlined { font-size: 21px; line-height: 1; font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24; }
.feature-row__icon--blue { background: var(--blue-pale); color: var(--blue-ink); }
.feature-row__title { font: 600 17px var(--font-body); }
.feature-row__text { font: 400 15px var(--font-body); color: #5a646c; line-height: 1.55; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip { font: 500 14px var(--font-body); background: #fff; border: 1px solid #dde4dd; color: #3a463d; padding: 8px 14px; border-radius: var(--radius-pill); }

/* ---------- 12. CENA / PROFIL ---------- */
.price-card { background: #fff; border: 1.5px solid var(--line-2); border-radius: var(--radius-card); padding: 34px; }
.price-card--dark { background: var(--green-dark); color: #fff; position: relative; box-shadow: var(--shadow-dark); border: none; }
.price-card__title { font: 700 22px var(--font-display); }
.price-card__sub { font: 400 15px var(--font-body); color: #5a646c; margin-top: 8px; line-height: 1.55; }
.price-card--dark .price-card__sub { color: #9fb0a4; }
.price-card__amount { font: 800 clamp(30px,4vw,38px) var(--font-display); letter-spacing: -1px; margin-top: 18px; }
.price-card__note-mint { font: 400 13px var(--font-body); color: var(--mint); margin-top: 4px; }
.price-card__badge { position: absolute; top: 20px; right: 20px; font: 600 12px var(--font-body); background: var(--green); color: #08140c; padding: 5px 11px; border-radius: var(--radius-pill); }
.rule { height: 1px; background: var(--line); margin-block: 22px; }
.price-card--dark .rule { background: var(--line-dark); }
.checklist { display: flex; flex-direction: column; gap: 12px; font: 500 15px var(--font-body); color: #3a463d; }
.price-card--dark .checklist { color: #dce6df; }
.checklist li { display: flex; gap: 10px; list-style: none; }
.checklist { padding: 0; margin: 0; }
.checklist li::before { content: "✓"; color: var(--green); font-weight: 700; }
.price-card--dark .checklist li::before { color: var(--mint); }
.checklist li.muted { color: var(--text-muted); }
.checklist li.muted::before { content: "·"; color: var(--text-muted); }
.note-center { text-align: center; font: 400 14px var(--font-body); color: var(--text-muted); margin-top: 24px; }
.center { text-align: center; }
.lead-block.center { margin-inline: auto; }

/* ---------- 13. FORMULÁŘ ---------- */
.form { background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-card); padding: clamp(24px,3vw,34px); box-shadow: var(--shadow-form); }
.form__rows { display: flex; flex-direction: column; gap: 14px; }
.form__row { display: flex; gap: 14px; flex-wrap: wrap; }
.field { flex: 1 1 160px; }
.field > label { font: 600 13px var(--font-body); color: #3a463d; display: block; margin-bottom: 6px; }
.field > label .opt { color: #a6b0a8; font-weight: 400; }
.field input, .field textarea {
  width: 100%; font: 400 15px var(--font-body);
  padding: 12px 14px; border: 1.5px solid #dde4dd; border-radius: 10px;
  outline: none; background: #fff;
}
.field input:focus, .field textarea:focus { border-color: var(--green); }
.field textarea { resize: vertical; }
.form__hint { font: 400 12px var(--font-body); color: var(--text-muted); text-align: center; }
.form__error {
  font: 500 14px var(--font-body);
  color: #9d1c1c;
  background: #fff0f0;
  border: 1px solid #f0c7c7;
  border-radius: 10px;
  padding: 10px 12px;
}
.form__error:empty { display: none; }
.form__error ul { margin: 0; padding-left: 18px; }
.form__message {
  font: 500 14px var(--font-body);
  border-radius: 10px;
  padding: 10px 12px;
}
.form__message:empty { display: none; }
.form__message--success {
  color: #1f7a3a;
  background: #eef8ef;
  border: 1px solid #c9e8cf;
}
.form__message--error {
  color: #9d1c1c;
  background: #fff0f0;
  border: 1px solid #f0c7c7;
}
.form__message--info {
  color: #3a463d;
  background: var(--bg-card);
  border: 1px solid var(--line-2);
}
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font: 400 13px var(--font-body);
  color: #4f5b53;
  line-height: 1.45;
}
.form__check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--green-cta);
}
.form__check a {
  color: var(--green-cta);
  font-weight: 600;
}
.form__check a:hover { color: var(--green-cta-hover); }
.form__field-error {
  display: block;
  font: 500 13px var(--font-body);
  color: #9d1c1c;
}
.form__field-error:empty { display: none; }.form button[disabled] { cursor: wait; opacity: .72; }

/* kontaktní řádky */
.contact-rows { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.contact-row { display: flex; align-items: center; gap: 12px; font: 500 16px var(--font-body); color: #2a352d; }
.contact-row:hover { color: var(--green-cta); }
.contact-row__icon { width: 36px; height: 36px; border-radius: 9px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; }

/* ---------- 14. FOOTER ---------- */
.footer { background: var(--green-darkest); color: #9fb0a4; }
.footer__top { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; padding-block: 48px 36px; }
.footer__about { max-width: 320px; }
.footer__about p { font: 400 14px var(--font-body); line-height: 1.6; margin-top: 14px; }
.footer__cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 10px; font: 500 14px var(--font-body); }
.footer__col a:hover { color: #fff; }
.footer__col-label { color: #5d6f63; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.footer__bar { border-top: 1px solid #16241b; }
.footer__bar-inner { padding-block: 18px; font: 400 13px var(--font-body); color: #5d6f63; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; }

/* ---------- 15. RESPONSIVITA ---------- */
/* Většina layoutu je fluidní (flex-wrap, clamp, auto-fit) a stačí si sama.
   Media queries řeší jen navigaci a jemné doladění. */

/* Tablet a níže */
@media (max-width: 860px) {
  .split { gap: 36px; }
  .footer__top { gap: 24px; }
}

/* Mobil — hamburger navigace */
@media (max-width: 720px) {
  .nav__links {
    display: none;
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 4vw 18px;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 10px 0; width: 100%; }
  .nav__toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px;
    background: #fff; cursor: pointer;
  }
  .nav__cta { display: none; } /* CTA je dostupné v hero i v menu */
  .section { padding-block: 56px; }
  .hero__inner { gap: 32px; }
  .hero__actions { flex-wrap: wrap; }
}

/* Velmi úzké displeje */
@media (max-width: 420px) {
  .btn { width: 100%; text-align: center; }
  .hero__actions { gap: 10px; }
}

/* ---------- 16. LIGHTBOX UKÁZEK ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(5, 10, 7, .82);
  backdrop-filter: blur(8px);
}
.lightbox[hidden] { display: none; }
.lightbox__stage {
  position: relative;
  max-width: min(92vw, 560px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox__image {
  width: auto;
  max-width: 100%;
  max-height: calc(92vh - 58px);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
  background: #fff;
}
.lightbox.is-wide .lightbox__stage {
  max-width: min(96vw, 1500px);
}
.lightbox.is-wide .lightbox__image {
  width: auto;
  max-width: min(96vw, 1500px);
  max-height: calc(92vh - 58px);
  object-fit: contain;
  border-radius: 18px;
}
.lightbox__caption {
  font: 600 15px var(--font-body);
  color: #dce6df;
  text-align: center;
}
.lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox__close:hover { background: rgba(255, 255, 255, .2); }
.lightbox__close:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }
.lightbox__close .material-symbols-outlined { font-size: 24px; line-height: 1; }
/* kroky ceny */
.step-card {
  background: #fff;
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-card--accent {
  background: var(--green-dark);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-dark);
}
.step-card__number {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--green-pale);
  color: var(--green-cta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 800 16px var(--font-display);
}
.step-card--accent .step-card__number { background: var(--green); color: #08140c; }
.step-card__title { font: 700 21px var(--font-display); }
.step-card__text { font: 400 15px var(--font-body); color: #5a646c; line-height: 1.55; }
.step-card--accent .step-card__text { color: #dce6df; }
.step-card .btn { margin-top: auto; }
/* ---------- 17. INFORMAČNÍ STRÁNKY ---------- */
.contact-profile {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: clamp(26px, 5vw, 52px);
  margin-bottom: 38px;
}
.contact-profile__photo {
  width: 220px;
  height: 220px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-form);
}
.contact-profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-profile h1 {
  font: 800 clamp(38px, 5vw, 56px) var(--font-display);
  letter-spacing: -1.2px;
  line-height: 1.06;
  margin-top: 14px;
}
.contact-profile__subtitle {
  font: 600 20px var(--font-body);
  color: var(--green-claim);
  margin-top: 12px;
}
.contact-profile__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 22px;
  font: 600 17px var(--font-body);
}
.contact-profile__links a { color: var(--green-cta); }
.contact-profile__links a:hover { color: var(--green-cta-hover); }
@media (max-width: 640px) {
  .contact-profile { grid-template-columns: 1fr; }
  .contact-profile__photo { width: 180px; height: 180px; }
}

.content-page {
  width: min(960px, 92vw);
  margin-inline: auto;
  padding-block: clamp(56px, 8vw, 96px);
}
.content-page__header {
  max-width: 720px;
  margin-bottom: 34px;
}
.content-page h1 {
  font: 800 clamp(36px, 5vw, 54px) var(--font-display);
  letter-spacing: -1.2px;
  line-height: 1.06;
  margin-top: 14px;
}
.content-page__header > p:not(.eyebrow) {
  font: 400 18px var(--font-body);
  color: var(--text);
  line-height: 1.6;
  margin-top: 16px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-tile);
  padding: 26px;
}
.info-card--wide { grid-column: 1 / -1; }
.info-card h2 {
  font: 700 20px var(--font-display);
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}
.info-card p {
  font: 400 16px var(--font-body);
  color: #4f5b53;
  line-height: 1.6;
}
.info-card a { color: var(--green-cta); font-weight: 600; }
.info-card a:hover { color: var(--green-cta-hover); }
.info-card__muted {
  color: var(--text-muted) !important;
  font-size: 14px !important;
}
.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}
.info-list div {
  display: grid;
  grid-template-columns: minmax(90px, 160px) 1fr;
  gap: 14px;
}
.info-list dt {
  font: 700 14px var(--font-body);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .7px;
}
.info-list dd {
  margin: 0;
  font: 500 16px var(--font-body);
  color: #2a352d;
  line-height: 1.55;
}
.footer__col--contact { max-width: 220px; }
/* ---------- 18. PRÁVNÍ DOKUMENTY ---------- */
.legal-page {
  width: min(900px, 92vw);
  margin-inline: auto;
  padding-block: clamp(56px, 8vw, 96px);
}
.legal-page__header {
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-2);
}
.legal-page h1 {
  font: 800 clamp(36px, 5vw, 54px) var(--font-display);
  letter-spacing: -1.2px;
  line-height: 1.06;
  margin-top: 14px;
}
.legal-page__header > p:not(.eyebrow) {
  font: 400 18px var(--font-body);
  color: var(--text);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 760px;
}
.legal-section {
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font: 700 22px var(--font-display);
  letter-spacing: -0.2px;
  margin-bottom: 12px;
}
.legal-section p,
.legal-section li,
.legal-definition-list dd {
  font: 400 16px var(--font-body);
  color: #4f5b53;
  line-height: 1.72;
}
.legal-section p + p { margin-top: 12px; }
.legal-section ul {
  margin: 12px 0 0;
  padding-left: 22px;
}
.legal-section li + li { margin-top: 6px; }
.legal-section a {
  color: var(--green-cta);
  font-weight: 600;
}
.legal-section a:hover { color: var(--green-cta-hover); }
.legal-definition-list {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-tile);
}
.legal-definition-list div {
  display: grid;
  grid-template-columns: minmax(90px, 150px) 1fr;
  gap: 18px;
}
.legal-definition-list dt {
  font: 700 13px var(--font-body);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .7px;
}
.legal-definition-list dd { margin: 0; color: #2a352d; }
@media (max-width: 560px) {
  .legal-definition-list div { grid-template-columns: 1fr; gap: 2px; }
}

/* ---------- 19. ZÁKAZNICKÝ DISPLEJ ---------- */
.eyebrow--blue { color: var(--blue-ink); }
.steps { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.tablet--wide {
  width: clamp(340px, 100%, 760px);
  aspect-ratio: 2940 / 1837;
  position: relative;
}
.tablet__tag {
  position: absolute;
  top: -13px;
  right: 24px;
  z-index: 2;
  font: 700 12px var(--font-body);
  color: #08140c;
  background: var(--green);
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  box-shadow: 0 5px 14px rgba(20,40,25,0.22);
}