:root {
  --blue-950: #041c43;
  --blue-900: #052b63;
  --blue-800: #063b80;
  --blue-700: #0752a7;
  --blue-600: #0b67c8;
  --blue-100: #e9f3ff;
  --gold-600: #c5911c;
  --gold-500: #dea92d;
  --gold-300: #f1d57e;
  --cream: #fff9e9;
  --cream-deep: #f8edce;
  --red: #e52229;
  --ink: #15233b;
  --muted: #60708a;
  --white: #ffffff;
  --line: #dbe3ef;
  --shadow: 0 24px 70px rgba(4, 28, 67, 0.14);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; background: var(--white); color: var(--blue-900); padding: 12px 18px; border-radius: 8px; font-weight: 700; }
.skip-link:focus { top: 16px; }

.announcement { background: var(--blue-950); color: #fff; font-size: .875rem; }
.announcement__inner { min-height: 36px; display: flex; align-items: center; justify-content: center; gap: 24px; }
.announcement a { color: var(--gold-300); font-weight: 800; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(5,43,99,.08); }
.nav-wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand__mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 13px 13px 13px 4px; color: var(--white); background: linear-gradient(145deg, var(--blue-600), var(--blue-900)); font-size: 1.3rem; font-weight: 900; font-style: italic; box-shadow: 0 8px 18px rgba(6,59,128,.2); }
.brand__name { color: var(--blue-900); font-size: 1.35rem; line-height: 1; font-weight: 800; letter-spacing: -.04em; }
.brand__name span { color: var(--gold-600); }
.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.main-nav a { position: relative; font-size: .93rem; font-weight: 650; color: #30415c; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--gold-500); transition: right .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; border: 0; background: none; padding: 7px; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px; background: var(--blue-900); }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 14px; border: 0; border-radius: 12px; padding: 0 25px; color: var(--white); background: var(--blue-800); font-weight: 800; box-shadow: 0 10px 24px rgba(6,59,128,.18); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(6,59,128,.24); }
.button:focus-visible, .text-link:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid rgba(11,103,200,.3); outline-offset: 3px; }
.button--small { min-height: 44px; padding: 0 18px; border-radius: 10px; font-size: .9rem; }
.button--primary { background: linear-gradient(135deg, #f12b33, #d9141d); box-shadow: 0 14px 28px rgba(229,34,41,.23); }
.button--primary:hover { box-shadow: 0 17px 34px rgba(229,34,41,.32); }
.button--outline { color: var(--blue-800); background: transparent; border: 1.5px solid rgba(6,59,128,.3); box-shadow: none; }
.button--outline:hover { color: var(--white); background: var(--blue-800); }
.button--full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-950); font-weight: 800; border-bottom: 1px solid rgba(4,28,67,.35); }
.text-link--blue { color: var(--blue-600); border-color: rgba(11,103,200,.35); }

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--blue-700); font-size: .78rem; line-height: 1.2; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 34px; height: 2px; background: var(--gold-500); }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--gold-300); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { margin-bottom: 22px; color: var(--blue-950); line-height: 1.1; letter-spacing: -.045em; }
h1 { font-size: clamp(2.65rem, 5vw, 4.9rem); }
h2 { font-size: clamp(2.15rem, 4vw, 3.65rem); }
h1 em, h2 em { color: var(--blue-700); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h3 { margin-bottom: 10px; line-height: 1.25; color: var(--blue-950); }
.section { padding: 110px 0; }
.section-lead { max-width: 680px; margin: 0 auto; color: var(--muted); font-size: 1.1rem; }

.hero { position: relative; min-height: 720px; overflow: hidden; color: var(--white); background: radial-gradient(circle at 75% 42%, #0d6ac5 0, #07519d 27%, var(--blue-900) 62%, var(--blue-950) 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: radial-gradient(rgba(255,255,255,.5) 1px, transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(90deg, black, transparent 55%); }
.hero__glow { position: absolute; right: -180px; top: 40px; width: 680px; height: 680px; border: 1px solid rgba(255,223,139,.24); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,220,126,.045), 0 0 0 160px rgba(255,220,126,.025); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; min-height: 680px; padding-block: 72px 92px; }
.hero__copy { min-width: 0; max-width: 660px; }
.hero h1 { color: var(--white); }
.hero h1 em { color: var(--gold-300); }
.hero__lead { max-width: 620px; color: #dce9f8; font-size: 1.12rem; }
.hero__actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.hero .text-link { color: var(--white); border-color: rgba(255,255,255,.4); }
.hero__proof { display: flex; gap: 0; margin-top: 46px; }
.hero__proof div { display: grid; min-width: 130px; padding: 0 24px; border-left: 1px solid rgba(255,255,255,.22); }
.hero__proof div:first-child { padding-left: 0; border-left: 0; }
.hero__proof strong { color: var(--gold-300); font-family: Georgia, serif; font-size: 1.65rem; line-height: 1; }
.hero__proof span { color: #c9dcf2; font-size: .8rem; }
.hero__visual { position: relative; min-width: 0; align-self: end; min-height: 555px; }
.hero-products { position: absolute; z-index: 3; inset: 28px -36px -8px 10px; }
.hero-product { position: absolute; width: 300px; height: 420px; object-fit: cover; object-position: center; border: 5px solid rgba(255,255,255,.72); border-radius: 22px; box-shadow: 0 26px 44px rgba(0,0,0,.28); }
.hero-product--bone { left: 0; bottom: 34px; z-index: 1; transform: rotate(-7deg) scale(.78); transform-origin: bottom center; }
.hero-product--gold { left: 50%; bottom: 8px; z-index: 3; transform: translateX(-50%); }
.hero-product--diabetes { right: 0; bottom: 34px; z-index: 2; transform: rotate(7deg) scale(.78); transform-origin: bottom center; }
.product-halo { position: absolute; width: 430px; height: 430px; right: 5px; top: 48px; border-radius: 50%; background: radial-gradient(circle, rgba(255,246,204,.95), rgba(237,194,73,.44) 48%, rgba(255,255,255,0) 70%); }
.quality-seal { position: absolute; z-index: 6; right: 28px; top: 25px; display: flex; align-items: center; gap: 9px; width: 138px; height: 76px; padding: 10px; border-radius: 50px; color: var(--blue-950); background: linear-gradient(145deg, #fff7d8, #e7bd4c); box-shadow: 0 15px 34px rgba(0,0,0,.18); transform: rotate(4deg); }
.quality-seal svg { width: 34px; fill: var(--blue-800); }
.quality-seal span { font-size: .67rem; line-height: 1.25; text-transform: uppercase; }
.quality-seal strong { font-size: .72rem; }
.floating-card { position: absolute; z-index: 7; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.55); border-radius: 14px; color: var(--blue-950); background: rgba(255,255,255,.9); box-shadow: 0 16px 32px rgba(0,0,0,.18); backdrop-filter: blur(10px); }
.floating-card--left { left: -6px; bottom: 84px; }
.floating-card--right { right: -20px; bottom: 190px; }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: .82rem; }
.floating-card small { color: var(--muted); font-size: .7rem; }
.icon-circle { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: var(--white); background: var(--blue-700); font-size: .76rem; font-weight: 900; }
.hero__wave { position: absolute; z-index: 4; left: -5%; right: -5%; bottom: -63px; height: 100px; background: var(--white); border-radius: 50% 50% 0 0 / 50% 50% 0 0; }

.trust-strip { position: relative; z-index: 5; background: var(--white); box-shadow: 0 14px 35px rgba(4,28,67,.08); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 28px 22px; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; }
.trust-item svg { flex: 0 0 auto; width: 34px; height: 34px; fill: var(--gold-600); }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { color: var(--blue-900); font-size: .92rem; }
.trust-item span { color: var(--muted); font-size: .78rem; }

.section--cream { background: linear-gradient(180deg, var(--cream), #fff); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 54px; }
.pain-card { position: relative; min-height: 310px; padding: 36px; overflow: hidden; border: 1px solid #eadfc5; border-radius: var(--radius); background: rgba(255,255,255,.82); box-shadow: 0 20px 50px rgba(83,64,20,.06); }
.pain-card::after { content: ""; position: absolute; right: -36px; bottom: -36px; width: 100px; height: 100px; border-radius: 50%; background: rgba(222,169,45,.12); }
.pain-card__number { position: absolute; right: 24px; top: 17px; color: #eadfc5; font-family: Georgia, serif; font-size: 3.3rem; font-weight: 700; }
.pain-card__icon { display: grid; place-items: center; width: 62px; height: 62px; margin-bottom: 26px; border-radius: 18px; background: var(--blue-100); }
.pain-card__icon svg { width: 30px; fill: var(--blue-700); }
.pain-card h3 { font-size: 1.28rem; }
.pain-card p { margin-bottom: 0; color: var(--muted); }

.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.solution__visual { position: relative; }
.photo-frame { padding: 18px; border-radius: 38px 38px 110px 38px; background: linear-gradient(145deg, var(--cream-deep), #fff); box-shadow: var(--shadow); }
.nutrition-board { min-height: 540px; padding: 64px 48px; border-radius: 28px 28px 96px 28px; color: var(--white); background: radial-gradient(circle at 84% 10%, #277bd0, transparent 32%), linear-gradient(145deg, var(--blue-700), var(--blue-950)); }
.nutrition-board__eyebrow { color: var(--gold-300); font-size: .72rem; font-weight: 900; letter-spacing: .15em; }
.nutrition-board > strong { display: block; margin: 30px 0 48px; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.08; font-weight: 500; }
.nutrition-rings { display: grid; gap: 14px; }
.nutrition-rings span { display: flex; align-items: center; gap: 16px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.2); border-radius: 60px; background: rgba(255,255,255,.07); }
.nutrition-rings b { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: var(--blue-950); background: var(--gold-300); font-size: .75rem; }
.quote-card { position: absolute; right: -42px; bottom: 44px; max-width: 250px; padding: 22px 24px; border-radius: 18px; color: var(--blue-950); background: #fff; box-shadow: var(--shadow); font-family: Georgia, serif; font-size: 1.12rem; font-style: italic; }
.solution__copy > p { color: var(--muted); font-size: 1.05rem; }
.principle-list { display: grid; gap: 5px; margin-top: 34px; }
.principle { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); }
.principle > span { color: var(--gold-600); font-family: Georgia, serif; font-size: 1.5rem; }
.principle h3 { margin-bottom: 5px; font-size: 1.08rem; }
.principle p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }

.formula { position: relative; overflow: hidden; color: var(--white); background: var(--blue-950); }
.formula::before { content: ""; position: absolute; width: 700px; height: 700px; right: -250px; top: -300px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 100px rgba(255,255,255,.025), 0 0 0 200px rgba(255,255,255,.015); }
.formula__header { position: relative; display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 90px; }
.formula h2 { color: var(--white); }
.formula h2 em { color: var(--gold-300); }
.formula__header > p { color: #aec4df; font-size: .9rem; }
.formula-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 54px; }
.formula-card { position: relative; min-height: 320px; padding: 30px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.035)); }
.formula-card__icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 40px; border-radius: 50%; color: var(--blue-950); background: linear-gradient(145deg, #fff0b4, var(--gold-500)); font-family: Georgia, serif; font-size: 1.3rem; font-weight: 700; }
.formula-card__tag { margin-bottom: 10px; color: var(--gold-300); font-size: .65rem; font-weight: 900; letter-spacing: .13em; }
.formula-card h3 { color: var(--white); font-size: 1.3rem; }
.formula-card p:not(.formula-card__tag) { color: #b9cce3; font-size: .9rem; }
.formula-card__line { position: absolute; left: 30px; right: 30px; bottom: 0; height: 3px; background: var(--gold-500); transform-origin: left; transform: scaleX(.28); transition: transform .3s ease; }
.formula-card:hover .formula-card__line { transform: scaleX(1); }

.benefits { background: linear-gradient(180deg, #fff, #f6f9fd); }
.benefits__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 95px; align-items: start; }
.benefits__copy { position: sticky; top: 120px; }
.benefits__copy > p { color: var(--muted); font-size: 1.03rem; }
.benefits__copy .button { margin-top: 18px; }
.benefit-stack { display: grid; }
.benefit-row { display: grid; grid-template-columns: 74px 1fr; gap: 22px; padding: 30px 0; border-top: 1px solid var(--line); }
.benefit-row:last-child { border-bottom: 1px solid var(--line); }
.benefit-row__number { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; color: var(--blue-700); background: var(--blue-100); font-family: Georgia, serif; font-size: 1.15rem; }
.benefit-row h3 { font-size: 1.25rem; }
.benefit-row p { margin-bottom: 0; color: var(--muted); }

.product-section { background: var(--cream); }
.product-heading { margin-bottom: 54px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.product-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid rgba(6,59,128,.1); border-radius: 26px; background: var(--white); box-shadow: 0 24px 58px rgba(27,40,70,.1); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 30px 70px rgba(27,40,70,.16); }
.product-card__image { position: relative; height: 380px; overflow: hidden; background: #edf5ff; }
.product-card__image::after { content: ""; position: absolute; inset: auto 0 0; height: 90px; background: linear-gradient(transparent, rgba(3,20,47,.14)); pointer-events: none; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .35s ease; }
.product-card:hover .product-card__image img { transform: scale(1.035); }
.product-card--bone .product-card__image { background: #eaf5ea; }
.product-card--diabetes .product-card__image { background: #f4eaf8; }
.product-card__image .product-badge { left: 18px; top: 18px; }
.product-card--bone .product-badge { background: #137943; }
.product-card--diabetes .product-badge { background: #6d2c7f; }
.product-card__body { display: flex; flex: 1; flex-direction: column; padding: 28px; }
.product-card__type { margin-bottom: 8px; color: var(--gold-600); font-size: .67rem; font-weight: 900; letter-spacing: .1em; }
.product-card h3 { margin-bottom: 12px; font-size: 1.55rem; }
.product-card__body > p:not(.product-card__type) { color: var(--muted); font-size: .92rem; }
.mini-benefits { display: flex; flex-wrap: wrap; gap: 7px; margin: 5px 0 26px; padding: 0; list-style: none; }
.mini-benefits li { padding: 6px 9px; border-radius: 7px; color: var(--blue-800); background: var(--blue-100); font-size: .7rem; font-weight: 800; }
.product-card--bone .mini-benefits li { color: #17683e; background: #e8f6ed; }
.product-card--diabetes .mini-benefits li { color: #6b2878; background: #f5eaf8; }
.button--product { width: 100%; margin-top: auto; box-shadow: none; }
.product-card--bone .button--product { background: #137943; }
.product-card--diabetes .button--product { background: #6d2c7f; }
.medical-note { margin-top: 34px; padding: 20px 24px; border: 1px solid #e3d6b4; border-radius: 14px; color: #5c5137; background: rgba(255,255,255,.75); font-size: .82rem; }
.medical-note strong { color: var(--blue-950); }
.product-showcase { display: grid; grid-template-columns: 1fr 1fr; max-width: 1040px; overflow: hidden; border-radius: 34px; background: var(--white); box-shadow: 0 30px 80px rgba(70,49,9,.14); }
.product-showcase__visual { position: relative; min-height: 610px; overflow: hidden; background: radial-gradient(circle at 50% 42%, #fff8da 0 30%, #efd076 55%, #d7a838 100%); }
.product-showcase__visual::before { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(255,255,255,.6); border-radius: 24px; }
.product-showcase__visual img { position: absolute; z-index: 2; width: 590px; max-width: none; left: 50%; bottom: -30px; transform: translateX(-50%); filter: drop-shadow(0 28px 24px rgba(61,42,7,.25)); }
.product-badge { position: absolute; z-index: 4; left: 28px; top: 28px; padding: 9px 14px; border-radius: 8px; color: var(--white); background: var(--red); font-size: .68rem; font-weight: 900; letter-spacing: .08em; }
.product-showcase__content { padding: 60px 56px; }
.product-showcase__content h2 { margin-bottom: 12px; }
.product-showcase__content h2 em { font-size: .68em; }
.product-subtitle { color: var(--muted); }
.product-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 9px; margin: 30px 0 24px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-price span { flex: 0 0 100%; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.product-price strong { color: var(--blue-800); font-size: 2rem; line-height: 1; }
.product-price small { color: var(--muted); }
.check-list { display: grid; gap: 10px; margin: 0 0 26px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 10px; color: #34445c; }
.check-list span { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; color: var(--white); background: var(--blue-700); font-size: .72rem; font-weight: 900; }
.quantity { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; font-weight: 700; }
.quantity__control { display: flex; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; }
.quantity__control button, .quantity__control output { display: grid; place-items: center; width: 42px; height: 40px; border: 0; background: #fff; }
.quantity__control button:hover { background: var(--blue-100); }
.quantity__control output { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.product-note { margin: 11px 0 0; color: var(--muted); text-align: center; font-size: .75rem; }

.steps { background: var(--white); }
.step-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 24px; align-items: center; margin-top: 52px; }
.step-card { min-height: 220px; padding: 30px; border-radius: 20px; background: #f6f9fd; }
.step-card > span { color: var(--gold-600); font-family: Georgia, serif; font-size: 2rem; }
.step-card h3 { margin-top: 28px; }
.step-card p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }
.step-connector { color: var(--gold-500); font-size: 1.6rem; }

.faq { background: #f4f7fb; }
.faq__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq__intro { padding-top: 12px; }
.faq__intro > p { color: var(--muted); }
.accordion { border-top: 1px solid #cbd6e5; }
.accordion__item { border-bottom: 1px solid #cbd6e5; }
.accordion__trigger { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; border: 0; color: var(--blue-950); background: transparent; text-align: left; font-weight: 800; }
.accordion__trigger b { display: grid; place-items: center; flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; color: var(--white); background: var(--blue-800); font-size: 1rem; }
.accordion__panel p { padding: 0 48px 24px 0; margin-bottom: 0; color: var(--muted); }

.consult { position: relative; overflow: hidden; padding: 110px 0; color: var(--white); background: linear-gradient(135deg, var(--blue-950), var(--blue-800)); }
.consult::before { content: ""; position: absolute; inset: 0; opacity: .17; background-image: radial-gradient(rgba(255,255,255,.7) 1px, transparent 1px); background-size: 27px 27px; }
.consult__shape { position: absolute; right: -180px; bottom: -290px; width: 700px; height: 700px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 0 0 90px rgba(255,255,255,.03), 0 0 0 180px rgba(255,255,255,.02); }
.consult__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.consult h2 { color: var(--white); }
.consult h2 em { color: var(--gold-300); }
.consult__copy > p { color: #ccdaed; font-size: 1.05rem; }
.consult__copy ul { display: grid; gap: 11px; margin: 26px 0 0; padding: 0; list-style: none; }
.consult__copy li { display: flex; align-items: center; gap: 10px; color: #e3edf8; }
.consult__copy li span { color: var(--gold-300); font-weight: 900; }
.order-channels { margin-top: 34px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18); }
.order-channels__eyebrow { margin: 0 0 5px; color: var(--gold-300); font-size: .72rem; font-weight: 900; letter-spacing: .14em; }
.order-channels__lead { margin: 0 0 16px; color: #ccdaed; font-size: .88rem; }
.order-channels__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.order-channel { display: flex; min-width: 0; min-height: 70px; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 13px; color: var(--white); background: rgba(255,255,255,.08); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.order-channel:hover { color: var(--white); border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.15); transform: translateY(-2px); }
.order-channel svg { flex: 0 0 auto; width: 30px; height: 30px; padding: 6px; border-radius: 9px; fill: currentColor; background: rgba(255,255,255,.13); }
.order-channel span { min-width: 0; }
.order-channel strong, .order-channel small { display: block; }
.order-channel strong { color: var(--white); font-size: .88rem; }
.order-channel small { margin-top: 2px; overflow: hidden; color: #b9cbe1; font-size: .68rem; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.order-channel--zalo svg { color: #d6eeff; background: rgba(0,148,255,.28); }
.order-channel--messenger svg { color: #d8e8ff; background: rgba(0,132,255,.28); }
.order-channel--email svg { color: #fff0b4; background: rgba(212,164,43,.25); }
.consult-form { padding: 38px; border-radius: 24px; color: var(--ink); background: var(--white); box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.form-heading { margin-bottom: 22px; }
.form-heading span { display: block; color: var(--gold-600); font-size: .7rem; font-weight: 900; letter-spacing: .14em; }
.form-heading strong { display: block; margin-top: 5px; color: var(--blue-950); font-size: 1.35rem; }
.consult-form label { display: grid; gap: 7px; margin-bottom: 15px; color: #34445c; font-size: .8rem; font-weight: 800; }
.consult-form input, .consult-form select { width: 100%; min-height: 48px; padding: 0 14px; border: 1px solid #ccd6e4; border-radius: 9px; color: var(--ink); background: #fff; }
.consult-form input::placeholder { color: #9aa7ba; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-disclaimer { margin: 10px 0 0; color: var(--muted); text-align: center; font-size: .7rem; }
.form-message { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 8px; color: #0d5d37; background: #e8f8ef; font-size: .85rem; font-weight: 700; }
.form-message.is-visible { display: block; }
.form-message.is-error { color: #a6171d; background: #ffeaeb; }

.site-footer { padding: 64px 0 24px; color: #c6d2e2; background: #03142f; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 54px; }
.brand--footer .brand__name { color: var(--white); }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid strong { margin-bottom: 7px; color: var(--white); }
.footer-grid a, .footer-grid span, .footer-grid p { color: #9fb0c7; font-size: .84rem; }
.footer-grid a:hover { color: var(--gold-300); }
.footer-bottom { display: flex; justify-content: space-between; gap: 40px; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { max-width: 660px; margin: 0; color: #7286a0; font-size: .7rem; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-sm { transition-delay: .08s; }
.reveal--delay { transition-delay: .16s; }
.reveal--delay-lg { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}

@media (max-width: 1040px) {
  .main-nav { gap: 16px; }
  .main-nav a { font-size: .84rem; }
  .hero__grid { grid-template-columns: 1fr .82fr; }
  .hero-products { right: -78px; left: -18px; }
  .hero-product { width: 270px; height: 390px; }
  .floating-card--right { right: -20px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .split-grid, .benefits__grid, .faq__grid, .consult__grid { gap: 54px; }
  .formula-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:last-child { grid-column: 1 / -1; width: calc(50% - 12px); justify-self: center; }
}

@media (max-width: 900px) {
  .section { padding: 82px 0; }
  .nav-wrap > .button { display: none; }
  .menu-toggle { display: block; order: 3; }
  .main-nav { position: absolute; left: 20px; right: 20px; top: 68px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px; }
  .main-nav a::after { display: none; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; padding-top: 62px; }
  .hero__copy { max-width: 700px; }
  .hero__visual { min-height: 520px; }
  .hero-products { left: 50%; right: auto; width: 620px; transform: translateX(-50%); }
  .hero-product { width: 270px; height: 390px; }
  .product-halo { right: 50%; transform: translateX(50%); }
  .quality-seal { right: 12%; }
  .floating-card--left { left: 8%; }
  .floating-card--right { right: 8%; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { min-height: auto; }
  .split-grid, .benefits__grid, .product-showcase, .faq__grid, .consult__grid { grid-template-columns: 1fr; }
  .split-grid { gap: 64px; }
  .solution__visual { max-width: 570px; margin-inline: auto; }
  .benefits__copy { position: static; }
  .product-showcase { max-width: 580px; }
  .product-showcase__visual { min-height: 540px; }
  .formula__header { grid-template-columns: 1fr; gap: 0; }
  .step-grid { grid-template-columns: 1fr; }
  .step-connector { transform: rotate(90deg); justify-self: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .product-grid { grid-template-columns: 1fr; max-width: 560px; }
  .product-card:last-child { grid-column: auto; width: 100%; }
  .product-card__image { height: 430px; }
}

@media (max-width: 560px) {
  body { padding-bottom: 68px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .announcement__inner { min-height: 43px; justify-content: center; gap: 0; text-align: center; font-size: .7rem; }
  .announcement__inner a { display: none; }
  .nav-wrap { height: 68px; }
  .menu-toggle { margin-left: auto; }
  .brand__mark { width: 34px; height: 34px; }
  .brand__name { font-size: 1.18rem; }
  h1 { max-width: 100%; font-size: clamp(2.15rem, 10.4vw, 2.55rem); overflow-wrap: break-word; }
  h2 { max-width: 100%; font-size: clamp(1.95rem, 9.4vw, 2.35rem); overflow-wrap: break-word; }
  .hero .eyebrow { max-width: 100%; align-items: flex-start; font-size: .64rem; line-height: 1.5; letter-spacing: .08em; overflow-wrap: anywhere; }
  .hero .eyebrow > span { flex: 0 0 24px; margin-top: .5em; }
  .section { padding: 68px 0; }
  .hero__grid { padding-top: 48px; padding-bottom: 66px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero__actions .button { width: 100%; }
  .hero__actions .text-link { align-self: flex-start; }
  .hero__proof { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
  .hero__proof div { min-width: 0; padding: 0 10px; }
  .hero__proof strong { font-size: 1.35rem; }
  .hero__visual { min-height: 370px; }
  .hero-products { width: 400px; max-width: calc(100vw + 10px); bottom: 0; }
  .hero-product { width: 185px; height: 280px; border-width: 3px; border-radius: 15px; }
  .hero-product--bone { left: 8px; bottom: 26px; }
  .hero-product--gold { bottom: 2px; }
  .hero-product--diabetes { right: 8px; bottom: 26px; }
  .product-halo { width: 330px; height: 330px; top: 32px; }
  .quality-seal { display: none; }
  .quality-seal svg { width: 28px; }
  .floating-card { padding: 8px 10px; }
  .floating-card--left { left: 0; bottom: 54px; }
  .floating-card--right { display: none; }
  .floating-card small { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 19px 10px; border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: 0; }
  .pain-card { padding: 28px; }
  .nutrition-board { min-height: 500px; padding: 48px 28px; }
  .quote-card { position: relative; right: auto; bottom: auto; max-width: calc(100% - 32px); margin: -36px auto 0; }
  .formula-grid { grid-template-columns: 1fr; }
  .formula-card { min-height: 270px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card:last-child { grid-column: auto; width: 100%; }
  .product-card__image { height: 420px; }
  .benefit-row { grid-template-columns: 56px 1fr; gap: 14px; }
  .benefit-row__number { width: 46px; height: 46px; }
  .product-showcase__visual { min-height: 430px; }
  .product-showcase__visual img { width: 465px; }
  .product-showcase__content { padding: 38px 24px; }
  .faq__grid { gap: 38px; }
  .consult { padding: 72px 0; }
  .consult__grid { gap: 44px; }
  .consult-form { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .order-channels { margin-top: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .mobile-cta { position: fixed; z-index: 80; left: 12px; right: 12px; bottom: 10px; display: flex; min-height: 50px; align-items: center; justify-content: center; gap: 22px; border-radius: 12px; color: #fff; background: linear-gradient(135deg, #f12b33, #d9141d); box-shadow: 0 12px 30px rgba(120,5,11,.38); font-weight: 900; }
}

@media (max-width: 390px) {
  .order-channels__grid { grid-template-columns: 1fr; }
  .order-channel small { white-space: normal; }
}
