.landing {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #0d0007;
}

.hero-card {
  width: 100%;
  align-self: stretch;
  min-height: 100svh;
  padding: 0;
  box-sizing: border-box;
  color: #fff0f0;
  position: relative;
  overflow: hidden;
  display: flex;
  background:
    radial-gradient(
      circle at 82% 21%,
      rgba(180, 70, 100, 0.12) 0%,
      rgba(138, 112, 194, 0) 50%
    ),
    radial-gradient(
      140% 80% at 10% -10%,
      rgba(185, 35, 70, 0.38) 0%,
      rgba(157, 97, 255, 0) 60%
    ),
    radial-gradient(
      90% 75% at 100% 100%,
      rgba(75, 10, 25, 0.45) 0%,
      rgba(22, 62, 150, 0) 64%
    ),
    linear-gradient(180deg, #3a0f1e 0%, #200a10 48%, #1a0709 100%);
}

.hero-card-inner {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100svh;
  padding: 18px 20px 104px;
  box-sizing: border-box;
}

.hero-card::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: -120px auto auto -130px;
  width: 270px;
  height: 270px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(165, 25, 55, 0.45) 0%,
    rgba(137, 65, 255, 0) 72%
  );
  z-index: 0;
}

/* wave transition to block-two */
.hero-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  background: #0d0007;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 50C180 90 360 18 540 48C720 78 900 18 1080 48C1260 78 1380 28 1440 50V100H0Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 50C180 90 360 18 540 48C720 78 900 18 1080 48C1260 78 1380 28 1440 50V100H0Z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.brand {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 0.9;
  letter-spacing: 0.2px;
  color: #ffffff;
}

.hero-desktop-nav {
  display: none;
}

.menu-button {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #feeaed;
  transform-origin: center;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* hamburger → X */
.menu-button--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-button--open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-button--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE MENU DRAWER ─────────────────────────── */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16, 2, 7, 0.65);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.menu-overlay--open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #190509;
  border-left: 1px solid rgba(200, 110, 140, 0.15);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.menu-drawer--open {
  transform: translateX(0);
}

.menu-drawer-close {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(220, 155, 170, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #f0dde2;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.menu-drawer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-drawer-link {
  display: block;
  padding: 14px 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(240, 210, 215, 0.9);
  border-bottom: 1px solid rgba(200, 110, 140, 0.15);
  text-decoration: none;
  transition: color 0.2s;
}
.menu-drawer-link:hover {
  color: #fff0f0;
}

.menu-drawer-cta {
  margin-top: 36px;
  width: 100%;
}

.astrologer-photo {
  width: 100px;
  height: 100px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  margin-bottom: 14px;
  border: 2px solid rgba(255, 230, 235, 0.2);
  box-shadow: 0 12px 32px rgba(16, 3, 7, 0.45);
}

.online-status {
  margin: 0 0 24px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: #4cf73f;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 700;
}

.status-dot {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #4cf73f;
  box-shadow: 0 0 0 4px rgba(76, 247, 63, 0.15);
  position: relative;
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  background: #84f57b;
  opacity: 0.6;
}

.hero-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 7vw, 34px);
  line-height: 1.06;
  letter-spacing: -0.5px;
  color: #fff5f0;
  max-width: 100%;
}

@media (max-width: 479px) {
  .hero-title {
    font-size: clamp(24px, 7.8vw, 30px);
    line-height: 1.08;
  }
}

.hero-subtitle {
  margin: 16px 0 0;
  max-width: 100%;
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: #d9b8c0;
  font-weight: 400;
}

.topic-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.topic-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-height: 74px;
  padding: 0;
  text-align: left;
  flex: 1 1 0;
  min-width: 0;
}

.topic-list li:nth-child(2) {
  justify-content: center;
}

.topic-list li:nth-child(3) {
  justify-content: flex-end;
}

.topic-icon {
  font-size: 15px;
  width: auto;
  display: inline-flex;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0;
}

.topic-text {
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: 10px;
  line-height: 1.22;
  color: rgba(227, 202, 208, 0.82);
  text-wrap: balance;
}

.price-line {
  margin: 14px 0 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1;
  color: #fff5f0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.price-label {
  font-size: 20px;
  color: #e5cdd2;
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-weight: 400;
  align-self: flex-end;
  padding-bottom: 6px;
}

