:root {
  --bg: #f6f0e7;
  --paper: #fffdf8;
  --ink: #171513;
  --muted: #686058;
  --line: #ded2c1;
  --gold: #c69a4b;
  --gold-dark: #8d682d;
  --green: #1f4f49;
  --green-dark: #153c37;
  --green-soft: #e5efec;
  --rose: #8f3f45;
  --shadow: 0 22px 70px rgba(28, 22, 15, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Arial, sans-serif;
  line-height: 1.5;
  min-width: 320px;
}

h1, h2, h3 { margin: 0 0 14px; letter-spacing: 0; }
h1 { font-size: 36px; line-height: 0.98; }
h2 { font-size: 30px; line-height: 1.1; }
h3 { font-size: 18px; line-height: 1.2; }
p { margin: 0 0 14px; }
a { color: var(--green); }

.landing { min-height: 100vh; overflow: hidden; }

.premium-hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 22px 18px;
  background:
    radial-gradient(circle at 82% 12%, rgba(198, 154, 75, 0.32), transparent 30%),
    radial-gradient(circle at 12% 22%, rgba(31, 79, 73, 0.26), transparent 34%),
    linear-gradient(135deg, #fbf6ee 0%, #ede0ce 54%, #d8c09d 100%);
  position: relative;
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.26) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
  pointer-events: none;
}

.hero-shell {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.premium-hero__content { margin-bottom: 16px; }

.eyebrow {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.43;
}

.proof-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 0;
}

.proof-row span {
  border: 1px solid rgba(141, 104, 45, 0.34);
  border-radius: 999px;
  padding: 7px 10px;
  color: #6f5122;
  background: rgba(255, 253, 248, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.form {
  display: grid;
  gap: 12px;
}

.hero-form {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  position: relative;
}

.form-head {
  display: grid;
  gap: 2px;
  padding-bottom: 2px;
}

.form-head strong { font-size: 18px; }
.form-head span { color: var(--muted); font-size: 14px; }

label {
  display: grid;
  gap: 5px;
  font-size: 14px;
  font-weight: 800;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea { resize: vertical; }

input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(31, 79, 73, 0.18);
  border-color: var(--green);
}

.form-benefits {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.form-benefits li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 7px;
  align-items: start;
}

.form-benefits li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--gold), #f0d18d);
  box-shadow: inset 0 0 0 4px rgba(255, 253, 248, 0.75);
}

.check {
  grid-template-columns: 19px 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.check input { width: 17px; margin-top: 3px; }

button, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--green);
  border-radius: 6px;
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #2c7067);
  box-shadow: 0 12px 26px rgba(31, 79, 73, 0.22);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  animation: cta-breathe 2.8s ease-in-out infinite;
}

button:hover, .button:hover {
  background: linear-gradient(135deg, #2b6f65, var(--green-dark));
  box-shadow: 0 16px 34px rgba(31, 79, 73, 0.28);
  transform: translateY(-2px);
}

button:active, .button:active {
  transform: translateY(0) scale(0.99);
}

button:focus-visible, .button:focus-visible {
  outline: 3px solid rgba(198, 154, 75, 0.48);
  outline-offset: 3px;
}

@keyframes cta-breathe {
  0%, 100% { box-shadow: 0 12px 26px rgba(31, 79, 73, 0.22); }
  50% { box-shadow: 0 16px 38px rgba(31, 79, 73, 0.34); }
}

.button--ghost {
  color: var(--green);
  background: transparent;
  box-shadow: none;
}

.button--ghost:hover { color: #fff; background: var(--green); }
.microcopy, .hint { color: var(--muted); font-size: 13px; margin: 0; }

@media (max-width: 919px) {
  .premium-hero__content .lead,
  .premium-hero__content .proof-row {
    display: none;
  }
  .premium-hero__content {
    margin-bottom: 12px;
  }
}

.psychologist-section {
  display: grid;
  gap: 22px;
  padding: 46px 18px;
  background: var(--paper);
}

.psychologist-visual {
  max-width: 420px;
  margin: 0 auto;
}

.psychologist-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 0.95;
  object-fit: cover;
}

.benefits-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.list-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 900;
}

.benefit-list p { color: var(--muted); margin: 0; }

.objection-section {
  display: grid;
  gap: 16px;
  padding: 0 18px 46px;
  background: var(--paper);
}

.section-head p:not(.eyebrow) { color: var(--muted); }

.objection-grid {
  display: grid;
  gap: 12px;
}

.objection-grid article, .card, .plain, .stat, .proof-note {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.objection-grid article {
  padding: 18px;
}

.soft-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-weight: 900;
}

