/* ============================================================
   Classic Pharma — engine stylesheet (DESIGN.md §1–§2)
   Reusable component classes for all engine pages.
   ============================================================ */

/* ---- §1.1 Tokens ---- */
:root {
	--navy: #0f3a5f;
	--navy-deep: #07233c;
	--blue: #2a6aa1;
	--blue-soft: #e8f1f8;
	--green: #2d7a4a;
	--green-soft: #e4f2ea;
	--accent: #c8a547;
	--ink: #1a2230;
	--ink2: #4a5568;
	--ink3: #8a95a5;
	--bg: #fafbfc;
	--bg2: #f1f5f8;
	--line: #e2e8f0;
	--danger: #b23a48;
	--amber: #b8860b;
	--amber-soft: #fdf4dc;

	--font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
	--serif: "Lora", "Charter", "Iowan Old Style", Georgia, serif;

	--r-xs: 3px;
	--r-sm: 4px;
	--r-md: 6px;
	--r-lg: 8px;
	--r-xl: 12px;
	--r-pill: 999px;

	--container: 1180px;

	--sh-card: 0 20px 60px rgba(15, 58, 95, .15), 0 4px 16px rgba(15, 58, 95, .06);
	--sh-soft: 0 20px 60px rgba(15, 58, 95, .1);
	--sh-cta: 0 4px 14px rgba(45, 122, 74, .35);
	--sh-sticky: 0 10px 40px rgba(15, 58, 95, .25), 0 2px 8px rgba(0, 0, 0, .08);
	--sh-hover: 0 10px 28px rgba(15, 58, 95, .08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.cp-page {
	margin: 0;
	font-family: var(--font);
	color: var(--ink);
	background: var(--bg);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
body.cp-no-scroll { overflow: hidden; }

img { max-width: 100%; }
a { color: var(--blue); }

/* ---- §1.6 Container ---- */
.cp-container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.cp-container--md { max-width: 980px; }
.cp-container--cmp { max-width: 980px; }
.cp-container--narrow { max-width: 840px; }

/* ---- Typography (§1.3) ---- */
.cp-h1 { font-family: var(--serif); font-size: clamp(32px, 6vw, 52px); line-height: 1.08; font-weight: 600; letter-spacing: -1px; color: var(--navy); margin: 0; }
.cp-h2 { font-family: var(--serif); font-size: clamp(26px, 4vw, 40px); line-height: 1.15; font-weight: 600; letter-spacing: -.5px; color: var(--navy); margin: 0 0 16px; }
.cp-h3 { font-family: var(--serif); font-size: clamp(22px, 3vw, 28px); line-height: 1.2; font-weight: 600; letter-spacing: -.4px; color: var(--navy); margin: 0 0 12px; }
.cp-lead { font-size: 16px; line-height: 1.6; color: var(--ink2); margin: 12px 0 0; }
.cp-text { font-size: 16px; line-height: 1.6; color: var(--ink2); margin: 0 0 16px; }
.cp-prose :is(p, ul, ol) { font-size: 16px; line-height: 1.65; color: var(--ink2); }
.cp-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); }
.cp-eyebrow--gold { color: var(--accent); font-weight: 700; }

.cp-ic { width: 1em; height: 1em; flex-shrink: 0; display: inline-block; vertical-align: middle; }

/* ---- Sections ---- */
.cp-section { padding: clamp(56px, 8vw, 90px) 0; }
.cp-section--bg { background: var(--bg2); }
.cp-section--navy { background: var(--navy); color: #fff; }
.cp-section__head { margin-bottom: 48px; }
.cp-section__head--center { text-align: center; max-width: 660px; margin-left: auto; margin-right: auto; }
.cp-section__head .cp-h2 { margin-top: 12px; }

/* ---- §2.1 Buttons ---- */
.cp-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-family: inherit; font-weight: 600; font-size: 15px; letter-spacing: .2px;
	cursor: pointer; text-decoration: none; border: none; border-radius: var(--r-md);
	padding: 14px 26px; transition: transform .15s, box-shadow .2s, background .2s, border-color .2s;
}
.cp-btn .cp-ic { width: 16px; height: 16px; }
.cp-btn--primary { background: var(--green); color: #fff; box-shadow: var(--sh-cta); }
.cp-btn--primary:hover { background: #25683f; }
.cp-btn--secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.cp-btn--secondary:hover { border-color: var(--green); box-shadow: var(--sh-hover); }
.cp-btn--ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.cp-btn--ghost:hover { border-color: var(--blue); }
.cp-btn--dark { background: var(--navy); color: #fff; }
.cp-btn--lg { padding: 16px 28px; }
.cp-btn--sm { padding: 9px 18px; font-size: 13px; border-radius: var(--r-sm); }
.cp-btn--block { width: 100%; }
.cp-btn--pill { border-radius: var(--r-pill); padding: 12px 22px; font-size: 14px; }
.cp-btn:disabled, .cp-btn.is-loading { opacity: .7; cursor: default; box-shadow: none; }
.cp-btn.is-loading::before {
	content: ""; width: 14px; height: 14px; border: 2px solid rgba(255, 255, 255, .4);
	border-top-color: #fff; border-radius: 50%; animation: cp-spin .7s linear infinite;
}
@keyframes cp-spin { to { transform: rotate(360deg); } }

/* ---- §2.2 Cards ---- */
.cp-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; }
.cp-section--bg .cp-card { background: #fff; }
.cp-card__eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--ink3); margin-bottom: 16px; }

/* ---- §2.3 Chips / badges / plates ---- */
.cp-badge { font-size: 11px; font-weight: 700; letter-spacing: .5px; padding: 4px 8px; border-radius: var(--r-xs); display: inline-flex; align-items: center; }
.cp-badge--discount { background: var(--danger); color: #fff; }
.cp-plate { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: var(--r-sm); font-size: 13px; font-weight: 600; }
.cp-plate--green { background: var(--green-soft); color: var(--green); }
.cp-plate--amber { background: var(--amber-soft); border: 1px solid #ecd9a0; color: #6b4e00; }
.cp-plate .cp-ic { width: 16px; height: 16px; }

/* ---- §2.4 Top bar ---- */
.cp-topbar { background: var(--navy-deep); color: #fff; font-size: 12px; letter-spacing: .3px; padding: 8px 0; }
.cp-topbar__inner { display: flex; align-items: center; justify-content: center; gap: 16px 28px; flex-wrap: wrap; }
.cp-topbar__item { display: inline-flex; align-items: center; gap: 6px; }
.cp-topbar__item .cp-ic { width: 14px; height: 14px; }
.cp-topbar__item:first-child .cp-ic { color: var(--accent); }
.cp-topbar__sep { opacity: .4; }

/* ---- §2.5 Nav ---- */
.cp-nav { position: sticky; top: 0; z-index: 40; background: rgba(255, 255, 255, .96); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color .2s; }
.cp-nav.is-bordered { border-bottom-color: var(--line); }
.cp-nav__inner { height: 68px; display: flex; align-items: center; justify-content: space-between; }
.cp-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.cp-logo__mark { width: 34px; height: 34px; background: var(--navy); border-radius: var(--r-md); display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.cp-logo__mark .cp-ic, .cp-logo__mark svg { width: 18px; height: 18px; }
.cp-logo__name { display: block; font-family: var(--serif); font-size: 18px; font-weight: 600; line-height: 1; letter-spacing: -.2px; color: var(--navy); }
.cp-logo__sub { display: block; font-size: 10.5px; color: var(--ink3); letter-spacing: 1.5px; margin-top: 3px; text-transform: uppercase; }
.cp-nav__menu { display: flex; align-items: center; gap: 28px; }
.cp-nav__link { font-size: 14px; color: var(--ink2); text-decoration: none; }
.cp-nav__link:hover, .cp-nav__link.is-active { color: var(--navy); text-decoration: underline; text-underline-offset: 4px; }
.cp-burger { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px; padding: 8px; }
.cp-burger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s, opacity .2s; }
.cp-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cp-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.cp-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- §2.6 Hero ---- */
.cp-hero { background: linear-gradient(180deg, #fff 0%, var(--bg2) 100%); position: relative; overflow: hidden; }
.cp-hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; padding: 60px 24px 80px; }
.cp-hero__lead { font-size: 17px; line-height: 1.55; color: var(--ink2); margin: 20px 0 0; max-width: 520px; }
.cp-em { color: var(--green); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }
.cp-hero__pros { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 520px; }
.cp-hero__pros li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink); }
.cp-hero__pro-ic { width: 22px; height: 22px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.cp-hero__pro-ic .cp-ic { width: 13px; height: 13px; }
.cp-hero__actions { margin-top: 36px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cp-hero__stats { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; gap: 32px; flex-wrap: wrap; }
.cp-stat__num { font-size: 24px; font-weight: 700; color: var(--navy); font-variant-numeric: tabular-nums; }
.cp-stat__sub { font-size: 14px; color: var(--ink3); font-weight: 400; }
.cp-stat__label { font-size: 12px; color: var(--ink3); letter-spacing: .3px; }
.cp-stat__sep { width: 1px; align-self: stretch; background: var(--line); }

.cp-hero__card-wrap { position: relative; }
.cp-hero__glow { position: absolute; inset: -40px; background: radial-gradient(ellipse at center, var(--blue-soft) 0%, transparent 60%); z-index: 0; }
.cp-offer-card { position: relative; z-index: 1; background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-card); padding: 32px; border: 1px solid var(--line); }
.cp-offer-card__top { display: flex; align-items: flex-start; gap: 20px; }
.cp-offer-card__img { width: 180px; height: auto; flex-shrink: 0; filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .12)); }
.cp-offer-card__meta { flex: 1; }
.cp-offer-card__name { font-family: var(--serif); font-size: 26px; font-weight: 600; margin-top: 4px; line-height: 1.1; color: var(--navy); }
.cp-offer-card__price { margin-top: 16px; display: flex; align-items: flex-end; gap: 10px; flex-wrap: wrap; }
.cp-offer-card__old { font-size: 14px; color: var(--ink3); text-decoration: line-through; margin-bottom: 6px; }
.cp-offer-card__new { font-size: 38px; font-weight: 700; color: var(--green); line-height: 1; font-family: var(--serif); }
.cp-offer-card__price .cp-badge { margin-bottom: 6px; }
.cp-offer-card__timer { margin-top: 24px; background: var(--bg2); border-radius: var(--r-md); padding: 16px; border: 1px solid var(--line); }
.cp-offer-card__stock { margin-top: 14px; }
.cp-offer-card .cp-btn { margin-top: 20px; }
.cp-offer-card__micro { margin-top: 12px; font-size: 11px; color: var(--ink3); text-align: center; }

/* ---- §2.8 Timer ---- */
.cp-timer__label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink3); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.cp-timer { display: flex; gap: 8px; }
.cp-timer__box { flex: 1; text-align: center; border-radius: var(--r-sm); padding: 10px 0; }
.cp-timer--light .cp-timer__box { background: #fff; border: 1px solid var(--line); }
.cp-timer__num { display: block; font-size: 24px; font-weight: 700; color: var(--navy); font-variant-numeric: tabular-nums; line-height: 1; }
.cp-timer__unit { display: block; font-size: 10px; color: var(--ink3); margin-top: 4px; letter-spacing: .5px; text-transform: uppercase; }
.cp-timer--dark .cp-timer__box { background: rgba(255, 255, 255, .08); }
.cp-timer--dark .cp-timer__num { color: #fff; }
.cp-timer--dark .cp-timer__unit { color: rgba(255, 255, 255, .5); }

/* ---- Progress bars ---- */
.cp-stock__row { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink2); margin-bottom: 6px; }
.cp-stock__warn { color: var(--danger); font-weight: 600; }
.cp-progress { height: 6px; background: var(--line); border-radius: 3px; overflow: hidden; }
.cp-progress--thin { height: 4px; background: var(--bg2); margin-top: 4px; }
.cp-progress__fill { height: 100%; background: linear-gradient(90deg, var(--green), #4aaa70); border-radius: 3px; }
.cp-progress__fill--gradient { background: linear-gradient(90deg, var(--blue), var(--green)); }

/* ---- §2.3 Trust strip ---- */
.cp-truststrip { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 0; }
.cp-truststrip__inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.cp-trust { display: flex; align-items: center; gap: 10px; }
.cp-trust__ring { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--blue); color: var(--blue); display: grid; place-items: center; flex-shrink: 0; }
.cp-trust__ring .cp-ic { width: 18px; height: 18px; }
.cp-trust__t { display: block; font-size: 13px; font-weight: 600; color: var(--navy); }
.cp-trust__s { display: block; font-size: 11px; color: var(--ink3); }

/* ---- Problem ---- */
.cp-problem { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.cp-problem__symptoms { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cp-symptom { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; background: var(--bg2); border-radius: var(--r-sm); border-left: 3px solid var(--blue); }
.cp-symptom .cp-ic { width: 14px; height: 14px; color: var(--blue); margin-top: 3px; }
.cp-symptom span { font-size: 13px; line-height: 1.45; color: var(--ink); }
.cp-problem__card .cp-plate { margin-top: 20px; }

/* ---- Grids ---- */
.cp-grid { display: grid; gap: 20px; }
.cp-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cp-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---- How / step cards ---- */
.cp-step-card { background: var(--bg); position: relative; }
.cp-section--bg .cp-step-card { background: #fff; }
.cp-step-card__num { font-family: var(--serif); font-size: 13px; color: var(--accent); font-weight: 700; letter-spacing: 1px; }
.cp-step-card__ic { width: 48px; height: 48px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; margin: 16px 0; }
.cp-step-card__ic .cp-ic { width: 22px; height: 22px; }
.cp-step-card__title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: -.3px; }
.cp-step-card__desc { font-size: 13px; line-height: 1.55; color: var(--ink2); }

/* ---- Ingredients ---- */
.cp-ingredients { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: flex-start; }
.cp-ingredients__aside { position: sticky; top: 100px; }
.cp-ingredients__badges { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.cp-feature { display: flex; align-items: center; gap: 14px; padding: 12px 16px; background: #fff; border-radius: var(--r-md); border: 1px solid var(--line); }
.cp-feature__ic { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.cp-feature__ic--green { background: var(--green-soft); color: var(--green); }
.cp-feature__ic .cp-ic { width: 16px; height: 16px; }
.cp-feature__t { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.cp-feature__s { display: block; font-size: 12px; color: var(--ink3); }
.cp-itable { background: #fff; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.cp-itable__head { padding: 14px 20px; background: var(--navy); color: #fff; display: grid; grid-template-columns: 2fr 1fr 1fr; font-size: 12px; letter-spacing: .8px; text-transform: uppercase; font-weight: 600; }
.cp-itable__dose { text-align: right; }
.cp-itable__row { padding: 18px 20px; border-bottom: 1px solid var(--line); }
.cp-itable__row:last-child { border-bottom: none; }
.cp-itable__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; align-items: center; }
.cp-itable__name { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--navy); }
.cp-itable__type { font-size: 12px; color: var(--ink3); letter-spacing: .3px; }
.cp-itable__row .cp-itable__dose { font-size: 14px; font-weight: 600; color: var(--green); font-variant-numeric: tabular-nums; }
.cp-itable__note { margin-top: 6px; font-size: 13px; line-height: 1.5; color: var(--ink2); }

/* ---- Results timeline ---- */
.cp-results { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); }
.cp-results__line { position: absolute; top: 62px; left: 12.5%; right: 12.5%; height: 2px; background: var(--line); }
.cp-result { padding: 0 20px; text-align: center; position: relative; }
.cp-result__week { font-size: 11px; letter-spacing: 1.5px; color: var(--ink3); font-weight: 600; text-transform: uppercase; }
.cp-result__dot { margin: 16px auto; width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 2px solid var(--blue); color: var(--blue); display: grid; place-items: center; font-size: 14px; font-weight: 700; position: relative; z-index: 1; }
.cp-result__dot.is-last { background: var(--green); border-color: var(--green); color: #fff; }
.cp-result__title { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.cp-result__desc { font-size: 13px; line-height: 1.5; color: var(--ink2); margin-bottom: 14px; }
.cp-result__pct { font-size: 11px; color: var(--ink3); margin-bottom: 4px; }

/* ---- Expert (navy) ---- */
.cp-expert { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: center; }
.cp-expert__portrait { aspect-ratio: 1; border-radius: var(--r-md); background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .06) 10px, rgba(255, 255, 255, .03) 10px, rgba(255, 255, 255, .03) 20px); display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .35); }
.cp-expert__ic { width: 64px; height: 64px; }
.cp-expert__quote { font-family: var(--serif); font-size: clamp(20px, 3vw, 28px); line-height: 1.35; font-weight: 500; margin: 16px 0 24px; font-style: italic; }
.cp-expert__author { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cp-expert__name { font-size: 16px; font-weight: 600; }
.cp-expert__title { font-size: 13px; color: rgba(255, 255, 255, .7); }
.cp-expert__orgs { margin-left: auto; color: rgba(255, 255, 255, .5); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }

/* ---- Reviews ---- */
.cp-reviews__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.cp-reviews__head .cp-h2 { margin-top: 12px; margin-bottom: 0; }
.cp-reviews__score { display: flex; align-items: center; gap: 14px; background: #fff; padding: 14px 20px; border-radius: var(--r-md); border: 1px solid var(--line); }
.cp-reviews__avg { font-weight: 700; font-size: 17px; color: var(--navy); }
.cp-reviews__avg span { font-weight: 400; color: var(--ink3); font-size: 14px; }
.cp-reviews__count { font-size: 12px; color: var(--ink3); }
.cp-stars { display: inline-flex; gap: 2px; color: var(--accent); }
.cp-star { width: 18px; height: 18px; }
.cp-star--sm { width: 13px; height: 13px; }
.cp-review__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.cp-review__author { display: flex; align-items: center; gap: 12px; }
.cp-review__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-soft); color: var(--navy); display: grid; place-items: center; font-family: var(--serif); font-size: 18px; font-weight: 600; }
.cp-review__name { font-size: 15px; font-weight: 600; color: var(--navy); }
.cp-review__date { font-size: 12px; color: var(--ink3); }
.cp-review__body { font-size: 14px; line-height: 1.6; color: var(--ink2); margin-bottom: 14px; }
.cp-review__foot { display: flex; justify-content: space-between; font-size: 11px; color: var(--ink3); border-top: 1px solid var(--line); padding-top: 12px; }
.cp-review__verified { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-weight: 600; }
.cp-review__verified .cp-ic { width: 12px; height: 12px; }
.cp-reviews__more { display: flex; width: fit-content; margin: 32px auto 0; }

/* ---- Comparison ---- */
.cp-cmp { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.cp-cmp__head, .cp-cmp__row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; }
.cp-cmp__head { background: var(--bg2); }
.cp-cmp__feature-h, .cp-cmp__col, .cp-cmp__brand { padding: 18px 16px; text-align: center; font-size: 13px; font-weight: 700; color: var(--ink); }
.cp-cmp__brand { color: var(--green); background: var(--green-soft); font-family: var(--serif); font-size: 16px; }
.cp-cmp__row { border-top: 1px solid var(--line); }
.cp-cmp__feature { padding: 16px 24px; font-size: 14px; color: var(--ink); }
.cp-cmp__cell { padding: 16px; text-align: center; }
.cp-cmp__cell--brand { background: rgba(228, 242, 234, .4); }
.cp-tick { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #aac6aa; color: #fff; }
.cp-tick--green { background: var(--green); }
.cp-tick .cp-ic { width: 12px; height: 12px; }
.cp-dash { display: inline-block; width: 24px; height: 2px; background: var(--line); }

/* ---- Certificates ---- */
.cp-certs { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; }
.cp-certs__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.cp-cert { aspect-ratio: 1; background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-md); display: grid; place-items: center; padding: 12px; text-align: center; color: var(--navy); }
.cp-cert__ic { width: 22px; height: 22px; color: var(--blue); margin: 0 auto 6px; display: block; }
.cp-cert__label { font-size: 11px; font-weight: 700; letter-spacing: .5px; }

/* ---- Delivery (numbered) ---- */
.cp-grid--numbered { margin-top: 20px; }
.cp-delivery-card { background: var(--bg); position: relative; padding-top: 32px; }
.cp-section--bg .cp-delivery-card { background: #fff; }
.cp-delivery-card__num { position: absolute; top: -20px; left: 28px; width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-size: 18px; font-weight: 700; }
.cp-delivery-card__title { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--navy); margin: 12px 0 8px; }
.cp-delivery-card__desc { font-size: 14px; color: var(--ink2); line-height: 1.55; }

/* ---- §2.11 FAQ (details) ---- */
.cp-faq { background: #fff; border-radius: var(--r-lg); border: 1px solid var(--line); }
.cp-faq__item { border-bottom: 1px solid var(--line); }
.cp-faq__item:last-child { border-bottom: none; }
.cp-faq__q { list-style: none; cursor: pointer; padding: 22px 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--navy); }
.cp-faq__q::-webkit-details-marker { display: none; }
.cp-faq__chevron { color: var(--blue); transition: transform .2s; flex-shrink: 0; transform: rotate(90deg); }
.cp-faq__chevron .cp-ic { width: 18px; height: 18px; }
.cp-faq__item[open] .cp-faq__chevron { transform: rotate(-90deg); }
.cp-faq__a { padding: 0 28px 22px; font-size: 15px; line-height: 1.6; color: var(--ink2); }

/* ---- §2.9 Forms ---- */
.cp-form { display: block; }
.cp-form__eyebrow { font-size: 12px; letter-spacing: 1.5px; color: var(--blue); font-weight: 600; text-transform: uppercase; margin-bottom: 16px; }
.cp-field { display: block; margin-bottom: 16px; }
.cp-field__label { display: block; font-size: 13px; color: var(--ink2); font-weight: 500; margin-bottom: 6px; }
.cp-field__wrap { position: relative; display: block; }
.cp-field__ic { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--ink3); pointer-events: none; }
.cp-input { width: 100%; padding: 14px 16px 14px 42px; border: 1.5px solid var(--line); border-radius: var(--r-md); font-size: 15px; outline: none; font-family: inherit; box-sizing: border-box; background: #fff; color: var(--ink); }
.cp-input:focus-visible, .cp-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.cp-input.is-error { border-color: var(--danger); }
.cp-select { width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--r-md); font-size: 15px; font-family: inherit; margin-bottom: 16px; }
.cp-field__error { font-size: 12px; color: #842029; background: #fdecea; border: 1px solid #f5c2c7; border-radius: var(--r-sm); padding: 8px 12px; margin-top: 8px; }
.cp-form .cp-btn { width: 100%; margin-top: 4px; }
.cp-form__consent { margin-top: 14px; font-size: 11px; color: var(--ink3); text-align: center; line-height: 1.5; }
.cp-form__stock { margin-top: 12px; font-size: 12px; color: var(--ink3); text-align: center; }
.cp-form-success { text-align: center; padding: 32px 8px; }
.cp-form-success__ic { width: 64px; height: 64px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin: 0 auto 20px; }
.cp-form-success__ic .cp-ic { width: 28px; height: 28px; }
.cp-form-success__title { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.cp-form-success__text { font-size: 15px; color: var(--ink2); line-height: 1.5; }
/* dark form (on navy) */
.cp-form--dark .cp-field__label { color: rgba(255, 255, 255, .8); }
.cp-form--dark .cp-input { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .15); color: #fff; }
.cp-form--dark .cp-input::placeholder { color: rgba(255, 255, 255, .4); }

/* ---- Order section ---- */
.cp-section--order { background: linear-gradient(180deg, var(--bg) 0%, #fff 100%); }
.cp-order { background: #fff; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-soft); border: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1.1fr; }
.cp-order__left { padding: 48px; background: var(--navy); color: #fff; }
.cp-order__title { font-family: var(--serif); font-size: clamp(26px, 3.5vw, 34px); font-weight: 600; line-height: 1.15; margin: 12px 0 16px; letter-spacing: -.5px; }
.cp-order__lead { font-size: 15px; line-height: 1.6; opacity: .85; margin-bottom: 24px; }
.cp-order__product { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, .15); border-bottom: 1px solid rgba(255, 255, 255, .15); }
.cp-order__img { width: 80px; height: auto; filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .3)); }
.cp-order__product-name { font-family: var(--serif); font-size: 20px; font-weight: 600; }
.cp-order__price-row { display: flex; align-items: baseline; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.cp-order__price-old { font-size: 14px; opacity: .6; text-decoration: line-through; }
.cp-order__price-new { font-size: 28px; font-weight: 700; color: var(--accent); }
.cp-order__price-row .cp-badge--discount { background: var(--accent); color: var(--navy); }
.cp-order__timer { margin-top: 24px; }
.cp-order__timer .cp-timer__label { color: rgba(255, 255, 255, .7); }
.cp-order__benefits { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 10px; }
.cp-order__benefits li { display: flex; align-items: center; gap: 10px; font-size: 13px; opacity: .9; }
.cp-order__benefits .cp-ic { width: 16px; height: 16px; color: var(--accent); }
.cp-order__right { padding: 48px; }

/* ---- CTA block (mid-page) ---- */
.cp-cta { max-width: 980px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: center; }
.cp-cta__img { width: 100%; height: auto; filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .1)); }
.cp-cta__body { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 32px; box-shadow: var(--sh-soft); }
.cp-cta__head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.cp-cta__attention { font-weight: 700; color: var(--danger); }
.cp-cta__today { color: var(--ink2); font-size: 14px; }
.cp-cta__prices { display: flex; gap: 24px; margin-bottom: 20px; }
.cp-cta__price-label { display: block; font-size: 12px; color: var(--ink3); margin-bottom: 2px; }
.cp-cta__price-old { color: var(--ink3); text-decoration: line-through; }
.cp-cta__price-new { color: var(--green); font-size: 22px; font-weight: 700; font-family: var(--serif); }

/* ---- Sticky CTA ---- */
.cp-sticky-cta { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(120px); transition: transform .3s cubic-bezier(.2, .7, .3, 1); z-index: 50; display: flex; align-items: center; gap: 14px; background: #fff; padding: 10px 10px 10px 20px; border-radius: var(--r-pill); box-shadow: var(--sh-sticky); border: 1px solid var(--line); }
.cp-sticky-cta.is-visible { transform: translateX(-50%) translateY(0); }
.cp-sticky-cta__info { display: flex; align-items: center; gap: 10px; }
.cp-sticky-cta__img { width: 32px; height: 32px; object-fit: contain; }
.cp-sticky-cta__now { font-weight: 600; color: var(--navy); font-size: 13px; }
.cp-sticky-cta__old { text-decoration: line-through; color: var(--ink3); font-weight: 400; margin-left: 4px; }
.cp-sticky-cta__stock { font-size: 11px; color: var(--ink3); }

/* ---- §2.10 Modal / Quiz ---- */
.cp-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.cp-modal[hidden] { display: none; }
.cp-modal__overlay { position: absolute; inset: 0; background: rgba(7, 35, 60, .6); backdrop-filter: blur(4px); }
.cp-modal__window { position: relative; background: #fff; border-radius: var(--r-xl); max-width: 560px; width: 100%; overflow: hidden; box-shadow: 0 30px 80px rgba(0, 0, 0, .3); max-height: 90vh; overflow-y: auto; }
.cp-quiz__head { padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.cp-quiz__head-title { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--navy); }
.cp-quiz__head-ic { width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; }
.cp-quiz__head-ic .cp-ic { width: 14px; height: 14px; }
.cp-quiz__close { background: none; border: none; cursor: pointer; color: var(--ink3); padding: 4px; }
.cp-quiz__close .cp-ic { width: 18px; height: 18px; }
.cp-quiz__progress { height: 4px; background: var(--bg2); }
.cp-quiz__progress-fill { height: 100%; width: 0; background: var(--green); transition: width .3s; }
.cp-quiz__body { padding: 36px; }
.cp-quiz__qnum { font-size: 11px; letter-spacing: 1.5px; color: var(--ink3); font-weight: 600; text-transform: uppercase; margin-bottom: 10px; }
.cp-quiz__question { font-family: var(--serif); font-size: 22px; line-height: 1.3; font-weight: 600; color: var(--navy); margin-bottom: 20px; }
.cp-quiz__answers { display: grid; gap: 10px; }
.cp-quiz__answer { padding: 14px 18px; background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-md); text-align: left; font-size: 14px; cursor: pointer; color: var(--ink); font-family: inherit; display: flex; justify-content: space-between; align-items: center; }
.cp-quiz__answer:hover { border-color: var(--blue); }
.cp-quiz__answer.is-selected { background: var(--green-soft); border-color: var(--green); }
.cp-quiz__answer .cp-ic { width: 14px; height: 14px; color: var(--ink3); }
.cp-quiz__result { text-align: center; margin-bottom: 24px; }
.cp-quiz__result-title { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.cp-quiz__result-text { font-size: 14px; color: var(--ink2); }

/* ---- §2.16 Referral / copy ---- */
.cp-referral { background: var(--navy); border-radius: var(--r-xl); padding: 36px; color: #fff; position: relative; overflow: hidden; }
.cp-referral__code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 24px; color: #fff; }
.cp-copy-btn { background: var(--accent); color: var(--navy-deep); border: none; border-radius: var(--r-md); padding: 12px 18px; font-weight: 600; cursor: pointer; font-family: inherit; }
.cp-copy-btn.is-copied { background: var(--green); color: #fff; }

/* ---- §2.17 Footer ---- */
.cp-footer { background: var(--navy-deep); color: rgba(255, 255, 255, .7); padding: 60px 0 24px; font-size: 13px; }
.cp-footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.cp-footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.cp-footer__logo-mark { width: 32px; height: 32px; background: var(--blue); border-radius: var(--r-md); display: grid; place-items: center; color: #fff; }
.cp-footer__logo-mark .cp-ic, .cp-footer__logo-mark svg { width: 16px; height: 16px; }
.cp-footer__logo-name { font-family: var(--serif); font-size: 18px; color: #fff; font-weight: 600; }
.cp-footer__desc { line-height: 1.6; max-width: 360px; opacity: .7; margin: 0; }
.cp-footer__title { font-size: 11px; letter-spacing: 1.5px; color: rgba(255, 255, 255, .8); font-weight: 600; text-transform: uppercase; margin-bottom: 14px; }
.cp-footer__col ul { list-style: none; padding: 0; margin: 0; }
.cp-footer__col li { margin-bottom: 8px; }
.cp-footer__col a { color: rgba(255, 255, 255, .7); text-decoration: none; }
.cp-footer__col a:hover { color: #fff; }
.cp-footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 16px; font-size: 12px; }
.cp-footer__rights { opacity: .5; }
.cp-footer__legal { display: flex; gap: 20px; }
.cp-footer__legal a { color: rgba(255, 255, 255, .5); text-decoration: none; }
.cp-footer__legal a:hover { color: #fff; }
/* language links (inc/lang-links.php output, class-agnostic) */
.cp-footer .lang-links, .cp-footer .footer-langs { padding: 24px 0; display: flex; flex-wrap: wrap; gap: 12px; }
.cp-footer .lang-links a, .cp-footer .footer-langs a { color: rgba(255, 255, 255, .6); text-decoration: none; font-size: 12px; }

/* ---- a11y (§5.13) ---- */
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ============================================================
   §1.7 Responsive (1024 / 768 / 480)
   ============================================================ */
@media (max-width: 1024px) {
	.cp-hero__grid { grid-template-columns: 1fr; gap: 40px; }
	.cp-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.cp-problem { grid-template-columns: 1fr; gap: 40px; }
	.cp-ingredients { grid-template-columns: 1fr; gap: 32px; }
	.cp-ingredients__aside { position: static; }
	.cp-order { grid-template-columns: 1fr; }
	.cp-cta { grid-template-columns: 1fr; }
	.cp-certs { grid-template-columns: 1fr; gap: 32px; }
	.cp-expert { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 768px) {
	.cp-burger { display: flex; }
	.cp-nav__menu { position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); background: #fff; flex-direction: column; align-items: flex-start; gap: 8px; padding: 88px 24px 24px; transform: translateX(100%); transition: transform .25s; box-shadow: var(--sh-sticky); overflow-y: auto; }
	.cp-nav__menu.is-open { transform: translateX(0); }
	.cp-nav__link { padding: 10px 0; font-size: 16px; min-height: 44px; display: flex; align-items: center; }
	.cp-nav__cta { width: 100%; margin-top: 12px; }
	.cp-grid--2, .cp-grid--3, .cp-grid--4 { grid-template-columns: 1fr; }
	.cp-hero__pros { grid-template-columns: 1fr; }
	.cp-problem__symptoms { grid-template-columns: 1fr; }
	.cp-results { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
	.cp-results__line { display: none; }
	.cp-certs__grid { grid-template-columns: repeat(3, 1fr); }
	.cp-cmp__head, .cp-cmp__row { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
	.cp-cmp__feature { padding: 14px; font-size: 13px; }
	.cp-order__left, .cp-order__right { padding: 32px 24px; }
	.cp-offer-card__top { flex-direction: column; align-items: center; text-align: center; }
	.cp-offer-card__img { width: 140px; }
	.cp-footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }
	.cp-reviews__head { align-items: flex-start; }
}
@media (max-width: 480px) {
	.cp-container { padding: 0 16px; }
	.cp-results { grid-template-columns: 1fr; }
	.cp-certs__grid { grid-template-columns: repeat(2, 1fr); }
	.cp-footer__top { grid-template-columns: 1fr; }
	.cp-sticky-cta { left: 12px; right: 12px; transform: translateY(140px); padding: 8px 12px; gap: 10px; bottom: calc(12px + env(safe-area-inset-bottom)); }
	.cp-sticky-cta.is-visible { transform: translateY(0); }
	.cp-quiz__body { padding: 24px; }
	.cp-order__left, .cp-order__right { padding: 28px 20px; }
}
