/* ==========================================================================
   Schlieger, kariérní landing page (Expansion Manager, německý trh)
   Sdílené styly pro obě varianty landing page.
   ========================================================================== */

:root {
  --bg: #0E0F11;
  --surface: #16181B;
  --card: #21252A;
  --card-hover: #262B31;
  --text: #F4F4F5;
  --text-2: #9BA1A8;
  --text-3: #8A9099;
  --line: #26282D;
  --line-2: #3A3F45;
  --line-3: #4A5057;
  --accent: #DA000F;
  --accent-ink: #F2545B;
  --accent-deep: #B00010;
  --yellow: #F5B301;

  /* světlé plochy */
  --light-bg: #F7F7F8;
  --light-ink: #17181B;
  --light-ink-2: #6E7379;
  --light-ink-3: #3D4046;
  --light-line: #E5E5E8;
  --light-line-2: #B9BDC3;
  --light-sel-bg: #FDECEC;
  --warn: #8A5A00;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --mont: Montserrat, sans-serif;
  --sans: 'Open Sans', system-ui, sans-serif;
  --mono: ui-monospace, 'SFMono-Regular', Menlo, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font: 400 17px/1.55 var(--sans);
  color: var(--text-2);
  background: var(--bg);
  background-image: linear-gradient(180deg, #0E0F11 0%, #14171B 34%, #191D22 52%, #14171B 70%, #0E0F11 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--text); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--accent); }
img, svg { display: block; }
button { font: inherit; color: inherit; background: none; border: 0; }
fieldset { border: 0; min-width: 0; }
legend { display: block; width: 100%; padding: 0; }
.nowrap { white-space: nowrap; }

:focus-visible { outline: 2px solid var(--accent-ink); outline-offset: 3px; border-radius: 4px; }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.sect { padding-bottom: 96px; }
.sect--faq { padding-top: 56px; }
.sect--note { padding-bottom: 72px; }
.sect[id] { scroll-margin-top: 80px; }

.eyebrow-row { display: flex; align-items: baseline; gap: 14px; }

.eyebrow {
  font: 600 12px var(--mont);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-2);
}
.eyebrow--mono {
  font: 500 12px var(--mono);
  letter-spacing: .12em;
}
.eyebrow--light { color: var(--light-ink-2); }
.eyebrow--accent { color: var(--accent); }
.eyebrow--yellow { color: var(--yellow); }

.h2 {
  font: 700 40px/1.1 var(--mont);
  letter-spacing: -.025em;
  color: var(--text);
  margin-top: 14px;
}
.h2--light { color: var(--light-ink); line-height: 1.15; max-width: 26ch; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mt-40 { margin-top: 40px; }
.mt-44 { margin-top: 44px; }

/* --------------------------------------------------------------------------
   Navigace
   -------------------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(38, 41, 46, .82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { position: relative; max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.nav__row { display: flex; align-items: center; gap: 24px; padding: 18px 0; }
.nav__logo { width: 150px; height: auto; flex: none; }
.nav__spacer { flex: 1; }

.lang-mini {
  display: flex;
  flex: none;
  align-items: center;
  margin-right: 4px;
  font: 600 13px var(--sans);
  letter-spacing: .04em;
}
.lang-mini button { padding: 12px 6px; color: var(--text-3); cursor: pointer; transition: color .2s ease; }
.lang-mini button[aria-pressed='true'] { color: #FFFFFF; }
.lang-mini span { color: #5E646B; }

.lang-flags { display: none; flex: none; align-items: center; gap: 2px; margin-right: -2px; }
.lang-flags button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 40px;
  cursor: pointer;
  opacity: .45;
  transition: opacity .2s ease;
}
.lang-flags button[aria-pressed='true'] { opacity: 1; }
.lang-flags svg { width: 22px; height: 16px; border-radius: 2px; }

.nav__cta { flex: none; padding: 10px 20px; font-size: 15px; }

.nav__kebab {
  flex: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.nav__kebab:hover { background: rgba(255, 255, 255, .08); border-color: var(--line-3); }
.nav__kebab[aria-expanded='true'] { background: rgba(255, 255, 255, .08); }

.nav__menu {
  position: absolute;
  right: 24px;
  top: 100%;
  z-index: 30;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  padding: 8px;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  background: rgba(26, 29, 33, .97);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .65);
  animation: fadeDown .32s var(--ease) both;
}
.nav__menu[hidden] { display: none; }
.nav__menu a {
  padding: 13px 16px;
  border-radius: 10px;
  color: var(--text);
  font: 600 15px var(--sans);
  transition: background .18s ease, color .18s ease;
}
.nav__menu a:hover { background: rgba(255, 255, 255, .07); color: var(--accent); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero { position: relative; overflow: hidden; scroll-margin-top: 80px; }

.hero__photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
  filter: brightness(1.12) saturate(1.03);
}
.hero__scrim-x,
.hero__scrim-y { position: absolute; inset: 0; pointer-events: none; }
.hero__scrim-x {
  background: linear-gradient(90deg, #0E0F11 0%, #0E0F11 34%, rgba(14, 15, 17, .85) 44%, rgba(14, 15, 17, .35) 56%, rgba(14, 15, 17, 0) 72%);
}
.hero__scrim-y {
  background: linear-gradient(180deg, rgba(14, 15, 17, .35) 0%, rgba(14, 15, 17, 0) 18%, rgba(14, 15, 17, 0) 78%, rgba(14, 15, 17, .5) 100%);
}

.hero__wave {
  position: absolute;
  right: -9%;
  top: -4%;
  height: 108%;
  width: auto;
  opacity: .16;
  pointer-events: none;
  user-select: none;
}
.hero__photo-mobile { display: none; }

.hero__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  min-height: 520px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: center;
}
.hero__inner--narrow-gap { gap: 24px; }
.hero__copy { grid-column: span 7; }
.hero__aside { grid-column: span 5; scroll-margin-top: 84px; }

.hero h1 {
  font: 700 62px/1.1 var(--mont);
  letter-spacing: -.025em;
  color: var(--text);
  margin-top: 18px;
  max-width: 14ch;
  text-wrap: balance;
}
.hero__lead {
  font: 400 19px/1.55 var(--sans);
  color: var(--text-2);
  max-width: 38ch;
  margin: 24px 0 32px;
  text-wrap: pretty;
}

/* zvýrazněné slovo v H1 */
.mark {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  color: #fff;
  padding: .02em .1em .16em;
  margin: 0 .04em 0 .06em;
  line-height: 1;
  isolation: isolate;
}
.mark::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  animation: markFill .62s .45s var(--ease) forwards;
}

/* mzdová škála */
.pay {
  padding: 24px 0 30px;
  margin-bottom: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 420px;
}
.pay__amount {
  font: 700 54px/1.06 var(--mont);
  letter-spacing: -.03em;
  color: var(--yellow);
  white-space: nowrap;
}
.pay__note {
  display: block;
  font: 400 15px/1.45 var(--sans);
  color: var(--text-2);
  margin-top: 10px;
}
.pay__scale { margin-top: 26px; }
.pay__track { position: relative; height: 2px; background: var(--line); }
.pay__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 62%;
  background: var(--accent);
  animation: axisGrow 1.1s .5s var(--ease) both;
}
.pay__dot {
  position: absolute;
  border-radius: 50%;
}
.pay__dot--a { left: 0; top: -3px; width: 8px; height: 8px; background: var(--accent); }
.pay__dot--b { left: calc(50% - 4px); top: -3px; width: 8px; height: 8px; background: var(--bg); border: 2px solid var(--line-2); }
.pay__dot--c {
  right: 0;
  top: -5px;
  width: 12px;
  height: 12px;
  background: var(--bg);
  border: 2.5px solid var(--accent);
  animation: pulse 2.4s 1.4s ease-out 2;
}
.pay__marks { display: flex; justify-content: space-between; margin-top: 14px; }
.pay__mark { display: flex; flex-direction: column; gap: 4px; }
.pay__mark:nth-child(2) { text-align: center; }
.pay__mark:nth-child(3) { text-align: right; }
.pay__mark b {
  font: 700 17px var(--mont);
  letter-spacing: -.02em;
  color: var(--text);
}
.pay__mark span {
  font: 500 11px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-2);
}
.pay__mark--peak b { color: var(--accent); }
.pay__mark--peak span { color: var(--accent-ink); }

