@charset "utf-8";

/* ═══════════════════════════════════════════════════════
   EXPRESNI-PRODEJ-DO-48-HODIN.CSS
   Rozšiřuje style.css. Komponenty specifické pro
   podstránku „Expresní prodej nemovitosti do 48 hodin".
   v2 — přepracovaný layout a vizuální hierarchie.
   ═══════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────
   LOCAL TOKENS
   ───────────────────────────────────────────────────── */
:root {
  --exp-sh-lift:  0 2px 8px rgba(12,18,37,.04), 0 8px 32px rgba(12,18,37,.07);
  --exp-trans: .28s cubic-bezier(.4,0,.2,1);
  --exp-green: #15803d;
  --exp-amber: #b45309;
  --exp-red:   #b91c1c;
}


/* ─────────────────────────────────────────────────────
   DECISION BOX (nový — Co zjistíte do 24 h)
   ───────────────────────────────────────────────────── */
.exp-decision {
  padding: 2rem 2rem 1.75rem;
  border-radius: var(--r-xl);
  background: var(--c-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.exp-decision::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,96,44,.18) 0%, transparent 65%);
  pointer-events: none;
}
.exp-decision__head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.35rem;
  position: relative;
}
.exp-decision__ic {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--c-accent);
  color: #fff;
}
.exp-decision__head h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.exp-decision__list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  position: relative;
}
.exp-decision__item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
}
.exp-decision__check {
  width: 24px; height: 24px;
  flex: 0 0 24px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: rgba(22,163,74,.2);
  color: #4ade80;
  margin-top: 1px;
}
.exp-decision__note {
  margin-top: 1.25rem;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.45);
  position: relative;
}


/* ─────────────────────────────────────────────────────
   QUICK-ANSWER BOX
   ───────────────────────────────────────────────────── */
.exp-quick {
  padding: 2rem 2rem 1.75rem;
  border-radius: var(--r-xl);
  background: var(--c-white);
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-card);
}
.exp-quick__head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.25rem;
}
.exp-quick__ic {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--c-accent-soft);
  color: var(--c-accent);
}
.exp-quick__head h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-ink);
  margin: 0;
  letter-spacing: -.02em;
}
.exp-quick p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-muted);
  margin: 0 0 .6rem;
}
.exp-quick p:last-child { margin-bottom: 0; }


/* ─────────────────────────────────────────────────────
   FIT / UNFIT LISTS (pro koho ano / ne)
   ───────────────────────────────────────────────────── */
.exp-fit-list {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.exp-fit {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .85rem 1rem;
  border-radius: var(--r);
  transition: background .2s;
}
.exp-fit:hover { background: var(--c-accent-light); }
.exp-fit__dot {
  width: 10px; height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  margin-top: .35rem;
}
.exp-fit--go .exp-fit__dot { background: var(--exp-green); }
.exp-fit--no .exp-fit__dot { background: var(--exp-amber); }
.exp-fit > div {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--c-muted);
}
.exp-fit > div strong { color: var(--c-ink); }


/* ─────────────────────────────────────────────────────
   STEP CARDS (nový — jak to probíhá)
   ───────────────────────────────────────────────────── */
.exp-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 920px;
  margin-inline: auto;
}
.exp-step {
  position: relative;
}
.exp-step__badge {
  display: inline-block;
  padding: .3rem .85rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--c-accent);
  color: #fff;
  margin-bottom: .75rem;
}
.exp-step__card {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  box-shadow: var(--sh-card);
}
.exp-step__left {
  padding: 2rem 2rem 1.75rem;
}
.exp-step__left h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 .65rem;
  color: var(--c-ink);
  line-height: 1.3;
}
.exp-step__time {
  color: var(--c-accent);
  font-weight: 700;
}
.exp-step__left p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--c-muted);
  margin: 0 0 1rem;
}
.exp-step__what {
  padding: .85rem 1rem;
  border-radius: var(--r);
  background: var(--c-cream);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--c-muted);
}
.exp-step__what strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: .25rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.exp-step__right {
  display: flex;
  align-items: stretch;
  padding: 0;
}
.exp-step__result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.75rem;
  background: var(--c-ink);
  color: #fff;
  width: 100%;
}
.exp-step__result strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: .5rem;
}
.exp-step__result p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
  margin: 0;
}
.exp-step__result--note {
  background: var(--c-warm);
}
.exp-step__result--note strong {
  color: var(--c-ink);
}
.exp-step__result--note p {
  color: var(--c-muted);
}

@media(max-width:767.98px) {
  .exp-step__card {
    grid-template-columns: 1fr;
  }
  .exp-step__left { padding: 1.5rem 1.25rem; }
  .exp-step__result { padding: 1.25rem; }
}


/* ─────────────────────────────────────────────────────
   BRAKE CARDS (nový — co brzdí expres, s traffic-light)
   ───────────────────────────────────────────────────── */
