:root {
  --color-bg: #f7f8ef;
  --color-surface: #ffffff;
  --color-surface-alt: #f3f8dc;
  --color-surface-soft: #fff9e7;
  --color-surface-mint: #eef9f1;
  --color-text: #2e3a2d;
  --color-text-soft: #5e695a;
  --color-border: #d8e5c7;
  --color-line: #15b84a;
  --color-line-dark: #0a8c37;
  --color-yellow: #ffd44d;
  --color-yellow-deep: #f4b400;
  --color-orange: #ff9838;
  --color-orange-deep: #f27c1a;
  --color-green-deep: #227548;
  --color-green-soft: #cfeec9;
  --color-cream: #fffef8;
  --color-shadow: 0 18px 45px rgba(78, 113, 49, 0.12);
  --color-shadow-strong: 0 20px 60px rgba(34, 117, 72, 0.18);
  --radius-xs: 10px;
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-xl: 40px;
  --container-wide: 1100px;
  --container-content: 840px;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --space-3xl: 6rem;
  --sticky-height: 84px;
  --font-base: Meiryo, "メイリオ", "Hiragino Sans", "Yu Gothic", "Yu Gothic UI", sans-serif;
  --font-display: Lato, "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  width: 100%;
  font-family: var(--font-base);
  color: var(--color-text);
  background:
    radial-gradient(circle at top right, rgba(255, 212, 77, 0.2), transparent 28%),
    linear-gradient(180deg, #f8fbef 0%, #fdfcf6 42%, #f6f7ee 100%);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
dd {
  margin: 0;
}

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

ul,
ol {
  padding: 0;
}

li {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

main,
section,
header,
footer,
nav {
  display: block;
}

body {
  padding-bottom: calc(var(--sticky-height) + 28px);
}

.site-header,
.hero-section,
.benefits-section,
.free-benefits-section,
.results-section,
.concerns-section,
.features-section,
.delivery-section,
.voices-section,
.entry-section,
.safety-section,
.steps-section,
.faq-section,
.closing-cta-section,
.site-footer {
  position: relative;
}

.site-header::before,
.hero-section::before,
.benefits-section::before,
.free-benefits-section::before,
.results-section::before,
.concerns-section::before,
.features-section::before,
.delivery-section::before,
.voices-section::before,
.entry-section::before,
.safety-section::before,
.steps-section::before,
.faq-section::before,
.closing-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(216, 229, 199, 0.9);
}

.site-header__inner,
.section-inner,
.site-footer__inner,
.sticky-cta__inner {
  width: min(calc(100% - 32px), var(--container-wide));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 1rem;
  color: var(--color-green-deep);
}

.site-header__logo::before {
  content: "";
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-orange) 100%);
  box-shadow: 0 0 0 6px rgba(255, 212, 77, 0.16);
  flex: 0 0 auto;
}

.lp-main > section {
  padding: var(--space-2xl) 0;
}

@media (max-width: 767px) {
  .lp-main > section {
    padding: 2.8rem 0 2.2rem;
  }
}

.section-inner {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: min(100%, 760px);
  margin: -0.85rem auto 2.35rem;
  text-align: center;
}

.section-heading__sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  margin-bottom: 0.95rem;
  border-radius: 999px;
  background: rgba(255, 212, 77, 0.3);
  border: 1px solid rgba(244, 180, 0, 0.35);
  color: var(--color-green-deep);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.section-heading__title {
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
  font-weight: 900;
  color: #23412e;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.section-heading__title--image {
  line-height: 1;
}

.section-heading__title-image {
  display: block;
  width: min(100%, 32rem);
  height: auto;
  margin: 0 auto;
}

.section-heading__lead {
  margin-top: 1.4rem;
  color: var(--color-text-soft);
  font-size: clamp(0.98rem, 2vw, 1.1rem);
  line-height: 1.8;
}

