:root {
  --bg-main: #1a1a1a;
  --bg-deep: #0f0f0f;
  --bg-surface: rgba(24, 20, 12, 0.82);
  --gold-rich: #c9a84c;
  --gold-bright: #ffd700;
  --gold-warm: #b8860b;
  --gold-deep: #8b6914;
  --text-main: #f1dfaa;
  --text-soft: #d8c084;
  --text-muted: rgba(241, 223, 170, 0.72);
  --border-soft: rgba(201, 168, 76, 0.22);
  --shadow-heavy: 0 32px 80px rgba(0, 0, 0, 0.45);
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top, rgba(255, 215, 0, 0.12), transparent 28%),
    radial-gradient(circle at 18% 18%, rgba(184, 134, 11, 0.28), transparent 24%),
    radial-gradient(circle at 85% 22%, rgba(201, 168, 76, 0.2), transparent 22%),
    linear-gradient(135deg, #090909 0%, var(--bg-main) 42%, #120f09 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 215, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

.page-shell {
  isolation: isolate;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 20px;
  align-items: center;
  min-height: 100vh;
  height: 100vh;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 32px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 56%;
  width: 560px;
  height: 560px;
  background: url("images/logo.webp") center center no-repeat;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -2;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  pointer-events: none;
  z-index: -1;
}

.hero__glow--left {
  top: 6%;
  left: -4%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent 68%);
}

.hero__glow--right {
  right: 2%;
  bottom: 8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.18), transparent 72%);
}

.hero__content {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
  padding-right: 12px;
}

.hero__eyebrow {
  margin: 0;
  color: var(--gold-bright);
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero__divider {
  display: block;
  width: 132px;
  height: 1px;
  margin: 1rem 0 1.5rem;
  background: linear-gradient(90deg, transparent, var(--gold-rich), transparent);
}

.hero h1 {
  max-width: 100%;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: transparent;
  background: linear-gradient(180deg, #fff0a8 0%, var(--gold-bright) 35%, var(--gold-rich) 75%, #73520c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-wrap: balance;
  text-shadow: 0 8px 28px rgba(255, 215, 0, 0.08);
}

.hero__lead {
  max-width: 100%;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 24px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 26px;
  border: 1px solid rgba(255, 215, 0, 0.65);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe577 0%, var(--gold-bright) 42%, #d8aa08 100%);
  box-shadow: 0 18px 36px rgba(255, 215, 0, 0.22);
  color: #1a1a1a;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(255, 215, 0, 0.28);
  filter: saturate(1.08);
}

.hero__microcopy {
  max-width: 260px;
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.hero__benefits li {
  padding: 10px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.04);
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}

.hero__panel {
  position: relative;
  min-width: 0;
  justify-self: stretch;
  width: 100%;
  max-width: 100%;
  padding-left: 12px;
}

.offer-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 215, 0, 0.08), transparent 28%),
    linear-gradient(160deg, rgba(27, 23, 15, 0.98), rgba(15, 15, 15, 0.98));
  box-shadow: var(--shadow-heavy);
}

.offer-card::before {
  content: "";
  position: absolute;
  top: -18%;
  right: -6%;
  width: 220px;
  height: 220px;
  border-radius: 48% 52% 56% 44%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 242, 190, 0.75), rgba(255, 215, 0, 0.24) 34%, rgba(139, 105, 20, 0.08) 62%, transparent 76%);
  filter: blur(6px);
  opacity: 0.72;
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border: 1px solid rgba(255, 215, 0, 0.08);
  border-radius: 18px;
  pointer-events: none;
}

.offer-card__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin: 0;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 999px;
  color: var(--gold-bright);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 215, 0, 0.05);
}

.offer-card__title {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 16px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 0.98;
  color: var(--text-main);
  text-wrap: balance;
}

.offer-card__metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.offer-card__metrics article {
  min-height: 108px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: 18px;
  background: rgba(255, 215, 0, 0.04);
  backdrop-filter: blur(10px);
}

.offer-card__metrics span {
  display: block;
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.offer-card__metrics p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.4;
}

.offer-card__footer {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 215, 0, 0.12);
}

.offer-card__footer p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.offer-card__footer span {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.problem {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 88px 56px 96px;
}

.problem::before {
  content: "";
  position: absolute;
  inset: 24px 24px 0;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 215, 0, 0.04), transparent 18%),
    linear-gradient(160deg, rgba(20, 17, 11, 0.92), rgba(12, 12, 12, 0.72));
  z-index: -2;
}