.exp-brakes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 920px;
  margin-inline: auto;
}
.exp-brake-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--r-lg);
  background: var(--c-white);
  border: 1px solid var(--c-line);
  transition: box-shadow .3s;
}
.exp-brake-card:hover { box-shadow: var(--sh-h); }
.exp-brake-card__head {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .5rem;
}
.exp-brake-card__head strong {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--c-ink);
}
.exp-brake-card__signal {
  width: 10px; height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
}
.exp-brake-card__signal--warn { background: var(--exp-amber); }
.exp-brake-card__signal--stop { background: var(--exp-red); }
.exp-brake-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--c-muted);
  margin: 0;
}
.exp-brake-card p a { white-space: nowrap; }

@media(max-width:767.98px) {
  .exp-brakes__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}


/* ─────────────────────────────────────────────────────
   COMPARISON TABLE
   ───────────────────────────────────────────────────── */
.exp-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  background: var(--c-white);
}
.exp-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.55;
}
.exp-table thead {
  background: var(--c-ink);
  color: #fff;
}
.exp-table th {
  padding: 1rem 1.15rem;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
}
.exp-table td {
  padding: .9rem 1.15rem;
  color: var(--c-muted);
  border-bottom: 1px solid var(--c-line);
  vertical-align: top;
}
.exp-table tbody tr:last-child td { border-bottom: none; }
.exp-table tbody tr:hover { background: var(--c-accent-light); }
.exp-table td:first-child {
  font-weight: 700;
  color: var(--c-ink);
}
.exp-table .tag--yes {
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  background: rgba(22,163,74,.08);
  color: #15803d;
}
.exp-table .tag--maybe {
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  background: rgba(180,83,9,.08);
  color: #b45309;
}
.exp-table .tag--no {
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  background: rgba(185,28,28,.06);
  color: #b91c1c;
}


/* ─────────────────────────────────────────────────────
   DOC-CHECK (checklist)
   ───────────────────────────────────────────────────── */
.doc-check {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.doc-check__item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .85rem 1rem;
  border-radius: var(--r);
  transition: background .2s;
}
.doc-check__item:hover { background: var(--c-accent-light); }
.doc-check__ic {
  width: 36px; height: 36px;
  flex: 0 0 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--c-accent-soft);
  color: var(--c-accent);
}
.doc-check__item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 1px;
}
.doc-check__item span {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.45;
}


/* ─────────────────────────────────────────────────────
   SAFETY BOX (peníze pod kontrolou)
   ───────────────────────────────────────────────────── */
.exp-safety {
  padding: 2.25rem 2rem 2rem;
  border-radius: var(--r-xl);
  background: var(--c-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.exp-safety::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,96,44,.16) 0%, transparent 65%);
  pointer-events: none;
}
.exp-safety__head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.exp-safety__head h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.exp-safety__ic {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--c-accent);
  color: #fff;
}
.exp-safety p {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  margin: 0 0 .6rem;
  position: relative;
}
.exp-safety p:last-child { margin-bottom: 0; }
.exp-safety strong { color: #fff; }


/* ─────────────────────────────────────────────────────
   CASE CARDS (situace z praxe)
   ───────────────────────────────────────────────────── */
.exp-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
}
.exp-case {
  padding: 2rem 1.75rem 1.75rem;
  border-radius: var(--r-lg);
  background: var(--c-white);
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-card);
  transition: box-shadow .3s;
}
.exp-case:hover { box-shadow: var(--sh-h); }
.exp-case__tag {
  display: inline-block;
  padding: .25rem .65rem;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  margin-bottom: .85rem;
}
.exp-case h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 .6rem;
  color: var(--c-ink);
}
.exp-case p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-muted);
  margin: 0 0 .65rem;
}
.exp-case p:last-child { margin-bottom: 0; }
.exp-case__tip {
  margin-top: 1rem;
  padding-top: .85rem;
  border-top: 1px solid var(--c-line);
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-muted);
}
.exp-case__tip strong { color: var(--c-ink); }

@media(max-width:991.98px) { .exp-cases { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }


/* ─────────────────────────────────────────────────────
   LINK ACCENT
   ───────────────────────────────────────────────────── */
.link-accent {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(212,96,44,.3);
  transition: text-decoration-color .2s;
}
.link-accent:hover {
  color: var(--c-accent);
  text-decoration-color: var(--c-accent);
}


/* ─────────────────────────────────────────────────────
   CTA GHOST BUTTON
   ───────────────────────────────────────────────────── */
.btn-main--ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,.3);
  color: #fff;
}
.btn-main--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
  color: #fff;
  box-shadow: none;
}


/* ─────────────────────────────────────────────────────
   CTA BOX BUTTONS LAYOUT
   ───────────────────────────────────────────────────── */
.cta-box__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}


/* ─────────────────────────────────────────────────────
   DISCLAIMER
   ───────────────────────────────────────────────────── */
.disclaimer {
  padding: 1.25rem 1.5rem;
  border-radius: var(--r);
  background: var(--c-warm);
  border-left: 4px solid var(--c-line);
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-light);
}
.disclaimer p { margin: 0; }
.disclaimer a { color: var(--c-accent); }
.sec--sm { padding: clamp(2rem,3vw,3rem) 0; }


/* ─────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────── */
@media(max-width:767.98px) {
  .exp-quick { padding: 1.5rem 1.25rem; }
  .exp-safety { padding: 1.75rem 1.25rem; }
  .exp-decision { padding: 1.75rem 1.25rem; }
}
