.pg-main,
.pg-main * {
  box-sizing: border-box;
}

.pg-main {
  --pg-navy: #082b5b;
  --pg-navy-deep: #04224c;
  --pg-green: #0c8b70;
  --pg-green-dark: #08715d;
  --pg-mint: #eaf7f3;
  --pg-blue-soft: #eef6fb;
  --pg-ink: #112c4d;
  --pg-copy: #4d6178;
  --pg-line: #dce7ee;
  --pg-shadow: 0 18px 45px rgba(12, 43, 76, .09);
  color: var(--pg-ink);
  font-family: "Poppins", sans-serif;
  background: #fff;
  overflow: hidden;
}

.pg-main img {
  display: block;
  max-width: 100%;
  height: auto;
}

.pg-wrap {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

.pg-section {
  padding: 18px 0;
}

.pg-card {
  background: #fff;
  border: 1px solid var(--pg-line);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(11, 45, 79, .035);
}

.pg-main h1,
.pg-main h2,
.pg-main h3,
.pg-main p {
  margin-top: 0;
}

.pg-main h2 {
  margin-bottom: 10px;
  color: var(--pg-navy-deep);
  font-size: 22px;
  line-height: 1.25;
}

.pg-main p {
  color: var(--pg-copy);
  line-height: 1.65;
}

.pg-btn {
  min-height: 50px;
  padding: 13px 23px;
  border: 1.5px solid transparent;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: .2s ease;
}

.pg-btn:hover {
  transform: translateY(-1px);
}

.pg-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pg-navy), #0b3a78);
  box-shadow: 0 10px 22px rgba(8, 43, 91, .16);
}

.pg-btn-outline {
  color: var(--pg-green-dark);
  border-color: #65bba7;
  background: #fff;
}

.pg-btn-green {
  color: #fff;
  background: linear-gradient(135deg, var(--pg-green), var(--pg-green-dark));
}

.pg-btn-wide {
  width: 100%;
}

/* Hero */
.pg-hero {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  padding: 26px 0 30px;
  background:
    radial-gradient(circle at 47% 38%, rgba(115, 185, 231, .38), transparent 24%),
    linear-gradient(100deg, #f9fcfe 0%, #edf6fb 54%, #f8fbfc 100%);
  border-bottom: 1px solid #dce9f0;
}

.pg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .43;
  background-image: radial-gradient(rgba(18, 75, 117, .13) .75px, transparent .75px);
  background-size: 13px 13px;
  mask-image: linear-gradient(to right, #000, transparent 78%);
}

.pg-hero-shell {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.22fr .83fr 1fr;
  align-items: center;
  gap: 0;
  position: relative;
}

.pg-hero-copy {
  position: relative;
  z-index: 3;
  padding: 24px 0 12px 10px;
}

.pg-eyebrow {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #a8d6c9;
  border-radius: 6px;
  color: var(--pg-green-dark);
  background: rgba(239, 250, 247, .9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1px;
}

.pg-eyebrow b {
  color: #77a99b;
}

.pg-hero-copy h1 {
  max-width: 670px;
  margin: 0 0 15px;
  color: var(--pg-navy-deep);
  font-size: clamp(38px, 4vw, 61px);
  line-height: 1.07;
  letter-spacing: -2px;
}

.pg-hero-copy h1 span {
  display: block;
  color: var(--pg-green);
}

.pg-hero-copy > p {
  max-width: 600px;
  margin-bottom: 7px;
  color: #3e566f;
  font-size: 14px;
  line-height: 1.72;
}

.pg-hero-benefits {
  max-width: 650px;
  margin: 24px 0 23px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pg-hero-benefits > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #51667c;
  font-size: 11px;
  line-height: 1.35;
}

.pg-hero-benefits i {
  flex: 0 0 auto;
  color: var(--pg-navy);
  font-size: 30px;
}

.pg-hero-benefits strong {
  display: block;
  color: var(--pg-navy-deep);
  font-size: 11px;
}

.pg-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pg-hero-visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-width: 0;
}

.pg-hero-glow {
  position: absolute;
  inset: 12% -30% 2% -38%;
  border-radius: 50%;
  filter: blur(24px);
  background: radial-gradient(circle, rgba(60, 144, 208, .38), transparent 67%);
}

.pg-hero-visual img {
  width: 440px;
  height: auto;
  max-height: 550px;
  max-width: none;
  position: absolute;
  left: 50%;
  bottom: -14px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: saturate(.94) drop-shadow(0 20px 26px rgba(20, 83, 138, .18));
}

.pg-eval-card {
  position: relative;
  z-index: 4;
  margin-left: 8px;
  padding: 27px 25px 17px;
  border: 1px solid rgba(208, 222, 232, .96);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 46px rgba(8, 43, 91, .11);
  backdrop-filter: blur(10px);
}

.pg-eval-card h2 {
  margin-bottom: 7px;
  text-align: center;
  font-size: 25px;
}

.pg-eval-card > p {
  margin-bottom: 14px;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
}

.pg-eval-card form {
  display: grid;
  gap: 8px;
}

.pg-eval-card form > label:not(.pg-upload) {
  height: 43px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #dde7ed;
  border-radius: 7px;
  background: #fff;
}

.pg-eval-card form > label i {
  color: var(--pg-navy);
  font-size: 17px;
}

.pg-eval-card input,
.pg-eval-card textarea,
.pg-report-form input,
.pg-report-form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  resize: none;
  color: var(--pg-ink);
  background: transparent;
  font: inherit;
  font-size: 11px;
}

