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

:root {
  --color-bg: #fbf7f4;
  --color-text: #241f23;
  --color-muted: #685b63;
  --color-wine: #5a1f3d;
  --color-rose: #b75b7a;
  --color-nude: #ead8d0;
  --color-white: #ffffff;
  --color-border: #e4ccc1;
  --shadow-soft: 0 16px 34px rgba(90, 31, 61, 0.1);
  --shadow-card: 0 10px 24px rgba(90, 31, 61, 0.075);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(234, 216, 208, 0.42) 1px, transparent 1px),
    linear-gradient(180deg, rgba(234, 216, 208, 0.42) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.32;
}

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

p {
  color: var(--color-muted);
}

ul {
  list-style: none;
}

.container {
  width: min(1060px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--color-wine);
  color: var(--color-white);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 247, 244, 0.94);
  border-bottom: 1px solid rgba(228, 204, 193, 0.8);
  backdrop-filter: blur(14px);
}

.header-content {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-wine);
}

.header-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.header-nav a {
  transition: color 180ms ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--color-wine);
}

.hero {
  padding: 4.2rem 0 3.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 2.25rem;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0.32rem 0.78rem;
  border: 1px solid rgba(183, 91, 122, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--color-wine);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.12;
}

h1 {
  max-width: 680px;
  margin-top: 1rem;
  font-size: 3.55rem;
}

.hero-subtitle {
  max-width: 620px;
  margin-top: 1.05rem;
  font-size: 1.12rem;
}

.hero-note {
  max-width: 560px;
  margin-top: 0.8rem;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 1.45rem;
  padding: 0.78rem 1.18rem;
  border-radius: 8px;
  background: var(--color-wine);
  color: var(--color-white);
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(90, 31, 61, 0.22);
  transition: background 180ms ease, transform 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: #4a1932;
  transform: translateY(-2px);
}

.hero-panel {
  position: relative;
  justify-self: end;
  width: min(100%, 360px);
  padding: 1.55rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.hero-panel::before {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-bottom: 1.05rem;
  border-radius: 999px;
  background: var(--color-rose);
}

.panel-label {
  margin-bottom: 0.55rem;
  color: var(--color-rose);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin-bottom: 0.75rem;
  font-size: 1.58rem;
}

.section {
  padding: 3.35rem 0;
}

.section-soft {
  background: rgba(234, 216, 208, 0.42);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 1.65rem;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading h2 {
  margin-top: 0.85rem;
  font-size: 2.15rem;
}

.section-heading p:not(.section-kicker) {
  margin-top: 0.85rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.card,
.text-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.card {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
}

.card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.24rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.6rem;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.text-card {
  padding: 1.6rem;
}

.accent-card {
  align-self: stretch;
  display: flex;
  align-items: center;
  background: var(--color-wine);
  border-color: var(--color-wine);
  box-shadow: 0 14px 32px rgba(90, 31, 61, 0.16);
}

.check-list,
.receive-list {
  display: grid;
  gap: 0.85rem;
}

.check-list li,
.receive-list li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--color-text);
}

.check-list li::before,
.receive-list li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-rose);
}

.receive-list li {
  color: var(--color-white);
}

.receive-list li::before {
  background: var(--color-nude);
}

.form-section {
  padding-top: 2.6rem;
  padding-bottom: 4rem;
}

.form-wrap {
  max-width: 640px;
  padding: 0;
}

.form-placeholder {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.brevo-form-shell .sib-form {
  width: 100%;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
}

.brevo-form-shell .sib-form-container {
  width: 100%;
  max-width: 100%;
}

.brevo-form-shell .sib-form-message-panel {
  width: 100%;
  margin: 0 auto 0.75rem !important;
}

.brevo-form-shell #sib-container {
  width: 100% !important;
  max-width: 540px !important;
  margin: 0 auto !important;
  padding: 1.15rem !important;
  border-color: var(--color-border) !important;
  border-radius: 8px !important;
  box-shadow: var(--shadow-soft) !important;
}

.brevo-form-shell #sib-container p {
  color: var(--color-text);
}

.brevo-form-shell #sib-container a {
  color: var(--color-wine) !important;
}

.brevo-form-shell .sib-text-form-block p,
.brevo-form-shell .entry__specification,
.brevo-form-shell .sib-form__declaration p {
  color: var(--color-muted) !important;
}

.brevo-form-shell .entry__field {
  border-color: var(--color-border) !important;
  border-radius: 8px !important;
}

.brevo-form-shell .input {
  min-height: 46px;
  color: var(--color-text);
}

.brevo-form-shell .sib-form-block__button {
  width: 100%;
  min-height: 48px;
  border-radius: 8px !important;
  background-color: var(--color-wine) !important;
  transition: background 180ms ease, transform 180ms ease;
}

