:root {
  --page: #f4efe4;
  --page-2: #edf3e6;
  --surface: #ffffff;
  --surface-soft: #fbf8f1;

  --text: #17251d;
  --muted: #5f7066;

  --sage: #7ea06b;
  --sage-dark: #486d3c;
  --sage-soft: #dfead0;
  --sage-pale: #f0f6e7;

  --warm: #c9793d;
  --warm-soft: #f3dcc7;

  --line: rgba(72, 109, 60, 0.18);
  --shadow: 0 20px 54px rgba(53, 73, 50, 0.14);
  --shadow-strong: 0 28px 80px rgba(45, 68, 43, 0.2);

  --radius-xl: 38px;
  --radius-lg: 30px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 4%, rgba(201, 121, 61, 0.12), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(126, 160, 107, 0.26), transparent 30%),
    linear-gradient(180deg, #fbf7ee 0%, #f1f4ea 44%, #f7f1e6 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 238, 0.92);
  border-bottom: 1px solid rgba(72, 109, 60, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.site-logo {
  width: 185px;
  max-height: 58px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: #405847;
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.main-nav a:hover {
  background: var(--sage-soft);
  color: var(--text);
}

/* HERO — DESKTOP */

.hero {
  padding: 22px 0 48px;
  background:
    radial-gradient(circle at 12% 14%, rgba(201, 121, 61, 0.14), transparent 26%),
    linear-gradient(180deg, #fbf7ee 0%, #eef4e7 100%);
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1.05fr;
  align-items: stretch;
  min-height: 560px;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 18%, rgba(126, 160, 107, 0.14), transparent 30%),
    linear-gradient(135deg, #fbf7ee 0%, #f5efe3 48%, #eaf1df 100%);
  box-shadow: var(--shadow-strong);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 36px 42px 34px 42px;
  max-width: 700px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage-dark);
  border: 1px solid rgba(72, 109, 60, 0.18);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.hero p {
  margin: 14px 0 0;
  color: #405247;
  font-size: 15px;
  line-height: 1.55;
}

.hero-facts {
  width: min(100%, 620px);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  justify-content: center;
  align-items: stretch;
}

.hero-facts div {
  min-height: 82px;
  padding: 16px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(72, 109, 60, 0.16);
  box-shadow: 0 12px 26px rgba(53, 73, 50, 0.09);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-facts strong {
  display: block;
  color: var(--sage-dark);
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.hero-facts span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
}

.hero-product {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 0 38px 38px 0;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(251, 247, 238, 0.82) 0%,
      rgba(251, 247, 238, 0.34) 20%,
      rgba(251, 247, 238, 0.02) 44%
    );
  pointer-events: none;
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
  transform: scale(1.02);
  filter: contrast(1.08) brightness(1.04) saturate(1.05);
}

/* QUICK STRIP */

.quick-strip {
  position: relative;
  z-index: 10;
  margin-top: -28px;
  padding: 0 0 34px;
  background: linear-gradient(180deg, #eef4e7 0%, #f7f2e8 100%);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.quick-grid article {
  min-height: 170px;
  padding: 24px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quick-grid span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 17px;
  background: linear-gradient(145deg, var(--sage-soft), #fff6e7);
  font-size: 24px;
}

.quick-grid h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.quick-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

/* GLOBAL */

.section {
  padding: 78px 0;
}

.section-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section h2,
.section-head h2,
.final-box h2,
.pros-cons-section > .container > h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-head {
  max-width: 1180px;
  margin-bottom: 38px;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p,
.content-card p,
.safety-card p,
.final-box p,
.cards-grid p,
.pathway-grid p,
.benefit-list p,
.course-timeline p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.single-line {
  max-width: none;
}

/* ARTICLE IMAGE BLOCKS */

.article-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 44px;
  align-items: center;
}

.reverse-grid {
  grid-template-columns: 1.04fr 0.96fr;
}

.content-card {
  padding: 36px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.content-card h3 {
  margin: 26px 0 0;
  color: var(--text);
  font-size: 23px;
  letter-spacing: -0.035em;
}

.content-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.content-card li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 700;
}

.content-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage-dark);
  font-weight: 950;
}

.side-visual {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #efe8dc;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
}

.side-visual img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: 78% center;
  filter: contrast(1.04) brightness(1.03) saturate(1.03);
}

.side-note {
  margin: 18px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(53, 73, 50, 0.12);
}

.side-note strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 20px;
}

.side-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.side-checklist li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 800;
}

.side-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage-dark);
  font-weight: 950;
}