.pg-eval-card .pg-message {
  height: 68px !important;
  align-items: flex-start !important;
  padding-top: 12px !important;
}

.pg-eval-card textarea {
  height: 48px;
}

.pg-upload {
  min-height: 65px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px dashed #9bc7bc;
  border-radius: 8px;
  color: var(--pg-navy-deep);
  background: #f3faf8;
  cursor: pointer;
}

.pg-upload span {
  display: grid;
  gap: 2px;
  font-size: 9px;
  line-height: 1.35;
}

.pg-upload small {
  color: #6d8192;
}

.pg-upload i {
  font-size: 24px !important;
}

.pg-upload input,
.pg-form-upload label input {
  display: none;
}

.pg-eval-card .pg-btn {
  min-height: 46px;
  padding: 10px 16px;
  font-size: 12px;
}

.pg-privacy {
  display: block;
  color: #788a99;
  text-align: center;
  font-size: 8px;
  line-height: 1.4;
}

/* Trust bar */
.pg-trust-strip {
  background: #fff;
  border-bottom: 1px solid #dfe8ed;
}

.pg-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pg-trust-grid article {
  min-height: 108px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid #e3ebef;
}

.pg-trust-grid article:last-child {
  border-right: 0;
}

.pg-trust-grid article > i {
  flex: 0 0 auto;
  color: var(--pg-navy);
  font-size: 36px;
}

.pg-trust-grid h3 {
  margin-bottom: 4px;
  color: var(--pg-navy-deep);
  font-size: 12px;
}

.pg-trust-grid p {
  margin-bottom: 0;
  font-size: 9px;
  line-height: 1.55;
}

/* Intro and patient stories */
.pg-overview-section {
  padding-top: 24px;
}

.pg-overview-grid {
  display: grid;
  grid-template-columns: .74fr 1.55fr;
  gap: 16px;
}

.pg-summary-card,
.pg-stories,
.pg-info-grid > .pg-card,
.pg-stage-card,
.pg-metastasis-card,
.pg-lifestyle,
.pg-faq {
  padding: 20px 22px;
}

.pg-summary-card > p,
.pg-stories .pg-section-title p {
  margin-bottom: 7px;
  font-size: 10px;
}

.pg-soft-list {
  margin: 18px 0 0;
  padding: 15px 16px;
  display: grid;
  gap: 10px;
  border: 1px solid #d3e9e2;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0faf7, #edf7f7);
  list-style: none;
}

.pg-soft-list li {
  display: flex;
  gap: 8px;
  color: #4b6871;
  font-size: 9px;
  line-height: 1.5;
}

.pg-soft-list i {
  color: var(--pg-green);
  font-size: 15px;
}

.pg-section-title {
  display: flex;
  justify-content: space-between;
}

.pg-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) .72fr;
  gap: 13px;
}

.pg-story-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dfe7ec;
  border-radius: 9px;
  background: #fff;
}

.pg-story-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #dceaf1;
}

.pg-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pg-play {
  width: 46px;
  height: 46px;
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255,255,255,.88);
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 38, 75, .36);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  font-size: 25px;
}

