.pt-profit-page .pt-page {
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
}

.pt-profit-hero {
  padding: 96px 0 72px;
}

.pt-profit-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 44px;
  align-items: center;
}

.pt-profit-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--color-title);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
}

.pt-profit-hero__subtitle {
  max-width: 780px;
  margin: 24px 0 0;
  font-size: 19px;
  line-height: 1.65;
}

.pt-profit-hero__actions {
  margin-top: 34px;
}

.pt-profit-hero__note,
.pt-profit-calc__disclaimer {
  margin: 22px 0 0;
  color: rgba(43, 43, 43, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.pt-profit-hero__card {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.pt-profit-hero__card span,
.pt-profit-calc__results h3,
.pt-profit-calc__scenarios h4 {
  color: #a86400;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pt-profit-hero__card strong {
  display: block;
  margin-top: 18px;
  color: var(--color-title);
  font-size: 28px;
  line-height: 1.25;
}

.pt-profit-hero__card p {
  margin: 18px 0 0;
  line-height: 1.7;
}

.pt-profit-audience,
.pt-profit-improvements {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pt-profit-audience article,
.pt-profit-improvements article {
  min-height: 100%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.pt-profit-audience h3,
.pt-profit-improvements h3 {
  margin: 0 0 12px;
  color: var(--color-title);
  font-size: 19px;
}

.pt-profit-audience p,
.pt-profit-improvements p {
  margin: 0;
  line-height: 1.65;
}

.pt-profit-calc__shell {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.pt-profit-calc__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.pt-profit-calc__tabs button {
  min-height: 44px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  padding: 10px 16px;
  background: #f8fafc;
  color: var(--color-title);
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
}

.pt-profit-calc__tabs button.is-active {
  border-color: var(--color-accent);
  background: var(--color-accent);
}

.pt-profit-calc__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 24px;
  align-items: start;
}

.pt-profit-calc__panel,
.pt-profit-calc__result-panel {
  display: none;
}

.pt-profit-calc__panel.is-active,
.pt-profit-calc__result-panel.is-active {
  display: block;
}

.pt-profit-calc__selects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.pt-profit-calc label,
.pt-profit-calc__season {
  display: grid;
  gap: 9px;
  color: var(--color-title);
  font-weight: 800;
}

.pt-profit-calc select,
.pt-profit-calc input[type="number"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: var(--color-title);
  font-family: inherit;
  font-size: 15px;
}

.pt-profit-calc__field {
  margin-top: 18px;
}

.pt-profit-calc__range-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 16px;
  align-items: center;
}

.pt-profit-calc input[type="range"] {
  width: 100%;
  accent-color: var(--color-accent);
}

.pt-profit-calc__number {
  position: relative;
}

.pt-profit-calc__number small {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  color: rgba(43, 43, 43, 0.58);
  font-size: 12px;
  pointer-events: none;
}

.pt-profit-calc__number input {
  padding-right: 54px;
}

.pt-profit-calc__season {
  margin-top: 20px;
}

.pt-profit-calc__results {
  position: sticky;
  top: 110px;
  border-radius: 8px;
  padding: 24px;
  background: var(--color-secondary);
  color: #fff;
}

.pt-profit-calc__results h3 {
  margin: 0 0 18px;
  color: var(--color-accent);
}

.pt-profit-calc__results dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.pt-profit-calc__results dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 10px;
}

.pt-profit-calc__results dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.pt-profit-calc__results dd {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.pt-profit-calc__status {
  margin: 18px 0 0;
  border-radius: 8px;
  padding: 14px;
  background: rgba(252, 175, 59, 0.14);
  color: #fff;
  line-height: 1.55;
}

.pt-profit-calc__scenarios {
  margin-top: 22px;
}

.pt-profit-calc__scenarios h4 {
  margin: 0 0 12px;
  color: var(--color-accent);
}

.pt-profit-calc__scenario-table {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, minmax(74px, 1fr));
  gap: 1px;
  overflow-x: auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.pt-profit-calc__scenario-table > div {
  min-width: 74px;
  padding: 9px;
  background: #1d293d;
}

.pt-profit-calc__scenario-head,
.pt-profit-calc__scenario-name {
  font-weight: 900;
}

.pt-profit-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: 44px;
  align-items: start;
}

.pt-profit-cta__content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

.pt-profit-cta__content p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.pt-profit-cta__form {
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.pt-profit-cta__form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  padding: 0 14px;
  font-family: inherit;
}

.pt-profit-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 42px;
}

.pt-profit-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pt-profit-list li {
  border-left: 4px solid var(--color-accent);
  padding: 4px 0 4px 16px;
  line-height: 1.65;
}

.pt-profit-improvements {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pt-profit-promo,
.pt-article-profit-promo {
  border-radius: 8px;
  padding: 34px;
  background: var(--color-secondary);
  color: #fff;
}

.pt-profit-promo h2,
.pt-article-profit-promo h2 {
  margin: 0;
  color: #fff;
}

.pt-profit-promo p,
.pt-article-profit-promo p {
  color: rgba(255, 255, 255, 0.76);
}

.pt-profit-promo__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.pt-profit-promo__note,
.pt-article-profit-promo__note {
  margin-bottom: 0;
  font-size: 13px;
}

@media (max-width: 980px) {
  .pt-profit-hero__grid,
  .pt-profit-calc__grid,
  .pt-profit-cta,
  .pt-profit-info-grid,
  .pt-profit-promo__inner {
    grid-template-columns: 1fr;
  }

  .pt-profit-audience,
  .pt-profit-improvements {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pt-profit-calc__results {
    position: static;
  }
}

@media (max-width: 640px) {
  .pt-profit-hero {
    padding: 70px 0 54px;
  }

  .pt-profit-calc__shell,
  .pt-profit-hero__card,
  .pt-profit-cta__form,
  .pt-profit-promo,
  .pt-article-profit-promo {
    padding: 20px;
  }

  .pt-profit-audience,
  .pt-profit-improvements,
  .pt-profit-calc__selects,
  .pt-profit-calc__range-row {
    grid-template-columns: 1fr;
  }

  .pt-profit-calc__number input {
    padding-right: 70px;
  }

  .pt-profit-calc__results dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pt-profit-calc__results dd {
    text-align: left;
  }

  .pt-profit-calc__scenario-table {
    min-width: 620px;
  }
}