.problem::after {
  content: "";
  position: absolute;
  top: 64px;
  left: 80px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.14), transparent 70%);
  filter: blur(28px);
  z-index: -1;
}

.problem__intro {
  padding: 8px 8px 0 0;
}

.problem__eyebrow {
  margin: 0;
  color: var(--gold-bright);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.problem__divider {
  display: block;
  width: 112px;
  height: 1px;
  margin: 14px 0 20px;
  background: linear-gradient(90deg, transparent, var(--gold-rich), transparent);
}

.problem h2 {
  max-width: 100%;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 0.95;
  color: var(--text-main);
}

.problem__story {
  margin-top: 24px;
}

.problem__story p {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.7;
}

.problem__story-strong {
  margin-top: 6px;
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 0.98;
}

.problem__panel {
  position: relative;
  padding: 0 0 0 16px;
}

.problem-card {
  height: 100%;
  padding: 32px;
  border: 1px solid rgba(255, 215, 0, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 215, 0, 0.05), transparent 20%),
    linear-gradient(180deg, rgba(22, 19, 13, 0.96), rgba(11, 11, 11, 0.96));
  box-shadow: var(--shadow-heavy);
}

.problem-card__label {
  margin: 0;
  color: var(--gold-bright);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.problem-card__list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.problem-card__list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
}

.problem-card__list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c95f47;
  box-shadow: 0 0 16px rgba(201, 95, 71, 0.35);
}

.problem__closing {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 28px 8px 0;
  border-top: 1px solid rgba(255, 215, 0, 0.12);
}

.problem__closing p {
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.6;
}

.problem__closing p:first-child {
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1;
}

.solution {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 88px 56px 96px;
}

.solution::before {
  content: "";
  position: absolute;
  inset: 24px 24px 0;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 215, 0, 0.04), transparent 18%),
    linear-gradient(160deg, rgba(18, 15, 10, 0.94), rgba(10, 10, 10, 0.76));
  z-index: -2;
}

.solution::after {
  content: "";
  position: absolute;
  top: 70px;
  right: 120px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.12), transparent 72%);
  filter: blur(28px);
  z-index: -1;
}

.solution__intro {
  padding: 8px 8px 0 0;
}

.solution__eyebrow {
  margin: 0;
  color: var(--gold-bright);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.solution__divider {
  display: block;
  width: 112px;
  height: 1px;
  margin: 14px 0 20px;
  background: linear-gradient(90deg, transparent, var(--gold-rich), transparent);
}

.solution h2 {
  max-width: 100%;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 0.95;
  color: var(--text-main);
}

.solution__lead {
  max-width: 100%;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.7;
}

.solution__details {
  padding: 0 0 0 16px;
}

.solution-card {
  padding: 32px;
  border: 1px solid rgba(255, 215, 0, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 215, 0, 0.05), transparent 20%),
    linear-gradient(180deg, rgba(22, 19, 13, 0.96), rgba(11, 11, 11, 0.96));
  box-shadow: var(--shadow-heavy);
}

