/* ===================================
   CENNIK PAGE
=================================== */

.pricelist-page {
  background: #fffdfa;
}

/* ===================================
   HERO
=================================== */

.pricelist-hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 76px 0 88px;
  background:
    radial-gradient(circle at top left, rgba(111, 155, 114, .07), transparent 38%),
    #fffdfa;
}

.pricelist-hero-container {
  position: relative;
  z-index: 3;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.pricelist-hero-content {
  max-width: 720px;
}

.pricelist-hero .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
}

.pricelist-hero .breadcrumbs a {
  color: var(--color-primary-dark);
}

.pricelist-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(64px, 7vw, 104px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.pricelist-hero h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 24px;
  border-radius: 999px;
  background: var(--color-primary);
}

.pricelist-hero-lead {
  max-width: 520px;
  margin-bottom: 24px;
  color: var(--color-primary-dark);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.pricelist-hero-text {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.75;
}

.pricelist-hero-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58vw;
  min-width: 720px;
  overflow: hidden;
}

.pricelist-hero-image::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 50%;
  background: linear-gradient(
    90deg,
    #fffdfa 0%,
    rgba(255, 253, 250, 0.94) 28%,
    rgba(255, 253, 250, 0.56) 62%,
    rgba(255, 253, 250, 0) 100%
  );
  pointer-events: none;
}

.pricelist-hero-image::after {
  content: "";
  position: absolute;
  left: -11%;
  top: -18%;
  z-index: 2;
  width: 230px;
  height: 720px;
  background: #fffdfa;
  border-radius: 50%;
  pointer-events: none;
}

.pricelist-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 1180px) {
  .pricelist-hero {
    padding: 60px 0 76px;
  }

  .pricelist-hero-container {
    min-height: auto;
  }

  .pricelist-hero-image {
    position: relative;
    width: min(100% - 48px, var(--container));
    min-width: 0;
    height: 420px;
    margin: 44px auto 0;
    border-radius: 32px;
  }

  .pricelist-hero-image::before {
    width: 100%;
    background: linear-gradient(
      180deg,
      rgba(255, 253, 250, 0.34),
      rgba(255, 253, 250, 0)
    );
  }

  .pricelist-hero-image::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .pricelist-hero {
    padding: 44px 0 60px;
  }

  .pricelist-hero .breadcrumbs {
    margin-bottom: 32px;
  }

  .pricelist-hero h1 {
    font-size: 58px;
  }

  .pricelist-hero-lead {
    font-size: 24px;
  }

  .pricelist-hero-text {
    font-size: 16px;
  }

  .pricelist-hero-image {
    width: calc(100% - 32px);
    height: 300px;
    margin-top: 34px;
  }
}

/* ===================================
   PRICELIST
=================================== */

.pricelist-section {
  padding: 76px 0 96px;
}

.pricelist-heading {
  margin-bottom: 36px;
  text-align: center;
}

.pricelist-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.pricelist-heading h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--color-primary);
}

.price-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 42px;
  border-radius: 24px;
  background: #fffdfa;
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 50px rgba(32, 42, 37, 0.055);
}

.price-row {
  min-height: 74px;
  display: grid;
  grid-template-columns: 62px auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.price-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f3f7f0;
  color: var(--color-primary);
  font-size: 24px;
}

.price-name {
  color: var(--color-text);
  font-size: 18px;
  font-weight: 500;
}

.price-dots {
  height: 1px;
  border-bottom: 2px dotted #d7ded8;
  transform: translateY(3px);
}

.price-value {
  min-width: 118px;
  text-align: right;
  color: var(--color-primary-dark);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.price-value small {
  margin-left: 4px;
  font-size: 16px;
  font-weight: 700;
}

.price-separator {
  height: 1px;
  margin: 8px 0;
  background: #dce5dc;
}

.price-note {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding: 28px 34px;
  border-radius: 18px;
  background:
    radial-gradient(circle at right bottom, rgba(111, 155, 114, .12), transparent 32%),
    linear-gradient(90deg, #f8faf6 0%, #fffdf9 100%);
}

.price-note span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-primary-dark);
  border-radius: 999px;
  color: var(--color-primary-dark);
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
}

.price-note p {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 22px;
  line-height: 1.45;
  font-family: var(--font-heading);
}

@media (max-width: 760px) {
  .pricelist-section {
    padding: 56px 0 74px;
  }

  .price-card {
    padding: 18px;
  }

  .price-row {
    grid-template-columns: 46px 1fr auto;
    gap: 12px;
    padding: 14px 0;
  }

  .price-dots {
    display: none;
  }

  .price-name {
    font-size: 15px;
    line-height: 1.4;
  }

  .price-value {
    min-width: auto;
    font-size: 24px;
  }

  .price-value small {
    font-size: 12px;
  }

  .price-note {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .price-note p {
    font-size: 18px;
  }
}

/* ===================================
   PSYCHOLOGIST BANNER
=================================== */

.pricelist-psychologist-section {
  padding: 0 0 110px;
}

.pricelist-psychologist-card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 42px;
  padding: 54px 58px;
  border-radius: 28px;
  background:
    radial-gradient(circle at right top, rgba(111, 155, 114, .12), transparent 34%),
    linear-gradient(135deg, #f8faf6 0%, #fffdf9 100%);
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 50px rgba(32, 42, 37, 0.055);
}

.psychologist-info {
  padding-right: 42px;
  border-right: 1px solid var(--color-border);
}

.psychologist-info h2 {
  margin: 12px 0 22px;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.psychologist-info p,
.psychologist-register p {
  margin: 0;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.75;
}

.psychologist-register {
  position: relative;
  min-height: 150px;
}

.psychologist-cta {
  text-align: center;
}

.psychologist-cta h3 {
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.psychologist-cta > span {
  display: block;
  margin-bottom: 28px;
  color: var(--color-primary-dark);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.psychologist-cta > span::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--color-primary);
}

.psychologist-btn {
  width: 100%;
  min-height: 58px;
}

@media (max-width: 980px) {
  .pricelist-psychologist-card {
    grid-template-columns: 1fr;
    padding: 40px 32px;
  }

  .psychologist-info {
    padding-right: 0;
    padding-bottom: 28px;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .psychologist-register {
    min-height: auto;
  }

}