:root {
  --page-navy: #010028;
  --deep-navy: #02003f;
  --brand-blue: #05006b;
  --bright-blue: #003cff;
  --cyan: #00cfff;
  --green: #00d66b;
  --white: #ffffff;
  --muted-white: rgba(255, 255, 255, 0.86);
  --card-border: rgba(0, 198, 255, 0.42);
  --section-space: clamp(54px, 7vw, 92px);
  --content-width: 1180px;
  --soft-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

html {
  background: var(--page-navy);
  scroll-behavior: smooth;
  scroll-padding-top: 18px;
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  padding-bottom: 0 !important;
  overflow-x: hidden;
  background: var(--page-navy);
  color: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
}

a,
button,
input {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid #ffffff !important;
  outline-offset: 4px !important;
}

.container,
[class*="__container"] {
  width: min(calc(100% - 32px), var(--content-width));
  max-width: var(--content-width) !important;
  margin-inline: auto;
  padding-inline: 0;
}

.block-1,
.benefits-section,
.symptoms-section,
.action-section,
.prostalix-offer-section,
.reviews-section,
.order-steps-section,
.block-8 {
  isolation: isolate;
}

/* Hero */
.block-1 {
  min-height: auto;
  padding: 14px 0 clamp(46px, 6vw, 78px) !important;
  background-position: center !important;
  overflow: hidden;
}

.header {
  height: auto !important;
  margin: 0 0 clamp(24px, 4vw, 48px) !important;
}

.header__container {
  width: min(calc(100% - 32px), var(--content-width));
  min-height: 92px !important;
  padding: 8px 0 !important;
}

.header__logo {
  width: 100%;
  height: auto !important;
  gap: clamp(14px, 2vw, 24px);
}

.logo-image {
  display: block;
  flex: 0 1 400px;
}

.header__logo img {
  width: min(100%, 400px) !important;
  aspect-ratio: 911 / 211;
  object-fit: contain;
}

.logo-subtitle {
  margin: 0 !important;
  font-size: clamp(18px, 2.2vw, 27px) !important;
  line-height: 1.15;
  white-space: nowrap;
}

.block-1 .row {
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: center;
  gap: clamp(36px, 6vw, 76px) !important;
}

.block-1 .block-text {
  width: auto !important;
  margin: 0 !important;
}

.benefit-box {
  max-width: 600px;
  margin: 0 !important;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(1, 0, 40, 0.82), rgba(5, 0, 107, 0.54));
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(5px);
}

.benefit-text,
.block-1 .form__text {
  font-size: clamp(18px, 2vw, 23px) !important;
  line-height: 1.55 !important;
}

.benefit-line {
  max-width: none !important;
  margin: 18px 0 !important;
}

.hero-offer-image-box {
  width: 100% !important;
  max-width: 450px !important;
  margin: 0 auto !important;
  gap: 18px !important;
}

.hero-offer-image-box img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 26px !important;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38), 0 0 28px rgba(0, 198, 255, 0.3) !important;
}

/* All order calls use one premium, touch-friendly system. */
.hero-offer-button,
.action-button,
.offer-btn,
.order-steps-button,
.bottom-order-form .button {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 30px !important;
  border: 1px solid rgba(255, 255, 255, 0.34) !important;
  border-radius: 999px !important;
  background: linear-gradient(100deg, var(--brand-blue), var(--bright-blue) 52%, var(--cyan)) !important;
  color: #ffffff !important;
  text-align: center;
  text-decoration: none !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  box-shadow: 0 12px 28px rgba(0, 60, 255, 0.34), inset 0 1px rgba(255, 255, 255, 0.24) !important;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease !important;
}

.hero-offer-button:hover,
.action-button:hover,
.offer-btn:hover,
.order-steps-button:hover,
.bottom-order-form .button:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.06);
  box-shadow: 0 16px 34px rgba(0, 60, 255, 0.42), inset 0 1px rgba(255, 255, 255, 0.28) !important;
}

.hero-offer-button:active,
.action-button:active,
.offer-btn:active,
.order-steps-button:active,
.bottom-order-form .button:active {
  transform: translateY(1px) !important;
}

.hero-offer-button {
  width: min(100%, 390px) !important;
  margin: 0 auto !important;
}

.hero-offer-button span {
  font-size: clamp(22px, 2.6vw, 31px) !important;
}

.hero-offer-button strong {
  font-size: clamp(16px, 1.7vw, 20px) !important;
}

