/* =====================================================
   Uroprostan — premium prostate-support landing
   Palette: deep purple + silver + warm gold
   Mobile-first. Breakpoints: 470 / 720 / 1024
   ===================================================== */

/* ---------- Design tokens ---------- */
:root {
  --purple-900: #160a33;
  --purple-800: #231150;
  --purple-700: #3a1f6b;
  --purple-600: #5b2e8c;
  --purple-500: #7a4fc0;
  --purple-300: #b89ce0;
  --purple-100: #ede7f8;

  --gold:       #c9a24b;
  --gold-light: #e3c478;
  --gold-dark:  #a07f30;

  --ink:    #1b1726;
  --muted:  #6c6580;
  --silver: #e9e7f1;
  --line:   #e4e0ee;

  --bg:      #ffffff;
  --bg-soft: #f6f4fb;
  --bg-dark: #190d39;

  --radius-s: 14px;
  --radius-m: 20px;
  --radius-l: 28px;

  --shadow-s: 0 6px 20px rgba(36, 17, 80, 0.08);
  --shadow-m: 0 18px 50px rgba(36, 17, 80, 0.14);
  --shadow-g: 0 14px 34px rgba(201, 162, 75, 0.36);

  --maxw: 1180px;
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.section { position: relative; padding: 74px 0; }

.section--soft { background: var(--bg-soft); }

.section--dark {
  background: var(--bg-dark);
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section--dark .eyebrow { color: var(--gold-light); }

.h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(27px, 5.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.lead {
  font-size: clamp(16px, 2.4vw, 19px);
  color: var(--muted);
  max-width: 640px;
  margin-top: 16px;
}

.section--dark .lead { color: rgba(255, 255, 255, 0.7); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  line-height: 1;
  padding: 19px 30px;
  border-radius: 60px;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #2c2008;
  box-shadow: var(--shadow-g);
}

.btn--gold:hover { transform: translateY(-3px); filter: brightness(1.05); }

.btn--block { width: 100%; }

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); }

/* ---------- Badges & pills ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #57e08a;
  box-shadow: 0 0 0 4px rgba(87, 224, 138, 0.22);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(87, 224, 138, 0.22); }
  50%      { box-shadow: 0 0 0 9px rgba(87, 224, 138, 0); }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  color: #fff;
  background: var(--bg-dark);
  overflow: hidden;
  padding: 38px 0 70px;
}

.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.92;
  z-index: 0;
}

.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 80% 8%, rgba(122, 79, 192, 0.35), transparent 60%),
    linear-gradient(180deg, rgba(21, 10, 50, 0.35), rgba(21, 10, 50, 0.82));
  z-index: 1;
}

.hero .container { position: relative; z-index: 2; }

.hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 44px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
}

.brand__mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  display: grid; place-items: center;
  font-size: 17px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "head"
    "copy"
    "stage"
    "form";
  gap: 30px;
  align-items: start;
}

.hero__head  { grid-area: head; }
.hero__copy  { grid-area: copy; }
.hero__form  { grid-area: form; }
.hero__stage { grid-area: stage; }

/* allow grid tracks to shrink below content min-width (prevents mobile overflow) */
.hero__head,
.hero__copy,
.hero__form,
.hero__stage { min-width: 0; }

.hero__head { max-width: 1000px; }

.hero__h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero__h1 .accent {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  font-size: clamp(16px, 2.6vw, 19px);
  color: rgba(255, 255, 255, 0.78);
  margin-top: 18px;
  max-width: 540px;
}

.hero__bullets {
  list-style: none;
  margin: 26px 0 4px;
  display: grid;
  gap: 13px;
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
}

.tick {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #2c2008;
}

.tick svg { width: 14px; height: 14px; }

/* hero product stage — designed centerpiece */
.hero__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  isolation: isolate;
}

/* concentric formula rings — echoes the packaging motif */
.hero__rings {
  position: absolute;
  z-index: 0;
  width: min(116%, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(255, 255, 255, 0.085) 0 1.5px, transparent 1.5px 27px);
  -webkit-mask: radial-gradient(circle, #000 36%, rgba(0,0,0,0.5) 60%, transparent 74%);
          mask: radial-gradient(circle, #000 36%, rgba(0,0,0,0.5) 60%, transparent 74%);
  animation: spin 90s linear infinite;
}

.hero__rings::after {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.45);
  box-shadow: 0 0 60px rgba(201, 162, 75, 0.12) inset;
}

@keyframes spin { to { transform: rotate(360deg); } }

.hero__glow {
  position: absolute;
  z-index: 0;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(201, 162, 75, 0.42), transparent 60%),
    radial-gradient(circle at 50% 60%, rgba(122, 79, 192, 0.5), transparent 66%);
  filter: blur(10px);
}