.js-reveal {
  opacity: 0;
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js-reveal.reveal--up {
  transform: translateY(34px);
}

.js-reveal.reveal--left {
  transform: translateX(-42px);
}

.js-reveal.reveal--right {
  transform: translateX(42px);
}

.js-reveal.reveal--soft {
  transform: scale(0.94);
}

.js-reveal.reveal--spin {
  transform: translateY(22px) rotate(-14deg) scale(0.82);
}

.js-reveal.is-revealed {
  opacity: 1;
  transform: none;
}

.js-title-loop {
  transform-origin: center center;
}

.title-loop--bounce {
  animation: titleBounceLoop 2.35s ease-in-out infinite;
}

.title-loop--float {
  animation: titleFloatLoop 2.9s ease-in-out infinite;
}

.title-loop--pulse {
  animation: titlePulseLoop 2.5s ease-in-out infinite;
}

@keyframes titleBounceLoop {
  0%, 16%, 100% {
    transform: translateY(0) scale(1);
  }
  7% {
    transform: translateY(-8px) scale(1.02);
  }
  11% {
    transform: translateY(2px) scale(0.995);
  }
}

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

@keyframes titlePulseLoop {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal,
  .js-title-loop {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  min-height: 2.1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff7cb 0%, #ffe78e 100%);
  border: 1px solid rgba(244, 180, 0, 0.35);
  color: #786000;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 20px rgba(255, 212, 77, 0.2);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.cta-button::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  flex: 0 0 auto;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button:focus-visible {
  outline: 3px solid rgba(255, 152, 56, 0.35);
  outline-offset: 3px;
}

.cta-button--line {
  color: #ffffff;
  background: linear-gradient(180deg, #1bd456 0%, var(--color-line) 62%, var(--color-line-dark) 100%);
  box-shadow: 0 14px 28px rgba(21, 184, 74, 0.28);
}

.cta-button--line::before {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.15);
}

.cta-button--line:hover {
  box-shadow: 0 18px 35px rgba(21, 184, 74, 0.34);
}

.cta-button--sub {
  color: var(--color-orange-deep);
  background: linear-gradient(180deg, #fff7e7 0%, #fff0ce 100%);
  border-color: rgba(255, 152, 56, 0.25);
  box-shadow: 0 12px 28px rgba(255, 152, 56, 0.12);
}

.cta-button--sub::before {
  background: linear-gradient(180deg, var(--color-orange) 0%, var(--color-yellow) 100%);
}

.cta-button--sub:hover {
  box-shadow: 0 16px 34px rgba(255, 152, 56, 0.18);
}

.cta-button--primary {
  min-width: min(100%, 320px);
  font-size: 1rem;
}

.cta-button--secondary {
  min-width: min(100%, 250px);
  font-size: 0.96rem;
}

.cta-button--image {
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  animation: ctaFloatPulse 1.9s ease-in-out infinite;
}

.cta-button--image::before {
  display: none;
}

.cta-button__image {
  display: block;
  width: min(100%, 340px);
  height: auto;
  box-shadow: 0 10px 16px rgba(34, 117, 72, 0.16);
}

.cta-button--image:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: none;
}

.cta-button--image.cta-button--secondary .cta-button__image,
.cta-button--image.cta-button--sub .cta-button__image {
  width: min(100%, 300px);
}

.cta-button--header {
  min-height: 46px;
  padding-inline: 1.15rem;
  font-size: 0.95rem;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-section {
  overflow: visible;
  padding: 0;
  z-index: 2;
}

.lp-main > .hero-section {
  padding: 0;
}

.hero-section::before {
  background:
    linear-gradient(180deg, #eef7ff 0%, #f4fbff 58%, rgba(255, 255, 255, 0) 100%);
}

.hero-section__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-kv {
  position: relative;
  width: 100%;
  aspect-ratio: 1400 / 1818;
  overflow: visible;
}

.hero-kv__stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-kv__image {
  position: absolute;
  display: block;
  user-select: none;
  pointer-events: none;
}

.hero-kv__bg {
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-kv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-kv__logo {
  top: auto;
  left: 32.5%;
  bottom: 5%;
  width: 38%;
  z-index: 2;
}

.hero-kv__text-top {
  top: 3.2%;
  left: 8%;
  width: 83%;
  z-index: 5;
}

.hero-kv__jockey {
  top: 3%;
  left: 8.2%;
  width: 88%;
  z-index: 4;
  transform-origin: center 72%;
  animation: heroJockeyRun 0.85s ease-in-out infinite;
}

.hero-kv__women {
  top: 35.4%;
  left: 0.2%;
  width: 35.4%;
  z-index: 5;
}

.hero-kv__men {
  top: 35%;
  right: -6.2%;
  width: 45%;
  z-index: 6;
}

.hero-kv__coin {
  top: 48.6%;
  left: 0%;
  width: 100%;
  z-index: 7;
}

.hero-kv__chara {
  left: 16%;
  bottom: 21.2%;
  width: 69.5%;
  z-index: 8;
  transform-origin: center bottom;
  animation: heroCharaPop 0.7s cubic-bezier(0.17, 1.1, 0.32, 1.2) 0.65s both;
}

.hero-kv__text-main {
  /*left: -3.2%;*/
  bottom: 2%;
  width: 100%;
  z-index: 9;
  transform-origin: center center;
  animation: heroTextPulse 0.95s ease-in-out 1.15s infinite;
  overflow: hidden;
}

.hero-kv__fade-left {
  opacity: 0;
  animation: heroFadeLeft 0.7s ease-out both;
}

.hero-kv__fade-right {
  opacity: 0;
  animation: heroFadeRight 0.7s ease-out both;
}

.hero-kv__fade-down {
  opacity: 0;
  animation: heroFadeDown 0.65s ease-out both;
}

.hero-kv__logo {
  animation-delay: 0.1s;
}

.hero-kv__text-top {
  animation-delay: 0.2s;
}

.hero-kv__women {
  animation-delay: 0.42s;
}

.hero-kv__men {
  animation-delay: 0.34s;
}

.hero-kv__coin {
  animation-delay: 0.52s;
}

@media (min-width: 640px) {
  .hero-section__inner {
    width: min(calc(100% - 24px), 1200px);
  }
}

@media (min-width: 1024px) {
  .hero-section::before {
    background:
      linear-gradient(180deg, #eef7ff 0%, #f4fbff 82%, rgba(255, 255, 255, 0) 100%);
  }

  .hero-section__inner {
    width: min(calc(100% - 32px), 1200px);
  }

  .hero-kv {
    aspect-ratio: 1200 / 981;
  }

  .hero-kv__logo {
    left: 35.2%;
    bottom: 0%;
    width: 30%;
  }

  .hero-kv__text-top {
    top: 18.1%;
    left: 9%;
    width: 81.5%;
  }

  .hero-kv__jockey {
    top: -3.2%;
    left: 16.5%;
    width: 70.8%;
  }

  .hero-kv__women {
    top: 30.8%;
    left: 7.2%;
    width: 25.2%;
  }

  .hero-kv__men {
    top: 30.8%;
    right: -2.8%;
    width: 35.2%;
  }

  .hero-kv__coin {
    top: 30.4%;
    left: 0%;
    width: 100%;
  }

  .hero-kv__chara {
    left: 25.6%;
    top: 35.4%;
    width: 50.5%;
  }

  .hero-kv__text-main {
    left: 0%;
    top: 60.8%;
    width: 100%;
  }
}

@keyframes heroFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroFadeRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroFadeDown {
  from {
    opacity: 0;
    transform: translateY(-28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroJockeyRun {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-1.1%) scale(1.008);
  }
}

@keyframes heroCharaPop {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.55);
  }

  65% {
    opacity: 1;
    transform: translateY(-10px) scale(1.05);
  }

  82% {
    transform: translateY(4px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroTextPulse {
  0%,
  100% {
    transform: scale(0.94);
  }

  50% {
    transform: scale(1.035);
  }
}

@keyframes ctaFloatPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-5px) scale(1.02);
  }
}

.results-section__copy,
.concerns-section__copy,
.voices-section__copy,
.entry-section__copy,
.steps-section__copy,
.faq-section__copy,
.closing-cta-section__copy {
  max-width: min(100%, var(--container-content));
  margin: 1.2rem auto 0;
  color: var(--color-text-soft);
  font-size: 1rem;
  line-height: 1.9;
}

.entry-section__actions,
.closing-cta-section__actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: stretch;
  margin-top: 1.4rem;
}

.entry-section__note,
.results-section__note {
  margin-top: 0.95rem;
  font-size: 0.86rem;
  line-height: 1.7;
}

.entry-section__note {
  color: #6c756c;
}

.results-section__note {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(67, 49, 12, 0.35);
}

.benefits-section {
  padding-top: 0%;
  margin-top: clamp(-2.8rem, -8vw, -1.2rem);
  z-index: 1;
}



.benefits-section::before {
  background: #ffffff;
}

.race-focus {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 2.6rem 1rem 1.6rem;
  border: 2px solid #1f1f1f;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.24) 100%),
    url("./weeks_race_bg.jpg") center / cover no-repeat;
}

.race-focus__headline {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: calc(100% - 2rem);
  margin: 0;
  padding: 0 0.2rem;
  z-index: 1;
}

.race-focus__title {
  display: flex;
  justify-content: center;
  line-height: 1;
}

.race-focus__title-image {
  display: block;
  width: min(100%, 30rem);
  height: auto;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .race-focus__title-image {
    width: min(100%, 16rem);
    max-width: 16rem;
  }
}

.race-focus__body {
  display: grid;
  gap: 0.85rem;
  padding-top: 0.35rem;
  text-align: center;
}

.race-focus__race {
  font-size: clamp(2rem, 6vw, 3.9rem);
  line-height: 1.18;
  font-family: var(--font-display);
  font-weight: 900;
  color: #111111;
  letter-spacing: 0.01em;
}

.race-focus__race--accent {
  color: #e04b3e;
}

.free-benefits-section {
  z-index: 1;
}

.free-benefits-section::before {
  background:
    linear-gradient(180deg, rgba(255, 249, 231, 0.55) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.free-benefits-section__grid,
.benefits-section__grid,
.features-section__grid,
.safety-section__grid {
  display: grid;
  gap: 1rem;
}

.benefit-card,
.feature-card,
.voice-card,
.safety-card,
.step-card,
.faq-item,
.result-card {
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid rgba(216, 229, 199, 0.95);
  box-shadow: var(--color-shadow);
}

.benefit-card {
  padding: 1.3rem 1.15rem 1.2rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #fffdf4 100%);
  border-color: rgba(255, 212, 77, 0.42);
}

.benefit-card__image {
  width: 100%;
  height: auto;
  margin: 0 0 1rem;
}

.benefit-card__title-image {
  display: block;
  width: 100%;
  height: auto;
}

.benefit-card__content {
  margin-top: 0.9rem;
  padding: 1rem 1.05rem 1.05rem 1.5rem;
  background: url("./secret_panel_bg.png") center top / cover no-repeat;
  border-radius: 5px;
}

.benefit-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 212, 77, 0.2);
  color: #7d6500;
  font-size: 0.8rem;
  font-weight: 800;
}

.benefit-card__title,
.feature-card__title,
.safety-card__title,
.step-card__title {
  margin-top: 0.85rem;
  font-size: 1.12rem;
  line-height: 1.45;
  font-weight: 900;
  color: var(--color-green-deep);
}

.free-benefits-section .section-heading__lead {
  font-size: clamp(1.45rem, 3vw, 1.65rem);
  line-height: 1.5;
}

.free-benefits-section .benefit-card__title {
  font-size: 1.7rem;
  line-height: 1.35;
}

.free-benefits-section .benefit-card__text {
  font-size: 1.12rem;
  line-height: 1.7;
  font-weight: 500;
  color: #4f230d;
  letter-spacing: 0.01em;
  font-family: Meiryo, "メイリオ", "Hiragino Sans", "Yu Gothic", sans-serif;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.25);
}

.benefit-card__emphasis {
  font-weight: 800;
  color: #3f1806;
  padding: 0 0.12em;
  background: linear-gradient(transparent 45%, rgba(255, 225, 84, 0.58) 45%, rgba(255, 225, 84, 0.58) 92%, transparent 92%);
}

@media (max-width: 767px) {
  .benefit-card__content {
    padding: 0.9rem 0.95rem 0.95rem 1.3rem;
  }

  .free-benefits-section .benefit-card__text {
    font-size: 1rem;
    line-height: 1.72;
  }
}

.benefit-card__text,
.feature-card__text,
.safety-card__text,
.step-card__text,
.voice-card__text,
.faq-item__answer p,
.delivery-section__copy {
  margin-top: 0.7rem;
  color: var(--color-text-soft);
  font-size: 0.96rem;
  line-height: 1.8;
}

.results-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 248, 228, 0.22) 54%, rgba(255, 255, 255, 0.42) 100%),
    url("./green_bg.jpg") center center / cover no-repeat;
}

