/* =========================================================
   VİTAMİNO'BALANCE — Mobile-First Landing Page
   Brand: drO'BALANCE
   ========================================================= */

:root {
  --green-900: #0f3d2e;
  --green-800: #14542f;
  --green-700: #1f7a3d;
  --green-600: #2e9d4f;
  --green-500: #4cb963;
  --green-400: #6fd082;
  --green-300: #a8e3b3;
  --green-100: #e9f7ec;
  --green-50:  #f3fbf5;

  --navy-900: #1a1f4e;
  --navy-700: #2b3179;

  --red-600:  #c8102e;
  --red-500:  #e1334a;

  --ink-900: #0f1a14;
  --ink-700: #2a3a32;
  --ink-500: #5a6b62;
  --ink-300: #9aa8a1;
  --ink-200: #c5d0c9;
  --line:    #e1ebe4;
  --white:   #ffffff;
  --cream:   #fafdf8;

  --shadow-sm: 0 2px 6px rgba(15, 61, 46, 0.06);
  --shadow-md: 0 12px 30px rgba(15, 61, 46, 0.10);
  --shadow-lg: 0 24px 50px rgba(15, 61, 46, 0.15);
  --shadow-green: 0 14px 30px rgba(46, 157, 79, 0.28);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;

  --serif: 'Palatino Linotype', 'Book Antiqua', Palatino, 'URW Palladio L', Georgia, serif;
  --sans:  'Palatino Linotype', 'Book Antiqua', Palatino, 'URW Palladio L', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-700);
  background: linear-gradient(90deg,
    #4e944b 0%,
    #7ab47a 18%,
    #b8d8b6 38%,
    #dceedc 58%,
    #f1f8f0 78%,
    #ffffff 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  font-weight: 700;
  font-style: italic;
  min-height: 100vh;
}

/* Make all light sections transparent so body gradient shows through */
.hero-banner,
.problem,
.solution,
.ingredients,
.usage,
.buy,
.doctor {
  background: transparent !important;
}

/* Bold italic for every element — Palatino Linotype enforced */
body, button, input, select, textarea,
h1, h2, h3, h4, h5, h6, p, span, a, li, strong, em, small, blockquote {
  font-family: var(--sans);
  font-weight: 700;
  font-style: italic;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }
svg { width: 100%; height: 100%; }

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 18px;
  margin: 0 auto;
}

/* =========================================================
   HEADER  (mobile-first, no menu)
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--line);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  min-height: 74px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 720px;
}
.nav__brand img {
  flex: 0 0 20%;
  width: 20%;
  max-width: 20%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.9;
}
.nav__product {
  flex: 0 0 80%;
  width: 80%;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(20px, 6vw, 34px);
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  padding-left: 16px;
  border-left: 1px solid var(--line);
  line-height: 1;
  text-align: left;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  letter-spacing: .2px;
  white-space: nowrap;
  text-align: center;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn--primary {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn--primary:active {
  transform: translateY(1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink-900);
  border: 1.5px solid var(--ink-200);
}
.btn--white {
  background: var(--white);
  color: var(--green-800);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}
.btn--lg {
  padding: 16px 26px;
  font-size: 15px;
}
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--block {
  width: 100%;
}

/* =========================================================
   SECTION HEADS
   ========================================================= */
.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 16px;
}
.h2__total {
  color: #312783;
  font-weight: 900;
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-left: 60px;
}
@media (min-width: 1024px) {
  .h2__total { margin-left: 110px; }
}
.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-700);
  padding: 6px 14px;
  background: var(--green-100);
  border-radius: 999px;
  margin-bottom: 14px;
}
.kicker--red {
  color: #312783;
  background: #fdf7f5;
}
.problem .section__head {
  max-width: none;
}
.problem .section__head .kicker--red,
.solution > .container > .kicker--red {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 10px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.6px;
  margin: 0 auto 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  -webkit-text-stroke: 0.7px #312783;
  text-shadow: 0 0 0.5px #312783;
}
.solution > .container > .kicker--red {
  margin-top: 20px;
}
.problem .section__head h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.kicker--light {
  color: var(--white);
  background: rgba(255,255,255,0.18);
}
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink-900);
  line-height: 1.20;
  font-weight: 800;
  letter-spacing: -0.4px;
}
h2 {
  font-size: 26px;
  margin-bottom: 14px;
}
.lead {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}
.lead--bold {
  font-weight: 900;
  color: #000000;
  font-size: 17px;
  margin-top: 6px;
  padding: 4px 0 6px;
  text-align: center;
  white-space: nowrap;
}
.hl { color: var(--green-700); }
.hl-red { color: var(--red-600); }
.hl-light { color: var(--green-300); }
.apos {
  color: inherit;
  font-style: normal;
  display: inline-block;
  margin: 0 0.08em 0 0.02em;
  letter-spacing: 0;
}