/* SOFT SECTIONS */

.soft-section {
  background:
    radial-gradient(circle at 85% 18%, rgba(201, 121, 61, 0.1), transparent 24%),
    linear-gradient(180deg, #f7f2e8 0%, #eef4e7 100%);
}

.formula-section {
  background:
    radial-gradient(circle at top right, rgba(201, 121, 61, 0.12), transparent 24%),
    linear-gradient(180deg, #fbf7ee 0%, #edf3e6 100%);
}

.pathways-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(126, 160, 107, 0.22), transparent 26%),
    linear-gradient(180deg, #fbf7ee 0%, #f1f5eb 100%);
}

.course-section {
  background:
    radial-gradient(circle at top left, rgba(126, 160, 107, 0.24), transparent 26%),
    linear-gradient(180deg, #f5f0e6 0%, #eaf2e0 100%);
}

/* CARD GRIDS */

.cards-grid,
.pathway-grid,
.benefit-list {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.cards-grid article,
.pathway-grid article,
.benefit-list article {
  padding: 28px;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  grid-column: span 3;
}

.card-number {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 950;
}

.cards-grid h3,
.pathway-grid h3,
.benefit-list h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.five-grid article:nth-child(5) {
  grid-column: 4 / span 6;
  background: linear-gradient(180deg, #ffffff 0%, #f2f7eb 100%);
}

.pathway-grid article:nth-child(5) {
  grid-column: 2 / span 3;
}

.pathway-grid article:nth-child(6) {
  grid-column: 5 / span 3;
}

.pathway-grid article:nth-child(7) {
  grid-column: 8 / span 3;
}

.benefit-list article:nth-child(5) {
  grid-column: 4 / span 3;
}

.benefit-list article:nth-child(6) {
  grid-column: 7 / span 3;
}

.path-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--sage-soft), #fff1dc);
  font-size: 27px;
}

/* FORMULA */

.formula-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
}

.main-ingredient {
  padding: 36px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 14%, rgba(201, 121, 61, 0.16), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #edf5e6 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.main-ingredient span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-ingredient h3 {
  margin: 0;
  color: var(--text);
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.main-ingredient p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ingredient-grid article {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.ingredient-grid h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 22px;
  letter-spacing: -0.035em;
}

.ingredient-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

/* BANNERS */

.banner-section {
  padding: 40px 0 0;
}

.wide-banner {
  overflow: hidden;
  min-height: 420px;
  border-radius: 38px;
  background: #f0e8da;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
}

.wide-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: 82% center;
  filter: contrast(1.07) brightness(1.03) saturate(1.04);
}

/* COURSE */

.course-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.course-timeline article {
  padding: 30px;
  min-height: 300px;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.week-badge {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--warm-soft);
  color: #8a4b20;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.course-timeline h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 24px;
  letter-spacing: -0.04em;
}

/* USE */

.use-grid {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 28px;
  align-items: stretch;
}

.routine-box {
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 16% 12%, rgba(201, 121, 61, 0.14), transparent 32%),
    linear-gradient(180deg, #eef5e6 0%, #fbf7ef 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.routine-main {
  padding: 30px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow);
}

.routine-main strong {
  display: block;
  color: var(--sage-dark);
  font-size: 62px;
  line-height: 1;
}

.routine-main span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.routine-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.routine-item span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--sage-soft);
  color: var(--sage-dark);
  font-weight: 950;
  font-size: 20px;
}

.routine-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 700;
}

/* SAFETY */

.safety-card {
  padding: 42px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 88% 20%, rgba(201, 121, 61, 0.13), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #edf4e5 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.safety-grid article {
  padding: 26px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.safety-grid h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 23px;
  letter-spacing: -0.035em;
}