.hero__product {
  position: relative;
  z-index: 2;
  width: min(90%, 430px);
  filter: drop-shadow(0 46px 54px rgba(0, 0, 0, 0.55));
  animation: float 6s ease-in-out infinite;
}

/* soft pedestal under the pack */
.hero__pedestal {
  position: absolute;
  z-index: 1;
  bottom: 9%;
  width: 62%;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.45), transparent 70%);
  filter: blur(7px);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ingredient photo-chips floating around the product */
.ing-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px 8px 8px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(20, 8, 45, 0.32);
  backdrop-filter: blur(4px);
  animation: float 7s ease-in-out infinite;
}

.ing-chip img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.ing-chip figcaption {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  white-space: nowrap;
  padding-right: 3px;
}

.ing-chip--1 { top: 8%;  left: -4%;  animation-delay: .2s; }
.ing-chip--2 { top: 40%; right: -6%; animation-delay: 1.1s; }
.ing-chip--3 { bottom: 14%; left: 2%; animation-delay: 1.9s; }

/* floating "100% natural" seal */
.hero__seal {
  position: absolute;
  z-index: 3;
  top: 2%;
  right: 0;
  width: 96px; height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #2c2008;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 34px rgba(201, 162, 75, 0.4);
  animation: float 8s ease-in-out infinite;
}

.hero__seal b { font-size: 22px; display: block; }

/* rating row under the copy */
.hero__rating {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  flex-wrap: nowrap;
}

.hero__rating .stars { display: flex; gap: 2px; color: var(--gold-light); flex: 0 0 auto; }

.hero__rating .stars svg { width: 17px; height: 17px; }

.hero__rating span { font-size: 14px; color: rgba(255, 255, 255, 0.78); white-space: nowrap; }

.hero__rating b { color: #fff; font-family: var(--font-head); }

/* ---------- Order form card ---------- */
.order-card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  border-radius: var(--radius-l);
  padding: 26px 22px 24px;
  box-shadow: var(--shadow-m);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.order-card__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.order-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.2;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 14px 0 6px;
}

.price__new {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 38px;
  color: var(--purple-700);
  line-height: 1;
}

.price__old {
  font-size: 19px;
  color: var(--muted);
  text-decoration: line-through;
}

.price__save {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #e0573f, #c33);
  padding: 5px 10px;
  border-radius: 30px;
}

.stock {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 4px 0 18px;
  font-size: 13.5px;
  color: var(--muted);
}

.stock__bar {
  flex: 1;
  height: 7px;
  border-radius: 6px;
  background: var(--silver);
  overflow: hidden;
}

.stock__fill {
  display: block;
  height: 100%;
  width: 22%;
  border-radius: 6px;
  background: linear-gradient(90deg, #e0573f, #c9a24b);
}

.stock b { color: var(--ink); }

.field { margin-bottom: 12px; }

.field input {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  padding: 16px 17px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  background: #fbfaff;
  transition: border-color .2s, box-shadow .2s;
}

.field input:focus {
  outline: none;
  border-color: var(--purple-500);
  box-shadow: 0 0 0 4px rgba(122, 79, 192, 0.13);
}

.field input.invalid {
  border-color: #e0573f;
  box-shadow: 0 0 0 4px rgba(224, 87, 63, 0.12);
}

.field__error {
  display: none;
  color: #d33;
  font-size: 12.5px;
  margin-top: 5px;
  padding-left: 4px;
}

.field.has-error .field__error { display: block; }

.form-note {
  margin-top: 14px;
  display: grid;
  gap: 7px;
}

.form-note span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.form-note svg { width: 15px; height: 15px; flex: 0 0 auto; color: var(--purple-500); }

.form-secure {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.form-secure svg { width: 15px; height: 15px; flex: 0 0 auto; color: #2bb56a; margin-top: 1px; }

.form-success {
  display: none;
  text-align: center;
  padding: 22px 6px;
}

.form-success.show { display: block; }

.form-success__icon {
  width: 60px; height: 60px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #57e08a, #2bb56a);
  display: grid; place-items: center;
  color: #fff;
}

.form-success__icon svg { width: 30px; height: 30px; }

.form-success h4 { font-family: var(--font-head); font-size: 21px; margin-bottom: 6px; }

.form-success p { color: var(--muted); font-size: 15px; }

/* =====================================================
   PAIN / symptom checklist
   ===================================================== */
.pain__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 34px;
}

.pain-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: transform .25s, box-shadow .25s;
}

.pain-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); }

