/* ============================================================
   dla-kogo.css — strona "Dla kogo" (Warehouse.Online)
   System wspólny: common.css. Tu: hero, 2 kolumny, kroki, porównanie.
============================================================ */

/* ── HERO ── */
.dk-hero {
  padding-block: 72px 48px;
  text-align: center;
  background: var(--grey-light);
  border-bottom: 1px solid var(--grey-100);
}

.dk-hero__inner {
  max-width: 720px;
  margin-inline: auto;
}

.dk-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 20px;
}

.dk-hero__accent {
  color: var(--orange);
}

.dk-hero__lead {
  font-size: 1.125rem;
  color: var(--grey-400);
  line-height: 1.6;
}

/* ── TWO COLUMNS ── */
.dk-columns {
  padding-block: 80px;
}

.dk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  align-items: start;
}

@media (max-width: 1023px) {
  .dk-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

/* Kolumna — wspólna */
.dk-col {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.dk-col--seeker {
  background: var(--blue-muted);
}

@media (max-width: 640px) {
  .dk-col {
    padding: 28px;
    border-radius: var(--radius-lg);
  }
}

/* Badge */
.dk-col__badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.dk-col__badge--owner {
  background: var(--blue-muted);
  color: var(--blue);
}

.dk-col__badge--seeker {
  background: var(--orange-soft);
  color: var(--orange-text);
}

/* Tytuł kolumny */
.dk-col__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 12px;
  color: var(--blue-deep);
}

.dk-col--owner .dk-col__title {
  color: var(--blue-deep);
}

.dk-col--seeker .dk-col__title {
  color: var(--blue-deep);
}

.dk-col__lead {
  font-size: 1rem;
  color: var(--grey-400);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Kroki */
.dk-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.dk-step {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-light);
}

.dk-step:last-child {
  border-bottom: none;
}

.dk-step__num {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9375rem;
  font-weight: 700;
  border: 2px solid var(--orange);
  color: var(--orange);
  background: transparent;
}

.dk-col--owner .dk-step__num {
  border-color: var(--blue);
  color: var(--blue);
}

.dk-step__body h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--black);
}

.dk-step__body p {
  font-size: 0.9375rem;
  color: var(--grey-400);
  line-height: 1.55;
}

/* Zalety */
.dk-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--grey-light);
  border-radius: var(--radius-md);
}

.dk-col--owner .dk-benefits {
  background: var(--blue-muted);
}

.dk-col--seeker .dk-benefits {
  background: var(--orange-soft);
}

.dk-benefits li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9375rem;
  color: var(--grey-500);
  line-height: 1.5;
}

.dk-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.7;
}

.dk-col--owner .dk-benefits li::before {
  background: var(--blue);
}

/* CTA w kolumnie */
.dk-col__cta {
  display: inline-flex;
}

/* ── KLAMRA — spina kolumny pod spodem ── */
.dk-clasp {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
}

.dk-clasp__bar {
  width: calc(50% + 24px);
  height: 56px;
  border: 2px solid var(--blue-muted);
  border-top: none;
  border-radius: 0 0 32px 32px;
}

.dk-clasp__logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue-muted);
  padding: 14px;
  margin-top: -84px;
  box-shadow: var(--shadow-card);
  object-fit: contain;
}

@media (max-width: 1023px) {
  .dk-clasp {
    display: none;
  }
}

/* ── COMPARISON / ANALOGY ── */
.dk-analogy {
  padding-block: 80px;
}

.dk-analogy__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.dk-analogy__head h2 {
  margin-bottom: 16px;
}

.dk-analogy__head p {
  font-size: 1.0625rem;
  color: var(--grey-400);
}

.dk-compare {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--grey-100);
}

@media (max-width: 767px) {
  .dk-compare {
    grid-template-columns: 1fr;
  }
  .dk-compare__divider {
    width: 100%;
    height: 1px;
  }
}

.dk-compare__col {
  padding: 36px 32px;
}

@media (max-width: 640px) {
  .dk-compare__col {
    padding: 28px 24px;
  }
}

.dk-compare__col--old {
  background: var(--white);
}

.dk-compare__col--new {
  background: var(--orange-soft);
}

.dk-compare__divider {
  width: 1px;
  background: var(--grey-100);
}

@media (max-width: 767px) {
  .dk-compare__divider {
    width: 100%;
    height: 1px;
  }
}

.dk-compare__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--grey-300);
}

.dk-compare__col--new .dk-compare__label {
  color: var(--orange-text);
}

.dk-compare__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dk-compare__list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--grey-500);
}

.dk-compare__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.dk-compare__col--old .dk-compare__list li::before {
  background: var(--grey-200);
}

.dk-compare__col--new .dk-compare__list li::before {
  background: var(--orange);
}

/* ── FINAL CTA nadpisanie ── */
.final-cta {
  background: var(--blue-deep);
  color: var(--white);
  text-align: center;
  padding-block: 80px;
}

.final-cta h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 32px;
}

.final-cta__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