.safety-grid p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

/* PROS CONS */

.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.pros-card,
.cons-card {
  padding: 34px;
  border-radius: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pros-card {
  background: linear-gradient(180deg, #ffffff 0%, #eef6e7 100%);
}

.cons-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8ead9 100%);
}

.pros-card h3,
.cons-card h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 31px;
  letter-spacing: -0.04em;
}

.pros-card p,
.cons-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* FAQ */

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

details {
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--sage-dark);
  font-size: 24px;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.65;
}

/* FINAL */

.final-note {
  padding: 26px 0 76px;
}

.final-box {
  padding: 36px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 90% 20%, rgba(201, 121, 61, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eef5e6 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 36px 0;
  background: #eaf0e2;
  border-top: 1px solid rgba(72, 109, 60, 0.12);
  color: #65746a;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner img {
  width: 180px;
  max-height: 70px;
  object-fit: contain;
}

.footer-inner p {
  margin: 0;
}

/* RESPONSIVE */

@media (min-width: 861px) {
  .single-line {
    white-space: nowrap;
  }
}

@media (max-width: 1120px) {
  .hero-shell,
  .article-grid,
  .reverse-grid,
  .formula-layout,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: none;
    padding: 36px;
  }

  .hero-product {
    min-height: 420px;
    border-radius: 0 0 38px 38px;
  }

  .hero-product::before {
    background:
      linear-gradient(
        180deg,
        rgba(251, 247, 238, 0.08) 0%,
        rgba(251, 247, 238, 0.02) 100%
      );
  }

  .quick-grid,
  .course-timeline,
  .ingredient-grid,
  .safety-grid,
  .pros-cons-grid,
  .faq-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards-grid,
  .pathway-grid,
  .benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-grid article,
  .pathway-grid article,
  .benefit-list article,
  .five-grid article:nth-child(5),
  .pathway-grid article:nth-child(5),
  .pathway-grid article:nth-child(6),
  .pathway-grid article:nth-child(7),
  .benefit-list article:nth-child(5),
  .benefit-list article:nth-child(6) {
    grid-column: auto;
  }
}

/* MOBILE */