.pain-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.pain-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.pain-card:hover .pain-card__media img { transform: scale(1.05); }

.pain-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,10,51,0) 50%, rgba(22,10,51,0.35) 100%);
}

.pain-card__tag {
  position: absolute;
  left: 12px; bottom: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(22, 10, 51, 0.5);
  backdrop-filter: blur(4px);
  padding: 6px 11px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.pain-card__body { padding: 18px 19px 20px; }

.pain-card h4 { font-family: var(--font-head); font-size: 18px; margin-bottom: 6px; }

.pain-card p { font-size: 14.5px; color: var(--muted); line-height: 1.5; }

/* =====================================================
   CONSEQUENCES (fear of delay) — dark, escalating
   ===================================================== */
.consequence { position: relative; overflow: hidden; }

.consequence__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: 0;
}

.consequence__veil {
  position: absolute; inset: 0;
  z-index: 0;
  background: linear-gradient(110deg, rgba(21,10,50,0.94) 28%, rgba(21,10,50,0.5) 100%);
}

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

.escalate {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 36px;
  border-left: 2px solid rgba(255, 255, 255, 0.16);
  padding-left: 26px;
}

.escalate__step {
  position: relative;
  padding: 16px 0 26px;
}

.escalate__step::before {
  content: "";
  position: absolute;
  left: -34px; top: 22px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--purple-900);
  border: 3px solid var(--gold);
}

.escalate__step .when {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 5px;
}

.escalate__step p { color: rgba(255, 255, 255, 0.82); font-size: 16px; }

.consequence-cta {
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-m);
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* =====================================================
   SOLUTION reveal
   ===================================================== */
.solution__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.solution__grid > *,
.expert__grid > *,
.final__grid > * { min-width: 0; }

.solution__media {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: var(--radius-l);
  padding: 30px;
}

.solution__media img { width: min(80%, 340px); }

.feature-row {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature__ic {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
  color: #fff;
  display: grid; place-items: center;
}

.feature__ic svg { width: 22px; height: 22px; }

.feature__num {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.feature h4 { font-family: var(--font-head); font-size: 17px; margin-bottom: 3px; }

.feature p { color: var(--muted); font-size: 14.5px; }

/* =====================================================
   COMPOSITION cards (01..05)
   ===================================================== */
.comp__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 36px;
}

.comp-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 26px 22px 22px;
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: transform .28s, box-shadow .28s;
}

.comp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); }

.comp-card__num {
  position: absolute;
  top: 8px; right: 14px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 74px;
  line-height: 1;
  color: var(--purple-100);
  z-index: 0;
  user-select: none;
}

.comp-card__media {
  position: relative;
  z-index: 1;
  width: 84px; height: 84px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow-s);
}

.comp-card__media img { width: 100%; height: 100%; object-fit: cover; }

.comp-card h4 {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 19px;
  margin-bottom: 7px;
}

.comp-card p {
  position: relative;
  z-index: 1;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

.comp__note {
  margin-top: 26px;
  text-align: center;
  font-size: 15.5px;
  color: var(--muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================
   ADVANTAGES
   ===================================================== */
.adv__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 34px;
}

/* let card grids shrink below content min-width on small screens */
.adv__grid > *,
.comp__grid > *,
.reviews__grid > *,
.pain__grid > *,
.steps__grid > *,
.feature-row > * { min-width: 0; }

.adv-list li b { overflow-wrap: anywhere; }

.adv-card {
  background: linear-gradient(158deg, var(--purple-800), var(--purple-700));
  color: #fff;
  border-radius: var(--radius-l);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(20, 8, 45, 0.4);
  transition: transform .3s ease, box-shadow .3s ease;
}

.adv-card:hover { transform: translateY(-6px); box-shadow: 0 32px 72px rgba(20, 8, 45, 0.52); }

.adv-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
}

.adv-card::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 75, 0.35), transparent 70%);
}