.brevo-form-shell .sib-form-block__button:hover,
.brevo-form-shell .sib-form-block__button:focus-visible {
  background-color: #4a1932 !important;
  transform: translateY(-1px);
}

.site-footer {
  padding: 1.6rem 0;
  border-top: 1px solid rgba(228, 204, 193, 0.8);
  text-align: center;
}

.site-footer p {
  color: var(--color-wine);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.footer-privacy-link {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--color-wine);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: underline;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  width: min(calc(100% - 2rem), 760px);
  padding: 1rem 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 36px rgba(36, 31, 35, 0.18);
  transform: translateX(-50%);
}

.cookie-consent[hidden],
.cookie-preferences[hidden] {
  display: none;
}

.cookie-consent h2 {
  margin: 0;
  color: var(--color-wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.2;
}

.cookie-consent p {
  margin-top: 0.35rem;
  color: #3b3238;
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-consent a {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--color-wine);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  align-self: center;
}

.cookie-consent__button,
.cookie-preferences {
  min-height: 42px;
  border: 1px solid var(--color-wine);
  border-radius: 7px;
  padding: 0.6rem 0.9rem;
  font: 600 0.9rem/1.2 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  cursor: pointer;
}

.cookie-consent__button--accept {
  background: var(--color-wine);
  color: var(--color-white);
}

.cookie-consent__button--reject {
  background: var(--color-white);
  color: var(--color-wine);
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible,
.cookie-preferences:hover,
.cookie-preferences:focus-visible {
  border-color: #4a1932;
  outline: 2px solid rgba(183, 91, 122, 0.35);
  outline-offset: 2px;
}

.cookie-preferences {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
  background: var(--color-white);
  color: var(--color-wine);
  box-shadow: var(--shadow-card);
}

.ethical-notice {
  padding: 1.15rem 0 1.4rem;
  border-top: 1px solid rgba(228, 204, 193, 0.65);
  background: rgba(255, 255, 255, 0.42);
}

.ethical-notice p {
  max-width: 980px;
  margin: 0 auto;
  color: #4a4046;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.65;
  text-align: center;
}

.ethical-notice p + p {
  margin-top: 0.65rem;
}

@media (max-width: 900px) {
  .hero {
    padding: 3.5rem 0 3rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-grid,
  .benefit-grid,
  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split-section,
  .split-section.reverse {
    gap: 1.4rem;
  }

  h1 {
    font-size: 3.1rem;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .hero-panel {
    justify-self: start;
    width: min(100%, 520px);
  }

  .split-section.reverse .section-heading {
    order: 1;
  }

  .split-section.reverse .accent-card {
    order: 2;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1060px);
  }

  .header-content {
    min-height: auto;
    padding: 1rem 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
  }

  .header-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.45rem 0.95rem;
    font-size: 0.88rem;
  }

  .hero,
  .section {
    padding: 2.75rem 0;
  }

  h1 {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .primary-button {
    width: 100%;
    max-width: 360px;
  }

  .section-heading h2 {
    font-size: 1.78rem;
  }

  .hero-panel,
  .text-card {
    padding: 1.25rem;
  }

  .card {
    min-height: auto;
  }

  .form-section {
    padding-bottom: 3.25rem;
  }

  .form-placeholder {
    max-width: 100%;
  }

  .brevo-form-shell #sib-container {
    padding: 0.75rem !important;
  }
}

.sales-page {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.sales-page p,
.sales-page li,
.sales-page a,
.sales-page button,
.sales-page span,
.sales-page small {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.sales-page p,
.sales-page li {
  color: #3b3238;
  font-size: 1rem;
  line-height: 1.68;
  font-weight: 450;
}

.sales-page .hero-subtitle,
.sales-page .section-support,
.sales-page .sales-card p,
.sales-page .day-card p,
.sales-page .sales-text-card p,
.sales-page .honest-note p,
.sales-page .sales-panel p {
  color: #3b3238;
}

.sales-page .sales-card p,
.sales-page .day-card p,
.sales-page .sales-text-card p,
.sales-page .check-list li,
.sales-page .offer-list li {
  font-size: 1rem;
  line-height: 1.66;
}

.sales-page .check-list,
.sales-page .offer-list {
  gap: 0.72rem;
}

.sales-page .sales-card p,
.sales-page .day-card p,
.sales-page .section-support,
.sales-page .sales-text-card p,
.sales-page .check-list li,
.sales-page .offer-list li {
  font-weight: 500;
}

.sales-page .sales-nav {
  gap: 1rem;
  color: #4a4046;
  font-weight: 600;
}

.sales-hero {
  padding: 4rem 0 3rem;
}

.sales-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.78fr);
  gap: 2rem;
  align-items: center;
}

.sales-hero-copy {
  max-width: 760px;
}

.sales-hero h1 {
  max-width: 780px;
  margin-top: 1rem;
  font-size: 3.08rem;
  line-height: 1.08;
}

.sales-page .hero-subtitle {
  font-weight: 450;
  line-height: 1.68;
}

.sales-page h2 {
  font-size: 2.12rem;
}

.sales-page h3 {
  font-size: 1.24rem;
}

.mechanism-line {
  width: fit-content;
  max-width: 100%;
  margin-top: 1.15rem;
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--color-rose);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-wine);
  font-size: 1.02rem;
  font-weight: 700;
}