.hero__hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font: 600 13px var(--sans);
  letter-spacing: .02em;
  color: var(--text-3);
  transition: color .22s ease;
}
.hero__hint:hover { color: var(--text); }
.hero__hint span { font-size: 14px; }
.hero__hint--mobile { display: none; }

.hero__cta { display: flex; gap: 12px; margin: 20px 0 32px; }

/* --------------------------------------------------------------------------
   Tlačítka
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 10px;
  font: 600 16px var(--sans);
  cursor: pointer;
  transition: background .22s ease, border-color .22s ease, filter .2s ease, color .2s ease;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { color: #fff; filter: brightness(1.08); }
.btn--outline {
  border: 1px solid var(--line-2);
  background: var(--card);
  color: var(--text);
  white-space: nowrap;
}
.btn--outline:hover { background: var(--card-hover); border-color: var(--line-3); color: var(--text); }

/* --------------------------------------------------------------------------
   Karty
   -------------------------------------------------------------------------- */

.card {
  border: 1px solid var(--line-2);
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .06);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s var(--ease);
}
.card:hover {
  background: var(--card-hover);
  border-color: var(--line-3);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .1);
  transform: translateY(-2px);
}

/* pás se čtyřmi fakty, přesahuje do hero */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -56px;
  position: relative;
  z-index: 2;
}
.fact {
  border: 1px solid var(--line-2);
  border-radius: 20px;
  background: var(--card);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .6), 0 4px 10px rgba(0, 0, 0, .38);
  transition: box-shadow .25s ease, transform .25s var(--ease);
}
.fact:hover {
  box-shadow: 0 30px 66px rgba(0, 0, 0, .7), 0 6px 16px rgba(0, 0, 0, .45);
  transform: translateY(-2px);
}
.fact__label {
  font: 600 12px var(--mont);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #C3C9D0;
  margin-bottom: 8px;
}
.fact__value { font: 600 17px var(--sans); color: var(--text); }