/* =========================================================
   HERO BANNER — full-width title image with edge overlay
   ========================================================= */
.hero-banner {
  position: relative;
  width: 100%;
  padding-top: 74px; /* mobile nav height */
  background: linear-gradient(180deg, var(--green-50) 0%, var(--white) 100%);
  overflow: hidden;
}
.hero-banner__inner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 12px;
}
.hero-banner__cta {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 18px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cta-notice {
  text-align: center;
  font-size: 13px;
  color: #000000;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  margin: 0 0 6px;
  padding: 6px 4px;
  background: transparent;
  border: none;
  max-width: 380px;
}
.cta-notice,
.cta-notice strong,
.cta-notice span {
  color: #000000 !important;
  font-style: normal !important;
}
.cta-notice strong {
  font-weight: 900;
  letter-spacing: 0.3px;
}
.cta-notice a {
  color: #bd0000 !important;
  font-style: normal !important;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(189, 0, 0, 0.35);
}
@media (min-width: 1024px) {
  .cta-notice { font-size: 15px; padding: 12px 20px; max-width: 480px; }
}
.btn--shop {
  flex-direction: column;
  gap: 1px;
  padding: 4px 18px;
  line-height: 1.05;
  position: relative;
  background: #fef7f6;
  color: var(--green-800);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(15, 61, 46, 0.10);
  display: inline-flex;
  align-self: center;
}
.btn--shop:hover {
  background: #fef7f6;
  box-shadow: 0 8px 22px rgba(15, 61, 46, 0.15);
}
.btn--shop svg {
  width: 22px;
  height: 22px;
  margin-bottom: 4px;
}
.btn--shop .btn__label {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: #312783;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  display: block;
  font-style: normal;
  -webkit-text-stroke: 0.7px #312783;
  text-shadow: 0 0 0.5px #312783;
}
.btn--shop .btn__url {
  font-size: 11.5px;
  opacity: 1;
  letter-spacing: 0.6px;
  text-transform: lowercase;
  font-weight: 900;
  color: #bd0000;
  text-align: center;
  width: 100%;
  display: block;
  font-style: normal;
  -webkit-text-stroke: 0.5px #bd0000;
  text-shadow: 0 0 0.5px #bd0000;
}

/* Vertically center the label in buttons that have a hidden URL placeholder
   (i.e. İçindekiler ve Kullanımı). The hidden URL is removed via display:none;
   the button keeps its height via explicit min-height matching button 1. */
.hero-banner__cta .btn--shop:nth-child(3) .btn__url,
.hero-banner__cta .btn--shop:nth-child(4) .btn__url {
  display: none !important;
}
.hero-banner__cta .btn--shop:nth-child(3),
.hero-banner__cta .btn--shop:nth-child(4) {
  min-height: 41px;
  min-width: 165px;
  justify-content: center;
}
.hero-banner__cta .btn--shop:nth-child(3) .btn__label,
.hero-banner__cta .btn--shop:nth-child(4) .btn__label {
  margin: auto 0;
}
@media (min-width: 1024px) {
  .hero-banner__cta .btn--shop:nth-child(3),
  .hero-banner__cta .btn--shop:nth-child(4) {
    min-height: 50px;
    min-width: 200px;
  }
}

.hero-banner__inner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
          mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

/* =========================================================
   HERO  (mobile-first stacked)
   ========================================================= */
.hero {
  position: relative;
  padding: 30px 0 50px;
  background:
    radial-gradient(ellipse at top right, rgba(168, 227, 179, 0.45), transparent 55%),
    linear-gradient(180deg, var(--green-50) 0%, var(--white) 100%);
  overflow: hidden;
}
.hero__bg-splash {
  position: absolute;
  top: 4%;
  right: -25%;
  width: 360px;
  height: 360px;
  background: url('assets/splash.png') no-repeat center / contain;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.hero__bg-circle {
  position: absolute;
  bottom: -10%;
  left: -30%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 185, 99, 0.18), transparent 70%);
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
}
.hero__text { width: 100%; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--green-300);
  color: var(--green-800);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .3px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.hero__badge svg { width: 12px; height: 12px; color: var(--green-700); }