/* Premium section separators */
.prostatitis-warning-headline,
.mid-health-headline {
  width: 100%;
  margin: 0 !important;
  padding: clamp(25px, 4.4vw, 50px) 20px !important;
  border-top: 1px solid rgba(0, 207, 255, 0.32);
  border-bottom: 1px solid rgba(0, 207, 255, 0.32);
  background: linear-gradient(180deg, #02003f, #04006f) !important;
  box-shadow: inset 0 12px 28px rgba(0, 0, 0, 0.2), inset 0 -12px 28px rgba(0, 0, 0, 0.2);
}

.prostatitis-warning-headline h2,
.mid-health-headline h2 {
  max-width: 1050px;
  margin: 0 auto;
  color: #00e1ff !important;
  font-size: clamp(25px, 4.4vw, 54px) !important;
  line-height: 1.08 !important;
  overflow-wrap: anywhere;
}

/* Shared headings and section rhythm */
.benefits-section,
.symptoms-section,
.action-section,
.prostalix-offer-section,
.reviews-section,
.order-steps-section {
  padding: var(--section-space) 20px !important;
}

.benefits-header,
.symptoms-header,
.reviews-header,
.order-steps-header {
  max-width: 920px;
  margin: 0 auto clamp(34px, 5vw, 58px) !important;
  padding: 0 !important;
}

.benefits-header h2,
.symptoms-header h2,
.reviews-header h2,
.order-steps-header h2 {
  margin: 12px auto 18px !important;
  font-size: clamp(34px, 5vw, 62px) !important;
  line-height: 1.08 !important;
  text-wrap: balance;
}

.benefits-header p,
.symptoms-header p,
.reviews-header p,
.order-steps-header p {
  max-width: 820px !important;
  margin: 0 auto !important;
  font-size: clamp(17px, 2vw, 23px) !important;
  line-height: 1.65 !important;
}

.benefits-label,
.symptoms-label,
.reviews-label,
.order-steps-header span {
  font-size: clamp(16px, 1.8vw, 22px) !important;
  letter-spacing: clamp(1.5px, 0.4vw, 4px) !important;
  line-height: 1.25 !important;
}

/* Benefit and symptom cards */
.benefits-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  max-width: 1080px;
  margin: 0 auto;
}

.benefit-card {
  min-height: 126px;
  padding: 24px 22px !important;
  border-radius: 20px !important;
  font-size: clamp(17px, 1.7vw, 20px) !important;
  line-height: 1.5 !important;
  text-align: left;
}

.symptoms-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  max-width: 1120px !important;
}

.symptom-card {
  min-height: 238px !important;
  padding: 24px 18px !important;
  border-radius: 22px !important;
}

.symptom-card img {
  width: 96px !important;
  height: 96px !important;
  margin: 0 auto 18px !important;
  object-fit: cover;
}

.symptom-card span {
  min-height: 0 !important;
  font-size: clamp(17px, 1.7vw, 22px) !important;
  line-height: 1.42 !important;
}

/* Action section */
.action-card {
  max-width: 1100px;
  gap: clamp(28px, 5vw, 58px) !important;
  padding: clamp(24px, 4vw, 42px) !important;
  border-radius: 30px !important;
}

.action-image img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 22px !important;
}

.action-content h2 {
  font-size: clamp(34px, 4.3vw, 50px) !important;
  text-wrap: balance;
}

.action-content p {
  font-size: clamp(17px, 1.8vw, 20px) !important;
}

.action-button {
  min-width: 235px;
  margin-top: 24px !important;
  font-size: clamp(19px, 2vw, 22px) !important;
}

/* Main offer */
.offer-container {
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr) !important;
  gap: clamp(38px, 6vw, 72px) !important;
}

.offer-image {
  max-width: 500px;
  margin-inline: auto;
}

.offer-image img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px !important;
}

.offer-content h2 {
  font-size: clamp(38px, 4.6vw, 56px) !important;
  text-wrap: balance;
}

.offer-text {
  font-size: clamp(17px, 1.7vw, 20px) !important;
  line-height: 1.7 !important;
}

.offer-benefit {
  margin-bottom: 12px !important;
  padding: 15px 18px !important;
  border-radius: 14px !important;
}

.offer-price-box {
  flex-wrap: wrap;
}

.new-price {
  font-size: clamp(40px, 4.3vw, 52px) !important;
}