.sales-button {
  text-align: center;
}

.sales-panel {
  justify-self: end;
  width: min(100%, 420px);
  padding: 1.55rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.sales-panel h2 {
  margin-bottom: 0.8rem;
  font-size: 1.58rem;
}

.delivery-mockup {
  margin-top: 1.2rem;
  padding: 1.05rem;
  border: 1px solid rgba(228, 204, 193, 0.9);
  border-radius: 8px;
  background: linear-gradient(145deg, #fffdfb 0%, #fbf7f4 100%);
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.mockup-header span {
  color: #4a4046;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mockup-header strong {
  flex: 0 0 auto;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: rgba(183, 91, 122, 0.13);
  color: var(--color-wine);
  font-size: 0.82rem;
}

.ebook-visual {
  position: relative;
  min-height: 168px;
  margin: 0 auto 0.9rem;
}

.ebook-cover {
  position: absolute;
  inset: auto auto 0 50%;
  width: 122px;
  height: 156px;
  display: grid;
  align-content: end;
  gap: 0.34rem;
  padding: 1rem 0.82rem;
  border: 1px solid rgba(234, 216, 208, 0.82);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(90, 31, 61, 0.13);
  transform-origin: center bottom;
}

.cover-back {
  background: linear-gradient(160deg, var(--color-nude), #fff8f5);
  transform: translateX(-128px) rotate(-8deg);
}

.cover-mid {
  background: linear-gradient(160deg, #fffaf8, #ead8d0);
  transform: translateX(-56px) rotate(2deg);
}

.cover-front {
  background: linear-gradient(160deg, var(--color-wine), #7b3156);
  transform: translateX(18px) rotate(8deg);
}

.ebook-cover span,
.ebook-cover small {
  color: #5a1f3d;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.22;
}

.ebook-cover strong {
  color: #3b3238;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.08;
}

.cover-front span,
.cover-front small,
.cover-front strong {
  color: var(--color-nude);
}

.cover-front strong {
  color: var(--color-white);
  font-size: 1.14rem;
}

.day-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.35rem;
}

.day-strip span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(183, 91, 122, 0.22);
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-wine);
  font-size: 0.82rem;
  font-weight: 800;
}

.audio-stack {
  display: grid;
  gap: 0.36rem;
  margin-top: 0.75rem;
}

.audio-stack span {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(234, 216, 208, 0.85);
  overflow: hidden;
}

.audio-stack span::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 58%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-rose), var(--color-wine));
}

.audio-stack span:nth-child(2)::before,
.audio-stack span:nth-child(5)::before {
  width: 72%;
}

.audio-stack span:nth-child(3)::before,
.audio-stack span:nth-child(6)::before {
  width: 44%;
}

.mockup-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.mockup-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
  background: rgba(90, 31, 61, 0.07);
  color: var(--color-wine);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.sales-section {
  padding: 3.15rem 0;
}

.sales-band {
  background: rgba(234, 216, 208, 0.36);
}

.narrow-copy {
  max-width: 820px;
}

.center-copy {
  text-align: center;
}

.center-copy .section-kicker {
  margin-inline: auto;
}

.narrow-copy h2,
.sales-split h2,
.sales-list-grid h2,
.honest-note h2 {
  margin-top: 0.85rem;
}

.text-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.sales-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.5rem;
  align-items: center;
}

.sales-split > * {
  min-width: 0;
}

.sales-text-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.55rem;
}

.section-support {
  margin-top: 0.9rem;
}

.sales-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.sales-card {
  min-height: 215px;
}

.sales-card h3 {
  color: var(--color-wine);
}

.sales-method {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(234, 216, 208, 0.34) 100%);
}

.protocol-card {
  padding: 1.55rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-wine);
  box-shadow: 0 14px 32px rgba(90, 31, 61, 0.16);
}

.protocol-card p {
  color: var(--color-nude);
  font-weight: 700;
  font-size: 1rem;
}

.method-diagram {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
  list-style: none;
  counter-reset: protocol;
}