.objection-grid p { color: var(--muted); margin: 0; }

.proof-note {
  display: grid;
  gap: 6px;
  padding: 18px;
  color: var(--muted);
}

.proof-note strong {
  color: var(--gold-dark);
  font-size: 17px;
}

.final-cta {
  display: grid;
  gap: 12px;
  margin: 0 18px 46px;
  padding: 26px 20px;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 12%, rgba(198, 154, 75, 0.35), transparent 32%),
    linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: var(--shadow);
}

.final-cta .eyebrow {
  color: #f1d491;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.final-cta .button {
  width: 100%;
  border-color: #f1d491;
  color: var(--green-dark);
  background: linear-gradient(135deg, #fff8e9, #f1d491);
}

.final-cta .button:hover {
  color: var(--green-dark);
  background: linear-gradient(135deg, #fffdf8, #e7bf66);
}

.site-footer {
  padding: 0 18px 36px;
  color: var(--muted);
  background: var(--paper);
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 20;
  display: grid;
  gap: 12px;
  max-width: 760px;
  padding: 14px;
  border: 1px solid rgba(222, 210, 193, 0.92);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 18px 54px rgba(28, 22, 15, 0.18);
  backdrop-filter: blur(12px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.cookie-banner__button {
  width: 100%;
  min-height: 42px;
  padding: 9px 14px;
  animation: none;
}

.admin {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.admin h1 { font-size: 38px; }
.admin__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.stat { padding: 16px; }
.stat strong { display: block; font-size: 30px; }

.admin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.card { padding: 20px; margin-bottom: 16px; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.message { min-height: 22px; color: var(--green); font-weight: 800; }
.message.error { color: var(--rose); }
.compact-form { margin-top: 0; }

.table-wrap { overflow: auto; }
table { width: 100%; border-collapse: collapse; min-width: 860px; }
th, td {
  border-bottom: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.plain {
  max-width: 820px;
  margin: 54px 16px;
  padding: 24px;
}

.thank-you .lead { font-size: 18px; }
.success-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  font-size: 30px;
  margin-bottom: 18px;
}

.next-steps {
  margin: 24px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.next-steps ol { margin: 0; padding-left: 22px; }
.next-steps li { margin-bottom: 12px; }
.next-steps li:last-child { margin-bottom: 0; }

.offer-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 8%, rgba(198, 154, 75, 0.26), transparent 30%),
    linear-gradient(135deg, #fbf6ee 0%, #f4eadb 52%, #e4d0ad 100%);
}

.offer-hero {
  display: grid;
  grid-template-rows: auto minmax(170px, 1fr) auto auto;
  gap: clamp(8px, 1.8svh, 12px);
  align-items: start;
  align-content: start;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 100svh;
  height: 100svh;
  padding: clamp(14px, 2.4svh, 18px) 16px clamp(16px, 2.8svh, 24px);
}

.offer-copy { display: grid; gap: 12px; }
.offer-copy .lead { display: none; }
.offer-hero h1 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(28px, 7.4vw, 38px);
}

.offer-visual {
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: clamp(180px, 34svh, 300px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.offer-visual:not(.offer-course)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 21, 19, 0.2), transparent 44%);
  pointer-events: none;
}

.offer-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}
.offer-photo {
  margin: 0;
  background: #fff;
}

.offer-photo img {
  object-position: 50% 42%;
}

.offer-photo-note {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 14px 34px rgba(28, 22, 15, 0.16);
  backdrop-filter: blur(10px);
}

.offer-photo-note strong {
  color: var(--green-dark);
  font-size: 14px;
}

.offer-photo-note span {
  color: var(--muted);
  font-size: 12px;
}

.offer-course {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 12px;
  background:
    radial-gradient(circle at 82% 12%, rgba(198, 154, 75, 0.22), transparent 34%),
    linear-gradient(135deg, #fffdf8, #eee0ca);
}

.course-window {
  overflow: hidden;
  border: 1px solid rgba(31, 79, 73, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 18px 42px rgba(31, 79, 73, 0.16);
}

.course-topbar {
  display: flex;
  gap: 6px;
  padding: 9px 10px;
  border-bottom: 1px solid var(--line);
  background: rgba(229, 239, 236, 0.58);
}

.course-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.course-video {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 86px;
  padding: 14px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(21, 60, 55, 0.92), rgba(31, 79, 73, 0.72)),
    radial-gradient(circle at 80% 10%, rgba(198, 154, 75, 0.48), transparent 36%);
}

.play-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--green-dark);
  background: #fff8e9;
  font-size: 14px;
}

.course-video strong {
  display: block;
  font-size: 18px;
}

.course-video small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.course-modules {
  display: grid;
  gap: 0;
}

.module {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  align-items: center;
  padding: 9px 12px;
  border-top: 1px solid var(--line);
}

.module span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-size: 11px;
  font-weight: 900;
}

.module p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.module.is-active span {
  color: var(--green-dark);
  background: linear-gradient(135deg, #fff8e9, #f1d491);
}

.course-note {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border: 1px solid rgba(198, 154, 75, 0.34);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.84);
}

.course-note strong {
  color: var(--green-dark);
  font-size: 14px;
}

.course-note span {
  color: var(--muted);
  font-size: 12px;
}

.offer-card {
  display: grid;
  gap: 14px;
  margin-top: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow);
}