.offer-btn {
  font-size: clamp(19px, 2vw, 22px) !important;
}

/* Reviews */
.reviews-grid {
  align-items: stretch;
  gap: 22px !important;
  max-width: 1180px !important;
}

.review-card {
  display: flex;
  flex-direction: column;
  padding: 30px 24px !important;
  border-radius: 24px !important;
}

.review-card h3 {
  font-size: clamp(22px, 2vw, 27px) !important;
  line-height: 1.3 !important;
}

.review-card p {
  font-size: clamp(16px, 1.5vw, 18px) !important;
  line-height: 1.7 !important;
}

.review-author {
  margin-top: auto !important;
}

.reviews-trust-row {
  max-width: 1120px !important;
  gap: 12px !important;
  padding: 20px !important;
  font-size: clamp(16px, 1.7vw, 19px) !important;
}

/* Ordering steps */
.order-steps-grid {
  gap: 22px !important;
  max-width: 1080px !important;
}

.order-step-card {
  min-height: 270px;
  padding: 38px 24px 30px !important;
  border-radius: 24px !important;
}

.order-step-card h3 {
  font-size: clamp(23px, 2.3vw, 28px) !important;
}

.order-step-card p {
  font-size: clamp(16px, 1.6vw, 18px) !important;
}

.order-steps-button {
  min-width: 290px;
  font-size: clamp(20px, 2.2vw, 24px) !important;
}

/* Final order area */
.block-8 {
  position: relative;
  padding: var(--section-space) 0 !important;
  background-position: center !important;
  overflow: hidden !important;
}

.block-8::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(1, 0, 40, 0.74), rgba(1, 0, 40, 0.24), rgba(1, 0, 40, 0.7));
}

.block-8 .container {
  position: relative;
}

.block8-background-media {
  position: absolute;
  inset: 8% 4% auto auto;
  z-index: -1;
  width: 52%;
  opacity: 0.2;
  pointer-events: none;
}

.block8-background-media img {
  display: block;
  width: 100%;
}

.block-8 .row {
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.64fr) minmax(340px, 0.88fr);
  align-items: center !important;
  gap: clamp(26px, 4vw, 50px) !important;
}