.pg-story-media small {
  position: absolute;
  right: 6px;
  bottom: 5px;
  padding: 3px 5px;
  border-radius: 3px;
  color: #fff;
  background: rgba(0,0,0,.72);
  font-size: 8px;
}

.pg-story-card h3 {
  min-height: 42px;
  margin: 10px 11px 4px;
  color: var(--pg-navy-deep);
  font-size: 10px;
  line-height: 1.42;
}

.pg-story-card p {
  margin: 0 11px 11px;
  font-size: 8px;
  line-height: 1.5;
}

.pg-all-stories {
  min-height: 100%;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #dfe7ec;
  border-radius: 9px;
  color: var(--pg-navy-deep);
  background: linear-gradient(180deg, #fbfcfd, #f3f6f7);
  text-align: center;
  text-decoration: none;
  font-size: 9px;
  font-weight: 700;
}

.pg-all-stories > i {
  font-size: 32px;
}

.pg-all-stories b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--pg-green);
  font-size: 18px;
}

.pg-dots {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.pg-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #b7c8d2;
}

.pg-dots .active {
  width: 18px;
  background: var(--pg-green);
}

/* Information cards */
.pg-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pg-card-lead {
  margin-bottom: 14px;
  font-size: 9px;
}

.pg-check-list,
.pg-diagnosis-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.pg-check-list li {
  position: relative;
  padding-left: 22px;
  color: #3f586d;
  font-size: 10px;
  line-height: 1.45;
}

.pg-check-list li::before {
  content: "✓";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--pg-green);
  font-size: 9px;
  font-weight: 800;
}

.pg-diagnosis-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.pg-diagnosis-list i {
  flex: 0 0 auto;
  color: var(--pg-green);
  font-size: 24px;
}

.pg-diagnosis-list span {
  color: #657789;
  font-size: 8px;
  line-height: 1.45;
}

.pg-diagnosis-list strong {
  display: block;
  color: var(--pg-navy-deep);
  font-size: 10px;
}

/* Stages and metastasis */
.pg-stage-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 16px;
}

.pg-stage-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
}

.pg-stage-items > div {
  min-height: 190px;
  padding: 11px 9px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border: 1px solid #dce8ed;
  border-radius: 9px;
  background: linear-gradient(180deg, #fbfdfd, #f3f8f7);
  text-align: center;
}

.pg-stage-items strong {
  color: var(--pg-navy-deep);
  font-size: 10px;
}

.pg-stage-items p {
  min-height: 37px;
  margin: 6px 0 2px;
  font-size: 8px;
  line-height: 1.4;
}

.pg-stage-items img {
  width: 112px;
  height: 112px;
  margin-top: auto;
  object-fit: contain;
}

.pg-metastasis-visual {
  min-height: 206px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 8px;
}

.pg-metastasis-visual img {
  width: 190px;
  max-height: 235px;
  justify-self: center;
  object-fit: contain;
}

.pg-metastasis-visual ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.pg-metastasis-visual li {
  position: relative;
  padding: 8px 13px 8px 32px;
  border: 1px solid #d8e9e4;
  border-radius: 999px;
  color: var(--pg-green-dark);
  background: #f2faf8;
  font-size: 10px;
  font-weight: 700;
}

.pg-metastasis-visual li::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #e56d5d;
  box-shadow: 0 0 0 3px #ffe5e1;
}

/* Treatments */
.pg-treatment-strip {
  padding: 4px 0 10px;
}

.pg-treatment-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--pg-line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.pg-treatment-grid article {
  min-height: 135px;
  padding: 19px 12px;
  text-align: center;
  border-right: 1px solid #e3ebef;
}

.pg-treatment-grid article:last-child {
  border-right: 0;
}

.pg-treatment-grid i {
  color: var(--pg-navy);
  font-size: 28px;
}

.pg-treatment-grid h3 {
  margin: 8px 0 5px;
  color: var(--pg-navy-deep);
  font-size: 9px;
  line-height: 1.35;
}

.pg-treatment-grid p {
  margin-bottom: 0;
  font-size: 7px;
  line-height: 1.45;
}

/* Therapy banners */
.pg-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pg-support-card {
  min-height: 280px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--pg-line);
  border-radius: 16px;
  background: #edf5fb;
}

.pg-support-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #edf5fb 0%, rgba(237,245,251,.98) 48%, rgba(237,245,251,.22) 77%, transparent 100%);
}