.results-section__list {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.6rem;
  width: max-content;
  will-change: transform;
}

.results-section__plan-image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin-top: 1.1rem;
}

.results-section__plan-copy {
  position: relative;
  margin-top: 1rem;
  padding: 0.95rem 1.15rem 1rem;
  color: #7a2c0d;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 252, 229, 0.96) 0%, rgba(255, 236, 178, 0.98) 100%);
  border: 2px solid #f2b64d;
  border-radius: 1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 12px 24px rgba(162, 102, 8, 0.12);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

@media (max-width: 767px) {
  .results-section .section-heading {
    margin-bottom: 0.8rem;
  }

  .results-section__plan-copy {
    padding: 0.85rem 0.95rem 0.9rem;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .results-slider {
    margin-top: 0;
  }
}

.results-slider {
  position: relative;
  overflow: hidden;
  margin-top: 1.2rem;
}

.result-card {
  position: relative;
  flex: 0 0 var(--result-card-width, min(84vw, 320px));
  aspect-ratio: 313 / 518;
  overflow: hidden;
  border: 0;
  border-radius: 30px;
  background: transparent;
  box-shadow: 0 18px 34px rgba(80, 37, 0, 0.22);
}

.result-card__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 38% 8% 10%;
}

.result-card__field {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 0.55rem 1rem 0.65rem;
  border-radius: 0.45rem;
  background:
    linear-gradient(180deg, rgba(255, 225, 104, 0.92) 0%, rgba(255, 173, 34, 0.9) 18%, rgba(186, 31, 11, 0.92) 100%);
  border: 3px solid #ffd36c;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -3px 0 rgba(117, 31, 0, 0.35),
    0 10px 16px rgba(73, 24, 0, 0.3);
}

.result-card__field::before {
  content: "";
  position: absolute;
  inset: 5px 8px auto;
  height: 34%;
  border-radius: 0.35rem;
  background: linear-gradient(180deg, rgba(255, 249, 213, 0.85), rgba(255, 249, 213, 0));
  pointer-events: none;
}

.result-card__field--date {
  margin-top: 4.5%;
  min-width: 76%;
  padding-inline: 1.15rem;
  border-radius: 999px;
}

.result-card__field--name {
  margin-top: 8.5%;
  min-width: 68%;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 230, 114, 0.96) 0%, rgba(33, 144, 33, 0.94) 18%, rgba(15, 112, 20, 0.98) 100%);
}