.block-8 .block-text,
.block-8 .block-img,
.block-8 .block-link {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

.block-8 .block-text {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(1, 0, 40, 0.5);
  box-shadow: var(--soft-shadow);
}

.block-8 .title {
  margin: 0 0 20px !important;
  text-align: left !important;
}

.main-title {
  margin: 0 !important;
  font-size: clamp(38px, 4.4vw, 58px) !important;
  line-height: 1.02 !important;
  text-wrap: balance;
}

.block-8 .form__text {
  margin: 0 0 14px !important;
  font-size: clamp(17px, 1.6vw, 20px) !important;
  line-height: 1.5 !important;
}

.block-8 .form__text:last-child {
  margin-bottom: 0 !important;
}

.block-8 .block-img {
  align-self: center !important;
}

.block-8 .block-img img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.bottom-order-form {
  padding: 24px 22px !important;
  border-radius: 26px !important;
  transform: none !important;
  box-shadow: 0 0 26px rgba(0, 198, 255, 0.4), 0 22px 52px rgba(0, 0, 0, 0.4) !important;
}

.bottom-order-form .discount-badge {
  margin-bottom: 15px !important;
  padding: 12px 14px !important;
}

.bottom-order-form .offer-discount {
  font-size: clamp(22px, 2.5vw, 28px) !important;
}

.bottom-order-form .form-product {
  margin-bottom: 6px !important;
}

.bottom-order-form .form-product img {
  width: 92px !important;
  aspect-ratio: 1;
  object-fit: contain;
  margin: 4px auto 8px !important;
}

.bottom-order-form .offer-title {
  margin: 0 0 7px !important;
  font-size: clamp(27px, 2.7vw, 33px) !important;
  line-height: 1.12 !important;
  text-align: center;
}

.bottom-order-form .offer-subtitle {
  margin: 0 auto 12px !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  text-align: center;
}

.bottom-order-form .trust-points {
  gap: 6px !important;
  margin-bottom: 10px;
  padding: 10px 12px !important;
  font-size: 14px !important;
}

.bottom-order-form .block-price {
  margin: 6px 0 12px !important;
}

.bottom-order-form .price-old {
  margin: 0 !important;
  font-size: 20px !important;
}

.bottom-order-form .price {
  margin: 0 !important;
  font-size: clamp(34px, 3.6vw, 42px) !important;
  line-height: 1.05 !important;
}

.bottom-order-form .form {
  gap: 11px !important;
}

.bottom-order-form .input-field {
  height: 54px !important;
  padding: 0 15px !important;
  border: 2px solid var(--brand-blue) !important;
  border-radius: 13px !important;
  background: #ffffff !important;
  box-shadow: inset 0 1px 3px rgba(5, 0, 107, 0.12);
  font-size: 16px !important;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.bottom-order-form .input-field:focus {
  border-color: var(--bright-blue) !important;
  box-shadow: 0 0 0 4px rgba(0, 60, 255, 0.14) !important;
}

.bottom-order-form .input-field.is-invalid {
  border-color: #d71920 !important;
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.12) !important;
}

.bottom-order-form .button {
  width: 100% !important;
  min-height: 58px !important;
  padding: 13px 18px !important;
  font-size: clamp(22px, 2.5vw, 28px) !important;
}

.bottom-order-form .button[disabled] {
  cursor: wait;
  filter: saturate(0.7);
  opacity: 0.86;
}

.form-message {
  min-height: 0;
  margin: 0;
  color: #b00020;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.form-message:not(:empty) {
  min-height: 38px;
  padding: 9px 11px;
  border: 1px solid rgba(176, 0, 32, 0.26);
  border-radius: 10px;
  background: rgba(255, 238, 241, 0.9);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.footer {
  padding: 25px 0 !important;
  border-top: 1px solid rgba(0, 207, 255, 0.24);
  background: #010022 !important;
}

.footer .pp {
  justify-content: center;
  text-align: center;
}

@supports (content-visibility: auto) {
  .symptoms-section,
  .action-section,
  .prostalix-offer-section,
  .reviews-section,
  .order-steps-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 760px;
  }
}

@media (max-width: 1000px) {
  .block-1 .row {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    gap: 30px !important;
  }

  .symptoms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .action-card,
  .offer-container {
    gap: 34px !important;
  }

  .block-8 .row {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  }

  .block-8 .block-img {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-space: 54px;
  }

  .container,
  [class*="__container"] {
    width: min(calc(100% - 24px), var(--content-width));
  }

  .block-1 {
    padding: 8px 0 52px !important;
  }

  .header {
    margin-bottom: 20px !important;
  }

  .header__container {
    width: min(calc(100% - 24px), var(--content-width));
    min-height: 90px !important;
  }

  .header__logo {
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    text-align: center;
  }

  .logo-image {
    flex: 0 1 auto;
    width: min(82vw, 330px);
  }

  .header__logo img {
    width: 100% !important;
  }

  .logo-subtitle {
    font-size: 17px !important;
    white-space: normal;
  }

  .block-1 .row {
    grid-template-columns: 1fr;
    gap: 28px !important;
  }

  .benefit-box {
    width: 100%;
    max-width: 600px;
    margin-inline: auto !important;
    padding: 19px 17px;
    border-radius: 20px;
    backdrop-filter: none;
  }

  .benefit-text,
  .block-1 .form__text {
    font-size: 17px !important;
  }

  .green-tick {
    font-size: 24px !important;
  }

  .hero-offer-image-box {
    max-width: min(94%, 430px) !important;
    margin: 0 auto !important;
  }

  .hero-offer-button {
    margin: 0 auto !important;
    min-height: 62px;
  }

  .prostatitis-warning-headline,
  .mid-health-headline {
    padding: 25px 14px !important;
  }

  .prostatitis-warning-headline h2,
  .mid-health-headline h2 {
    font-size: clamp(23px, 7.3vw, 32px) !important;
    transform: none !important;
    letter-spacing: -0.4px !important;
  }

  .benefits-section,
  .symptoms-section,
  .action-section,
  .prostalix-offer-section,
  .reviews-section,
  .order-steps-section {
    padding: var(--section-space) 12px !important;
  }

  .benefits-header,
  .symptoms-header,
  .reviews-header,
  .order-steps-header {
    margin-bottom: 34px !important;
  }

  .benefits-label,
  .symptoms-label,
  .reviews-label,
  .order-steps-header span {
    font-size: 16px !important;
    letter-spacing: 2px !important;
  }

  .benefits-header h2,
  .symptoms-header h2,
  .reviews-header h2,
  .order-steps-header h2 {
    font-size: clamp(32px, 9vw, 42px) !important;
  }

  .benefits-header p,
  .symptoms-header p,
  .reviews-header p,
  .order-steps-header p {
    font-size: 17px !important;
  }

  .benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 13px !important;
  }

  .benefit-card {
    min-height: 0;
    padding: 18px 17px !important;
    backdrop-filter: none;
  }

  .symptoms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .symptom-card {
    min-height: 210px !important;
    padding: 18px 10px !important;
  }

  .symptom-card img {
    width: 84px !important;
    height: 84px !important;
    margin-bottom: 14px !important;
  }

  .symptom-card span {
    font-size: 15px !important;
  }

  .action-card,
  .offer-container {
    grid-template-columns: 1fr !important;
  }

  .action-card {
    padding: 20px !important;
    border-radius: 24px !important;
  }

  .action-content {
    text-align: center;
  }

  .action-content h2 {
    font-size: 33px !important;
  }

  .action-button,
  .offer-btn,
  .order-steps-button {
    width: 100% !important;
    min-width: 0;
  }

  .offer-container {
    gap: 32px !important;
  }

  .offer-content h2 {
    font-size: 36px !important;
  }

  .offer-benefit {
    backdrop-filter: none;
  }

  .reviews-grid,
  .reviews-trust-row,
  .order-steps-grid {
    grid-template-columns: 1fr !important;
  }

  .review-card {
    padding: 27px 20px !important;
  }

  .reviews-trust-row {
    padding: 16px !important;
  }

  .order-step-card {
    min-height: 0;
  }

  .block-8 {
    padding: 56px 0 !important;
  }

  .block8-background-media {
    inset: 4% -10% auto auto;
    width: 92%;
    opacity: 0.14;
  }

  .block-8 .row {
    grid-template-columns: 1fr;
    gap: 24px !important;
  }

  .block-8 .block-text,
  .block-8 .block-img,
  .bottom-order-form {
    width: 100% !important;
    max-width: 560px !important;
    margin-inline: auto !important;
  }

  .block-8 .block-img {
    display: block;
    max-width: 390px !important;
  }

  .block-8 .block-text {
    padding: 20px 18px;
    text-align: center;
  }

  .block-8 .title,
  .block-8 .form__text {
    text-align: center !important;
  }

  .main-title {
    font-size: clamp(36px, 10vw, 48px) !important;
  }

  .bottom-order-form {
    margin-top: 0 !important;
    padding: 20px 16px !important;
  }

  .bottom-order-form .form-product img {
    width: 84px !important;
  }

  .bottom-order-form .input-field {
    height: 52px !important;
  }
}