.price-line strong {
  color: #f2eeff;
  font-size: clamp(40px, 12vw, 52px);
  font-weight: 500;
  line-height: 0.9;
}

.old-price {
  font-size: 20px;
  color: #b08088;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  align-self: flex-end;
  padding-bottom: 6px;
}

.cta-button {
  margin-top: 18px;
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  border: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 1.8px;
  font-size: 13px;
  color: #fff5f0;
  background: linear-gradient(180deg, #d94060 0%, #b82844 100%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38);
}

.cta-button:focus-visible {
  outline: 3px solid rgba(220, 100, 130, 0.6);
  outline-offset: 3px;
}

/* ── BLOCK TWO ───────────────────────────────────── */
.block-two {
  align-self: stretch;
  position: relative;
  margin-top: -1px;
  padding: 56px 0 48px;
  background: #0d0007;
}

.block-two-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  text-align: center;
  color: #f0dde2;
}

.block-two-deck-icon {
  margin: 0 0 20px;
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  margin-inline: auto;
  filter: drop-shadow(0 0 14px rgba(200, 95, 130, 0.55));
}

.block-two-intro {
  margin: 0 0 28px;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.4px;
  line-height: 1.9;
  color: #a06070;
  text-transform: uppercase;
}

.block-two-title {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 9vw, 42px);
  line-height: 1.1;
  color: #fff5f0;
  font-weight: 500;
  letter-spacing: -0.2px;
}

/* Reading list */
.reading-list {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.reading-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reading-circle {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(145deg, #e05070 0%, #c53058 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(197, 48, 88, 0.28);
}

.reading-heart {
  font-size: 22px;
  color: rgba(0, 0, 0, 0.9);
  line-height: 1;
  margin-top: -1px;
}

.reading-text {
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: 15.5px;
  line-height: 1.45;
  color: #f5e0e5;
  display: block;
}

.reading-emoji {
  font-size: 17px;
  line-height: 1.3;
  display: inline;
}

.reading-emoji::after {
  content: "\00a0";
}

/* Warning */
.block-two-warning {
  margin: 0;
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  text-align: center;
  color: #c4b83e;
}

.warning-bang {
  color: #ff5c3a;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
}

/* ── STICKY CTA INSIDE BLOCK 2 ───────────────────── */
.sticky-trigger {
  height: 1px;
}

.sticky-cta-wrap {
  position: fixed;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 24px;
  background: transparent;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.sticky-cta-wrap.visible {
  opacity: 1;
  z-index: 9999;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta-btn {
  margin-top: 0;
  z-index: 9999;
  width: 100%;
  max-width: 480px;
}

/* ── BLOCK THREE: FOR WHOM ───────────────────────── */
.block-three {
  align-self: stretch;
  background: #0d0007;
  padding: 52px 0 60px;
}

.block-three-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
}

.block-three-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 8vw, 36px);
  font-weight: 600;
  color: #fff0f0;
  text-align: center;
  margin: 0 0 32px;
  line-height: 1.25;
}

.for-whom-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.for-whom-card {
  background: rgba(100, 20, 40, 0.72);
  border: 1px dashed rgba(220, 130, 155, 0.58);
  border-radius: 16px;
  padding: 22px 24px 24px;
}

.for-whom-num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  color: #e8c244;
  margin-bottom: 10px;
}

.for-whom-text {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #e0d8f7;
  line-height: 1.45;
}

/* ── BLOCK FOUR: ANSWER + TIMER ─────────────────── */
.block-answer {
  align-self: stretch;
  position: relative;
  overflow: visible;
  padding: 84px 0 120px;
  background: #200a10;
}

/* wave coming out of block-three into block-answer */
.block-answer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -56px;
  height: 56px;
  background: #200a10;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 28C180 52 360 6 540 28C720 50 900 6 1080 28C1260 50 1380 14 1440 28V56H0Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 28C180 52 360 6 540 28C720 50 900 6 1080 28C1260 50 1380 14 1440 28V56H0Z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}

.block-answer-inner {
  position: relative;
  z-index: 2;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  color: #fff0ee;
}

.block-answer-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 9.5vw, 48px);
  line-height: 1.1;
  font-weight: 500;
}