.result-card__field--type {
  margin-top: 5.8%;
  min-width: 63%;
  padding-block: 0.8rem 0.9rem;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 220, 130, 0.92) 0%, rgba(187, 34, 18, 0.96) 18%, rgba(119, 12, 4, 0.98) 100%);
}

.result-card__field--dividend {
  margin-top: auto;
  margin-bottom: 3%;
  min-width: 84%;
  padding-block: 0.82rem 0.92rem;
  padding-inline: 1rem;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 226, 150, 0.96) 0%, rgba(163, 20, 8, 0.98) 14%, rgba(92, 5, 0, 0.99) 100%);
  border-color: #ffe28b;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -3px 0 rgba(93, 20, 0, 0.45),
    0 12px 20px rgba(88, 20, 0, 0.34);
}

.result-card__date,
.result-card__name,
.result-card__type,
.result-card__dividend {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #fffdf0;
  text-shadow:
    0 2px 0 rgba(88, 20, 0, 0.95),
    0 0 8px rgba(102, 21, 0, 0.32);
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.result-card__date {
  font-size: clamp(1.45rem, 4vw, 2rem);
}

.result-card__name,
.result-card__type {
  font-size: clamp(1.75rem, 5.2vw, 2.55rem);
}

.result-card__dividend {
  font-size: clamp(2.05rem, 7vw, 3.3rem);
  letter-spacing: 0.015em;
  color: #fff9d6;
  text-shadow:
    0 2px 0 rgba(116, 62, 0, 0.95),
    0 0 12px rgba(255, 217, 82, 0.24);
}

@media (min-width: 860px) {
  .result-card__overlay {
    padding: 32% 8% 3%;
  }

  .result-card__date {
    font-size: 1.35rem;
  }

  .result-card__name,
  .result-card__type {
    font-size: 1.78rem;
  }

  .result-card__dividend {
    font-size: 2.05rem;
  }

  .results-section__list {
    gap: 1.25rem;
  }

  .result-card__field--date {
    min-width: 73%;
  }

  .result-card__field--name {
    min-width: 64%;
  }

  .result-card__field--type {
    min-width: 58%;
  }

  .result-card__field--dividend {
    margin-top: 16%;
    margin-bottom: 0;
    min-width: 78%;
  }
}

@media (min-width: 1200px) {
  .result-card__overlay {
    padding: 34% 8% 3%;
  }

  .result-card__date {
    font-size: 1.25rem;
  }

  .result-card__name,
  .result-card__type {
    font-size: 1.62rem;
  }

  .result-card__dividend {
    font-size: 1.9rem;
  }
}

.concerns-section::before {
  background:
    linear-gradient(180deg, rgba(238, 249, 241, 0.64) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.concerns-section__list {
  display: grid;
  gap: 0.8rem;
  max-width: min(100%, 820px);
  margin: 0 auto;
}

.concern-item {
  position: relative;
  padding: 1rem 1rem 1rem 3.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 229, 199, 0.95);
  box-shadow: 0 10px 24px rgba(88, 113, 72, 0.08);
  font-size: 0.97rem;
  font-weight: 700;
  color: #425345;
}

.concern-item::before {
  content: "!";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffefb7 0%, #ffd44d 100%);
  color: #8a6900;
  font-size: 0.95rem;
  font-weight: 900;
}

.features-section::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(21, 184, 74, 0.09), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 248, 236, 0.92) 100%);
}