.solution-card__label {
  margin: 0;
  color: var(--gold-bright);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.solution-card__rows {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.solution-card__row {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.solution-card__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.solution-card__row span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-card__row strong {
  color: var(--text-main);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.solution__modules {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.module-card {
  padding: 28px;
  border: 1px solid rgba(255, 215, 0, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 215, 0, 0.03), transparent 24%),
    rgba(8, 8, 8, 0.62);
}

.module-card__eyebrow {
  margin: 0;
  color: var(--gold-bright);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.module-card h3 {
  margin: 16px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 0.98;
  color: var(--text-main);
}

.module-card__list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.module-card__list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
}

.module-card__list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold-bright);
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.25);
}

@media (min-width: 961px) and (max-height: 820px) {
  .hero {
    gap: 16px;
    padding: 16px 24px;
  }

  .hero h1 {
    font-size: 58px;
    line-height: 0.88;
  }

  .hero__lead {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero__actions {
    margin-top: 18px;
  }

  .hero__cta {
    min-height: 50px;
    padding: 12px 20px;
    font-size: 12px;
  }

  .hero__microcopy {
    max-width: 240px;
    font-size: 13px;
  }

  .hero__benefits {
    margin-top: 16px;
  }

  .hero__benefits li {
    padding: 8px 12px;
    font-size: 13px;
  }

  .offer-card {
    padding: 18px;
  }

  .offer-card__label {
    font-size: 11px;
  }

  .offer-card__title {
    margin-top: 12px;
    font-size: 44px;
  }

  .offer-card__metrics {
    gap: 10px;
    margin-top: 16px;
  }

  .offer-card__metrics article {
    min-height: 96px;
    padding: 12px 10px;
  }

  .offer-card__metrics span {
    font-size: 30px;
  }

  .offer-card__metrics p,
  .offer-card__footer p {
    font-size: 13px;
  }

  .offer-card__footer span {
    font-size: 12px;
  }

  .problem {
    padding: 72px 44px 72px;
  }

  .problem::before {
    inset: 20px 18px 0;
  }

  .problem__panel {
    padding-left: 12px;
  }

  .problem-card {
    padding: 26px;
  }

  .problem__closing {
    padding-top: 24px;
  }

  .problem h2 {
    font-size: 48px;
  }

  .problem__story p,
  .problem__closing p {
    font-size: 16px;
  }

  .problem__story-strong {
    font-size: 32px;
  }

  .problem__closing p:first-child {
    font-size: 30px;
  }

  .solution {
    padding: 72px 44px 72px;
  }

  .solution::before {
    inset: 20px 18px 0;
  }

  .solution__details {
    padding-left: 12px;
  }

  .solution h2 {
    font-size: 48px;
  }

  .solution__lead {
    font-size: 16px;
  }

  .solution-card {
    padding: 26px;
  }

  .solution-card__row strong,
  .module-card__list li {
    font-size: 15px;
  }

  .module-card {
    padding: 24px;
  }

  .module-card h3 {
    font-size: 36px;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    height: auto;
    min-height: auto;
    padding: 56px 24px 40px;
  }

  .hero::before {
    top: 220px;
    left: 50%;
    width: 420px;
    height: 420px;
    opacity: 0.07;
    transform: translateX(-50%);
  }

  .hero__content,
  .hero__panel {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .offer-card {
    width: 100%;
  }

  .hero h1 {
    font-size: 56px;
    max-width: 100%;
  }

  .problem {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 72px 40px 72px;
  }

  .problem::before {
    inset: 20px 16px 0;
  }

  .problem::after {
    left: 50%;
    width: 260px;
    height: 260px;
    transform: translateX(-50%);
  }

  .problem__intro,
  .problem__panel {
    padding: 0;
  }

  .problem__closing {
    padding-left: 4px;
    padding-right: 4px;
  }

  .problem h2 {
    font-size: 52px;
  }

  .solution {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 72px 40px 72px;
  }

  .solution::before {
    inset: 20px 16px 0;
  }

  .solution::after {
    top: 54px;
    right: auto;
    left: 50%;
    width: 260px;
    height: 260px;
    transform: translateX(-50%);
  }

  .solution__intro,
  .solution__details {
    padding: 0;
  }

  .solution h2 {
    font-size: 52px;
  }

  .solution__modules {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    justify-items: stretch;
    gap: 28px;
    padding: 48px 20px 36px;
  }

  .hero::before {
    top: 180px;
    width: 300px;
    height: 300px;
    opacity: 0.06;
  }

  .hero__content,
  .hero__panel {
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: center;
    padding: 0;
  }

  .hero__eyebrow {
    font-size: 12px;
    letter-spacing: 0.24em;
  }

  .hero__divider {
    width: 112px;
    margin: 12px auto 18px;
  }

  .hero h1 {
    max-width: 100%;
    margin: 0 auto;
    font-size: 48px;
    line-height: 0.94;
  }

  .hero__actions {
    display: grid;
    justify-items: center;
    align-items: stretch;
    gap: 12px;
  }

  .hero__lead {
    max-width: 100%;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.7;
  }

  .hero__microcopy {
    max-width: 100%;
    font-size: 13px;
  }

  .hero__cta {
    width: 100%;
    max-width: 100%;
  }

  .hero__benefits {
    justify-content: center;
    gap: 10px;
  }

  .offer-card {
    padding: 20px;
    border-radius: 24px;
    text-align: center;
  }

  .offer-card__label,
  .offer-card__title {
    margin-inline: auto;
  }

  .offer-card__title {
    max-width: 100%;
    font-size: 38px;
  }

  .offer-card__metrics {
    grid-template-columns: 1fr;
  }

  .offer-card__metrics article {
    min-height: auto;
    text-align: center;
  }

  .offer-card__footer {
    text-align: center;
  }

  .problem {
    gap: 24px;
    padding: 56px 26px 60px;
  }

  .problem::before {
    inset: 16px 12px 0;
  }

  .problem::after {
    top: 44px;
    width: 180px;
    height: 180px;
  }

  .problem__intro {
    padding: 0 4px;
    text-align: center;
  }

  .problem__divider {
    margin: 12px auto 18px;
  }

  .problem h2 {
    font-size: 42px;
  }

  .problem__story {
    margin-top: 18px;
  }

  .problem__story p {
    font-size: 16px;
    line-height: 1.7;
  }

  .problem__story-strong {
    font-size: 32px;
  }

  .problem-card {
    padding: 22px;
  }

  .problem-card__list {
    gap: 14px;
    margin-top: 18px;
  }

  .problem-card__list li {
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
  }

  .problem__closing {
    gap: 8px;
    margin-top: 0;
    padding: 20px 4px 0;
    text-align: center;
  }

  .problem__closing p {
    font-size: 16px;
  }

  .problem__closing p:first-child {
    font-size: 28px;
  }

  .solution {
    gap: 24px;
    padding: 56px 26px 60px;
  }

  .solution::before {
    inset: 16px 12px 0;
  }

  .solution::after {
    top: 40px;
    width: 180px;
    height: 180px;
  }

  .solution__intro {
    padding: 0 4px;
    text-align: center;
  }

  .solution__divider {
    margin: 12px auto 18px;
  }

  .solution h2 {
    font-size: 42px;
  }

  .solution__lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
  }

  .solution-card {
    padding: 22px;
  }

  .solution-card__row {
    gap: 8px;
    padding: 12px 0;
  }

  .solution-card__row strong {
    font-size: 15px;
  }

  .module-card {
    padding: 22px;
  }

  .module-card h3 {
    font-size: 34px;
    text-align: center;
  }

  .module-card__eyebrow {
    text-align: center;
  }

  .module-card__list {
    gap: 12px;
    margin-top: 18px;
  }

  .module-card__list li {
    font-size: 15px;
    line-height: 1.6;
  }
}

.profit-strip {
  margin: 0 calc(50% - 50vw);
  padding: 18px 24px;
  background: linear-gradient(90deg, #c9a84c 0%, #ffd700 50%, #c9a84c 100%);
  box-shadow: 0 14px 28px rgba(255, 215, 0, 0.14);
}

.profit-strip p {
  margin: 0;
  color: #141414;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.section-eyebrow {
  margin: 0;
  color: var(--gold-bright);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-eyebrow--center {
  text-align: center;
}

.section-copy {
  max-width: 100%;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.7;
}

.section-copy--center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 26px;
  border: 1px solid rgba(255, 215, 0, 0.65);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe577 0%, var(--gold-bright) 42%, #d8aa08 100%);
  box-shadow: 0 18px 36px rgba(255, 215, 0, 0.18);
  color: #1a1a1a;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.section-button--wide {
  width: 100%;
  max-width: 320px;
}

.audience,
.pillars,
.offer-section,
.method,
.final-cta {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 84px 48px;
}

.audience {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}

.audience__intro h2,
.pillars h2,
.offer-section h2,
.method h2,
.final-cta h2 {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 0.95;
  color: var(--text-main);
  text-wrap: balance;
}

.audience__intro h2 {
  max-width: 820px;
}

.audience__aside {
  padding-top: 36px;
}

.mini-panel {
  padding: 28px;
  border: 1px solid rgba(255, 215, 0, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 215, 0, 0.05), transparent 20%),
    linear-gradient(180deg, rgba(22, 19, 13, 0.96), rgba(11, 11, 11, 0.96));
  box-shadow: var(--shadow-heavy);
}

.mini-panel__label {
  margin: 0;
  color: var(--gold-bright);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mini-panel__list,
.method__list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.mini-panel__list li,
.method__list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.6;
}

.mini-panel__list li::before,
.method__list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold-bright);
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.28);
}