/* Premium page-break bands */
.prostatitis-warning-headline,
.mid-health-headline {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(112px, 13vw, 168px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(30px, 4.6vw, 56px) 24px !important;
  border: 0 !important;
  background:
    linear-gradient(90deg, rgba(1, 0, 40, 0.92), rgba(4, 0, 111, 0.68) 50%, rgba(1, 0, 40, 0.92)),
    url("premium-medical-bg-desktop.webp") center / cover no-repeat !important;
  box-shadow:
    inset 0 20px 38px rgba(0, 0, 0, 0.34),
    inset 0 -20px 38px rgba(0, 0, 0, 0.34),
    0 16px 35px rgba(0, 0, 0, 0.18) !important;
}

.prostatitis-warning-headline::before,
.mid-health-headline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0, 207, 255, 0.13), transparent 48%),
    linear-gradient(90deg, transparent, rgba(0, 207, 255, 0.12), transparent);
  pointer-events: none;
}

.prostatitis-warning-headline::after,
.mid-health-headline::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--bright-blue), var(--cyan), var(--green), transparent) 1;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.prostatitis-warning-headline h2,
.mid-health-headline h2 {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: auto;
  max-width: min(900px, calc(100% - 120px));
  padding: 0 26px;
  text-align: center;
  text-wrap: balance;
}

.prostatitis-warning-headline h2::before,
.prostatitis-warning-headline h2::after,
.mid-health-headline h2::before,
.mid-health-headline h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(36px, 8vw, 118px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan));
  box-shadow: 0 0 14px rgba(0, 207, 255, 0.5);
}

.prostatitis-warning-headline h2::before,
.mid-health-headline h2::before {
  right: 100%;
}