.feature-card {
  padding: 1.5rem 1.25rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbf4 100%);
}

.delivery-section::before {
  background:
    linear-gradient(180deg, rgba(255, 249, 231, 0.78) 0%, rgba(243, 248, 220, 0.52) 100%);
}

.delivery-section__layout {
  display: grid;
  gap: 1.2rem;
  align-items: center;
}

.delivery-section__image-placeholder {
  min-height: 320px;
}

.delivery-section__image-placeholder::before {
  inset: 18px;
  border-radius: calc(var(--radius-xl) - 14px);
  background:
    linear-gradient(180deg, #d6f4df 0 52px, #ffffff 52px 100%),
    linear-gradient(180deg, transparent 0 52px, #ffffff 52px 100%);
  border: 1px solid rgba(216, 229, 199, 0.95);
}

.delivery-section__image-placeholder::after {
  width: 58%;
  height: 44%;
  left: 21%;
  bottom: 12%;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(21, 184, 74, 0.14) 0 26%, rgba(255, 255, 255, 0.98) 26% 100%);
  box-shadow: 0 16px 30px rgba(34, 117, 72, 0.12);
}

.delivery-section__points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.delivery-section__points li {
  position: relative;
  padding: 0.95rem 1rem 0.95rem 2.9rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 229, 199, 0.95);
  color: #425345;
  font-weight: 700;
}