.hero__title {
  font-size: clamp(30px, 9vw, 44px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 60%, var(--green-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}
.hero__title-line {
  display: inline-block;
  white-space: nowrap;
}
.hero__sub {
  font-size: 15.5px;
  color: var(--ink-700);
  margin-bottom: 12px;
  font-weight: 400;
  padding: 0 6px;
}
.hero__sub strong { color: var(--green-800); font-weight: 700; }
.hero__lead {
  font-size: 14.5px;
  color: var(--ink-500);
  margin-bottom: 24px;
  line-height: 1.7;
  padding: 0 4px;
}
.hero__lead em {
  color: var(--green-700);
  font-style: normal;
  font-weight: 600;
}
.hero__pills {
  margin-top: 4px;
  display: flex;
  list-style: none;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__pills li {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  color: var(--ink-500);
  box-shadow: var(--shadow-sm);
}
.hero__pills strong {
  color: var(--green-800);
  font-weight: 800;
  margin-right: 4px;
}

.hero__visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__product {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 36px rgba(20, 84, 47, 0.25));
  animation: float 6s ease-in-out infinite;
  width: 100%;
  max-width: 380px;
}
.hero__product img {
  width: 100%;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-tag { display: none; }   /* hidden on mobile to keep layout clean */

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust {
  background: var(--green-900);
  color: var(--white);
  padding: 22px 0;
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.35;
}
.trust__item svg {
  width: 26px; height: 26px;
  color: var(--green-400);
  flex-shrink: 0;
}
.trust__item strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 12.5px;
  margin-bottom: 2px;
}

/* =========================================================
   PROBLEM
   ========================================================= */
.problem {
  padding: 60px 0 20px;
  background: var(--cream);
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 40px;
}
.pcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.pcard:hover {
  transform: translateY(-6px);
  border-color: var(--green-300);
  box-shadow: var(--shadow-lg);
}
.pcard__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pcard__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 22% 28%, rgba(255,255,255,0.45), transparent 55%),
    radial-gradient(circle at 78% 72%, rgba(255,255,255,0.20), transparent 55%);
  pointer-events: none;
}
.pcard__media[data-theme="red"]    { background: linear-gradient(135deg, #ffe5ea 0%, #ffcdd5 100%); }
.pcard__media[data-theme="purple"] { background: linear-gradient(135deg, #ece8ff 0%, #d4cdff 100%); }
.pcard__media[data-theme="orange"] { background: linear-gradient(135deg, #ffeed8 0%, #ffd9b0 100%); }
.pcard__media[data-theme="amber"]  { background: linear-gradient(135deg, #fff3d6 0%, #ffe2a8 100%); }
.pcard__media[data-theme="pink"]   { background: linear-gradient(135deg, #ffe2ee 0%, #ffc8dd 100%); }
.pcard__media[data-theme="green"]  { background: linear-gradient(135deg, #d4f0dc 0%, #a8e3b3 100%); }
.pcard__art {
  position: relative;
  z-index: 1;
  width: 70%;
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 10px 14px rgba(15, 26, 20, 0.14));
}
.pcard__body {
  padding: 20px 20px 22px;
}
.pcard h3 {
  font-size: 17px;
  margin-bottom: 6px;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--ink-900);
}
.pcard p {
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.6;
}
.pcard--accent {
  background: linear-gradient(180deg, #ffffff 0%, #e9f7ec 100%);
  border-color: var(--green-300);
}
.pcard--accent h3 { color: var(--green-800); }
.pcard--accent p { color: var(--ink-700); }

.problem__visual {
  margin: 40px auto;
  max-width: 720px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
}
.problem__visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== DOCTOR SECTION ===== */
.doctor {
  padding: 60px 0;
  background:
    radial-gradient(ellipse at top right, rgba(168, 227, 179, 0.25), transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--green-50) 100%);
  position: relative;
  overflow: hidden;
}
.doctor__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.doctor__visual {
  position: relative;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.doctor__signature {
  text-align: center;
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.5;
  margin: 0;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, transparent 100%);
}
.doctor__signature-label {
  display: block;
  color: #312783;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  -webkit-text-stroke: 0.4px #312783;
}
.doctor__signature-text {
  display: block;
  color: #000000;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
}
@media (min-width: 1024px) {
  .doctor__signature { font-size: 17px; padding: 18px 24px; }
  .doctor__signature-label { font-size: 19px; }
  .doctor__signature-text { font-size: 16px; }
}
.doctor__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  aspect-ratio: 3 / 4;
  box-shadow: 0 30px 60px rgba(20, 84, 47, 0.30);
}
.doctor__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 61, 46, 0.25) 100%);
  pointer-events: none;
}
.doctor__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.doctor__badge {
  position: absolute;
  bottom: -12px;
  right: -8px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
}
.doctor__badge-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}
.doctor__badge strong {
  display: block;
  color: var(--ink-900);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}
.doctor__badge small {
  display: block;
  color: var(--ink-500);
  font-size: 11px;
}
.doctor__text {
  width: 100%;
  text-align: center;
}
.doctor__text h2 { margin-bottom: 4px; }
.doctor__title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green-800);
  letter-spacing: .3px;
  margin-bottom: 22px;
}
.doctor__quote {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green-600);
  border-radius: var(--radius);
  padding: 22px 22px 22px 50px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-700);
  font-style: italic;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.doctor__quote svg {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 24px;
  height: 24px;
  color: var(--green-300);
}
.doctor__creds {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.doctor__creds li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--ink-500);
  display: flex;
  align-items: baseline;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  justify-content: center;
}
.doctor__creds strong {
  color: var(--green-800);
  font-weight: 800;
  font-family: var(--serif);
  font-size: 17px;
}

/* =========================================================
   FACT LIST — simple numbered list (problem + solution)
   ========================================================= */
.fact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px 22px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.fact-list--problem {
  background: linear-gradient(135deg, #fff4f4 0%, var(--cream) 100%);
  border-color: rgba(200, 16, 46, 0.15);
}
.fact-list--solution {
  background: linear-gradient(135deg, var(--green-50) 0%, var(--cream) 100%);
  border-color: var(--green-300);
}
.fact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.fact-item:last-child { border-bottom: 0; }
.fact-item__num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 800;
  color: var(--red-600);
  line-height: 1;
  opacity: .85;
  flex-shrink: 0;
  width: 44px;
  text-align: left;
}
.fact-list--solution .fact-item__num {
  color: var(--green-700);
}
.fact-item__body strong {
  display: block;
  color: var(--ink-900);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
  font-family: var(--sans);
}
.fact-item__body p {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
  margin: 0;
}
.fact-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}
.fact-item__head strong {
  display: block;
  margin-bottom: 0;
}
.fact-item__dose {
  font-size: 16px;
  font-weight: 900;
  color: #312783;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.fact-divider {
  font-weight: 900;
  color: #000000;
  font-size: 15px;
  text-align: center;
  padding: 12px 4px 6px;
  margin: 4px 0 0;
  line-height: 1.35;
}