.prostatitis-warning-headline h2::after,
.mid-health-headline h2::after {
  left: 100%;
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .prostatitis-warning-headline,
  .mid-health-headline {
    min-height: 96px;
    padding: 24px 12px !important;
    background:
      linear-gradient(90deg, rgba(1, 0, 40, 0.9), rgba(4, 0, 111, 0.66), rgba(1, 0, 40, 0.9)),
      url("premium-medical-bg-mobile.webp") center / cover no-repeat !important;
  }

  .prostatitis-warning-headline h2,
  .mid-health-headline h2 {
    max-width: calc(100% - 48px);
    padding: 0 7px;
  }

  .prostatitis-warning-headline h2::before,
  .prostatitis-warning-headline h2::after,
  .mid-health-headline h2::before,
  .mid-health-headline h2::after {
    width: 24px;
    height: 2px;
  }
}

@media (max-width: 380px) {
  .symptoms-grid {
    grid-template-columns: 1fr !important;
  }

  .symptom-card {
    min-height: 0 !important;
  }

  .hero-offer-button,
  .action-button,
  .offer-btn,
  .order-steps-button,
  .bottom-order-form .button {
    padding-inline: 16px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ===== PREMIUM VISUAL PASS V3 ===== */
h1,
h2,
h3,
.main-title,
.offer-title {
  font-family: Arial, Inter, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.heading-accent {
  color: var(--cyan);
  background: linear-gradient(105deg, #ffffff 0%, #5eeaff 38%, #00d66b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none !important;
}

.block-1,
.block-8 {
  background:
    linear-gradient(110deg, rgba(1, 0, 40, 0.72), rgba(2, 0, 63, 0.5) 52%, rgba(1, 0, 34, 0.72)),
    url("premium-medical-bg-desktop.webp") center / cover no-repeat !important;
}

.action-section,
.prostalix-offer-section {
  background:
    linear-gradient(180deg, rgba(1, 0, 40, 0.9), rgba(4, 0, 95, 0.82)),
    url("premium-medical-bg-desktop.webp") center / cover no-repeat !important;
}

.benefits-section,
.reviews-section {
  background:
    linear-gradient(155deg, rgba(2, 0, 63, 0.9), rgba(1, 0, 40, 0.84)),
    url("premium-medical-bg-desktop.webp") center / cover no-repeat !important;
}

.benefits-label,
.symptoms-label,
.reviews-label,
.order-steps-header > span,
.action-label {
  color: #64ebff !important;
  font-family: "Arial Black", Inter, sans-serif !important;
  font-style: italic;
  font-weight: 900 !important;
  letter-spacing: clamp(1.5px, 0.4vw, 4px) !important;
}

.benefits-header h2::after,
.symptoms-header h2::after,
.reviews-header h2::after,
.order-steps-header h2::after {
  content: "";
  display: block;
  width: 82px;
  height: 4px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bright-blue), var(--cyan), var(--green));
  box-shadow: 0 0 16px rgba(0, 207, 255, 0.48);
}

.prostatitis-warning-headline h2,
.mid-health-headline h2 {
  background: linear-gradient(100deg, #ffffff 0%, #56e9ff 50%, #00d66b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Arial Black", Inter, sans-serif;
  font-style: italic;
  letter-spacing: -0.035em !important;
  text-shadow: none !important;
}

.benefit-card:nth-child(3n + 1)::before {
  color: #5fe7ff;
}

.benefit-card:nth-child(3n + 2)::before {
  color: #00ff88;
}

.benefit-card:nth-child(3n)::before {
  color: #ffffff;
}

.symptom-card span {
  color: #effcff;
}

.symptom-card:nth-child(even) span {
  color: #a9f3ff;
}

.offer-tag {
  font-family: "Arial Black", Inter, sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

.review-author strong,
.order-step-card h3 {
  color: #69edff !important;
  font-family: "Arial Black", Inter, sans-serif;
  letter-spacing: -0.02em;
}

.step-number {
  box-shadow: 0 0 0 5px rgba(0, 207, 255, 0.12), 0 8px 20px rgba(0, 0, 0, 0.26);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 86px) 0 30px !important;
  border-top: 1px solid rgba(0, 207, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(2, 0, 63, 0.82), rgba(1, 0, 34, 0.92) 62%, rgba(0, 0, 24, 0.96)),
    url("premium-medical-bg-desktop.webp") center bottom / cover no-repeat !important;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--bright-blue), var(--cyan), var(--green), transparent);
  box-shadow: 0 0 24px rgba(0, 207, 255, 0.58);
}

.footer::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(0, 207, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(0, 207, 255, 0.025), 0 0 0 92px rgba(0, 60, 255, 0.025);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(30px, 5vw, 66px);
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(0, 207, 255, 0.28);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(5, 0, 107, 0.76), rgba(1, 0, 34, 0.84));
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.08);
}