.delivery-section__points li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-line) 0%, var(--color-line-dark) 100%);
  box-shadow: 0 0 0 6px rgba(21, 184, 74, 0.12);
}

.voices-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 249, 231, 0.72) 100%);
}

.voices-section__list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.voice-card {
  position: relative;
  padding: 1.3rem 1.1rem 1.15rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #fffdf6 100%);
}

.voice-card::before {
  display: none;
}

.voice-card__meta-icon {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(242, 124, 26, 0.18);
  flex: 0 0 auto;
}

.voice-card__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.voice-card__details {
  display: grid;
  gap: 0.2rem;
  align-content: center;
  justify-items: start;
  min-width: 0;
}

.voice-card__author {
  margin-top: 0;
  color: #5c6a5f;
  font-size: 1.45rem;
  font-weight: 700;
}

.voice-card__rating {
  display: flex;
  justify-content: space-between;
  width: min(100%, 10.4rem);
  margin: 0;
  color: #f5a623;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.entry-section {
  overflow: hidden;
}

.entry-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 250, 234, 0.3) 100%),
    url("./green_bg.jpg") center center / cover no-repeat;
}

.entry-section .section-inner,
.closing-cta-section .section-inner {
  padding: 1.5rem 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(216, 229, 199, 0.9);
  box-shadow: var(--color-shadow-strong);
}

.entry-section__copy,
.closing-cta-section__copy {
  text-align: center;
}

.entry-section__logo {
  display: block;
  width: min(100%, 16rem);
  height: auto;
  margin: 1rem auto 0;
}

.entry-section__lead {
  margin-top: 1rem;
  font-size: clamp(1.22rem, 2.2vw, 1.9rem);
  line-height: 1.55;
  font-weight: 900;
  color: #b63716;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.entry-section__lead br {
  display: block;
}