.footnote {
  font: 400 13px/1.5 var(--sans);
  color: var(--text-2);
}

/* úkoly na pozici */
.task { padding: 28px 28px 30px; }
.task h3 {
  font: 700 19px/1.25 var(--mont);
  letter-spacing: -.02em;
  color: var(--text);
  margin-top: 14px;
}
.task p { font: 400 15px/1.55 var(--sans); color: var(--text-2); margin-top: 6px; }

/* --------------------------------------------------------------------------
   CTA pás k dotazníku (varianta A)
   -------------------------------------------------------------------------- */

.cta-band {
  border: 1px solid var(--accent);
  border-radius: 20px;
  background: rgba(218, 0, 15, .18);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .06);
  transition: background .25s ease, box-shadow .25s ease, transform .25s var(--ease);
}
.cta-band:hover {
  background: rgba(218, 0, 15, .26);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .1);
  transform: translateY(-2px);
}
.cta-band h2 {
  font: 700 34px/1.1 var(--mont);
  letter-spacing: -.025em;
  color: var(--text);
  margin-top: 14px;
}
.cta-band p {
  font: 400 16px/1.55 var(--sans);
  color: var(--text-2);
  margin-top: 14px;
  max-width: 48ch;
}
.cta-band__side { display: flex; flex-direction: column; gap: 18px; }
.cta-band__side .btn { margin-top: 8px; }
.steps { position: relative; display: flex; flex-direction: column; gap: 16px; }
.steps::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line-2);
}
.steps li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 14px;
  align-items: center;
  list-style: none;
}
.steps__dot {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--line-2);
}
.steps li:first-child .steps__dot {
  background: var(--accent);
  border: 0;
  box-shadow: 0 0 0 4px rgba(218, 0, 15, .2);
}
.steps__label { display: flex; align-items: baseline; gap: 10px; }
.steps__num {
  font: 600 15px var(--mono);
  letter-spacing: .06em;
  color: var(--text-2);
}
.steps li:first-child .steps__num { font: 500 11px var(--mono); letter-spacing: .08em; color: var(--accent); }
.steps__text { font: 400 15px var(--sans); color: var(--text-2); }
.steps li:first-child .steps__text { font-weight: 600; color: var(--text); }

/* --------------------------------------------------------------------------
   Život na pozici (světlá sekce)
   -------------------------------------------------------------------------- */

.light { background: var(--light-bg); scroll-margin-top: 80px; }
.light__inner { max-width: 1080px; margin: 0 auto; padding: 96px 24px; }
.light__lead {
  font: 400 17px/1.6 var(--mont);
  color: var(--light-ink-2);
  margin-top: 16px;
  max-width: 60ch;
}

.bento { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 44px; }