.block-answer-divider {
  margin: 16px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.divider-line {
  flex: 1;
  max-width: 64px;
  height: 1px;
  background: rgba(230, 175, 185, 0.3);
}

.divider-icon {
  font-size: 11px;
  color: rgba(230, 175, 185, 0.55);
}

.block-answer-price-row {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.block-answer-price-label {
  font-family: "Nunito Sans", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #f0dde2;
}

.block-answer-price {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 9vw, 44px);
  line-height: 1;
  color: #e8a84e;
  font-weight: 600;
}

.block-answer-old-price {
  font-family: "Nunito Sans", sans-serif;
  font-size: 17px;
  color: rgba(220, 210, 248, 0.65);
  text-decoration: line-through;
}

.block-answer-timer-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.timer-col {
  position: relative;
  padding: 0 8px;
}

.timer-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  bottom: 16px;
  width: 1px;
  background: rgba(228, 175, 185, 0.2);
}

.timer-value {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 12vw, 64px);
  line-height: 1;
  color: #fff0ed;
}

.timer-label {
  display: block;
  margin-top: 4px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: rgba(230, 185, 195, 0.6);
}

.block-answer-note {
  margin: 24px 0 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  font-style: italic;
  color: #e8a84e;
}

.block-answer-cta {
  margin-top: 20px;
}

.block-answer-age {
  margin: 22px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  color: #e8a84e;
}

.block-answer-age {
  margin: 20px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  color: #e8a84e;
}

/* ── BLOCK FIVE: STATS ──────────────────────────── */
.block-stats {
  align-self: stretch;
  position: relative;
  overflow: visible;
  padding: 16px 0 120px;
  background: #0d0007;
}

/* wave from purple block-answer into dark block-stats */
.block-stats::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -56px;
  height: 56px;
  background: #0d0007;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 28C180 4 360 52 540 28C720 4 900 52 1080 28C1260 4 1380 42 1440 28V56H0Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 28C180 4 360 52 540 28C720 4 900 52 1080 28C1260 4 1380 42 1440 28V56H0Z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}

.block-stats-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
}

.stats-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(210, 125, 148, 0.12);
}

.stats-item:last-child {
  border-bottom: none;
}

.stats-value {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 10vw, 52px);
  font-weight: 500;
  line-height: 1;
  color: #e8a84e;
}

.stats-label {
  margin-top: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(220, 210, 255, 0.65);
  max-width: 240px;
  line-height: 1.6;
}

/* ── BLOCK SIX: BIO ─────────────────────────────── */
.block-bio {
  align-self: stretch;
  width: 100%;
  background: #0d0007;
  padding-bottom: 120px;
}

/* mobile: photo stacked above text */
.block-bio-layout {
  max-width: 480px;
  margin: 0 auto;
}

.block-bio-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0007;
}

.block-bio-photo-frame {
  position: relative;
  width: 88%;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  padding: 3px;
  background: linear-gradient(
    160deg,
    rgba(220, 140, 170, 0.85) 0%,
    rgba(130, 60, 100, 0.5) 40%,
    rgba(220, 140, 170, 0.85) 100%
  );
  box-shadow:
    0 0 28px rgba(200, 95, 130, 0.45),
    0 0 6px rgba(200, 95, 130, 0.3) inset;
}

.block-bio-photo-frame::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 6px;
  border: 1px solid rgba(220, 140, 170, 0.2);
  pointer-events: none;
}

.block-bio-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.block-bio-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 32px 24px 0;
}

.block-bio-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 8vw, 38px);
  font-weight: 500;
  line-height: 1.15;
  color: #fff0f0;
}

.block-bio-divider {
  margin: 20px 0 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(220, 155, 170, 0.45);
  font-size: 11px;
}

.bio-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(220, 155, 170, 0.25);
}

.bio-divider-dots {
  font-size: 10px;
  letter-spacing: 1px;
}

.block-bio-text {
  margin: 0 0 14px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #d9b8c0;
}

.block-bio-text:last-child {
  margin-bottom: 0;
}

.block-quote-inner {
  padding: 20px 0 50px;
  border-left: 3px solid rgba(200, 125, 145, 0.3);
  padding-left: 20px;
}

.block-quote-mark {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  line-height: 1;
  color: #e8a84e;
  margin-bottom: 16px;
}