@media (max-width: 860px) {
  .container {
    width: min(100% - 22px, 1400px);
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    min-height: auto;
    padding: 10px 0 8px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .site-logo {
    width: 170px;
    max-height: 54px;
  }

  .main-nav {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    padding: 0 0 4px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    padding: 8px 12px;
    font-size: 13px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.65);
  }

  .hero {
    padding: 14px 0 30px;
  }

  .hero-shell {
    position: relative;
    display: block;
    min-height: 790px;
    overflow: hidden;
    border-radius: 28px;
    background: #f7f0e4;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    max-width: none;
    padding: 24px 20px 24px;
    background: transparent;
  }

  .hero-product {
    position: absolute;
    inset: 0;
    z-index: 1;
    min-height: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 28px;
  }

  .hero-product::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: 28px;
    background:
      linear-gradient(
        90deg,
        rgba(251, 247, 238, 0.88) 0%,
        rgba(251, 247, 238, 0.78) 34%,
        rgba(251, 247, 238, 0.56) 56%,
        rgba(251, 247, 238, 0.26) 78%,
        rgba(251, 247, 238, 0.08) 100%
      );
    pointer-events: none;
  }

  .hero-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    transform: scale(1.08);
    filter: brightness(0.96) contrast(1.04) saturate(1) blur(2.4px);
  }

  .eyebrow {
    margin-bottom: 13px;
    padding: 7px 11px;
    font-size: 10px;
    line-height: 1.25;
  }

  .hero h1 {
    max-width: 72%;
    font-size: 31px;
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .hero p {
    max-width: 72%;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin: 20px auto 0;
    padding: 0;
    justify-items: stretch;
    align-items: stretch;
  }

  .hero-facts div {
    min-height: 76px;
    padding: 12px 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-facts strong {
    font-size: 21px;
    text-align: center;
  }

  .hero-facts span {
    margin-top: 5px;
    font-size: 9px;
    line-height: 1.25;
    text-align: center;
  }

  .quick-strip {
    margin-top: -14px;
    padding-bottom: 22px;
  }

  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .quick-grid article {
    min-height: 145px;
    padding: 18px;
    border-radius: 22px;
  }

  .quick-grid span {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border-radius: 14px;
    font-size: 21px;
  }

  .quick-grid h3 {
    font-size: 18px;
  }

  .quick-grid p {
    font-size: 13px;
    line-height: 1.45;
  }

  .article-grid,
  .reverse-grid,
  .formula-layout,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .pathway-grid,
  .benefit-list,
  .course-timeline,
  .ingredient-grid,
  .safety-grid,
  .pros-cons-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .cards-grid article,
  .pathway-grid article,
  .benefit-list article,
  .five-grid article:nth-child(5),
  .pathway-grid article:nth-child(5),
  .pathway-grid article:nth-child(6),
  .pathway-grid article:nth-child(7),
  .benefit-list article:nth-child(5),
  .benefit-list article:nth-child(6) {
    grid-column: auto;
  }

  .section {
    padding: 58px 0;
  }

  .section h2,
  .section-head h2,
  .final-box h2,
  .pros-cons-section > .container > h2 {
    font-size: 32px;
  }

  .section-head p,
  .content-card p,
  .safety-card p,
  .final-box p,
  .cards-grid p,
  .pathway-grid p,
  .benefit-list p,
  .course-timeline p {
    font-size: 15px;
    line-height: 1.65;
  }

  .content-card,
  .safety-card,
  .final-box {
    padding: 24px;
    border-radius: 26px;
  }

  .side-visual img,
  .wide-banner img {
    height: 310px;
    object-position: 70% center;
  }

  .wide-banner {
    min-height: 310px;
  }

  .side-note {
    margin: 12px;
    padding: 18px;
  }

  .course-timeline article,
  .cards-grid article,
  .pathway-grid article,
  .benefit-list article,
  .ingredient-grid article,
  .pros-card,
  .cons-card {
    padding: 22px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 18px, 1400px);
  }

  .site-logo {
    width: 155px;
  }

  .main-nav a {
    font-size: 12px;
    padding: 7px 10px;
  }

  .hero {
    padding-top: 10px;
  }

  .hero-shell {
    min-height: 820px;
    border-radius: 24px;
  }

  .hero-content {
    padding: 22px 18px 22px;
  }

  .hero-product {
    border-radius: 24px;
  }

  .hero-product::before {
    border-radius: 24px;
    background:
      linear-gradient(
        90deg,
        rgba(251, 247, 238, 0.9) 0%,
        rgba(251, 247, 238, 0.8) 34%,
        rgba(251, 247, 238, 0.58) 56%,
        rgba(251, 247, 238, 0.28) 78%,
        rgba(251, 247, 238, 0.08) 100%
      );
  }

  .hero-product img {
    object-position: 72% center;
    transform: scale(1.1);
    filter: brightness(0.94) contrast(1.04) saturate(1) blur(2.6px);
  }

  .hero h1 {
    max-width: 74%;
    font-size: 29px;
  }

  .hero p {
    max-width: 74%;
    font-size: 13.5px;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin: 20px auto 0;
  }

  .hero-facts div {
    min-height: 72px;
    padding: 10px 6px;
    border-radius: 15px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .hero-facts strong {
    font-size: 19px;
    text-align: center;
  }

  .hero-facts span {
    font-size: 8.5px;
    text-align: center;
  }

  .quick-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-grid article {
    min-height: 132px;
    padding: 16px;
  }

  .quick-grid h3 {
    font-size: 17px;
  }

  .quick-grid p {
    font-size: 12.5px;
  }

  .section h2,
  .section-head h2,
  .final-box h2,
  .pros-cons-section > .container > h2 {
    font-size: 29px;
  }

  .routine-item {
    grid-template-columns: 40px 1fr;
  }

  summary {
    font-size: 15px;
  }
}