:root {
  --orange: #E8804D;
  --orange-light: #F0A06E;
  --green: #7FA86E;
  --cream: #F5E6D3;
  --light-cream: #FBF6EF;
  --deep-green: #3D5C3A;
  --text: #4A4038;
  --white: #FFFFFF;
  --line: rgba(126, 93, 60, 0.22);
  --shadow: 0 18px 45px rgba(94, 62, 34, 0.12);
  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.9;
  background: var(--white);
}

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

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

button {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 26px rgba(74, 64, 56, 0.08);
  transform: translateY(-110%);
  transition: transform 0.35s ease;
  backdrop-filter: blur(10px);
}

.site-header.is-visible {
  transform: translateY(0);
}

.header-inner {
  width: min(1240px, calc(100% - 48px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo img {
  width: 207px;
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.header-nav a {
  white-space: nowrap;
}

.header-cta,
.sticky-bottom-cta a,
.popup-cta,
.fv-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  color: var(--white);
  font-weight: 900;
  line-height: 1.35;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: 0 4px 10px rgba(232, 128, 77, 0.3);
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover,
.sticky-bottom-cta a:hover,
.popup-cta:hover,
.fv-cta-btn:hover {
  background: #d06b3a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 128, 77, 0.35);
}

.header-cta:active,
.sticky-bottom-cta a:active,
.popup-cta:active,
.fv-cta-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  padding: 48px 0 60px;
  background:
    radial-gradient(circle at 16% 28%, rgba(245, 230, 211, 0.9), transparent 30%),
    linear-gradient(125deg, #fff 0%, #fff 42%, var(--cream) 100%);
}

.fv {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 680px;
  overflow: hidden;
  background: var(--cream);
}

.fv-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 52%;
  max-width: 680px;
  padding: 80px 40px 80px 120px;
}

.fv-logo {
  display: inline-flex;
  margin-bottom: 24px;
}

.fv-logo img {
  width: auto;
  height: 44px;
}

.fv-headline {
  margin: 0 0 20px;
  color: #3a2e28;
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
  white-space: nowrap;
}

.fv-headline-accent {
  color: var(--orange);
}

.fv-sub {
  margin: 0 0 32px;
  color: #666;
  font-size: 15px;
  white-space: nowrap;
}

.fv-badges {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  width: 100%;
  max-width: 580px;
  margin-bottom: 40px;
}

.hero-brand {
  position: relative;
  z-index: 5;
  margin-bottom: 20px;
}

.hero-brand img {
  width: 221px;
  height: auto;
}

.hero-inner {
  position: relative;
  z-index: 3;
  min-height: 650px;
}

.hero-copy {
  width: 50%;
  max-width: 620px;
  padding-top: 72px;
  text-align: left;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero h1,
.section-heading h2,
.trial-box h2,
.final-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
}

.hero h1 {
  font-size: 76px;
  line-height: 1.35;
  white-space: nowrap;
}

.hero h1 span,
.section-heading h2 span,
.trial-box h2 span,
.final-content h2 span {
  color: var(--orange);
}

.hero-lead {
  margin: 24px 0 8px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 14px;
  width: 100%;
  max-width: 580px;
  margin: 32px 0 0;
}

.fv-badge {
  display: flex;
  align-items: center;
  flex: 1 1 0;
  gap: 12px;
  min-width: 0;
  padding: 14px 18px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid #d4c9bc;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.fv-badge i {
  flex-shrink: 0;
  color: var(--green);
  font-size: 26px;
}

.fv-badge span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.image-cta {
  display: inline-block;
  width: min(100%, 360px);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.image-cta:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.hero-photo {
  position: absolute;
  top: 0;
  right: -20px;
  z-index: 1;
  overflow: hidden;
  width: min(72vw, 1040px);
  height: 100%;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.5) 25%, #000 42%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 12%),
    linear-gradient(to top, transparent 0%, #000 15%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.5) 25%, #000 42%, #000 88%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 12%),
    linear-gradient(to top, transparent 0%, #000 15%);
  mask-composite: intersect;
}

.fv-image {
  position: absolute;
  top: -140px;
  right: 0;
  width: auto;
  height: calc(100% + 140px);
  object-fit: cover;
  object-position: center right;
  transform: scale(1.15);
  transform-origin: top right;
}

.hero-support {
  position: absolute;
  right: 32px;
  bottom: 72px;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.fv-badge-circle {
  width: auto;
  min-width: 220px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
  border: 2px solid var(--orange);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(74, 64, 56, 0.14);
}

.hero-offer-stack {
  width: min(100%, 400px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fv-discount-card {
  position: static;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 420px;
  margin: 16px 0 14px;
  padding: 14px 28px;
  background: #fff5ec;
  border: 1.5px solid var(--orange);
  border-radius: 8px;
}

.fv-discount-label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.fv-discount-value {
  color: var(--orange);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.fv-cta-btn {
  display: block;
  width: 100%;
  max-width: 420px;
  padding: 20px 32px;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background: var(--orange);
  border-radius: 50px;
}

.section {
  padding: 108px 0;
}

.section-cream {
  background: var(--light-cream);
}

.section-deep {
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-green), #547845);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(30px, 3.2vw, 46px);
}

.section-heading p {
  margin: 20px auto 0;
  font-size: 18px;
  font-weight: 500;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 168px;
  padding: 30px 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-value {
  margin: 10px 0 8px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
}

.proof-value span {
  font-size: 28px;
}

.proof-label {
  margin: 0;
  font-size: 19px;
  font-weight: 900;
}

.proof-value-accent {
  color: #FFE9BF;
}

.proof-note {
  margin: auto 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.proof-icon {
  min-height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-icon img {
  width: 112px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.concerns {
  background: var(--white);
}

.concerns .section-heading {
  max-width: 1000px;
}

.concerns .section-heading h2 {
  font-size: clamp(28px, 2.9vw, 41px);
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.concern-card,
.benefit-card,
.watching-card,
.voice-card,
.pricing-card,
.plan-card,
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(94, 62, 34, 0.07);
}

.concern-card {
  min-height: 210px;
  padding: 30px 22px;
  text-align: center;
}

.concern-card img {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.concern-card p {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.75;
}

.delivery-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.delivery-photo {
  overflow: hidden;
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.delivery-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.benefit-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.benefit-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
}

.benefit-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.benefit-card h3,
.watching-card h3,
.plan-card h3,
.pricing-card h3 {
  margin: 0;
  color: var(--deep-green);
  font-size: 21px;
  line-height: 1.45;
}

.benefit-card p,
.watching-card p,
.plan-card p {
  margin: 4px 0 0;
}

.plan-grid,
.pricing-grid,
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-card {
  overflow: hidden;
}

.plan-card > img {
  width: 100%;
  aspect-ratio: 1.36 / 1;
  object-fit: cover;
}

.plan-body {
  padding: 24px;
}

.price {
  color: var(--orange);
  font-family: var(--serif);
  line-height: 1.1;
}

.price strong {
  font-size: 54px;
  font-weight: 900;
}

.price span {
  margin-left: 4px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
}

.center-cta {
  margin-top: 42px;
  text-align: center;
}

.nutrition-title {
  font-size: clamp(32px, 2.8vw, 40px) !important;
  letter-spacing: -0.03em !important;
  white-space: nowrap;
}

.section-heading .nutrition-catch {
  color: var(--text);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.55;
}

.nutrition-catch span {
  color: var(--orange);
}

.expertise-food-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.expertise-food-row img {
  width: 100%;
  height: 140px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.expertise-person-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.expertise-person-row .expert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(94, 62, 34, 0.07);
}

.expertise-person-row .expert-card img {
  width: 160px;
  height: 200px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
}

.expert-caption {
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.expert-desc {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.6;
}

.watching-photo {
  overflow: hidden;
  margin-bottom: 22px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.watching-photo img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.watching-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.watching-card {
  padding: 26px 24px;
  text-align: center;
}

.watching-card img {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.voice-card {
  position: relative;
  overflow: hidden;
  padding: 16px 16px 26px;
}

.voice-label {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  padding: 5px 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  background: var(--green);
  border-radius: 8px;
}

.voice-card img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.voice-card blockquote {
  margin: 24px 8px 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.75;
}

.pricing-card {
  overflow: hidden;
  padding: 0;
  text-align: center;
}

.pricing-card > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.pricing-body {
  padding: 30px 24px;
}

.pricing-card.highlight {
  border-color: rgba(232, 128, 77, 0.5);
}

.pricing-card p {
  margin: 14px 0 0;
  font-weight: 800;
}

.pricing-card strong {
  display: block;
  margin: 8px 0 14px;
  color: var(--orange);
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1;
}

.pricing-card strong span {
  color: var(--text);
  font-family: var(--sans);
  font-size: 22px;
}

.pricing-card small {
  display: block;
  font-size: 15px;
  line-height: 1.8;
}

.pricing-note {
  margin: 22px 0 0;
  text-align: center;
  font-size: 14px;
}

.trial {
  background:
    radial-gradient(circle at 50% 10%, rgba(232, 128, 77, 0.16), transparent 35%),
    linear-gradient(180deg, #fff, #fff7ef);
}

.trial-box {
  padding: 56px 42px;
  text-align: center;
  border: 1px solid rgba(232, 128, 77, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.trial-box h2 {
  font-size: clamp(30px, 3.1vw, 44px);
}

.trial-box p {
  margin: 20px 0 28px;
  font-size: 18px;
}

.trial-benefits {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
}

.trial-benefits div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  padding: 14px 22px;
  text-align: left;
  border: 1px solid rgba(232, 128, 77, 0.34);
  border-radius: 12px;
  background: var(--white);
}

.trial-benefits img {
  width: 44px;
}

.trial-benefits span {
  font-weight: 800;
  line-height: 1.45;
}

.trial-benefits strong {
  color: var(--orange);
  font-family: var(--serif);
  font-size: 28px;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 12px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--text);
  font-weight: 900;
  text-align: left;
  background: var(--white);
  border: 0;
  cursor: pointer;
}

.faq-question span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.faq-question span::before {
  content: "Q";
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  font-weight: 900;
  border-radius: 999px;
  background: var(--green);
}

.faq-question em {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--green);
  font-style: normal;
  font-weight: 900;
  border: 1px solid rgba(127, 168, 110, 0.4);
  border-radius: 999px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 20px 68px;
}

.faq-item.is-open .faq-answer {
  max-height: 220px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--deep-green);
}

.final-bg,
.final-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-bg {
  object-fit: cover;
}

.final-overlay {
  background:
    linear-gradient(90deg, rgba(61, 92, 58, 0.94), rgba(61, 92, 58, 0.66) 44%, rgba(61, 92, 58, 0.22)),
    linear-gradient(0deg, rgba(61, 92, 58, 0.2), rgba(61, 92, 58, 0.2));
}

.final-content {
  position: relative;
  z-index: 1;
  padding: 92px 0 60px;
}

.final-content h2 {
  font-size: clamp(38px, 4.2vw, 60px);
}

.final-content p {
  max-width: 560px;
  margin: 20px 0 28px;
  font-size: 19px;
  font-weight: 700;
}

.final-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 52px;
}

.final-labels span {
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-logo {
  width: 238px;
  filter: brightness(0) invert(1);
}

.sticky-bottom-cta {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-bottom-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.exit-popup.is-visible {
  display: flex;
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(74, 64, 56, 0.34);
}

.popup-panel {
  position: relative;
  width: min(100%, 520px);
  padding: 42px 38px;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(232, 128, 77, 0.22);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(74, 64, 56, 0.26);
}

.popup-panel h2 {
  margin: 0;
  color: var(--deep-green);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.45;
}

.popup-panel p {
  margin: 18px 0 26px;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.zoom-image {
  animation: gentle-zoom 16s ease-in-out infinite alternate;
  will-change: transform;
}

.fv-image.zoom-image {
  animation-name: fv-gentle-zoom;
}

@keyframes gentle-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

@keyframes fv-gentle-zoom {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1023px) {
  .container,
  .header-inner {
    width: min(100% - 40px, 920px);
  }

  .header-nav {
    display: none;
  }

  .fv {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }

  .fv-text {
    width: min(100% - 40px, 920px);
    max-width: none;
    margin: 0 auto;
    padding: 56px 0 24px;
  }

  .hero {
    min-height: 0;
    padding: 24px 0 42px;
  }

  .hero-inner,
  .delivery-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 0;
  }

  .hero-copy {
    width: 100%;
    max-width: 660px;
    padding-top: 20px;
    text-align: left;
  }

  .hero-photo {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    max-width: none;
    margin: 34px 0 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 8%);
  }

  .fv-image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .hero-support {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100% - 40px, 920px);
    margin: -165px auto 0;
    justify-content: flex-end;
  }

  .nutrition-title {
    white-space: normal;
  }

  .proof-grid {
    grid-template-columns: repeat(5, minmax(132px, 1fr));
    overflow-x: auto;
  }

  .concern-grid,
  .watching-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-grid,
  .pricing-grid,
  .voice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-food-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .final-overlay {
    background: linear-gradient(90deg, rgba(61, 92, 58, 0.94), rgba(61, 92, 58, 0.72));
  }
}

@media (max-width: 768px) {
  .fv-badges {
    flex-wrap: wrap;
  }

  .fv-badge {
    flex: 0 0 auto;
    min-width: 140px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 1.85;
  }

  .container,
  .header-inner {
    width: calc(100% - 28px);
  }

  .header-inner {
    min-height: 66px;
    gap: 14px;
  }

  .header-logo img {
    width: 165px;
  }

  .header-cta {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .hero {
    padding: 18px 0 32px;
  }

  .fv-text {
    width: calc(100% - 28px);
    padding: 40px 0 20px;
  }

  .fv-headline {
    font-size: 36px;
    white-space: normal;
  }

  .fv-sub {
    font-size: 15px;
    white-space: normal;
  }

  .fv-badges {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-brand img {
    width: 176px;
  }

  .hero-inner {
    gap: 34px;
  }

  .hero h1 {
    font-size: 41px;
    line-height: 1.35;
    white-space: normal;
  }

  .hero-photo {
    max-width: 100%;
  }

  .fv-image {
    aspect-ratio: 3 / 4;
  }

  .hero-lead {
    font-size: 17px;
    white-space: normal;
  }

  .hero-badges {
    flex-wrap: wrap;
    gap: 12px;
  }

  .fv-badge {
    flex: 0 0 auto;
    width: auto;
    min-width: 140px;
  }

  .hero-support {
    width: calc(100% - 28px);
    margin-top: -170px;
    gap: 10px;
  }

  .fv-badge-circle {
    width: auto;
    min-width: 112px;
    height: auto;
    padding: 10px 12px;
    font-size: 12px;
    border-radius: 4px;
  }

  .hero-offer-stack {
    width: calc(100% - 118px);
    max-width: 230px;
    gap: 7px;
  }

  .fv-discount-card {
    gap: 10px;
    margin: 0 0 14px;
    padding: 12px 14px;
  }

  .fv-discount-label {
    font-size: 10px;
  }

  .fv-discount-value {
    font-size: 28px;
  }

  .image-cta {
    width: 100%;
    max-width: 360px;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .nutrition-title {
    font-size: 27px !important;
  }

  .section-heading .nutrition-catch {
    font-size: 24px;
  }

  .section-heading p {
    font-size: 16px;
  }

  .proof-grid,
  .concern-grid,
  .plan-grid,
  .pricing-grid,
  .watching-points,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    overflow-x: visible;
  }

  .proof-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .concern-card {
    min-height: auto;
  }

  .delivery-photo img {
    aspect-ratio: 1 / 0.85;
  }

  .benefit-card {
    grid-template-columns: 48px 1fr;
    padding: 16px;
  }

  .benefit-card img {
    width: 44px;
    height: 44px;
  }

  .benefit-card h3,
  .watching-card h3,
  .plan-card h3,
  .pricing-card h3 {
    font-size: 19px;
  }

  .plan-body {
    padding: 22px 18px;
  }

  .price strong,
  .pricing-card strong {
    font-size: 52px;
  }

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

  .expertise-person-row {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .voice-card blockquote {
    font-size: 20px;
  }

  .trial-box {
    padding: 38px 18px;
  }

  .trial-box h2 {
    font-size: 28px;
  }

  .trial-benefits {
    flex-direction: column;
  }

  .trial-benefits div {
    width: 100%;
    min-width: 0;
  }

  .faq-question {
    align-items: flex-start;
    padding: 16px;
  }

  .faq-question span {
    align-items: flex-start;
    gap: 10px;
  }

  .faq-question span::before {
    width: 30px;
    height: 30px;
  }

  .faq-answer p {
    padding: 0 16px 18px 56px;
    font-size: 15px;
  }

  .final-cta {
    min-height: 620px;
  }

  .final-content {
    padding: 80px 0 86px;
  }

  .final-content h2 {
    font-size: 34px;
  }

  .final-content p {
    font-size: 17px;
  }

  .final-labels {
    gap: 8px;
    margin-bottom: 38px;
  }

  .final-labels span {
    font-size: 13px;
  }

  .sticky-bottom-cta {
    right: 14px;
    bottom: 12px;
    left: 14px;
  }

  .sticky-bottom-cta a {
    width: 100%;
    min-height: 52px;
  }

  .popup-panel {
    padding: 38px 20px 28px;
  }

  .popup-panel h2 {
    font-size: 25px;
  }
}