.story {
  position: relative;
  margin: 0;
  border: 1px solid var(--light-line);
  border-radius: 20px;
  overflow: hidden;
  height: 340px;
}
.story img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.story__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 11, 13, 0) 30%, rgba(10, 11, 13, .55) 68%, rgba(10, 11, 13, .92) 100%);
}
.story__hot {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .5);
  background: rgba(10, 11, 13, .42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: ping 2.6s ease-out infinite;
  transition: transform .3s var(--ease), background .3s ease;
}
.story:hover .story__hot { transform: scale(1.12); background: rgba(10, 11, 13, .62); }
.story.is-open .story__hot { animation: none; }

.story figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.story__tag {
  font: 700 15px var(--mont);
  letter-spacing: .12em;
  color: var(--yellow);
}
.story__title {
  font: 700 20px/1.3 var(--mont);
  letter-spacing: -.02em;
  color: #fff;
  max-width: 26ch;
}
.story__body {
  font: 400 15px/1.55 var(--mont);
  color: rgba(255, 255, 255, .88);
  max-width: 34ch;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease), opacity .35s ease;
}
.story.is-open .story__body { max-height: 160px; opacity: 1; }
.story__hint {
  font: 600 11px var(--mont);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

/* citace */
.quote {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--light-line);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: center;
  max-width: 820px;
}
.quote__photo {
  border: 1px solid var(--light-line);
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 140px;
}
.quote__photo img { width: 100%; height: 100%; object-fit: cover; }
.quote blockquote {
  font: 700 30px/1.3 var(--mont);
  letter-spacing: -.02em;
  color: var(--light-ink);
  max-width: 26ch;
}
.quote__who { margin-top: 20px; display: flex; flex-direction: column; gap: 4px; }
.quote__name { font: 600 15px var(--mont); color: var(--light-ink); }
.quote__role {
  font: 600 12px var(--mont);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--light-ink-2);
}

/* --------------------------------------------------------------------------
   Vhodnost
   -------------------------------------------------------------------------- */

.fit {
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
  border-top: 1px solid var(--line);
}
.fit__inner { max-width: 1080px; margin: 0 auto; padding: 96px 24px 40px; }
.fit__card { padding: 32px; }
.fit__card--yes {
  border-color: rgba(245, 179, 1, .55);
  box-shadow: 0 0 0 3px rgba(245, 179, 1, .12), 0 14px 34px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .06);
}
.fit__list { margin-top: 22px; display: flex; flex-direction: column; gap: 16px; }
.fit__list li {
  display: flex;
  gap: 14px;
  font-size: 16px;
  color: var(--text);
  padding: 6px 10px;
  margin: -6px -10px;
  border-radius: 10px;
  list-style: none;
  transition: background .2s ease, color .2s ease;
}
.fit__list li:hover { background: rgba(255, 255, 255, .05); }
.fit__list--yes li > span { color: var(--yellow); }
.fit__list--no li { color: var(--text-2); }
.fit__list--no li:hover { color: var(--text); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq__h { font: inherit; }
.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 38px 40px;
  text-align: left;
  cursor: pointer;
}
.faq__q > span:first-child { font: 700 17px/1.3 var(--mont); color: var(--text); }
.faq__sign {
  font: 600 20px/1 var(--sans);
  color: var(--yellow);
  flex: none;
  transition: transform .3s var(--ease);
}
.faq__item.is-open .faq__sign { transform: rotate(180deg); }
.faq__a { margin-top: -26px; padding: 0 40px 38px; }
.faq__a p { font-size: 15px; color: var(--text-2); }
.faq__a[hidden] { display: none; }
.faq__item.is-open .faq__a { animation: fadeDown .32s var(--ease) both; }

/* --------------------------------------------------------------------------
   Patička a mobilní CTA
   -------------------------------------------------------------------------- */

.footer {
  max-width: 1080px;
  margin: 0 auto;
  padding: 34px 24px 56px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font: 600 12px var(--mont);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-2);
}

.mob-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  /* Plně krycí pozadí: při .92 průhlednosti prosvítal obsah stránky.
     Odstín zůstává stejný, jen bez alfy, takže backdrop-filter už nemá
     co rozostřovat a je zbytečný. */
  background: #141619;
  border-top: 1px solid var(--line);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform .32s var(--ease), opacity .28s ease;
}
.mob-cta.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mob-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-radius: 11px;
  background: var(--accent);
  color: #fff;
  font: 600 15px var(--sans);
}

/* --------------------------------------------------------------------------
   Dotazník v heru (varianta B)
   -------------------------------------------------------------------------- */