.problem__diet {
  background: linear-gradient(135deg, #fff4f4 0%, var(--cream) 100%);
  border: 1px solid rgba(200, 16, 46, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  position: relative;
  overflow: hidden;
}
.problem__diet::before {
  content: '!';
  position: absolute;
  top: -30px; right: -5px;
  font-size: 180px;
  font-family: var(--serif);
  color: rgba(200, 16, 46, 0.06);
  font-weight: 900;
  line-height: 1;
}
.problem__diet h3 {
  font-size: 20px;
  margin-bottom: 22px;
  text-align: center;
  font-family: var(--serif);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.diet-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.diet-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.diet-point__num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 800;
  color: var(--red-600);
  line-height: 1;
  opacity: .8;
  flex-shrink: 0;
}
.diet-point p {
  font-size: 13.5px;
  color: var(--ink-700);
  line-height: 1.55;
}
.diet-point strong { color: var(--ink-900); }

/* =========================================================
   SOLUTION
   ========================================================= */
/* =========================================================
   PRODUCT SHOWCASE — animated product after solution list
   ========================================================= */
.product-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0 20px;
  position: relative;
  overflow: visible;
}
.product-showcase::before {
  content: '';
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 18px;
  background: radial-gradient(ellipse, rgba(15, 61, 46, 0.22) 0%, transparent 70%);
  filter: blur(3px);
  z-index: 0;
  animation: showcase-shadow 4.2s ease-in-out infinite;
}
.product-showcase__img {
  width: 78%;
  max-width: 320px;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 22px rgba(15, 61, 46, 0.25));
  animation: showcase-float 4.2s ease-in-out infinite,
             showcase-glow 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
  transform-origin: center bottom;
}
@keyframes showcase-float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg) scale(1); }
  50%      { transform: translateY(-18px) rotate(1.5deg) scale(1.02); }
}
@keyframes showcase-glow {
  0%, 100% { filter: drop-shadow(0 14px 18px rgba(15, 61, 46, 0.22)); }
  50%      { filter: drop-shadow(0 26px 30px rgba(15, 61, 46, 0.34)); }
}
@keyframes showcase-shadow {
  0%, 100% { width: 220px; opacity: 0.7; }
  50%      { width: 160px; opacity: 0.4; }
}
@media (min-width: 1024px) {
  .product-showcase { padding: 60px 0 30px; }
  .product-showcase__img { max-width: 440px; }
  .product-showcase::before { width: 320px; bottom: 30px; }
}

