:root {
  --ink: #111722;
  --muted: #6f747d;
  --line: #e3e5e8;
  --paper: #ffffff;
  --page: #f1f2f4;
  --navy: #101522;
  --red: #df1f27;
  --blue: #1577b9;
  --green: #04834c;
  --purple: #555394;
  --serif: "PT Serif", Georgia, serif;
  --sans: "Roboto", Arial, sans-serif;
  --condensed: "Roboto Condensed", Arial Narrow, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--page); font-family: var(--sans); }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
.shell { width: min(1160px, calc(100% - 32px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.reading-progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 1000; }
.reading-progress span { display: block; width: 0; height: 100%; background: var(--red); }

.site-header { background: var(--paper); border-bottom: 1px solid #d8dadd; }
.utility-bar { color: #d9dde5; background: var(--navy); font-size: 11px; }
.utility-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; }
.utility-inner nav { display: flex; gap: 22px; }
.utility-inner a { color: inherit; text-decoration: none; font-weight: 700; }
.utility-inner a:hover { color: #fff; }
.utility-inner time { color: #aeb4c0; }

.masthead { min-height: 92px; display: grid; grid-template-columns: 155px 1fr 36px; gap: 24px; align-items: center; }
.brand img { width: 148px; height: auto; }
.main-menu { display: flex; align-items: stretch; justify-content: center; gap: 20px; min-width: 0; }
.main-menu a { position: relative; padding: 37px 0 32px; color: #20242c; text-decoration: none; font-family: var(--condensed); font-size: 13px; font-weight: 800; white-space: nowrap; }
.main-menu a::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 4px; transform: scaleX(0); background: var(--red); transition: transform .2s ease; }
.main-menu a:hover::after, .main-menu a.active::after { transform: scaleX(1); }
.search-button { width: 36px; height: 36px; border: 0; background: transparent; font-size: 30px; cursor: pointer; }
.menu-toggle { display: none; }

.news-ticker { border-top: 1px solid #e6e7e9; background: #fafafa; }
.ticker-inner { min-height: 38px; display: flex; align-items: center; overflow: hidden; }
.ticker-inner strong { align-self: stretch; display: grid; place-items: center; flex: 0 0 auto; padding: 0 17px; color: #fff; background: var(--red); font-family: var(--condensed); font-size: 12px; letter-spacing: .06em; }
.ticker-inner p { margin: 0; padding-left: 18px; color: #4a4f57; font-size: 12px; white-space: nowrap; animation: ticker 28s linear infinite; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-35%); } }

.top-ad { height: 105px; display: grid; place-items: center; color: #a5a8ad; font-size: 9px; letter-spacing: .16em; }
.page { display: grid; grid-template-columns: minmax(0, 800px) 300px; gap: 30px; align-items: start; padding-bottom: 64px; }
.article-card { background: var(--paper); box-shadow: 0 4px 28px rgba(23, 28, 38, .08); }
.breadcrumbs { display: flex; align-items: center; gap: 8px; padding: 18px 28px 0; color: #848892; font-size: 11px; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--red); }

.article-header { padding: 28px 48px 22px; }
.category-tag { display: inline-block; margin-bottom: 13px; padding: 6px 10px; color: #fff; background: var(--red); font-family: var(--condensed); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.article-header h1 { max-width: 720px; margin: 0; font-family: var(--condensed); font-size: clamp(38px, 4.2vw, 58px); line-height: .98; letter-spacing: -.035em; }
.standfirst { max-width: 700px; margin: 19px 0 0; color: #5a6069; font-family: var(--serif); font-size: 20px; line-height: 1.48; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); color: #7d8189; font-size: 12px; }
.article-meta a { color: var(--red); font-weight: 700; text-decoration: none; }

figure { margin: 0; }
figcaption { margin-top: 8px; color: #858993; font-size: 11px; line-height: 1.45; }
.lead-figure img { width: 100%; max-height: 740px; object-fit: cover; }
.lead-figure figcaption { padding: 0 48px; }
.lead-product { position: relative; display: grid; grid-template-columns: 1fr minmax(310px, .9fr); align-items: center; min-height: 500px; overflow: hidden; padding: 30px 48px 18px; background: linear-gradient(125deg, #27235f 0%, #5c53a5 62%, #7a70c4 100%); }
.lead-product::before { content: ""; position: absolute; right: -90px; bottom: -160px; width: 420px; height: 420px; border: 60px solid rgba(255, 218, 56, .18); border-radius: 50%; }
.lead-product-copy { position: relative; z-index: 1; color: #fff; }
.lead-product-copy span { display: block; color: #ffe250; font-family: var(--condensed); font-size: 13px; font-weight: 900; letter-spacing: .2em; }
.lead-product-copy strong { display: block; max-width: 340px; margin-top: 12px; font-family: var(--condensed); font-size: clamp(42px, 5vw, 72px); line-height: .9; text-transform: uppercase; }
.lead-product-copy small { display: block; max-width: 280px; margin-top: 18px; color: #e2dff8; font-family: var(--serif); font-size: 15px; line-height: 1.5; }
.lead-product img { position: relative; z-index: 1; max-height: 440px; object-fit: contain; filter: drop-shadow(0 26px 28px rgba(16, 10, 43, .35)); }
.lead-product figcaption { grid-column: 1 / -1; position: relative; z-index: 1; padding: 8px 0 0; color: #d8d4ef; }
.share-row { display: flex; gap: 8px; padding: 20px 48px 0; }
.share-row button { min-height: 34px; border: 0; border-radius: 2px; padding: 0 13px; color: #fff; background: #315a9d; font-size: 12px; font-weight: 800; cursor: pointer; }
.share-row button:nth-child(2) { background: #17191d; }
.share-row button:nth-child(3) { background: #1aa267; }
.share-row button:nth-child(4) { color: #333; background: #e8eaed; }
.share-row button:hover { filter: brightness(.9); }

.article-body { padding: 28px 48px 54px; }
.article-body > p { margin: 0 0 24px; font-family: var(--serif); font-size: 18px; line-height: 1.78; }
.article-body .dropcap::first-letter { float: left; margin: 9px 9px 0 0; color: var(--red); font-family: var(--condensed); font-size: 68px; font-weight: 800; line-height: .7; }
.article-body h2 { margin: 48px 0 18px; font-family: var(--condensed); font-size: 34px; line-height: 1.08; letter-spacing: -.02em; }
.article-body h3 { margin: 35px 0 16px; font-family: var(--condensed); font-size: 24px; }
.article-body a { color: var(--blue); font-weight: 700; }
.disclosure-note { padding: 16px 18px; border-left: 4px solid #d2a517; background: #fffae9; color: #595035; font-family: var(--sans) !important; font-size: 13px !important; line-height: 1.55 !important; }

.inline-link-box { margin: 30px 0; padding: 20px 22px; border-top: 3px solid var(--red); background: #f5f6f7; }
.inline-link-box > span { color: var(--red); font-family: var(--condensed); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.inline-link-box p { margin: 8px 0 0; font-family: var(--serif); font-size: 17px; line-height: 1.55; }

.product-feature { width: min(520px, 100%); margin: 26px auto 30px; text-align: center; }
.product-feature img { max-height: 670px; margin-inline: auto; object-fit: contain; }
.authenticity-alert { display: grid; grid-template-columns: 200px 1fr; gap: 24px; align-items: center; margin: 34px 0; padding: 18px; border: 1px solid #eed5d5; background: #fff7f7; }
.authenticity-alert img { width: 200px; }
.authenticity-alert strong { font-family: var(--condensed); font-size: 22px; }
.authenticity-alert p { color: #5f6269; font-size: 14px; line-height: 1.55; }
.authenticity-alert a { font-size: 13px; }

.routine-list { margin: 28px 0 34px; padding: 0; list-style: none; }
.routine-list li { display: grid; grid-template-columns: 54px 1fr; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.routine-list li > span { color: #c7cbd1; font-family: var(--condensed); font-size: 35px; font-weight: 800; }
.routine-list strong { font-family: var(--condensed); font-size: 20px; }
.routine-list p { margin: 3px 0 0; color: #686d75; font-size: 14px; line-height: 1.5; }

.benefit-visuals { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 28px 0 10px; }
.benefit-visuals figure { overflow: hidden; border: 1px solid var(--line); background: #f9fafb; }
.benefit-visuals img { aspect-ratio: 1; width: 100%; object-fit: cover; }
.benefit-visuals figcaption { margin: 0; padding: 9px; color: #252930; font-family: var(--condensed); font-size: 12px; font-weight: 800; text-align: center; }
.caption-copy { color: #777c85; font-family: var(--sans) !important; font-size: 12px !important; line-height: 1.55 !important; }

blockquote { position: relative; margin: 34px 0; padding: 28px 32px 27px 70px; border: 0; background: #f1f2f4; }
blockquote::before { content: "“"; position: absolute; top: 15px; left: 22px; color: var(--red); font-family: Georgia, serif; font-size: 70px; line-height: 1; }
blockquote p { margin: 0; font-family: var(--serif); font-size: 23px; font-style: italic; line-height: 1.45; }
blockquote cite { display: block; margin-top: 12px; color: #72767d; font-size: 12px; font-style: normal; }

.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 28px 0; }
.visual-points figure { padding: 12px; border: 1px solid var(--line); background: #fafafa; }
.visual-points img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.article-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 35px 0; padding: 22px 24px; color: #fff !important; background: var(--red); text-decoration: none; transition: transform .2s, box-shadow .2s; }
.article-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(223,31,39,.22); }
.article-cta span { font-family: var(--serif); font-size: 16px; }
.article-cta strong { font-family: var(--condensed); font-size: 17px; white-space: nowrap; }

.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 26px 0; }
.coverage-grid img { width: 100%; aspect-ratio: 1.12; border: 1px solid var(--line); object-fit: cover; object-position: top; }
.risk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.risk-grid img { width: 100%; aspect-ratio: 4 / 3; border: 1px solid var(--line); object-fit: cover; }

.product-explainer { display: grid; grid-template-columns: minmax(250px, .85fr) 1fr; gap: 32px; align-items: center; margin: 28px 0; padding: 28px; background: #f2f1fb; }
.product-explainer img { max-height: 550px; margin-inline: auto; object-fit: contain; }
.product-explainer p { font-family: var(--serif); font-size: 16px; line-height: 1.65; }
.check-list { margin: 18px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 8px 0 8px 27px; border-bottom: 1px solid rgba(85,83,148,.15); font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.fitforma-explainer { background: #f1effa; }
.fitforma-explainer img { filter: drop-shadow(0 18px 20px rgba(48, 38, 98, .14)); }
.eyebrow { color: var(--purple); font-family: var(--condensed); font-size: 11px; font-weight: 900; letter-spacing: .14em; }

.fact-panel { margin: 42px -48px; padding: 38px 48px; background: #171a22; color: #fff; }
.fact-panel-heading > span { color: #ffe250; font-family: var(--condensed); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.fact-panel-heading h2 { margin: 8px 0 10px; }
.fact-panel-heading p { max-width: 630px; margin: 0; color: #c5c8cf; font-family: var(--serif); font-size: 15px; line-height: 1.6; }
.ingredient-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 28px; background: #3a3e48; }
.ingredient-grid article { min-height: 245px; padding: 26px; background: #20242e; }
.ingredient-grid b { color: #6f7480; font-family: var(--condensed); font-size: 33px; }
.ingredient-grid h3 { margin: 28px 0 8px; color: #fff; font-size: 25px; }
.ingredient-grid p { margin: 0; color: #b9bdc6; font-size: 14px; line-height: 1.6; }

.claim-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 34px; }
.claim-grid article { min-height: 170px; padding: 20px; border: 1px solid var(--line); background: #fafafa; }
.claim-grid span { color: var(--purple); font-family: var(--condensed); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.claim-grid strong { display: block; margin-top: 22px; font-family: var(--condensed); font-size: 23px; }
.claim-grid p { margin: 8px 0 0; color: #666b74; font-size: 13px; line-height: 1.55; }

.science-check { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; margin: 42px -48px; padding: 34px 48px; color: #fff; background: #151a24; }
.science-check span { color: #f2c33c; font-family: var(--condensed); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.science-check h2 { margin: 10px 0 14px; font-size: 31px; }
.science-check p { color: #cfd3d9; font-family: var(--serif); font-size: 15px; line-height: 1.65; }
.science-check img { align-self: center; border: 5px solid #fff; }

.award-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0; }
.award-grid figure { padding: 10px; border: 1px solid var(--line); }
.award-grid img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 26px 0; }
.testimonial-grid figure { padding: 7px; background: #f4f5f6; }
.testimonial-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.offer-section { margin: 48px -48px 0; padding: 44px 34px; color: #fff; background: var(--purple); text-align: center; scroll-margin-top: 20px; }
.offer-kicker { display: inline-block; padding: 6px 10px; color: #222; background: #ffe75a; font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.offer-section h2 { margin: 15px auto 12px; max-width: 650px; font-size: 40px; }
.offer-section > p { max-width: 650px; margin: 0 auto 26px; color: #e3e2f3; font-family: var(--serif); line-height: 1.55; }
.fitforma-offer { display: grid; grid-template-columns: minmax(180px, .8fr) 1fr; align-items: center; width: min(650px, 100%); margin: 0 auto; overflow: hidden; border: 4px solid #fff; color: #222 !important; background: #fff; text-decoration: none; box-shadow: 0 20px 40px rgba(27, 21, 72, .25); }
.fitforma-offer > img { grid-row: 1 / 3; max-height: 330px; padding: 16px; object-fit: contain; }
.offer-pricing { display: block; padding: 24px 24px 16px; text-align: left; }
.offer-pricing small, .offer-pricing em { display: block; font-family: var(--condensed); font-style: normal; font-weight: 800; letter-spacing: .08em; }
.offer-pricing small { color: var(--purple); font-size: 10px; }
.offer-pricing del { margin-right: 10px; color: #8a8e95; font-size: 22px; }
.offer-pricing strong { color: #171a22; font-family: var(--condensed); font-size: 58px; line-height: 1.15; }
.offer-pricing em { color: #71757e; font-size: 11px; }
.offer-button { align-self: end; padding: 17px 24px; color: #fff; background: #07824f; font-family: var(--condensed); font-size: 18px; font-weight: 900; text-align: left; transition: background .2s; }
.fitforma-offer:hover .offer-button { background: #05683f; }
.offer-source-note { margin-top: 16px !important; color: #c8c5e1 !important; font-family: var(--sans) !important; font-size: 11px !important; }
.price-reference { width: min(520px, 100%); margin: 0 auto 22px; }
.price-reference figcaption { color: #d2d1e4; }
.offer-panel { position: relative; display: block; overflow: hidden; border: 4px solid rgba(255,255,255,.95); color: #fff !important; background: #3f3c82; text-decoration: none; }
.offer-panel img { width: 100%; }
.offer-panel span { display: block; padding: 14px 18px; background: #008752; font-family: var(--condensed); font-size: 19px; font-weight: 900; letter-spacing: .03em; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.package-grid a { overflow: hidden; border: 3px solid transparent; background: #fff; transition: transform .2s, border-color .2s; }
.package-grid a:hover { transform: translateY(-4px); border-color: #ffe75a; }
.promo-extra { display: grid; grid-template-columns: 130px 1fr; gap: 18px; align-items: center; margin: 22px auto 0; max-width: 570px; padding: 12px; color: #222; background: #fff; text-align: left; }
.promo-extra img { width: 130px; }
.promo-extra strong { font-family: var(--condensed); font-size: 19px; }
.promo-extra p { margin: 5px 0 0; color: #60646b; font-size: 12px; line-height: 1.5; }

.delivery-guarantee { display: grid; grid-template-columns: 1fr 150px; gap: 20px 30px; align-items: end; margin: 0 -48px; padding: 40px 48px 0; color: #fff; background: #07824f; }
.delivery-copy > span { color: #f9e33b; font-family: var(--condensed); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.delivery-copy h2 { margin: 8px 0 16px; }
.delivery-copy ul { padding-left: 20px; font-size: 14px; line-height: 1.75; }
.delivery-guarantee > img { max-height: 360px; margin-inline: auto; }
.fitforma-delivery { padding-bottom: 0; background: #087b4e; }
.fitforma-delivery > img { max-height: 300px; filter: drop-shadow(0 20px 20px rgba(2, 59, 36, .25)); }
.guarantee-card { grid-column: 1 / -1; display: grid; grid-template-columns: 105px 1fr; column-gap: 18px; align-items: center; margin: 0 -48px; padding: 19px 48px; color: #222; background: #fff7dc; }
.guarantee-card img { grid-row: 1 / 3; width: 105px; }
.guarantee-card h3 { margin: 0 0 4px; }
.guarantee-card p { margin: 0; color: #62666c; font-size: 13px; }

.faq { padding-top: 12px; }
.faq > span { display: block; margin-top: 35px; color: var(--red); font-family: var(--condensed); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.faq h2 { margin-top: 8px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 18px 45px 18px 0; font-family: var(--condensed); font-size: 19px; font-weight: 800; cursor: pointer; list-style: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; font-size: 24px; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0; padding: 0 40px 20px 0; color: #5e636b; font-family: var(--serif); font-size: 15px; line-height: 1.65; }

.source-gallery { margin-top: 38px; border: 1px solid var(--line); background: #f7f8f9; }
.source-gallery > summary { padding: 17px 20px; font-family: var(--condensed); font-weight: 800; cursor: pointer; }
.source-gallery > p { margin: 0; padding: 0 20px 18px; color: #777c84; font-size: 12px; }
.source-gallery > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 0 20px 20px; }
.source-gallery img { width: 100%; aspect-ratio: 16 / 9; border: 1px solid #ddd; background: #fff; object-fit: cover; }
.final-disclaimer { margin-top: 30px; padding: 20px; border: 1px solid #d5d8dc; color: #666b72; background: #f4f5f6; }
.final-disclaimer strong { color: #252930; font-family: var(--condensed); font-size: 16px; }
.final-disclaimer p { margin: 7px 0 0; font-size: 12px; line-height: 1.6; }
.source-box { margin-top: 38px; padding: 20px 22px; border-left: 4px solid var(--purple); background: #f1effa; }
.source-box > span { color: var(--purple); font-family: var(--condensed); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.source-box p { margin: 8px 0 0; color: #5d616a; font-size: 13px; line-height: 1.6; }

.sidebar { min-width: 0; }
.sidebar-sticky { position: sticky; top: 20px; }
.sidebar-block, .sidebar-offer { background: #fff; box-shadow: 0 4px 20px rgba(22,26,36,.07); }
.sidebar-tabs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.sidebar-tabs > * { padding: 13px 10px; font-family: var(--condensed); font-size: 12px; text-align: center; }
.sidebar-tabs strong { color: #fff; background: var(--blue); }
.side-story { display: grid; grid-template-columns: 78px 1fr; gap: 11px; padding: 13px; border-bottom: 1px solid var(--line); text-decoration: none; }
.side-story img { width: 78px; height: 60px; object-fit: cover; }
.side-story small { color: #8a8f97; font-size: 9px; }
.side-story b { display: block; margin-top: 3px; font-family: var(--serif); font-size: 13px; line-height: 1.25; }
.side-story:hover b { color: var(--red); }
.text-thumb { grid-template-columns: 58px 1fr; }
.text-thumb i { display: grid; place-items: center; width: 58px; height: 58px; color: #625ba3; background: #efedf8; font-family: var(--condensed); font-size: 23px; font-style: normal; font-weight: 900; }
.sidebar-offer { display: block; margin-top: 22px; padding: 18px; color: #fff; background: var(--purple); text-align: center; text-decoration: none; }
.sidebar-offer > span { display: inline-block; padding: 4px 7px; color: #28200c; background: #ffe75a; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.sidebar-offer img { max-height: 280px; margin: 14px auto; object-fit: contain; }
.sidebar-offer strong { display: block; font-family: var(--condensed); font-size: 25px; text-transform: uppercase; }
.sidebar-offer small { display: inline-block; margin-top: 8px; padding: 10px 14px; color: #fff; background: #008752; font-weight: 800; }
.fitforma-sidebar { background: linear-gradient(150deg, #28245f, #5c53a5); }
.fitforma-sidebar img { filter: drop-shadow(0 15px 15px rgba(21, 15, 61, .3)); }

.newsletter { padding: 33px 0; color: #fff; background: #202631; }
.newsletter .shell { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.newsletter strong { font-family: var(--condensed); font-size: 20px; }
.newsletter p { margin: 5px 0 0; color: #bdc2ca; font-size: 13px; }
.newsletter form { display: flex; width: min(430px, 100%); }
.newsletter input { flex: 1; min-width: 0; padding: 13px 14px; border: 0; }
.newsletter button { border: 0; padding: 0 18px; color: #fff; background: var(--red); font-size: 12px; font-weight: 900; }
.site-footer { padding: 42px 0 0; color: #c9cdd3; background: #11151d; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .8fr 1fr; gap: 60px; }
.footer-grid img { width: 160px; }
.footer-grid p { max-width: 410px; color: #9298a2; font-size: 12px; line-height: 1.6; }
.footer-grid strong { display: block; margin-bottom: 14px; color: #fff; font-family: var(--condensed); font-size: 13px; }
.footer-grid a { display: block; margin: 9px 0; color: #aeb3bc; font-size: 12px; text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.copyright { margin-top: 35px; padding: 18px 0; border-top: 1px solid #2c313b; color: #777d87; font-size: 11px; }

.floating-offer { position: fixed; right: 18px; bottom: 18px; z-index: 50; display: flex; align-items: center; gap: 9px; min-width: 175px; padding: 8px 13px 8px 8px; border: 2px solid #fff; border-radius: 999px; color: #fff; background: #098552; box-shadow: 0 8px 25px rgba(0,0,0,.25); text-decoration: none; transition: transform .2s; }
.floating-offer:hover { transform: translateY(-3px); }
.floating-offer img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.floating-offer strong, .floating-offer small { display: block; }
.floating-offer strong { font-family: var(--condensed); font-size: 14px; }
.floating-offer small { color: #ccf3e3; font-size: 10px; }

@media (max-width: 1040px) {
  .masthead { grid-template-columns: 130px 1fr 34px; gap: 14px; }
  .brand img { width: 126px; }
  .main-menu { gap: 13px; }
  .main-menu a { font-size: 11px; }
  .page { grid-template-columns: minmax(0, 1fr) 280px; gap: 20px; }
}

@media (max-width: 860px) {
  .utility-inner nav a:nth-child(n+3), .utility-inner time { display: none; }
  .masthead { min-height: 72px; grid-template-columns: 1fr auto; }
  .brand img { width: 132px; }
  .menu-toggle { display: flex; align-items: center; gap: 4px; border: 0; padding: 10px; background: transparent; cursor: pointer; }
  .menu-toggle span { width: 4px; height: 4px; border-radius: 50%; background: #222; }
  .menu-toggle b { margin-left: 5px; font-family: var(--condensed); font-size: 11px; }
  .main-menu { position: absolute; top: 108px; right: 16px; left: 16px; z-index: 20; display: none; flex-direction: column; gap: 0; padding: 10px 20px; background: #fff; box-shadow: 0 14px 35px rgba(0,0,0,.18); }
  .main-menu.open { display: flex; }
  .main-menu a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .search-button { display: none; }
  .page { grid-template-columns: 1fr; width: min(800px, calc(100% - 24px)); }
  .sidebar { display: none; }
  .top-ad { height: 60px; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 24px, 1160px); }
  .utility-inner { min-height: 30px; }
  .masthead { min-height: 62px; }
  .brand img { width: 112px; }
  .main-menu { top: 92px; }
  .ticker-inner strong { padding: 0 10px; font-size: 10px; }
  .ticker-inner p { font-size: 10px; }
  .article-card { box-shadow: none; }
  .breadcrumbs { padding: 14px 18px 0; }
  .article-header { padding: 24px 20px 18px; }
  .article-header h1 { font-size: 38px; }
  .standfirst { font-size: 17px; }
  .lead-figure figcaption { padding: 0 20px; }
  .lead-product { grid-template-columns: 1fr; min-height: 0; padding: 34px 20px 14px; }
  .lead-product-copy strong { max-width: 280px; font-size: 48px; }
  .lead-product-copy small { margin-top: 12px; }
  .lead-product img { width: min(330px, 100%); max-height: 340px; margin: 12px auto 0; }
  .lead-product figcaption { padding: 8px 0 0; }
  .share-row { padding: 17px 20px 0; }
  .share-row button { flex: 1; padding: 0 8px; }
  .share-row button span { display: none; }
  .article-body { padding: 24px 20px 42px; }
  .article-body > p { font-size: 17px; line-height: 1.72; }
  .article-body h2 { margin-top: 39px; font-size: 30px; }
  .authenticity-alert { grid-template-columns: 1fr; }
  .authenticity-alert img { width: min(260px, 100%); margin-inline: auto; }
  .benefit-visuals { grid-template-columns: 1fr 1fr; }
  .two-up, .coverage-grid, .science-check, .product-explainer { grid-template-columns: 1fr; }
  .fact-panel { margin-inline: -20px; padding: 32px 20px; }
  .ingredient-grid, .claim-grid { grid-template-columns: 1fr; }
  .ingredient-grid article { min-height: 210px; }
  .risk-grid, .award-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid figure { max-width: 430px; margin-inline: auto; }
  .article-cta { align-items: flex-start; flex-direction: column; }
  .science-check { margin-inline: -20px; padding: 32px 20px; }
  .offer-section { margin-inline: -20px; padding: 38px 14px; }
  .offer-section h2 { font-size: 34px; }
  .fitforma-offer { grid-template-columns: 1fr; }
  .fitforma-offer > img { grid-row: auto; max-height: 290px; }
  .offer-pricing { padding-top: 8px; text-align: center; }
  .offer-button { text-align: center; }
  .package-grid { grid-template-columns: 1fr; }
  .package-grid a { width: min(360px, 100%); margin-inline: auto; }
  .delivery-guarantee { grid-template-columns: 1fr 110px; margin-inline: -20px; padding: 36px 20px 0; }
  .delivery-copy h2 { font-size: 27px; }
  .guarantee-card { margin-inline: -20px; padding: 17px 20px; }
  .source-gallery > div { grid-template-columns: 1fr 1fr; }
  .newsletter .shell { align-items: stretch; flex-direction: column; }
  .newsletter form { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .floating-offer { right: 10px; bottom: 10px; min-width: 0; }
  .floating-offer span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