.quiz {
  border: 1px solid var(--light-line);
  border-radius: 20px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .35);
}
.quiz__title {
  font: 700 20px/1.25 var(--mont);
  letter-spacing: -.02em;
  color: var(--light-ink);
}
.quiz__sub {
  font: 600 11px var(--mont);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--light-ink-2);
  margin-top: 7px;
}
.quiz__rule { height: 1px; background: var(--light-line); margin: 18px 0; }

.quiz [data-step] { animation: fadeDown .32s var(--ease) both; }
.quiz [data-step][hidden] { display: none; }
.quiz__step-label {
  font: 600 11px var(--mont);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}
.quiz__step-label--muted { color: var(--light-ink-2); }
.quiz__q {
  font: 700 17px/1.3 var(--mont);
  color: var(--light-ink);
  margin-top: 10px;
}
.quiz__done {
  font: 700 22px/1.2 var(--mont);
  letter-spacing: -.02em;
  color: var(--light-ink);
}
.quiz__blocked {
  font: 700 19px/1.3 var(--mont);
  color: var(--light-ink);
  margin-top: 10px;
}
.quiz__text {
  font: 400 15px/1.55 var(--sans);
  color: var(--light-ink-2);
  margin-top: 10px;
}
.quiz__opts { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }

.opt { position: relative; display: block; }
.opt input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.opt span {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--light-line);
  background: #fff;
  border-radius: 11px;
  font: 600 14px/1.35 var(--sans);
  color: var(--light-ink-3);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.opt:hover span { border-color: var(--light-line-2); }
.opt input:checked + span {
  border-color: var(--accent);
  background: var(--light-sel-bg);
  color: var(--accent-deep);
}
.opt input:focus-visible + span { outline: 2px solid var(--accent-ink); outline-offset: 2px; }

.quiz__fields { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.quiz__fields input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--light-line);
  border-radius: 10px;
  padding: 0 14px;
  font: 400 15px var(--sans);
  color: var(--light-ink);
  background: #fff;
}
.quiz__fields input:focus { outline: none; border-color: var(--light-line-2); }
.quiz__fields input:focus-visible { outline: 2px solid var(--accent-ink); outline-offset: 1px; }

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 12px;
  cursor: pointer;
}
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check__box {
  width: 20px;
  height: 20px;
  border: 1.6px solid var(--light-line-2);
  background: transparent;
  border-radius: 5px;
  flex: none;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font: 700 12px var(--sans);
  transition: background .2s ease, border-color .2s ease;
}
.check input:checked + .check__box { border-color: var(--accent); background: var(--accent); }
.check input:checked + .check__box::after { content: '✓'; }
.check input:focus-visible + .check__box { outline: 2px solid var(--accent-ink); outline-offset: 2px; }
.check p { font: 400 13px/1.45 var(--sans); color: var(--light-ink-2); }

.quiz__nav { display: flex; gap: 8px; margin-top: 16px; }
.quiz__nav--stack { flex-direction: column; }
.qbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 11px;
  font: 600 15px var(--sans);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, filter .2s ease;
}
.qbtn--primary { background: var(--accent); color: #fff; flex: 1; }
.qbtn--primary:hover { filter: brightness(1.08); color: #fff; }
.qbtn--ghost {
  padding: 0 18px;
  border: 1px solid var(--light-line);
  color: var(--light-ink);
}
.qbtn--ghost-sm { height: 44px; font-size: 14px; border: 1px solid var(--light-line); color: var(--light-ink); }
.qbtn[disabled],
.qbtn[aria-disabled='true'] { background: #EDEDEF; color: #9AA0A6; cursor: not-allowed; filter: none; }
.quiz__hint { font: 400 13px var(--sans); color: var(--warn); margin-top: 10px; }
.quiz__hint[hidden] { display: none; }

/* --------------------------------------------------------------------------
   Animace
   -------------------------------------------------------------------------- */

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@keyframes markFill { to { transform: scaleX(1); } }
@keyframes axisGrow { from { width: 0; } to { width: 62%; } }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(218, 0, 15, .5); }
  70% { box-shadow: 0 0 0 12px rgba(218, 0, 15, 0); }
  100% { box-shadow: 0 0 0 0 rgba(218, 0, 15, 0); }
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(218, 0, 15, .5); }
  70% { box-shadow: 0 0 0 14px rgba(218, 0, 15, 0); }
  100% { box-shadow: 0 0 0 0 rgba(218, 0, 15, 0); }
}