.block-quote-text {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(17px, 4.5vw, 22px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.55;
  color: #f0dde2;
}

@media (min-width: 480px) {
  .hero-card-inner {
    max-width: 600px;
  }
}

/* ── BLOCK EIGHT: REVIEWS ───────────────────────── */
.block-reviews {
  align-self: stretch;
  position: relative;
  overflow: visible;
  padding: 84px 0 120px;
  background: #200a10;
}

/* wave from dark bio/quote into purple reviews */
.block-reviews::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -56px;
  height: 56px;
  background: #200a10;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 28C180 52 360 6 540 28C720 50 900 6 1080 28C1260 50 1380 14 1440 28V56H0Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 28C180 52 360 6 540 28C720 50 900 6 1080 28C1260 50 1380 14 1440 28V56H0Z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}

.block-reviews-inner {
  position: relative;
  z-index: 2;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.block-reviews-title {
  margin: 0 0 36px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 9vw, 42px);
  font-weight: 500;
  line-height: 1.15;
  color: #fff0f0;
}

/* card */
.reviews-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 24px 20px 28px;
}

.reviews-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.reviews-quote-icon {
  font-size: 44px;
  line-height: 1;
  color: #e8a84e;
  flex-shrink: 0;
}

.reviews-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(190, 95, 125, 0.3);
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

/* screenshot */
.reviews-screenshot {
  width: 100%;
  max-height: 500px;
  border-radius: 12px;
  border: 1px solid rgba(200, 180, 255, 0.15);
  display: block;
  object-fit: contain;
}

.reviews-name {
  margin: 20px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(240, 210, 215, 0.7);
  text-transform: uppercase;
}

/* controls */
.reviews-controls {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.reviews-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(220, 155, 170, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #f0dde2;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.reviews-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(220, 155, 170, 0.6);
}

.reviews-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(200, 175, 255, 0.3);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}

.reviews-dot.active {
  background: #e8a84e;
  transform: scale(1.25);
}

/* ── Block 9 — Steps ──────────────────────────────────────────── */
.block-steps {
  position: relative;
  overflow: visible;
  align-self: stretch;
  width: 100%;
  background: #0d0007;
  padding: 84px 0 100px;
}

/* wave: purple (#200a10) → dark (#0d0007) */
.block-steps::before {
  content: "";
  position: absolute;
  top: -56px;
  left: 0;
  right: 0;
  height: 56px;
  background: #0d0007;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 28C180 4 360 52 540 28C720 4 900 52 1080 28C1260 4 1380 42 1440 28V56H0Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 28C180 4 360 52 540 28C720 4 900 52 1080 28C1260 4 1380 42 1440 28V56H0Z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}

.block-steps-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
}

.block-steps-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 9vw, 42px);
  font-weight: 600;
  color: #fff0f0;
  text-align: center;
  line-height: 1.2;
  margin: 0 0 40px;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card {
  background: rgba(120, 20, 50, 0.22);
  border: 1px dashed rgba(200, 100, 130, 0.35);
  border-radius: 16px;
  padding: 22px 24px 24px;
}

.step-card--accent {
  background: linear-gradient(145deg, #6b1e30 0%, #4a1020 100%);
  border: 1px solid rgba(220, 140, 160, 0.25);
}

.step-card-num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(220, 155, 170, 0.7);
  margin-bottom: 10px;
}

.step-card--accent .step-card-num {
  color: rgba(255, 240, 240, 0.7);
}

.step-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 600;
  color: #fff0f0;
  margin: 0 0 10px;
  line-height: 1.2;
}

.step-card--accent .step-card-title {
  color: #fff5f0;
}

.step-card-desc {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(240, 210, 215, 0.75);
  margin: 0;
  line-height: 1.55;
}

.step-card--accent .step-card-desc {
  color: rgba(255, 240, 240, 0.8);
}

.block-steps-cta {
  display: block;
  width: 100%;
  margin-top: 40px;
  padding: 18px 0;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #8b1a35, #c03050);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
}

.block-steps-cta:hover {
  opacity: 0.88;
}

/* ── Block 10 — FAQ ───────────────────────────────────────────── */
.block-faq {
  position: relative;
  overflow: visible;
  background: #0d0007;
  padding: 84px 0 100px;
}

/* no wave needed — same dark bg as block-steps */

.block-faq-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
}

.block-faq-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 9vw, 42px);
  font-weight: 600;
  color: #fff0f0;
  text-align: center;
  line-height: 1.2;
  margin: 0 0 40px;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(200, 110, 140, 0.2);
}