.adv-card__ic {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(227, 196, 120, 0.3), rgba(201, 162, 75, 0.1));
  border: 1px solid rgba(227, 196, 120, 0.4);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--gold-light);
}

.adv-card__ic svg { width: 28px; height: 28px; stroke: var(--gold-light); }

.adv-card h4 { font-family: var(--font-head); font-size: 21px; margin-bottom: 12px; letter-spacing: -0.01em; }

.adv-card > p {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.adv-card ul { list-style: none; display: grid; gap: 9px; }

.adv-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.86);
}

.adv-card li svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 3px; color: var(--gold-light); }

/* accent bullet list (no icons) */
.adv-list { list-style: none; display: grid; gap: 15px; }

.adv-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
}

.adv-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.18);
}

.adv-list li b {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 15.5px;
  margin-bottom: 2px;
  font-family: var(--font-head);
}

/* =====================================================
   EXPERT
   ===================================================== */
.expert__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.expert__photo {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-m);
}

.expert__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.expert__tag {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(25, 13, 57, 0.86);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
}

.expert__tag strong { font-family: var(--font-head); display: block; font-size: 16px; }

.expert__tag span { font-size: 13px; color: rgba(255, 255, 255, 0.7); }

.expert__quote {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(19px, 3vw, 25px);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.expert__quote::before {
  content: "“";
  display: block;
  font-size: 70px;
  line-height: 0.4;
  color: var(--gold);
  margin-bottom: 18px;
  font-family: Georgia, serif;
}

.expert__body { margin-top: 18px; color: var(--muted); font-size: 16px; }

.expert__body p + p { margin-top: 12px; }

/* =====================================================
   REVIEWS
   ===================================================== */
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 36px;
}

.review {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  display: flex;
  flex-direction: column;
}

.review__photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.review__body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }

.review__stars { display: flex; gap: 3px; color: var(--gold); }

.review__stars svg { width: 17px; height: 17px; }

.review__text { font-size: 15px; line-height: 1.55; flex: 1; }

.review__author {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.review__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
}

.review__author b { display: block; font-size: 15px; }

.review__author span { font-size: 13px; color: var(--muted); }

/* =====================================================
   STEPS (how to order) + trust
   ===================================================== */
.steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 36px;
}

.step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-m);
  padding: 26px 22px;
  position: relative;
}

.step__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #2c2008;
  margin-bottom: 16px;
}

.step h4 { font-family: var(--font-head); font-size: 18px; margin-bottom: 7px; }

.step p { color: rgba(255, 255, 255, 0.72); font-size: 15px; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 11px 16px;
  border-radius: 40px;
}

.trust-chip svg { width: 18px; height: 18px; color: var(--gold-light); }

/* =====================================================
   FAQ
   ===================================================== */
.faq__list { margin-top: 34px; display: grid; gap: 12px; max-width: 820px; }

.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-s);
}

.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink);
}

.faq-item__q .chev {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  transition: transform .3s;
  color: var(--purple-600);
}

.faq-item.open .faq-item__q .chev { transform: rotate(180deg); }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-item__a p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* =====================================================
   FINAL CTA
   ===================================================== */
.final {
  position: relative;
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
}

.final__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: 0;
}

.final__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(21, 10, 50, 0.7), rgba(21, 10, 50, 0.92));
  z-index: 1;
}

.final .container { position: relative; z-index: 2; }

.final__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.final__h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.final__list { list-style: none; margin-top: 22px; display: grid; gap: 12px; }

.final__list li { display: flex; align-items: center; gap: 11px; font-size: 16px; color: rgba(255, 255, 255, 0.82); }

.final__list .tick { width: 24px; height: 24px; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: #120829;
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0 46px;
  font-size: 13.5px;
  line-height: 1.7;
}

.footer .brand { color: #fff; margin-bottom: 16px; }

.footer__disclaimer { max-width: 880px; }

.footer__legal {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.42);
}

/* =====================================================
   Scroll reveal
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

.reveal.in { opacity: 1; transform: none; }

.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__product { animation: none; }
}

/* =====================================================
   RESPONSIVE — tablet & up
   ===================================================== */