.pg-phytotherapy {
  background: #eef8f4;
}

.pg-phytotherapy::after {
  background: linear-gradient(90deg, #eef8f4 0%, rgba(238,248,244,.98) 48%, rgba(238,248,244,.24) 77%, transparent 100%);
}

.pg-support-copy {
  width: 67%;
  position: relative;
  z-index: 3;
  padding: 22px 22px 18px;
}

.pg-support-copy > p {
  margin-bottom: 10px;
  font-size: 9px;
  line-height: 1.55;
}

.pg-support-copy .pg-check-list {
  gap: 6px;
}

.pg-support-copy .pg-check-list li {
  font-size: 8px;
}

.pg-support-copy .pg-check-list li::before {
  width: 12px;
  height: 12px;
  font-size: 8px;
}

.pg-support-copy .pg-btn {
  min-height: 36px;
  margin-top: 12px;
  padding: 7px 16px;
  font-size: 8px;
}

.pg-support-card > img {
  width: 64%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  object-fit: cover;
  object-position: 72% center;
}

.pg-phytotherapy > img {
  object-fit: contain;
  object-position: right bottom;
}

/* Lifestyle and FAQ */
.pg-bottom-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 16px;
}

.pg-lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 19px;
}

.pg-lifestyle-grid div {
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--pg-navy-deep);
  text-align: center;
  font-size: 8px;
  font-weight: 700;
}

.pg-lifestyle-grid i {
  color: var(--pg-green);
  font-size: 30px;
}

.pg-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 13px;
}

.pg-faq details {
  border: 1px solid #dce6eb;
  border-radius: 7px;
  background: #fff;
}

.pg-faq summary {
  min-height: 35px;
  padding: 8px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--pg-navy-deep);
  cursor: pointer;
  list-style: none;
  font-size: 8px;
  font-weight: 700;
}

.pg-faq summary::-webkit-details-marker {
  display: none;
}

.pg-faq summary i {
  color: var(--pg-navy);
  font-size: 15px;
}

.pg-faq details[open] summary i {
  transform: rotate(45deg);
}

.pg-faq details p {
  margin: 0;
  padding: 0 11px 10px;
  font-size: 8px;
  line-height: 1.55;
}

/* Report area */
.pg-report-section {
  padding: 18px 0 30px;
}

.pg-report-shell {
  display: grid;
  grid-template-columns: .76fr 1.52fr;
  overflow: hidden;
  border: 1px solid #0a3165;
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--pg-shadow);
}

.pg-report-intro {
  padding: 31px 27px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 15%, rgba(50, 114, 192, .4), transparent 32%),
    linear-gradient(145deg, #082d63, #04234e);
}

.pg-report-intro h2 {
  color: #fff;
  font-size: 23px;
}

.pg-report-intro > p {
  color: #d7e4f2;
  font-size: 9px;
}

.pg-report-benefits {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pg-report-benefits div {
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #d7e7f6;
  text-align: center;
  font-size: 7px;
}

.pg-report-benefits i {
  font-size: 28px;
}

.pg-report-benefits strong {
  display: block;
  color: #fff;
  font-size: 8px;
}

.pg-report-form {
  padding: 20px;
}

.pg-form-fields {
  display: grid;
  grid-template-columns: 1.4fr .75fr;
  gap: 16px;
}

.pg-form-left {
  display: grid;
  gap: 8px;
}

.pg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pg-report-form input,
.pg-report-form textarea {
  padding: 10px 12px;
  border: 1px solid #dce6ec;
  border-radius: 6px;
  background: #fff;
}

.pg-report-form textarea {
  min-height: 72px;
}

.pg-form-upload h3 {
  margin-bottom: 3px;
  font-size: 11px;
}

.pg-form-upload > p {
  margin-bottom: 6px;
  font-size: 8px;
}

.pg-form-upload ul {
  margin: 0 0 7px;
  padding: 0;
  columns: 2;
  list-style: none;
}

.pg-form-upload li {
  position: relative;
  padding-left: 12px;
  color: #4e667b;
  font-size: 7px;
  line-height: 1.6;
}

.pg-form-upload li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pg-green);
  font-weight: 800;
}