.footer-brand {
  text-align: left;
}

.footer-logo {
  display: block;
  width: min(100%, 310px);
  margin-bottom: 15px;
}

.footer-logo img {
  display: block;
  width: 100%;
  aspect-ratio: 911 / 211;
  object-fit: contain;
}

.footer-kicker {
  margin: 0 0 10px;
  color: #59eaff;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(17px, 1.8vw, 21px);
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-message {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 700;
  line-height: 1.55;
}

.footer-content {
  min-width: 0;
}

.footer-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.footer-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 132px;
  padding: 18px 15px;
  border: 1px solid rgba(0, 207, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.footer-trust-icon {
  display: inline-flex;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(145deg, #00a651, var(--green));
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 0 16px rgba(0, 214, 107, 0.34);
}

.footer-trust-card strong,
.footer-trust-card small {
  display: block;
}

.footer-trust-card strong {
  margin-bottom: 7px;
  color: #ffffff;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: 15px;
  line-height: 1.22;
}

.footer-trust-card small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.45;
}

.footer-order-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 64px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: linear-gradient(100deg, var(--brand-blue), var(--bright-blue) 52%, var(--cyan));
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 14px 32px rgba(0, 60, 255, 0.34), inset 0 1px rgba(255, 255, 255, 0.24);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.footer-order-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 18px 38px rgba(0, 60, 255, 0.42), inset 0 1px rgba(255, 255, 255, 0.26);
}

.footer-order-button span {
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.15;
}

.footer-order-button strong {
  flex: 0 0 auto;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(0, 214, 107, 0.18);
  color: #8affbf;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
  padding: 20px 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.footer-bottom span:last-child {
  color: #73edff;
  font-weight: 800;
}

@media (max-width: 1000px) {
  .footer-panel {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .block-1,
  .block-8,
  .action-section,
  .prostalix-offer-section,
  .benefits-section,
  .reviews-section,
  .footer {
    background:
      linear-gradient(180deg, rgba(1, 0, 40, 0.82), rgba(2, 0, 63, 0.76)),
      url("premium-medical-bg-mobile.webp") center / cover no-repeat !important;
  }

  .footer {
    padding: 52px 0 calc(26px + env(safe-area-inset-bottom)) !important;
  }

  .footer-panel {
    gap: 28px;
    padding: 26px 16px;
    border-radius: 25px;
  }

  .footer-logo {
    width: min(78vw, 300px);
  }

  .footer-kicker {
    font-size: 16px;
    letter-spacing: 0.06em;
  }

  .footer-trust-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-trust-card {
    min-height: 0;
    align-items: center;
    padding: 15px 14px;
    border-radius: 16px;
  }

  .footer-trust-card strong {
    font-size: 15px;
  }

  .footer-order-button {
    flex-direction: column;
    min-height: 76px;
    padding: 15px 18px;
    border-radius: 24px;
    text-align: center;
  }

  .footer-order-button span {
    font-size: 22px;
  }

  .footer-order-button strong {
    padding: 6px 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
    margin-top: 22px;
    padding-top: 18px;
    text-align: center;
  }
}

/* ===== PREMIUM SECTION ART V4 ===== */
/* Calm, original artwork replaces the former repeating diagonal stripes. */
.benefits-section,
.symptoms-section,
.action-section,
.prostalix-offer-section,
.reviews-section,
.order-steps-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-block: 1px solid rgba(92, 230, 255, 0.12);
  background-color: #02002f !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    inset 0 34px 58px rgba(0, 0, 24, 0.2),
    inset 0 -34px 58px rgba(0, 0, 24, 0.22) !important;
}

.benefits-section,
.action-section,
.reviews-section {
  background:
    linear-gradient(135deg, rgba(1, 0, 35, 0.72), rgba(3, 0, 78, 0.44) 52%, rgba(0, 18, 45, 0.68)),
    url("premium-section-texture.webp") center / cover no-repeat !important;
}

.symptoms-section,
.prostalix-offer-section,
.order-steps-section {
  background:
    linear-gradient(225deg, rgba(1, 0, 35, 0.76), rgba(3, 0, 78, 0.5) 52%, rgba(0, 22, 48, 0.68)),
    url("premium-section-texture.webp") 72% center / cover no-repeat !important;
}

.benefits-section::before,
.symptoms-section::before,
.action-section::before,
.prostalix-offer-section::before,
.reviews-section::before,
.order-steps-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(0, 225, 255, 0.09), transparent 27%),
    radial-gradient(circle at 90% 84%, rgba(0, 214, 107, 0.07), transparent 29%) !important;
  opacity: 1 !important;
  pointer-events: none;
}