.method-diagram li {
  counter-increment: protocol;
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 118px;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(234, 216, 208, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-size: 0.96rem;
  font-weight: 700;
}

.method-diagram li::before {
  content: counter(protocol);
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 26px;
  border-radius: 50%;
  background: var(--color-nude);
  color: var(--color-wine);
  font-size: 0.82rem;
}

.method-diagram li:not(:last-child)::after {
  content: "\2192";
  margin-left: auto;
  color: var(--color-nude);
  font-weight: 700;
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.day-card {
  min-height: 245px;
  padding: 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.day-card span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.62rem;
  border-radius: 999px;
  background: rgba(183, 91, 122, 0.12);
  color: var(--color-wine);
  font-size: 0.82rem;
  font-weight: 700;
}

.day-card h3 {
  margin-bottom: 0.65rem;
  color: var(--color-wine);
}

.sales-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.sales-list-grid .sales-text-card {
  margin-top: 1rem;
}

.safety-note {
  margin-top: 0.4rem;
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--color-wine);
  border-radius: 8px;
  background: rgba(234, 216, 208, 0.48);
  color: var(--color-wine);
  font-weight: 700;
}

.offer-section {
  background: var(--color-wine);
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid rgba(234, 216, 208, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.offer-copy h2,
.offer-copy p {
  color: var(--color-white);
}

.offer-copy .section-kicker {
  border-color: rgba(234, 216, 208, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-nude);
}

.offer-copy p {
  margin-top: 0.85rem;
}

.price-box {
  padding: 1.45rem;
  border: 1px solid rgba(234, 216, 208, 0.85);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 18px 38px rgba(36, 31, 35, 0.16);
}

.price-label {
  color: #4a4046;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.price {
  margin: 0.15rem 0 0.75rem;
  color: var(--color-wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.offer-list {
  display: grid;
  gap: 0.58rem;
  margin: 1rem 0 1.25rem;
}

.offer-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--color-text);
}

.offer-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-rose);
}

.full-button {
  width: 100%;
}

.purchase-support {
  margin-top: 1rem;
  color: #4a4046;
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: center;
}

.purchase-support a {
  color: var(--color-wine);
  font-weight: 700;
  text-decoration: underline;
  overflow-wrap: anywhere;
}

.support-section {
  padding: 2.2rem 0 2.4rem;
  border-top: 1px solid rgba(228, 204, 193, 0.7);
  background: rgba(255, 255, 255, 0.42);
}

.support-card {
  max-width: 720px;
  padding: 1.45rem 1.6rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.support-card h2 {
  margin-top: 0.45rem;
  color: var(--color-wine);
}

.support-card p:not(.section-kicker) {
  margin-top: 0.55rem;
  color: #4a4046;
  font-size: 1rem;
  line-height: 1.65;
}

.support-email {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--color-wine);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: underline;
  overflow-wrap: anywhere;
}

.decision-section,
.closing-section {
  background: rgba(255, 255, 255, 0.62);
}

.decision-section .sales-button,
.closing-section .sales-button {
  margin-top: 1.35rem;
}

.honest-note {
  max-width: 820px;
  padding: 1.45rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.honest-note h2 {
  color: var(--color-wine);
}

.honest-note p {
  margin-top: 0.75rem;
}

@media (max-width: 980px) {
  .sales-hero-grid,
  .sales-split,
  .offer-card,
  .sales-list-grid {
    grid-template-columns: 1fr;
  }

  .sales-panel {
    justify-self: start;
    width: min(100%, 560px);
  }

  .sales-hero h1 {
    font-size: 2.72rem;
  }

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

@media (max-width: 700px) {
  .cookie-consent {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    bottom: 0.5rem;
    width: calc(100% - 1rem);
    padding: 0.9rem;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-consent__button {
    width: 100%;
  }

  .cookie-preferences {
    right: 0.5rem;
    bottom: 0.5rem;
    max-width: calc(100% - 1rem);
  }

  .sales-page .sales-nav {
    gap: 0.45rem 0.85rem;
  }

  .sales-hero {
    padding: 2.8rem 0 2.4rem;
  }

  .sales-section {
    padding: 2.45rem 0;
  }

  .sales-hero h1 {
    font-size: 2.08rem;
  }

  .sales-page h2 {
    font-size: 1.72rem;
  }

  .sales-card-grid,
  .day-grid {
    grid-template-columns: 1fr;
  }

  .sales-card,
  .day-card {
    min-height: auto;
  }

  .sales-panel,
  .sales-text-card,
  .protocol-card,
  .offer-card,
  .price-box,
  .honest-note,
  .support-card {
    padding: 1.15rem;
  }

  .support-section {
    padding: 1.8rem 0 2rem;
  }

  .day-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mockup-tags {
    grid-template-columns: 1fr;
  }

  .method-diagram li {
    flex-basis: 100%;
    justify-content: flex-start;
  }

  .method-diagram li:not(:last-child)::after {
    content: "\2193";
  }

  .price {
    font-size: 3.2rem;
  }

  .sales-button {
    width: 100%;
    max-width: 380px;
  }
}