.faq-item:first-child {
  border-top: 1px solid rgba(200, 110, 140, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(14px, 3.8vw, 16px);
  font-weight: 600;
  color: #f0dde2;
  line-height: 1.35;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  color: rgba(220, 155, 170, 0.7);
  line-height: 1;
}

.faq-item--open .faq-icon {
  color: #e8a84e;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
}

.faq-item--open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-answer-inner p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(240, 210, 215, 0.75);
  line-height: 1.6;
  margin: 0;
  padding-bottom: 4px;
}

.faq-answer-inner p:last-child {
  padding-bottom: 20px;
}

/* ── Block 11 — Timer copy (reuses .block-answer styles) ─────── */
/* wave: dark (#0d0007) → purple (#200a10), same as original */
/* .block-answer::before already handles it */

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  overflow: visible;
  width: 100%;
  background: #0d0007;
  padding: 64px 0 48px;
}

/* wave: purple (#200a10) → dark (#0d0007) */
.site-footer::before {
  content: "";
  position: absolute;
  top: -56px;
  left: 0;
  right: 0;
  height: 56px;
  background: #0d0007;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 28C180 4 360 52 540 28C720 4 900 52 1080 28C1260 4 1380 42 1440 28V56H0Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 28C180 4 360 52 540 28C720 4 900 52 1080 28C1260 4 1380 42 1440 28V56H0Z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}

.site-footer-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 9vw, 44px);
  font-weight: 600;
  color: #fff0f0;
  margin: 0 0 32px;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.footer-nav-link {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(240, 210, 215, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(220, 155, 170, 0.35);
  transition: color 0.2s;
}

.footer-nav-link:hover {
  color: #fff0f0;
  text-decoration-color: rgba(220, 155, 170, 0.7);
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(220, 155, 170, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 210, 215, 0.8);
  transition:
    background 0.2s,
    border-color 0.2s;
}

.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(220, 155, 170, 0.5);
}

.footer-contact-link {
  margin-bottom: 32px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(240, 210, 215, 0.9);
  text-decoration: none;
}

.footer-contact-link:hover {
  color: #fff0f0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-divider {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(200, 110, 140, 0.2);
  margin: 0 0 32px;
}

.footer-cta {
  width: 100%;
}

/* ───────────────────────────────────────────────
   TABLET  (768px+)
─────────────────────────────────────────────── */
@media (min-width: 768px) {
  /* Desktop/tablet navigation: show links, hide mobile burger menu */
  .menu-button {
    display: none;
  }
  .menu-overlay,
  .menu-drawer {
    display: none !important;
  }
  .hero-header {
    justify-content: space-between;
  }
  .hero-header::after {
    content: "";
    display: flex;
    gap: 28px;
  }
  .hero-desktop-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .hero-desktop-nav a {
    font-family: "Nunito Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(240, 210, 215, 0.8);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }
  .hero-desktop-nav a:hover {
    color: #fff0f0;
  }

  /* — global inner width — */
  .block-two-inner,
  .block-three-inner,
  .block-answer-inner,
  .block-stats-inner,
  .block-bio-inner,
  .block-reviews-inner,
  .block-steps-inner,
  .block-faq-inner,
  .site-footer-inner {
    max-width: 680px;
  }

  /* — hero — */
  .hero-card-inner {
    max-width: 680px;
    min-height: 100svh;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 104px;
  }

  .block-two-inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .topic-list li {
    min-height: 76px;
    padding: 0;
  }

  .topic-text {
    font-size: 11px;
    line-height: 1.24;
  }

  /* — bio: фото слева, текст справа уже на планшетах — */
  .block-bio-layout {
    max-width: 680px;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    padding: 0 40px;
  }
  .block-bio-photo-wrap {
    width: auto;
    aspect-ratio: 3 / 4;
  }
  .block-bio-photo-frame {
    width: 100%;
  }
  .block-bio-inner {
    max-width: 100%;
    padding: 8px 0 0;
  }

  /* — stats: 2×2 grid — */
  .stats-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stats-item {
    border-right: 1px solid rgba(200, 110, 140, 0.2);
  }
  .stats-item:nth-child(2n) {
    border-right: none;
  }
  .stats-item:nth-child(n + 3) {
    border-top: 1px solid rgba(200, 110, 140, 0.2);
  }

  /* — for-whom: 2×2 — */
  .for-whom-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* — steps: 2×2 — */
  .steps-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* — footer nav: row — */
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 32px;
  }
}