.entry-section__benefits {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.entry-section__benefit {
  display: block;
  width: 100%;
  max-width: 33rem;
  height: auto;
  margin: 0 auto;
  transform-origin: center center;
}

.closing-cta-section__logo {
  display: block;
  width: min(100%, 16rem);
  height: auto;
  margin: 1rem auto 0;
}

.closing-cta-section__lead {
  margin-top: 1rem;
  font-size: clamp(1.12rem, 2vw, 1.6rem);
  line-height: 1.55;
  font-weight: 900;
  color: #b63716;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.82);
}

.closing-cta-section__copy {
  margin-top: 1rem;
  font-size: clamp(1.02rem, 1.9vw, 1.3rem);
  line-height: 1.85;
}

.closing-cta-section__copy--secondary {
  margin-top: 0.75rem;
}

@media (max-width: 767px) {
  .entry-section .section-heading {
    margin-top: 0.8rem;
  }

  .entry-section__logo {
    width: min(100%, 15rem);
    margin-top: 1.2rem;
  }

  .entry-section__lead {
    font-size: 1.28rem;
  }

  .entry-section__benefits {
    gap: 0.85rem;
    margin-top: 1rem;
  }

  .closing-cta-section .section-heading {
    margin-top: 0.8rem;
  }

  .closing-cta-section__logo {
    width: min(100%, 15rem);
    margin-top: 1.2rem;
  }

  .closing-cta-section__lead {
    font-size: 1.18rem;
  }

  .closing-cta-section__copy {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.entry-section__actions .cta-button--primary,
.closing-cta-section__actions .cta-button--primary {
  min-height: 60px;
  font-size: 1.06rem;
}

.safety-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(238, 249, 241, 0.65) 100%);
}

.safety-card {
  padding: 1.35rem 1.15rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fcf7 100%);
}

.steps-section::before {
  background:
    linear-gradient(180deg, rgba(255, 249, 231, 0.7) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.steps-section__list {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.step-card {
  position: relative;
  padding: 1.35rem 1.15rem 1.2rem;
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -22px;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  background: rgba(255, 212, 77, 0.18);
  transform: rotate(-18deg);
}

.step-card__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(237, 191, 92, 0.45);
  box-shadow: 0 12px 24px rgba(107, 74, 20, 0.12);
}

.step-card__body {
  margin-top: 1rem;
}

.step-card__qr {
  display: none;
}

.step-card__qr-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.faq-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 248, 220, 0.65) 100%);
}

.faq-section__list {
  display: grid;
  gap: 0.8rem;
  max-width: min(100%, 860px);
  margin: 1.5rem auto 0;
}

.faq-item {
  overflow: clip;
  background:
    linear-gradient(180deg, #ffffff 0%, #fffef9 100%);
}

.faq-item[open] {
  box-shadow: 0 18px 34px rgba(78, 113, 49, 0.14);
}

.faq-item__question {
  position: relative;
  padding: 1.15rem 3.25rem 1.15rem 1.15rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.6;
  color: #314534;
  list-style: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  margin-right: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #e1f7e4 0%, #c8efcf 100%);
  color: var(--color-green-deep);
  font-size: 0.9rem;
  font-weight: 900;
  vertical-align: middle;
}

.faq-item__question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 212, 77, 0.2);
  color: #7b6200;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__question::after {
  content: "-";
}

.faq-item__answer {
  padding: 0 1.15rem 1.15rem;
}

.closing-cta-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 250, 234, 0.3) 100%),
    url("./green_bg.jpg") center center / cover no-repeat;
}

.site-footer {
  padding: 3rem 0 calc(2rem + var(--sticky-height));
  background: linear-gradient(180deg, #f7faef 0%, #eff5e3 100%);
  border-top: 1px solid rgba(216, 229, 199, 0.9);
}

.site-footer__inner {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.site-footer__brand {
  font-size: 1rem;
  font-weight: 900;
  color: var(--color-green-deep);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.1rem;
}

.site-footer__nav a {
  color: #5d6d5f;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: var(--color-orange-deep);
}

.site-footer__note,
.site-footer__copyright {
  color: #718072;
  font-size: 0.82rem;
  line-height: 1.7;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.6rem 16px calc(0.6rem + env(safe-area-inset-bottom));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(248, 252, 240, 0.9) 16%, rgba(248, 252, 240, 0.98) 100%);
  overflow: hidden;
}

.sticky-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.7rem;
  width: 100%;
  max-width: 100%;
}