.pillars {
  text-align: center;
  padding-top: 44px;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.pillar-card {
  padding: 28px 24px;
  border: 1px solid rgba(255, 215, 0, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 215, 0, 0.04), transparent 26%),
    rgba(10, 10, 10, 0.66);
}

.pillar-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 0.98;
  color: var(--text-main);
}

.pillar-card p {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.6;
}

.pillars .section-button {
  margin-top: 28px;
}

.offer-section {
  text-align: center;
  padding-top: 44px;
}

.offer-box {
  width: 100%;
  max-width: 420px;
  margin: 32px auto 0;
  padding: 32px;
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 215, 0, 0.06), transparent 18%),
    linear-gradient(180deg, rgba(22, 19, 13, 0.98), rgba(11, 11, 11, 0.98));
  box-shadow: var(--shadow-heavy);
}

.offer-box__label {
  margin: 0;
  color: var(--gold-bright);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.offer-box__list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.offer-box__list li {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.55;
}

.offer-box__from {
  margin: 26px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: line-through;
}

.offer-box__price {
  margin: 12px 0 0;
  color: var(--text-main);
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  line-height: 1;
}

.offer-box__price strong {
  font-size: 62px;
}

.offer-box .section-button {
  margin-top: 24px;
}

.offer-box__note {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.method {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 28px;
  align-items: center;
  padding-top: 44px;
}

.method__visual {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(255, 215, 0, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 215, 0, 0.05), transparent 18%),
    linear-gradient(180deg, rgba(18, 15, 10, 0.98), rgba(11, 11, 11, 0.96));
  overflow: hidden;
}

.method__seal {
  position: absolute;
  inset: 32px;
  background: url("images/logo.webp") center center no-repeat;
  background-size: cover;
  opacity: 0.16;
  filter: saturate(0.85);
}

.method__chips {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.method__chips span,
.final-cta__points span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 215, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.05);
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.2;
}