/* ───────────────────────────────────────────────
   DESKTOP (1024px+)
─────────────────────────────────────────────── */
@media (min-width: 1024px) and (max-width: 1439px) {
  /* — прежние размеры для ноутбуков и обычных десктопов — */
  .block-two-inner,
  .block-three-inner,
  .block-answer-inner,
  .block-stats-inner,
  .block-bio-inner,
  .block-reviews-inner,
  .block-steps-inner,
  .block-faq-inner,
  .site-footer-inner {
    max-width: 900px;
  }

  .block-reviews {
    padding: 48px 0 64px;
  }

  .block-reviews-inner {
    max-width: 480px;
  }

  .menu-button {
    display: none;
  }

  .hero-header {
    justify-content: space-between;
  }
  .hero-header::after {
    content: "";
    display: flex;
    gap: 28px;
  }
  .hero-desktop-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .hero-desktop-nav a {
    font-family: "Nunito Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(240, 210, 215, 0.8);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }
  .hero-desktop-nav a:hover {
    color: #fff0f0;
  }

  .hero-card-inner {
    max-width: 900px;
    padding-left: 60px;
    padding-right: 60px;
    min-height: 100svh;
    padding-bottom: 104px;
  }

  .block-two-inner {
    padding-left: 60px;
    padding-right: 60px;
  }

  .hero-title {
    font-size: clamp(24px, 2.4vw, 30px);
    line-height: 1.05;
  }

  .topic-list {
    gap: 8px;
  }

  .topic-list li {
    min-height: 78px;
    padding: 0;
  }

  .topic-text {
    font-size: 11.5px;
    line-height: 1.25;
  }

  .stats-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .stats-item:nth-child(n + 3) {
    border-top: none;
  }
  .stats-item {
    border-right: 1px solid rgba(200, 110, 140, 0.2);
  }
  .stats-item:last-child {
    border-right: none;
  }

  .block-bio {
    padding-bottom: 140px;
  }
  .block-bio-layout {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
    padding: 0 60px;
  }
  .block-bio-photo-wrap {
    border-radius: 24px;
    aspect-ratio: 3 / 4;
  }
  .block-bio-inner {
    max-width: 100%;
    padding: 8px 0 0;
  }

  .reviews-screenshot {
    aspect-ratio: 4/3;
  }

  .faq-question {
    font-size: 16px;
    padding: 22px 0;
  }

  .sticky-cta-btn {
    max-width: 400px;
  }
}

@media (min-width: 1440px) {
  .block-two-inner,
  .block-three-inner,
  .block-answer-inner,
  .block-stats-inner,
  .block-bio-inner,
  .block-reviews-inner,
  .block-steps-inner,
  .block-faq-inner,
  .site-footer-inner {
    max-width: 1400px;
  }
  .hero-card-inner {
    max-width: 1400px;
    padding-left: 180px;
    padding-right: 180px;
    padding-bottom: 220px;
  }

  .block-two-inner {
    padding-left: 180px;
    padding-right: 180px;
  }
  .block-bio-layout {
    max-width: 1400px;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 80px;
    padding: 0 180px;
  }
}

@media (min-width: 1800px) {
  .block-two-inner,
  .block-three-inner,
  .block-answer-inner,
  .block-stats-inner,
  .block-bio-inner,
  .block-reviews-inner,
  .block-steps-inner,
  .block-faq-inner,
  .site-footer-inner {
    max-width: 1700px;
  }
  .hero-card-inner {
    max-width: 1700px;
    padding-left: 320px;
    padding-right: 320px;
    padding-bottom: 260px;
  }

  .block-two-inner {
    padding-left: 320px;
    padding-right: 320px;
  }
  .block-bio-layout {
    max-width: 1700px;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 100px;
    padding: 0 320px;
  }
}

@media (min-width: 1440px) {
  .hero-title {
    font-size: clamp(44px, 4.2vw, 58px);
    line-height: 1.04;
  }
  .hero-subtitle {
    font-size: 22px;
    margin-top: 26px;
    line-height: 1.38;
  }

  .topic-list {
    gap: 12px;
  }

  .topic-list li {
    min-height: 86px;
  }

  .topic-icon {
    font-size: 18px;
  }

  .topic-text {
    font-size: 12.5px;
    line-height: 1.24;
  }

  .price-line strong {
    font-size: clamp(70px, 5.6vw, 84px);
  }
  .astrologer-photo {
    width: 158px;
    height: 158px;
    margin-bottom: 22px;
  }
}