/* =========================================================
   SACHET DIVIDER — animated saşe between problem & solution
   ========================================================= */
.sachet-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  position: relative;
  overflow: visible;
}
.sachet-divider::before {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 14px;
  background: radial-gradient(ellipse, rgba(15, 61, 46, 0.22) 0%, transparent 70%);
  filter: blur(2px);
  z-index: 0;
  animation: sachet-shadow 3.6s ease-in-out infinite;
}
.sachet-divider__img {
  width: 130px;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 18px rgba(15, 61, 46, 0.22));
  animation: sachet-float 3.6s ease-in-out infinite,
             sachet-sway 5.2s ease-in-out infinite;
  position: relative;
  z-index: 1;
  transform-origin: center bottom;
}
@keyframes sachet-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-16px) rotate(3deg); }
}
@keyframes sachet-sway {
  0%, 100% { filter: drop-shadow(0 10px 14px rgba(15, 61, 46, 0.18)); }
  50%      { filter: drop-shadow(0 20px 24px rgba(15, 61, 46, 0.28)); }
}
@keyframes sachet-shadow {
  0%, 100% { width: 140px; opacity: 0.7; }
  50%      { width: 100px; opacity: 0.4; }
}

@media (min-width: 1024px) {
  .sachet-divider__img { width: 170px; }
  .sachet-divider::before { width: 180px; }
}