.method__content {
  padding-right: 8px;
}

.method .section-button {
  margin-top: 26px;
}

.final-cta {
  text-align: center;
  padding-top: 44px;
  padding-bottom: 108px;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 24px 48px 0;
  border: 1px solid rgba(255, 215, 0, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 215, 0, 0.04), transparent 20%),
    linear-gradient(180deg, rgba(14, 12, 9, 0.96), rgba(8, 8, 8, 0.92));
  z-index: -1;
}

.final-cta__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 860px;
  margin: 30px auto 0;
}

.final-cta .section-button {
  margin-top: 30px;
}

.final-cta__note {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto 40px;
  padding: 0 48px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 960px) {
  .profit-strip {
    padding: 16px 20px;
  }

  .audience,
  .pillars,
  .offer-section,
  .method,
  .final-cta {
    padding: 72px 24px;
  }

  .audience,
  .method {
    grid-template-columns: 1fr;
  }

  .audience__aside,
  .method__content {
    padding: 0;
  }

  .audience__intro h2,
  .pillars h2,
  .offer-section h2,
  .method h2,
  .final-cta h2 {
    font-size: 52px;
  }

  .pillars__grid {
    grid-template-columns: 1fr;
  }

  .method__visual {
    min-height: 420px;
  }

  .final-cta::before {
    inset: 18px 24px 0;
  }

  .site-footer {
    padding: 0 24px;
  }
}

@media (max-width: 640px) {
  .profit-strip p {
    font-size: 11px;
    line-height: 1.5;
  }

  .section-copy {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
  }

  .audience,
  .pillars,
  .offer-section,
  .method,
  .final-cta {
    padding: 56px 20px;
  }

  .audience__intro,
  .pillars,
  .offer-section,
  .method__content,
  .final-cta {
    text-align: center;
  }

  .audience__intro h2,
  .pillars h2,
  .offer-section h2,
  .method h2,
  .final-cta h2 {
    font-size: 42px;
  }

  .mini-panel,
  .pillar-card,
  .offer-box,
  .method__visual {
    border-radius: 24px;
  }

  .mini-panel,
  .pillar-card,
  .offer-box {
    padding: 22px;
  }

  .mini-panel__list li,
  .offer-box__list li,
  .method__list li,
  .pillar-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  .offer-box__price {
    font-size: 38px;
  }

  .offer-box__price strong {
    font-size: 52px;
  }

  .method__visual {
    min-height: 320px;
  }

  .method__chips,
  .final-cta__points {
    justify-content: center;
  }

  .method__list {
    text-align: left;
  }

  .section-button,
  .section-button--wide {
    width: 100%;
    max-width: 100%;
  }

  .final-cta::before {
    inset: 16px 12px 0;
  }

  .site-footer {
    padding: 0 20px;
    font-size: 12px;
  }
}