.pg-form-upload label {
  min-height: 64px;
  padding: 9px;
  display: grid;
  place-items: center;
  border: 1px dashed #a7bbc8;
  border-radius: 7px;
  color: #5b7184;
  text-align: center;
  cursor: pointer;
}

.pg-form-upload label span {
  font-size: 7px;
}

.pg-form-upload label i {
  margin-right: 5px;
  color: var(--pg-navy);
  font-size: 18px;
}

.pg-form-upload label small {
  font-size: 6px;
}

.pg-report-actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pg-report-actions .pg-btn {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 10px;
}

.pg-report-form .pg-privacy {
  margin-top: 8px;
  text-align: left;
}

@media (max-width: 1180px) {
  .pg-hero-shell {
    grid-template-columns: 1.1fr .68fr .92fr;
  }

  .pg-hero-copy h1 {
    font-size: 45px;
  }

  .pg-hero-visual img {
    width: 380px;
  }

  .pg-treatment-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pg-treatment-grid article {
    border-bottom: 1px solid #e3ebef;
  }

  .pg-story-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pg-all-stories {
    min-height: 80px;
    grid-column: 1 / -1;
    flex-direction: row;
  }
}

@media (max-width: 980px) {
  .pg-wrap {
    width: min(100% - 32px, 760px);
  }

  .pg-hero {
    min-height: auto;
  }

  .pg-hero-shell {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .pg-hero-copy {
    grid-column: 1 / -1;
  }

  .pg-hero-visual {
    min-height: 420px;
  }

  .pg-hero-visual img {
    width: 390px;
  }

  .pg-eval-card {
    margin-left: 0;
  }

  .pg-trust-grid,
  .pg-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pg-overview-grid,
  .pg-stage-grid,
  .pg-support-grid,
  .pg-bottom-grid,
  .pg-report-shell {
    grid-template-columns: 1fr;
  }

  .pg-report-benefits {
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  .pg-wrap {
    width: min(100% - 24px, 560px);
  }

  .pg-section {
    padding: 9px 0;
  }

  .pg-hero {
    padding-top: 12px;
  }

  .pg-hero-shell,
  .pg-info-grid,
  .pg-trust-grid,
  .pg-form-fields {
    grid-template-columns: 1fr;
  }

  .pg-hero-copy {
    padding-left: 0;
  }

  .pg-hero-copy h1 {
    font-size: 38px;
    letter-spacing: -1.2px;
  }

  .pg-hero-benefits {
    grid-template-columns: 1fr;
  }

  .pg-hero-visual {
    min-height: 330px;
  }

  .pg-hero-visual img {
    width: 330px;
  }

  .pg-actions,
  .pg-actions .pg-btn {
    width: 100%;
  }

  .pg-trust-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #e3ebef;
  }

  .pg-story-grid {
    grid-template-columns: 1fr;
  }

  .pg-stage-items {
    grid-template-columns: 1fr 1fr;
  }

  .pg-treatment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pg-treatment-grid article:nth-child(even) {
    border-right: 0;
  }

  .pg-support-card {
    min-height: 440px;
  }

  .pg-support-card::after,
  .pg-phytotherapy::after {
    background: linear-gradient(180deg, #edf5fb 0%, rgba(237,245,251,.98) 58%, rgba(237,245,251,.28) 86%, transparent 100%);
  }

  .pg-phytotherapy::after {
    background: linear-gradient(180deg, #eef8f4 0%, rgba(238,248,244,.98) 58%, rgba(238,248,244,.28) 86%, transparent 100%);
  }

  .pg-support-copy {
    width: 100%;
  }

  .pg-support-card > img {
    width: 100%;
    height: 52%;
    top: auto;
    bottom: 0;
  }

  .pg-lifestyle-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pg-faq-grid,
  .pg-form-row,
  .pg-report-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .pg-hero-copy h1 {
    font-size: 33px;
  }

  .pg-eval-card,
  .pg-summary-card,
  .pg-stories,
  .pg-info-grid > .pg-card,
  .pg-stage-card,
  .pg-metastasis-card,
  .pg-lifestyle,
  .pg-faq {
    padding: 17px;
  }

  .pg-stage-items,
  .pg-treatment-grid,
  .pg-lifestyle-grid {
    grid-template-columns: 1fr;
  }

  .pg-treatment-grid article {
    border-right: 0;
  }

  .pg-metastasis-visual {
    grid-template-columns: 1fr;
  }

  .pg-report-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}