.solution {
  padding: 20px 0 60px;
  background:
    radial-gradient(ellipse at top left, rgba(168, 227, 179, 0.3), transparent 50%),
    var(--white);
  position: relative;
}
.sol__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.scard {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.scard:hover {
  transform: translateY(-8px);
  border-color: var(--green-300);
  box-shadow: var(--shadow-lg);
}
.scard__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.scard__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 22% 28%, rgba(255,255,255,0.45), transparent 55%),
    radial-gradient(circle at 78% 72%, rgba(255,255,255,0.20), transparent 55%);
  pointer-events: none;
}
.scard__media[data-theme="herb"]   { background: linear-gradient(135deg, #e9f7ec 0%, #c8e7d3 100%); }
.scard__media[data-theme="liver"]  { background: linear-gradient(135deg, #fff0e6 0%, #fcd9bd 100%); }
.scard__media[data-theme="energy"] { background: linear-gradient(135deg, #fbf6d6 0%, #f7e89a 100%); }
.scard__media[data-theme="algae"]  { background: linear-gradient(135deg, #d4f0dc 0%, #9adcae 100%); }
.scard__media[data-theme="vessel"] { background: linear-gradient(135deg, #ffe9ee 0%, #ffcdd5 100%); }
.scard__media[data-theme="bile"]   { background: linear-gradient(135deg, #fcf5d8 0%, #e8df9b 100%); }
.scard__art {
  position: relative;
  z-index: 1;
  width: 72%;
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 12px 16px rgba(15, 26, 20, 0.16));
}
.scard__body {
  position: relative;
  padding: 22px 22px 26px;
}
.scard__num {
  position: absolute;
  top: 14px; right: 18px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 800;
  color: var(--green-100);
  line-height: 1;
  letter-spacing: -1px;
}
.scard h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink-900);
  padding-right: 44px;
}
.scard p {
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.65;
}

/* =========================================================
   INGREDIENTS
   ========================================================= */
.ingredients {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--green-50) 100%);
}
.ingredients__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.ingredients__visual {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 360px;
}
.ingredients__visual::before {
  content: '';
  position: absolute;
  inset: 5% -5% 5% -5%;
  background: radial-gradient(circle, rgba(46, 157, 79, 0.2), transparent 65%);
  z-index: 0;
}
.ingredients__visual img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 30px rgba(20, 84, 47, 0.22));
}
.ingredients__text { width: 100%; }
.ingredients__text h2 { margin-bottom: 12px; text-align: center; }
.ingredients__text .lead {
  text-align: center;
  margin: 0 auto 22px;
}
.ing-list {
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.ing-list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13.5px;
}
.ing-list li:last-child { border-bottom: 0; }
.ing-list__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-600);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(46, 157, 79, 0.15);
}
.ing-list__name {
  flex: 1;
  min-width: 160px;
  color: var(--ink-700);
  font-weight: 500;
}
.ing-list__name small {
  display: block;
  color: var(--ink-300);
  font-size: 11.5px;
  font-weight: 400;
  margin-top: 2px;
}
.ing-list__dose {
  font-weight: 800;
  color: var(--green-800);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .3px;
  margin-left: auto;
}
.ing-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.ing-meta span {
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--green-300);
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--ink-700);
}
.ing-meta strong {
  color: var(--green-800);
  margin-right: 4px;
}

/* =========================================================
   USAGE
   ========================================================= */
.usage {
  padding: 60px 0 70px;
  background: var(--white);
}
.usage__grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fef7f5;
  border: 1px solid rgba(189, 0, 0, 0.15);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.ucard {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #fef7f5;
  border: 1px solid rgba(189, 0, 0, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ucard:hover {
  border-color: rgba(189, 0, 0, 0.25);
  box-shadow: var(--shadow-sm);
}
.ucard__media {
  position: relative;
  flex: 0 0 86px;
  width: 86px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  gap: 2px;
}
.ucard__caption {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  color: #000000;
  letter-spacing: 0.4px;
  line-height: 1;
  margin-top: 4px;
}
.ucard__art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(15, 61, 46, 0.12));
}
.ucard__body {
  flex: 1;
  text-align: left;
  padding: 0 4px;
}
.ucard h3 {
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink-900);
  line-height: 1.3;
}
.ucard__num {
  color: var(--green-700);
  font-weight: 800;
  margin-right: 4px;
}
.ucard p {
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   LIFESTYLE BANNER
   ========================================================= */
.lifestyle {
  padding: 60px 0;
  background:
    radial-gradient(ellipse at top right, rgba(76, 185, 99, 0.4), transparent 60%),
    linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.lifestyle::before {
  content: '';
  position: absolute;
  bottom: -25%; left: -25%;
  width: 320px; height: 320px;
  background: url('assets/splash.png') no-repeat center / contain;
  opacity: 0.10;
}
.lifestyle__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}
.lifestyle__text h2 {
  color: var(--white);
  margin-bottom: 14px;
}
.lifestyle__text p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 22px;
  line-height: 1.75;
}
.lifestyle__text .btn {
  width: 100%;
  max-width: 280px;
}
.lifestyle__img img {
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

/* =========================================================
   BUY / CTA
   ========================================================= */
.buy {
  padding: 60px 0;
  background: var(--cream);
}
.buy__card {
  display: flex;
  flex-direction: column-reverse;
  gap: 26px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.buy__card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(76, 185, 99, 0.18), transparent 70%);
  z-index: 0;
}
.buy__left {
  position: relative;
  z-index: 1;
  text-align: center;
}
.buy__left h2 {
  font-size: 30px;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.buy__desc {
  color: var(--ink-500);
  margin-bottom: 20px;
  font-size: 14px;
}
.buy__list {
  list-style: none;
  margin-bottom: 22px;
  text-align: left;
  display: inline-block;
}
.buy__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-700);
}
.buy__list svg {
  width: 16px; height: 16px;
  color: var(--green-600);
  background: var(--green-100);
  padding: 3px;
  border-radius: 50%;
  flex-shrink: 0;
}
.buy__notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--green-50);
  border: 1px solid var(--green-300);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 18px;
  text-align: left;
}
.buy__notice svg {
  width: 20px; height: 20px;
  color: var(--green-700);
  flex-shrink: 0;
  margin-top: 1px;
}
.buy__notice p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-700);
  margin: 0;
}
.buy__notice strong {
  color: var(--green-800);
  font-weight: 700;
}
.buy__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.buy__actions .btn { width: 100%; }
.buy__meta {
  font-size: 12px;
  color: var(--ink-300);
}
.buy__right {
  position: relative;
  text-align: center;
  z-index: 1;
}
.buy__right img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(20, 84, 47, 0.28));
}
.buy__badge {
  position: absolute;
  top: 0; right: 6%;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--red-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  text-align: center;
  line-height: 1.2;
  transform: rotate(-12deg);
  box-shadow: 0 8px 20px rgba(200,16,46,0.35);
  animation: spinSlow 8s linear infinite;
}
@keyframes spinSlow {
  from { transform: rotate(-12deg); }
  to { transform: rotate(348deg); }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-bottom: 36px;
  text-align: center;
}
.footer__brand img {
  height: 30px;
  filter: brightness(0) invert(1);
  margin: 0 auto 14px;
}
.footer__brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}
.footer__col h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.footer__col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  transition: color .2s ease;
}
.footer__col a:active { color: var(--green-400); }
.footer__legal {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 18px 0;
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* =========================================================
   ANIMATIONS — reveal on scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   TABLET (≥600px)
   ========================================================= */
@media (min-width: 600px) {
  body { font-size: 16px; }
  .container { padding: 0 24px; }
  h2 { font-size: 32px; }
  .lead { font-size: 16px; }

  .hero__title { font-size: 58px; letter-spacing: -1.8px; }
  .hero__sub { font-size: 17px; }
  .hero__lead { font-size: 15.5px; }

  .trust__inner { grid-template-columns: repeat(4, 1fr); }
  .trust__item { font-size: 12.5px; }

  .problem__grid,
  .sol__grid { grid-template-columns: repeat(2, 1fr); }
  .diet-points { grid-template-columns: repeat(3, 1fr); }

  .ing-list__dose { margin-left: auto; }

  .buy__actions { flex-direction: row; }
  .buy__actions .btn { width: auto; flex: 1; }

  /* Doctor section: tablet — side by side */
  .doctor__creds { flex-direction: row; }
  .doctor__creds li { flex: 1; justify-content: flex-start; }

  .fact-list { padding: 16px 32px; }
  .fact-item { gap: 22px; padding: 20px 0; }
  .fact-item__num { font-size: 36px; width: 52px; }
  .fact-item__body strong { font-size: 17px; }
  .fact-item__body p { font-size: 14.5px; }

  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
  .footer__brand img { margin: 0 0 14px; }
  .footer__brand p { margin: 0; }
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* =========================================================
   DESKTOP (≥1024px)
   ========================================================= */
@media (min-width: 1024px) {
  body { font-size: 17px; line-height: 1.65; }
  .container { padding: 0 32px; }

  h2 { font-size: 44px; margin-bottom: 18px; }
  .lead { font-size: 18px; }
  .section__head { margin-bottom: 24px; }

  /* Header — keep centered, just bigger */
  .nav__inner { padding: 20px 32px; min-height: 92px; }
  .nav__brand { gap: 20px; max-width: 900px; }
  .nav__brand img { max-height: 60px; }
  .nav__product { padding-left: 20px; }

  /* Hero side-by-side */
  .hero { padding: 50px 0 80px; }
  .hero-banner { padding-top: 92px; }
  .hero-banner__inner { padding: 24px 24px; }
  .hero-banner__inner img { border-radius: 28px; }
  .hero-banner__cta { padding: 0 24px 40px; }
  .btn--shop { padding: 5px 22px; }
  .btn--shop .btn__label { font-size: 19px; }
  .btn--shop .btn__url { font-size: 12.5px; }
  .hero__inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 60px;
  }
  .hero__text { flex: 1.05; }
  .hero__visual { flex: 1; }
  .hero__title { font-size: 80px; letter-spacing: -2px; }
  .hero__sub { font-size: 19px; }
  .hero__lead { font-size: 16.5px; max-width: 540px; }
  .hero__pills { justify-content: flex-start; gap: 12px; }
  .hero__pills li { padding: 10px 16px; font-size: 13.5px; }
  .hero__bg-splash {
    top: 5%;
    right: -10%;
    width: 720px;
    height: 720px;
  }
  .hero__bg-circle {
    bottom: -20%;
    left: -15%;
    width: 600px; height: 600px;
  }
  .hero__product { max-width: 580px; }
  .float-tag {
    display: flex;
    position: absolute;
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius);
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    font-size: 13px;
    color: var(--ink-700);
    z-index: 3;
    animation: floatY 5s ease-in-out infinite;
  }
  .float-tag__icon {
    font-size: 22px;
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-100);
    border-radius: 12px;
  }
  .float-tag strong {
    color: var(--green-800);
    font-weight: 700;
    display: block;
    font-size: 13.5px;
  }
  .float-tag--1 { top: 8%; left: -10px; animation-delay: 0s; }
  .float-tag--2 { bottom: 18%; right: -10px; animation-delay: 1.5s; }
  .float-tag--3 { bottom: -2%; left: 18%; animation-delay: 3s; }
  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  .problem,
  .solution,
  .ingredients,
  .usage,
  .buy,
  .lifestyle,
  .doctor { padding: 100px 0; }

  /* Doctor section — desktop layout */
  .doctor__inner {
    flex-direction: row;
    gap: 60px;
    align-items: center;
  }
  .doctor__visual { flex: 0 0 380px; max-width: 380px; }
  .doctor__text { flex: 1; text-align: left; }
  .doctor__title { font-size: 16px; }
  .doctor__quote { font-size: 16px; padding: 26px 26px 26px 60px; }
  .doctor__quote svg { width: 30px; height: 30px; top: 22px; left: 20px; }
  .doctor__creds { gap: 14px; }

  .problem__visual { margin: 60px auto 80px; max-width: 900px; }

  .problem__grid,
  .sol__grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .usage__grid { padding: 24px; gap: 16px; }
  .ucard { padding: 18px 20px; gap: 22px; }
  .ucard__media { flex: 0 0 110px; width: 110px; }
  .ucard__caption { font-size: 17px; }
  .ucard h3 { font-size: 18px; margin-bottom: 8px; }
  .ucard p { font-size: 15px; line-height: 1.65; }
  .pcard__body { padding: 26px 26px 28px; }
  .pcard__art { max-width: 220px; }
  .pcard h3 { font-size: 19px; }
  .pcard p { font-size: 14.5px; }
  .scard__body { padding: 28px 26px 30px; }
  .scard__art { max-width: 240px; }
  .scard h3 { font-size: 19px; padding-right: 56px; }
  .scard p { font-size: 14.5px; }
  .scard__num { font-size: 50px; top: 18px; right: 22px; }

  .problem__diet { padding: 50px 44px; }
  .problem__diet h3 { font-size: 28px; }

  .fact-list { padding: 24px 48px; margin-bottom: 50px; }
  .fact-item { gap: 28px; padding: 24px 0; }
  .fact-item__num { font-size: 42px; width: 64px; }
  .fact-item__body strong { font-size: 19px; margin-bottom: 6px; }
  .fact-item__body p { font-size: 15.5px; line-height: 1.7; }

  .ingredients__inner {
    flex-direction: row;
    gap: 60px;
    align-items: center;
  }
  .ingredients__visual { flex: 1; max-width: 460px; }
  .ingredients__text { flex: 1.1; }
  .ingredients__text h2 { text-align: left; }
  .ingredients__text .lead { text-align: left; margin-left: 0; }
  .ing-meta { justify-content: flex-start; }


  .lifestyle__inner {
    flex-direction: row;
    text-align: left;
    gap: 60px;
    align-items: center;
  }
  .lifestyle__text { flex: 1; }
  .lifestyle__img { flex: 1; }
  .lifestyle__text .btn { width: auto; }
  .lifestyle::before {
    bottom: -20%; left: -10%;
    width: 500px; height: 500px;
  }

  .buy__card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    padding: 50px;
    align-items: center;
  }
  .buy__left { text-align: left; }
  .buy__left h2 { font-size: 50px; }
  .buy__list { display: block; }
  .buy__badge {
    width: 90px; height: 90px;
    font-size: 14px;
    top: 10%; right: 8%;
  }

  .footer { padding: 70px 0 0; }
  .footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 50px;
    padding-bottom: 50px;
  }
}