.cta-button--sticky-primary {
  min-height: 52px;
  font-size: 0.95rem;
  padding-inline: 0.9rem;
}

.cta-button--sticky-primary {
  width: 100%;
  box-shadow: 0 14px 26px rgba(21, 184, 74, 0.22);
}

.hero-kv,
.free-benefits-section__grid,
.benefits-section__grid,
.results-section__list,
.features-section__grid,
.delivery-section__layout,
.voices-section__list,
.safety-section__grid,
.steps-section__list {
  max-width: var(--container-wide);
  margin-inline: auto;
}

.lp-main,
.section-inner,
.hero-section,
.hero-section__inner {
  overflow-x: clip;
}

@media (min-width: 640px) {
  :root {
    --sticky-height: 92px;
  }

  .site-header__inner,
  .section-inner,
  .site-footer__inner,
  .sticky-cta__inner {
    width: min(calc(100% - 48px), var(--container-wide));
  }

  .lp-main > section {
    padding: var(--space-3xl) 0;
  }

  .lp-main > .hero-section {
    padding: 0;
  }

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

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

  .features-section__grid,
  .safety-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .entry-section__actions,
  .closing-cta-section__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
  }

  .entry-section__actions,
  .closing-cta-section__actions {
    justify-content: center;
  }

  .delivery-section__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.5rem;
  }

  .sticky-cta__inner {
    width: min(calc(100% - 40px), 720px);
  }

  .section-heading {
    margin-top: -0.4rem;
  }
}

@media (min-width: 860px) {
  .free-benefits-section__grid,
  .benefits-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .entry-section .section-inner,
  .closing-cta-section .section-inner {
    padding: 2.5rem 2rem;
  }
}

@media (min-width: 1024px) {
  body {
    padding-bottom: calc(var(--sticky-height) + 36px);
  }

  .benefits-section {
    margin-top: 0;
  }

  .benefits-section::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 18%, #ffffff 100%);
  }

  .benefits-section,
  .delivery-section,
  .safety-section {
    padding: 4.5rem 0;
  }

  .site-header__inner {
    padding: 1rem 0;
  }

  .site-header__logo {
    font-size: 1.08rem;
  }

  .section-heading {
    margin-top: 0;
    margin-bottom: 1.7rem;
  }

  .section-heading__title {
    max-width: 17ch;
    margin-inline: auto;
    font-size: clamp(3.25rem, 5.2vw, 5.4rem);
  }

  .section-heading__title-image {
    width: min(100%, 48rem);
  }

  .entry-section__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 980px;
    margin: 1.35rem auto 0;
  }

  .entry-section__benefit {
    max-width: none;
  }

  .cta-button--image .cta-button__image {
    width: min(100%, 680px);
  }

  .cta-button--image.cta-button--secondary .cta-button__image,
  .cta-button--image.cta-button--sub .cta-button__image {
    width: min(100%, 600px);
  }

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

  .voice-card {
    padding: 1.45rem 1.3rem 1.25rem;
  }

  .steps-section__list {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    max-width: 1080px;
  }

  .step-card {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 136px;
    gap: 1.7rem;
    align-items: center;
    padding: 1.4rem 1.55rem;
    border-radius: 26px;
  }

  .step-card__image {
    border-radius: 14px;
  }

  .step-card__body {
    margin-top: 0;
  }

  .step-card__title {
    margin-top: 0;
    font-size: clamp(1.8rem, 2.8vw, 2.55rem);
    line-height: 1.18;
  }

  .step-card__text {
    margin-top: 0.85rem;
    font-size: 1.18rem;
    line-height: 1.75;
  }

  .step-card__qr {
    display: block;
    justify-self: end;
    width: 136px;
    position: relative;
    z-index: 2;
  }

  .delivery-section__layout {
    grid-template-columns: minmax(400px, 1fr) minmax(0, 1fr);
    gap: 2rem;
  }

  .delivery-section__content {
    max-width: 540px;
  }

  .sticky-cta {
    padding-top: 0.7rem;
  }

  .sticky-cta__inner {
    width: min(calc(100% - 56px), 760px);
  }
}

@media (max-width: 639px) {
  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-header__logo,
  .site-header .cta-button {
    width: 100%;
    justify-content: center;
  }

  .section-heading__title br {
    display: inline;
  }

}