.offer-card h2 {
  font-size: 24px;
}

.offer-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 15px;
}

.offer-button {
  width: 100%;
}

.offer-button-main {
  min-height: 50px;
}

.offer-button-card {
  display: none;
}

.offer-soft {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px 48px;
}

.offer-soft article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.offer-soft p {
  color: var(--muted);
  margin: 0;
}

@media (min-width: 920px) {
  h1 { font-size: 58px; max-width: 780px; }
  h2 { font-size: 42px; }
  .premium-hero { padding: 28px; }
  .hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    gap: 28px;
    align-items: center;
  }
  .lead { font-size: 21px; max-width: 620px; }
  .hero-form { padding: 22px; }
  .psychologist-section {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
    gap: 44px;
    align-items: center;
    padding: 72px max(24px, calc((100vw - 1180px) / 2));
  }
  .objection-section {
    padding: 0 max(24px, calc((100vw - 1180px) / 2)) 70px;
  }
  .objection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .proof-note { grid-template-columns: 0.38fr 1fr; align-items: center; }
  .final-cta {
    max-width: 1180px;
    margin: 0 auto 42px;
    padding: 42px;
  }
  .final-cta .button {
    width: fit-content;
  }
  .site-footer { padding: 0 max(24px, calc((100vw - 1180px) / 2)) 42px; }
  .cookie-banner {
    right: 24px;
    bottom: 24px;
    left: auto;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 16px 18px;
  }
  .cookie-banner__button {
    width: auto;
    min-width: 112px;
  }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .admin-grid { grid-template-columns: 1fr 1fr; }
  .plain { margin: 54px auto; padding: 34px; }
  .offer-hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
    grid-template-areas:
      "copy visual"
      "card visual";
    grid-template-rows: auto auto;
    gap: 24px 34px;
    min-height: 100svh;
    height: auto;
    padding: 56px 24px 34px;
    align-items: center;
  }
  .offer-copy { grid-area: copy; }
  .offer-copy .lead { display: block; }
  .offer-hero h1 { font-size: clamp(46px, 4.8vw, 58px); }
  .offer-visual { grid-area: visual; min-height: 520px; height: min(68svh, 620px); }
  .offer-visual img { min-height: 520px; }
  .offer-card { grid-area: card; max-width: 740px; padding: 30px; }
  .offer-button { width: fit-content; }
  .offer-button-main { display: none; }
  .offer-button-card { display: inline-flex; }
  .offer-course { gap: 14px; padding: 16px; }
  .offer-photo-note { left: 18px; right: 18px; bottom: 18px; padding: 15px 16px; }
  .offer-photo-note strong { font-size: 16px; }
  .offer-photo-note span { font-size: 13px; }
  .course-topbar { padding: 12px; }
  .course-video {
    grid-template-columns: 52px 1fr;
    gap: 12px;
    min-height: 118px;
    padding: 18px;
  }
  .play-mark {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  .course-video strong { font-size: 22px; }
  .course-video small { font-size: 14px; }
  .module {
    grid-template-columns: 42px 1fr;
    gap: 10px;
    padding: 13px 16px;
  }
  .module span {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
  .module p { font-size: 14px; }
  .course-note { padding: 15px; }
  .course-note strong { font-size: 16px; }
  .course-note span { font-size: 13px; }
  .offer-soft {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 24px 72px;
  }
}

@media (max-width: 390px) {
  h1 { font-size: 32px; }
  .offer-hero h1 { font-size: 27px; }
  .offer-hero { padding-left: 14px; padding-right: 14px; }
  .offer-visual { height: 30svh; }
  .lead { font-size: 16px; }
  .proof-row span { font-size: 12px; }
  .check { font-size: 11px; }
  button, .button { font-size: 14px; }
  .premium-hero { padding: 18px 14px; }
  .hero-form { padding: 15px; }
}


/* Offer page responsive reset: compact first screen, details below. */
.offer-hero {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  gap: clamp(12px, 2.2svh, 18px);
  align-content: start;
  max-width: 1180px;
  min-height: 100svh;
  height: auto;
  margin: 0 auto;
  padding: clamp(18px, 3.2svh, 30px) 16px clamp(28px, 5svh, 52px);
}

.offer-copy,
.offer-visual,
.offer-button-main {
  grid-area: auto;
}

.offer-copy {
  gap: 9px;
  max-width: 760px;
}

.offer-copy .lead {
  display: block;
  max-width: 680px;
  font-size: clamp(15px, 3.6vw, 18px);
  line-height: 1.38;
}

.offer-hero h1 {
  max-width: 780px;
  font-size: clamp(30px, 7.5vw, 48px);
  line-height: 1.02;
}

.offer-visual {
  width: 100%;
  max-width: 760px;
  height: clamp(210px, 38svh, 390px);
  min-height: 0;
}

.offer-visual img {
  min-height: 0;
}

.offer-visual:not(.offer-course)::after,
.offer-photo-note {
  display: none;
}

.offer-photo img {
  object-position: 54% 42%;
}

.offer-button-main {
  display: inline-flex;
  width: 100%;
  max-width: 420px;
  min-height: 52px;
  margin-top: clamp(2px, 1svh, 10px);
}

.offer-details {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 16px 18px;
}

.offer-details .offer-card {
  margin-top: 0;
}

.offer-details .offer-button-card {
  display: none;
}

@media (min-width: 667px) and (max-width: 1279px) {
  .offer-hero {
    justify-items: center;
    text-align: center;
    padding-top: clamp(26px, 5svh, 48px);
  }

  .offer-copy,
  .offer-copy .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .offer-visual {
    height: clamp(280px, 42svh, 460px);
  }

  .offer-button-main {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1280px) {
  .offer-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
    grid-template-areas:
      "copy visual"
      "button visual";
    grid-template-rows: auto auto;
    gap: 28px 44px;
    align-items: center;
    align-content: center;
    min-height: 100svh;
    padding: clamp(54px, 7svh, 76px) 28px clamp(52px, 7svh, 78px);
  }

  .offer-copy { grid-area: copy; }
  .offer-button-main {
    grid-area: button;
    width: fit-content;
    min-width: 290px;
    margin-top: 0;
  }
  .offer-visual {
    grid-area: visual;
    justify-self: end;
    max-width: 520px;
    height: min(70svh, 620px);
    min-height: 480px;
  }
  .offer-visual img { min-height: 480px; }
  .offer-hero h1 { font-size: clamp(48px, 4.4vw, 62px); }
  .offer-details { padding: 0 28px 38px; }
  .offer-details .offer-card { max-width: 780px; padding: 30px; }
  .offer-button-card { display: inline-flex; width: fit-content; }
}

@media (max-width: 666px) {
  .offer-page {
    background: linear-gradient(135deg, #fbf6ee 0%, #f2e6d4 100%);
  }
  .offer-hero {
    gap: clamp(10px, 1.9svh, 14px);
    min-height: 100svh;
    padding: 16px 14px 34px;
  }
  .offer-copy .lead {
    font-size: 15px;
    line-height: 1.34;
  }
  .offer-hero h1 {
    font-size: clamp(28px, 8.4vw, 34px);
  }
  .offer-visual {
    height: clamp(190px, 35svh, 295px);
  }
  .offer-button-main {
    margin-top: 6px;
  }
  .offer-details {
    padding: 18px 14px 14px;
  }
  .offer-details .offer-card {
    padding: 18px;
  }
  .offer-card h2 {
    font-size: 22px;
  }
  .offer-soft {
    padding: 0 14px 42px;
  }
}

@media (max-width: 390px) {
  .offer-hero h1 { font-size: 27px; }
  .offer-visual { height: 31svh; }
}

/* Offer page polish: align second screen and stabilize CTA centering. */
.offer-details,
.offer-soft {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.offer-details {
  padding-top: 28px;
  padding-bottom: 18px;
}

.offer-soft {
  padding-top: 0;
}

.offer-details .offer-card {
  width: 100%;
  max-width: none;
}

@media (min-width: 667px) and (max-width: 1279px) {
  .offer-button-main {
    justify-self: center;
  }
}

@media (min-width: 1280px) {
  .offer-details,
  .offer-soft {
    max-width: 980px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .offer-details {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .offer-details .offer-card {
    max-width: none;
  }
}

@media (max-width: 666px) {
  .offer-button-main {
    justify-self: center;
  }

  .offer-details,
  .offer-soft {
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  button, .button { transition: none; }
  button:hover, .button:hover { transform: none; }
}