@media (min-width: 720px) {
  .section { padding: 90px 0; }

  .pain__grid { grid-template-columns: repeat(2, 1fr); }
  .comp__grid { grid-template-columns: repeat(2, 1fr); }
  .adv__grid  { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid { grid-template-columns: repeat(3, 1fr); }
  .feature-row { grid-template-columns: repeat(2, 1fr); }

  /* tablet: headline spans the top, copy + product side by side, form below */
  .hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
    grid-template-areas:
      "head   head"
      "copy   stage"
      "form   form";
    gap: 22px 40px;
    align-items: center;
  }

  .hero__stage { align-self: center; min-height: 440px; }

  .solution__grid { grid-template-columns: 1fr 1.1fr; }
  .expert__grid   { grid-template-columns: 0.85fr 1.15fr; }
  .final__grid    { grid-template-columns: 1.1fr 0.9fr; }
}

@media (min-width: 1024px) {
  .hero { padding: 44px 0 90px; }

  /* desktop: headline stretches over the whole hero, then copy | product | form */
  .hero__grid {
    grid-template-columns: 0.92fr 1.04fr 0.84fr;
    grid-template-areas:
      "head head head"
      "copy stage form";
    gap: 18px 40px;
    align-items: center;
  }

  .hero__head .hero__h1 { font-size: clamp(40px, 4.2vw, 56px); }
  .hero__head .hero__sub { max-width: 760px; font-size: 19px; }

  .hero__form  { align-self: center; }
  .hero__stage { align-self: stretch; min-height: 520px; }

  .comp__grid { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
  .pain__grid { grid-template-columns: repeat(4, 1fr); }
}

/* =====================================================
   RESPONSIVE — small phones (< 470px)
   ===================================================== */
@media (max-width: 469px) {
  body { font-size: 16px; }

  .container { padding: 0 16px; }

  .section { padding: 54px 0; }

  .hero { padding: 26px 0 54px; }

  .hero__top { margin-bottom: 30px; flex-wrap: wrap; gap: 12px; }

  .brand { font-size: 18px; }

  /* rating wraps on small phones instead of overflowing */
  .hero__rating { flex-wrap: wrap; gap: 9px 11px; }
  .hero__rating span { white-space: normal; }

  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "copy"
      "stage"
      "form";
    gap: 22px;
  }
  .adv-list li{
    flex-direction: column;
    gap: 0;
  }
  .solution__grid,
  .expert__grid,
  .final__grid { grid-template-columns: 1fr; gap: 28px; }

  /* single column everywhere */
  .pain__grid,
  .comp__grid,
  .adv__grid,
  .reviews__grid,
  .steps__grid,
  .feature-row { grid-template-columns: 1fr; }

  .order-card { padding: 22px 17px; }

  .order-card__head { flex-direction: column; align-items: flex-start; gap: 8px; }

  .price__new { font-size: 33px; }

  .btn { width: 100%; font-size: 16px; padding: 18px 20px; white-space:wrap; }

  .hero__product { width: 74%; }

  .comp-card__num { font-size: 60px; }

  .expert__quote::before { font-size: 54px; }

  .consequence-cta { flex-direction: column; align-items: stretch; text-align: center; }

  .trust-row { gap: 9px; }

  .trust-chip { font-size: 13px; padding: 10px 13px; }

  /* compact product stage on small screens */
  .hero__stage { min-height: 360px; margin: 4px 0; }
  .hero__product { width: 70%; }
  .hero__rings { width: 104%; }
  .ing-chip { padding: 6px 11px 6px 6px; }
  .ing-chip img { width: 36px; height: 36px; }
  .ing-chip figcaption { font-size: 12px; }
  .ing-chip--1 { top: 4%; left: -2%; }
  .ing-chip--2 { top: 42%; right: -2%; }
  .ing-chip--3 { bottom: 8%; left: 0; }
  .hero__seal { width: 78px; height: 78px; font-size: 10.5px; top: 0; }
  .hero__seal b { font-size: 18px; }
}


.cpu{
padding: 10px 0;
text-align: center;
}
.cpu img{
display:block;
margin: 0 auto;
width: auto;
}
.cpu a{
display: inline-block;
margin: 5px;
color: #969595;
font-size: 14px;
}