.rv { opacity: 0; }
.rv.is-in { animation: rise .72s var(--ease) forwards; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv, .rv.is-in { opacity: 1; animation: none; }
  .mark::before { transform: scaleX(1); animation: none; }
  .pay__fill, .pay__dot--c, .story__hot, .quiz [data-step], .nav__menu, .faq__item.is-open .faq__a { animation: none; }
}

/* --------------------------------------------------------------------------
   Responzivita
   -------------------------------------------------------------------------- */

@media (max-width: 1000px) {
  .hero h1 { font-size: 52px; }
  .facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 26px 20px 52px;
    min-height: 0;
  }
  .hero__copy, .hero__aside { grid-column: auto; }
  .hero__photo, .hero__scrim-x, .hero__wave { display: none; }
  .hero__photo-mobile {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: 58% 18%;
    filter: brightness(1.12) saturate(1.03);
  }
  .hero h1 { font-size: 32px; line-height: 1.12; max-width: 100%; }
  .hero__lead { max-width: 100%; font-size: 17px; }
  .hero__hint--desktop { display: none; }
  .hero__hint--mobile { display: inline-flex; justify-content: center; width: 100%; margin-top: 16px; }
  .hero__aside { margin-top: 8px; }
  .pay { max-width: 100%; }
  .pay__amount { font-size: 38px; }

  .wrap, .light__inner, .fit__inner, .nav__inner, .footer { padding-left: 20px; padding-right: 20px; }
  .light__inner, .fit__inner { padding-top: 56px; }
  .light__inner { padding-bottom: 56px; }
  .sect { padding-bottom: 56px; }
  .sect--faq { padding-top: 40px; }

  .h2 { font-size: 25px; line-height: 1.18; }
  .task h3 { font-size: 18px; }
  .grid-2, .bento, .facts { grid-template-columns: 1fr; }
  .facts { margin-top: -24px; gap: 12px; }
  .footnote { white-space: normal; }

  .cta-band { grid-template-columns: 1fr; padding: 26px 20px; gap: 26px; }
  .cta-band h2 { font-size: 23px; }
  .fit__card { padding: 26px; }
  .faq__q { padding: 22px 20px; }
  .faq__a { margin-top: -10px; padding: 0 20px 22px; }
  .faq__q > span:first-child { font-size: 18px; }
  .story { height: 250px; }
  .quote { grid-template-columns: 88px 1fr; gap: 18px; align-items: start; margin-top: 48px; padding-top: 40px; }
  .quote__photo { width: 88px; height: 106px; }
  .quote blockquote { font-size: 19px; line-height: 1.32; max-width: 100%; }
  .quote__who { margin-top: 12px; gap: 2px; }
  .quiz { padding: 20px; }
}

@media (max-width: 640px) {
  .nav__row { gap: 10px; height: 64px; padding: 0; }
  .nav__logo { width: 112px; }
  .lang-mini { display: none; }
  .lang-flags { display: flex; gap: 0; margin-right: 10px; }
  .lang-flags button { width: 26px; height: 40px; }
  .lang-flags svg { width: 19px; height: 14px; }
  .nav__kebab { width: 40px; height: 40px; border-radius: 11px; }
  .nav__cta { display: none; }
  .nav__menu { right: 20px; }
  .mob-cta { display: block; }
  body { padding-bottom: 0; }

  .hero__cta { gap: 10px; }
  .hero__cta .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 14px 12px;
    font-size: 14px;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
  }
  .story { height: 290px; }
  .story figcaption { left: 18px; right: 18px; bottom: 18px; }
  .story__title { font-size: 18px; max-width: 100%; }
  .story__body { max-width: 100%; }
  .footer { padding: 28px 20px 44px; font-size: 11px; }
}

@media (max-width: 480px) {
  .hero__photo-mobile { height: 186px; }
  .hero h1 { font-size: 28px; }
  .facts { grid-template-columns: 1fr 1fr; }
  .fact { padding: 20px 14px; }
  .fact__value { font-size: 14px; }
}

@media (max-width: 400px) {
  .nav__row { gap: 4px; }
  .nav__logo { width: 100px; }
  .lang-flags { margin-right: 8px; }
}

@media (max-width: 340px) {
  .quote { grid-template-columns: 74px 1fr; gap: 14px; }
  .quote__photo { width: 74px; height: 90px; }
}