.benefits-section::after,
.symptoms-section::after,
.action-section::after,
.prostalix-offer-section::after,
.reviews-section::after,
.order-steps-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(90deg, transparent, rgba(99, 234, 255, 0.075) 50%, transparent) top / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(0, 214, 107, 0.06) 50%, transparent) bottom / 100% 1px no-repeat !important;
  opacity: 1;
  pointer-events: none;
}

.benefits-section > .container,
.symptoms-section > .container,
.action-section > .container,
.prostalix-offer-section > .container,
.reviews-section > .container,
.order-steps-section > .container {
  position: relative;
  z-index: 2;
}

/* Refined glass surfaces keep long sections visually structured. */
.benefit-card,
.symptom-card,
.review-card,
.order-step-card {
  border: 1px solid rgba(105, 231, 255, 0.27) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(7, 4, 78, 0.52) 58%, rgba(0, 23, 50, 0.42)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 44px rgba(0, 0, 24, 0.3) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.benefit-card:hover,
.symptom-card:hover,
.review-card:hover,
.order-step-card:hover {
  border-color: rgba(105, 237, 255, 0.48) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 22px 52px rgba(0, 0, 24, 0.38),
    0 0 26px rgba(0, 207, 255, 0.1) !important;
  transform: translateY(-3px);
}

.action-card,
.offer-container,
.reviews-trust-row {
  border: 1px solid rgba(99, 233, 255, 0.28) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(2, 0, 54, 0.63) 52%, rgba(0, 29, 54, 0.45)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 70px rgba(0, 0, 24, 0.38) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.offer-container {
  padding: clamp(26px, 4vw, 48px) !important;
  border-radius: 32px !important;
}

/* Premium chapter bands: light sweeps, never repetitive stripes. */
.prostatitis-warning-headline,
.mid-health-headline {
  background:
    linear-gradient(90deg, rgba(0, 0, 27, 0.93), rgba(3, 0, 74, 0.7) 50%, rgba(0, 0, 27, 0.93)),
    url("premium-section-texture.webp") center / cover no-repeat !important;
}

.prostatitis-warning-headline::before,
.mid-health-headline::before {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0, 207, 255, 0.13), transparent 48%),
    linear-gradient(90deg, transparent 8%, rgba(92, 234, 255, 0.11) 50%, transparent 92%) !important;
}

.prostatitis-warning-headline h2,
.mid-health-headline h2 {
  padding: 10px clamp(18px, 3vw, 34px) !important;
  border-radius: 18px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 20, 0.32));
}

@media (max-width: 768px) {
  .benefits-section,
  .symptoms-section,
  .action-section,
  .prostalix-offer-section,
  .reviews-section,
  .order-steps-section {
    background:
      linear-gradient(180deg, rgba(1, 0, 40, 0.78), rgba(2, 0, 63, 0.7) 52%, rgba(0, 16, 41, 0.78)),
      url("premium-medical-bg-mobile.webp") center / cover no-repeat !important;
    border-block-color: rgba(92, 230, 255, 0.1);
  }

  .benefit-card,
  .symptom-card,
  .review-card,
  .order-step-card {
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
  }

  .action-card,
  .offer-container,
  .reviews-trust-row {
    border-radius: 24px !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .offer-container {
    padding: 22px 16px !important;
  }

  .prostatitis-warning-headline,
  .mid-health-headline {
    background:
      linear-gradient(90deg, rgba(0, 0, 31, 0.88), rgba(3, 0, 74, 0.7), rgba(0, 0, 31, 0.88)),
      url("premium-section-texture.webp") 62% center / auto 100% no-repeat !important;
  }

  .prostatitis-warning-headline h2,
  .mid-health-headline h2 {
    max-width: calc(100% - 28px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-card:hover,
  .symptom-card:hover,
  .review-card:hover,
  .order-step-card:hover {
    transform: none;
  }
}
