/* Peptides Hamburg — Clinical Research Commerce */

:root {
  --blue-900: #0c3d7a;
  --blue-800: #1e5a9e;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --ice: #f4f9ff;
  --clinical: #0091d9;
  --navy: var(--blue-900);
  --navy-soft: var(--blue-800);
  --gold: var(--blue-600);
  --gold-hover: var(--blue-500);
  --gold-dim: var(--blue-100);
  --cream: var(--ice);
  --cream-dark: #e8f2fc;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(30, 90, 158, 0.14);
  --teal: var(--clinical);
  --font: 'IBM Plex Sans', system-ui, sans-serif;
  --serif: var(--font);
  --radius: 8px;
  --radius-lg: 12px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 68px;
  --shadow: 0 12px 40px rgba(12, 61, 122, 0.1);
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

body.modal-open,
body.catalog-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0);
}

body.catalog-open .header,
body.modal-open .header {
  padding-right: var(--scrollbar-width, 0);
}

/* BFSG: Skip link & focus visibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 1100;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus-visible {
  top: 12px;
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--blue-600);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.catalog-close:focus-visible,
.legal-close:focus-visible,
.footer-catalog-btn:focus-visible,
.catalog-chip:focus-visible,
.goal-card:focus-visible,
.visual-tile:focus-visible,
.telegram-dock-btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid var(--blue-600);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
}

.btn:active { transform: scale(0.98); }

.btn-gold {
  background: var(--blue-600);
  color: var(--white);
}

.btn-gold:hover { background: var(--blue-500); }

.btn-telegram {
  background: #229ed9;
  color: var(--white);
  border-color: #229ed9;
}

.btn-telegram:hover {
  background: #1a8bc4;
  border-color: #1a8bc4;
}

.btn-xl {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover { background: var(--navy-soft); }

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover { border-color: var(--navy); }

.btn-outline-light {
  background: var(--white);
  border-color: var(--line);
  color: var(--blue-800);
}

.btn-outline-light:hover {
  background: var(--blue-50);
  border-color: var(--blue-600);
}

.btn-sm { padding: 8px 16px; font-size: 0.8125rem; }
.btn-lg { padding: 14px 28px; font-size: 0.9375rem; }
.btn-full { width: 100%; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}

.header.scrolled { box-shadow: 0 4px 24px rgba(12, 18, 34, 0.06); }

.nav {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 24px;
}

.logo {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  white-space: nowrap;
}

.logo em {
  font-style: normal;
  font-weight: 600;
  color: var(--clinical);
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--navy); }

.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
}

.nav-mobile-only { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 72px;
  background: linear-gradient(135deg, var(--ice) 0%, var(--white) 45%, var(--blue-50) 100%);
  color: var(--text);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('assets/hero-lab-clinical.jpg') 68% 40% / min(52%, 720px) auto no-repeat,
    radial-gradient(ellipse 80% 60% at 12% 20%, rgba(37, 99, 235, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 75%, rgba(0, 145, 217, 0.1), transparent 50%),
    linear-gradient(105deg, var(--ice) 0%, rgba(244, 249, 255, 0.97) 48%, rgba(244, 249, 255, 0.72) 100%);
  pointer-events: none;
  opacity: 0.92;
  animation: hero-mesh 18s ease-in-out infinite alternate;
}

@keyframes hero-mesh {
  0% { filter: hue-rotate(0deg) brightness(1); }
  100% { filter: hue-rotate(8deg) brightness(1.03); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clinical);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--blue-900);
  text-wrap: balance;
}

.hero h1 .gold { color: var(--blue-600); }

.hero-lead {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-trust span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--blue-800);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-note {
  font-size: 0.875rem;
  color: var(--muted);
}

.hero-note strong { color: var(--blue-800); }

.hero-visual .hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(12, 61, 122, 0.08);
  animation: card-float 7s ease-in-out infinite;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background: var(--blue-50);
}

.hero-card-body { padding: 24px 28px 28px; }

.hero-card-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--clinical);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.hero-card h2 {
  font-size: 1.75rem;
  margin-bottom: 4px;
  color: var(--blue-900);
}

.hero-card-spec {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

.hero-card-prices {
  margin-bottom: 12px;
}

.hero-card-prices li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
}

.hero-card-prices li.highlight {
  background: var(--blue-50);
  margin: 0 -12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: none;
}

.hero-card-prices strong {
  font-size: 1.125rem;
  color: var(--blue-600);
}

.hero-card-inc {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Telegram hero band */
.telegram-hero-band {
  position: relative;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 48%, #1a6fa8 100%);
  border-bottom: none;
  padding: 72px 0;
  color: var(--white);
  overflow: hidden;
}

.telegram-band-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 8% 50%, rgba(34, 158, 217, 0.22), transparent 60%),
    radial-gradient(ellipse 45% 60% at 92% 30%, rgba(37, 99, 235, 0.18), transparent 55%);
  pointer-events: none;
}

.telegram-hero-inner { position: relative; z-index: 1; }

.eyebrow--light { color: rgba(255, 255, 255, 0.72); }

.telegram-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.telegram-hero-copy h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
  text-wrap: balance;
}

.telegram-hero-lead {
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 24px;
}

.telegram-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.telegram-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.telegram-stat strong {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.telegram-stat span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* 3-layer Telegram architecture */
.tg-arch {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: stretch;
  margin-bottom: 20px;
}

.tg-arch--light {
  margin-bottom: 32px;
  padding: 4px 0;
}

.tg-arch-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.2);
  min-width: 0;
}

.tg-arch--light .tg-arch-card {
  background: var(--white);
  border-color: var(--line);
  box-shadow: 0 6px 20px rgba(12, 61, 122, 0.05);
}

.tg-arch-card--bot { border-left: 3px solid var(--blue-600); }
.tg-arch-card--group { border-left: 3px solid #229ed9; }
.tg-arch-card--channel { border-left: 3px solid var(--clinical); }

.tg-arch-layer {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.tg-arch--light .tg-arch-layer { color: var(--clinical); }

.tg-arch-card strong {
  font-size: 0.9375rem;
  color: var(--white);
  line-height: 1.2;
}

.tg-arch--light .tg-arch-card strong { color: var(--blue-900); }

.tg-arch-card p {
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
  flex: 1;
}

.tg-arch--light .tg-arch-card p { color: var(--muted); }

.tg-arch-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(37, 99, 235, 0.25);
  color: #bfdbfe;
  margin-top: 2px;
}

.tg-arch--light .tg-arch-tag {
  background: var(--blue-50);
  color: var(--blue-800);
}

.tg-arch-tag--mod {
  background: rgba(34, 158, 217, 0.22);
  color: #bae6fd;
}

.tg-arch--light .tg-arch-tag--mod {
  background: rgba(34, 158, 217, 0.12);
  color: #0369a1;
}

.tg-arch-tag--soon {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
}

.tg-arch--light .tg-arch-tag--soon {
  background: var(--cream-dark);
  color: var(--muted);
}

.tg-arch-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-600);
  margin-top: 2px;
}

.tg-arch-link:hover { text-decoration: underline; }

.tg-arch-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  padding: 0 2px;
}

.tg-arch--light .tg-arch-connector { color: var(--line); }

.info-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin-bottom: 18px;
}

@media (min-width: 600px) {
  .info-board { grid-template-columns: repeat(3, 1fr); }
}

.info-pin {
  padding: 9px 10px 9px 11px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 2px solid #229ed9;
}

.info-pin--order { border-left-color: var(--blue-600); }
.info-pin--catalog { border-left-color: var(--clinical); }
.info-pin--guide { border-left-color: #0ea5e9; }
.info-pin--ship { border-left-color: #60a5fa; }
.info-pin--safe { border-left-color: #38bdf8; }
.info-pin--weekly { border-left-color: #2dd4bf; }
.info-pin--zerotol { border-left-color: #fbbf24; }
.info-pin--mod { border-left-color: #7dd3fc; }
.info-pin--rules { border-left-color: #93c5fd; }

.info-pin-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.53125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 3px;
}

.info-pin-label::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 1px;
  background: currentColor;
  opacity: 0.75;
  flex-shrink: 0;
}

.info-pin p {
  font-size: 0.6875rem;
  line-height: 1.36;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.info-pin p strong {
  color: #fef08a;
  font-weight: 700;
}

.info-pin a {
  color: #7dd3fc;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.quality-process {
  list-style: none;
  counter-reset: qp;
  margin: 20px 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.quality-process li {
  counter-increment: qp;
  padding: 14px 16px 14px 44px;
  position: relative;
  background: var(--blue-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.875rem;
  line-height: 1.5;
}

.quality-process li::before {
  content: counter(qp);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.telegram-hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.telegram-big-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 20px 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  position: relative;
  transform: translateY(0);
  transition: box-shadow 0.3s var(--ease-out), border-color 0.2s, transform 0.25s var(--ease);
}

.telegram-big-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 0 2px 2px 0;
}

.telegram-big-card:hover {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

.telegram-big-card--group::before { background: #229ed9; }
.telegram-big-card--group:hover { border-color: rgba(34, 158, 217, 0.45); }

.telegram-big-card--bot::before { background: var(--blue-600); }
.telegram-big-card--bot:hover { border-color: rgba(37, 99, 235, 0.4); }

.telegram-big-icon {
  display: inline-flex;
  color: var(--blue-800);
  margin-bottom: 2px;
}

.telegram-big-kicker {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clinical);
}

.telegram-big-card strong {
  font-size: 1.125rem;
  color: var(--blue-900);
}

.telegram-big-desc {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.45;
  flex: 1;
}

.telegram-big-trust {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--blue-800);
  background: var(--blue-50);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 2px;
}

.telegram-big-cta {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue-600);
  margin-top: 4px;
}

.telegram-big-card--group .telegram-big-cta { color: #229ed9; }

.telegram-hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.telegram-photo-stack {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.telegram-photo-bg {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

.telegram-photo-vial {
  position: absolute;
  right: 8%;
  bottom: -6%;
  width: min(42%, 200px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(12, 61, 122, 0.15);
  background: var(--white);
}

/* Floating Telegram dock */
.telegram-dock {
  position: fixed;
  right: 20px;
  bottom: 96px;
  z-index: 180;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.telegram-dock-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  box-shadow: 0 8px 28px rgba(12, 61, 122, 0.18);
  text-align: center;
  transition: transform 0.2s var(--ease);
}

.telegram-dock-btn:hover { transform: translateY(-2px); }

.telegram-dock-btn span {
  font-size: 0.875rem;
  font-weight: 700;
}

.telegram-dock-btn small {
  font-size: 0.6875rem;
  opacity: 0.9;
}

.telegram-dock-group {
  background: #229ed9;
  color: var(--white);
  animation: dock-pulse 4s ease-in-out infinite;
}

@keyframes dock-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 158, 217, 0); }
  50% { box-shadow: 0 0 0 6px rgba(34, 158, 217, 0.12); }
}

.telegram-dock-bot {
  background: var(--blue-600);
  color: var(--white);
}

.telegram-dock-catalog {
  background: linear-gradient(145deg, var(--gold), #d4af37);
  color: var(--navy);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.32);
}

.telegram-dock-catalog:hover {
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.42);
}

body.catalog-open .telegram-dock {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

/* Trust strip */
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-icon {
  display: block;
  font-size: 0.875rem;
  color: var(--clinical);
  margin-bottom: 8px;
}

.trust-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.trust-item span:last-child {
  font-size: 0.8125rem;
  color: var(--muted);
}

.trust-item {
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: background 0.25s, transform 0.25s var(--ease);
}

.trust-item:hover {
  background: var(--white);
  transform: translateY(-2px);
}

/* Sections */
.section { padding: 88px 0; }
.section-cream { background: var(--cream); }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--blue-900);
  margin-bottom: 12px;
  text-wrap: balance;
}

.section-head p { color: var(--muted); }

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* Bestsellers */
.bestseller-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.bestseller-grid .product-card:nth-child(1) { grid-column: span 6; }
.bestseller-grid .product-card:nth-child(2) { grid-column: span 3; }
.bestseller-grid .product-card:nth-child(3) { grid-column: span 3; }
.bestseller-grid .product-card:nth-child(4) { grid-column: span 12; display: grid; grid-template-columns: 200px 1fr; }
.bestseller-grid .product-card:nth-child(4) .product-card-media { aspect-ratio: auto; min-height: 100%; }
.bestseller-grid .product-card:nth-child(4) .product-card-body { justify-content: center; }

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.product-card-media {
  aspect-ratio: 1;
  background: var(--blue-50);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.product-card-media {
  position: relative;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.product-card:hover .product-card-media img { transform: scale(1.015); }

.product-card-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px 12px;
  text-align: left;
  background: linear-gradient(to top, rgba(12, 61, 122, 0.88) 0%, rgba(12, 61, 122, 0.45) 70%, transparent 100%);
}

.product-card-label strong {
  display: block;
  font-size: 0.875rem;
  color: var(--white);
  font-weight: 600;
}

.product-card-label span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.hero-card-media { position: relative; }

.hero-card-media .product-card-label { bottom: 16px; }

.product-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-card:hover {
  box-shadow: 0 16px 36px rgba(12, 61, 122, 0.1);
  border-color: rgba(37, 99, 235, 0.25);
}

.product-card-cat {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}

.product-card-name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
}

.product-card-spec {
  font-size: 0.875rem;
  color: var(--muted);
}

.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 8px;
}

.product-card-price-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
}

.product-card-price-cur {
  font-size: 0.875rem;
  color: var(--muted);
}

.product-card-bundle {
  font-size: 0.8125rem;
  color: var(--muted);
  padding: 8px 10px;
  background: var(--cream);
  border-radius: var(--radius);
}

.product-card-bundle strong { color: var(--gold); }

.product-card-bot-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #229ed9;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(34, 158, 217, 0.45);
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
}

.product-card-bot-icon:hover {
  background: #1a8bc4;
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(34, 158, 217, 0.55);
}

.product-card-bot-svg {
  display: block;
  flex-shrink: 0;
}

.product-card-bot-btn {
  margin-top: auto;
  width: 100%;
  gap: 8px;
}

.product-card-bot-btn .product-card-bot-svg {
  width: 16px;
  height: 16px;
}

.product-card .btn { margin-top: auto; width: 100%; }

.product-card .product-card-bot-btn { margin-top: auto; }

/* Product marquee */
.product-marquee {
  background: var(--white);
  border-block: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden;
}

.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clinical);
  margin-bottom: 14px;
}

.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee 48s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-track {
  animation-duration: 72s;
}

.marquee-item {
  flex-shrink: 0;
  width: 140px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ice);
}

.marquee-item {
  position: relative;
}

.marquee-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.marquee-item-label {
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  font-size: 0.625rem;
  font-weight: 700;
  text-align: center;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  padding: 4px 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Visual gallery */
.visual-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.visual-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  font-family: var(--font);
  padding: 0;
  text-align: left;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.visual-tile:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 24px rgba(12, 61, 122, 0.08);
  border-color: rgba(37, 99, 235, 0.3);
}

.visual-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.visual-tile span {
  display: block;
  padding: 8px 10px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--blue-800);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quality-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-top: 24px;
}

.quality-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  display: block;
}

/* Goal grid */
.goal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.goal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.25s var(--ease), box-shadow 0.25s;
}

.goal-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 14px 36px rgba(12, 61, 122, 0.1);
  transform: translateY(-4px);
}

/* Guide grid (Wissen) */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.guide-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.guide-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(12, 61, 122, 0.09);
}

.guide-card--accent {
  background: linear-gradient(145deg, var(--blue-50) 0%, var(--white) 100%);
  border-color: rgba(37, 99, 235, 0.25);
}

.guide-card-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.guide-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.guide-card p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
}

.guide-note {
  margin-top: 20px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

.section-wissen {
  position: relative;
  overflow: hidden;
}

.section-wissen .section-visual {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
}

.section-wissen .section-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.section-wissen .container {
  position: relative;
  z-index: 1;
}

.goal-card-img,
.goal-card-section-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line);
}

.goal-card-media--section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 61, 122, 0.55), transparent 55%);
  pointer-events: none;
}

.goal-card-media--section .goal-card-emoji {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 1.25rem;
  z-index: 1;
}

.goal-card-inner { padding: 20px 22px 22px; }

.goal-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.goal-card p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
}

.goal-card-count {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}

/* Reta packages */
.reta-packages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.reta-package {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0;
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.reta-package:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12, 61, 122, 0.1);
}

.reta-package-media { position: relative; }

.reta-package-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line);
}

.reta-package-label {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
}

.goal-card-media { position: relative; }

.goal-card-label {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  padding: 6px 8px;
}

.reta-package-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.reta-package--featured {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 1px var(--blue-100), 0 12px 36px rgba(37, 99, 235, 0.12);
}

.reta-package--featured:hover {
  box-shadow: 0 0 0 1px var(--blue-100), 0 18px 44px rgba(37, 99, 235, 0.16);
}

.reta-package-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.reta-package-dose {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.reta-price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--line);
}

.reta-price-row--bundle .reta-price-value { color: var(--gold); font-weight: 700; }

.reta-package-save {
  font-size: 0.8125rem;
  color: var(--teal);
  margin: 12px 0;
}

.reta-package-includes {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 16px 0;
}

.reta-package-includes li {
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
}

.reta-package-includes li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.section-bot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
}

.section-bot-btn .product-card-bot-svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.reta-package-includes { margin-bottom: 20px; }

/* GLP-1 comparison */
.glp-compare-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.glp-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.glp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12, 61, 122, 0.1);
}

.glp-card--featured {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 1px var(--blue-100), 0 12px 36px rgba(37, 99, 235, 0.12);
}

.glp-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--clinical);
  padding: 4px 8px;
  border-radius: 4px;
}

.glp-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  padding-right: 72px;
}

.glp-card-spec {
  font-size: 0.875rem;
  color: var(--muted);
}

.glp-card-mech {
  font-size: 0.8125rem;
  color: var(--blue-800);
  line-height: 1.45;
  flex: 1;
}

.glp-card-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
}

.glp-card-price strong {
  font-size: 1.25rem;
  color: var(--navy);
}

.glp-card-price--bundle strong { color: var(--blue-600); }

.glp-card .section-bot-btn { margin-top: 8px; }

.glp-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.glp-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.glp-table th,
.glp-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--line);
}

.glp-table th {
  font-weight: 600;
  color: var(--navy);
  background: var(--cream);
}

.glp-table td { color: var(--muted); }

.glp-table .glp-col--featured {
  background: var(--blue-50);
  color: var(--blue-900);
  font-weight: 600;
}

.glp-table-cta-row th,
.glp-table-cta-row td {
  border-bottom: none;
  padding-top: 18px;
}

.glp-table-cta-row th {
  vertical-align: middle;
}

.glp-table-bot-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #229ed9;
  text-decoration: none;
  transition: color 0.2s;
}

.glp-table-bot-link:hover {
  color: #1a8bc4;
  text-decoration: underline;
}

.glp-compare-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 16px;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(12, 61, 122, 0.09);
}

.why-card-media {
  height: 140px;
  overflow: hidden;
}

.why-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-card-body {
  padding: 22px;
}

.why-card-body h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-card-body p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: none;
}

.steps--timeline {
  position: relative;
  gap: 20px;
}

.steps--timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--clinical), var(--navy));
  opacity: 0.2;
  pointer-events: none;
}

.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  transition: border-color 0.25s, box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.step-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 12px 32px rgba(12, 61, 122, 0.08);
  transform: translateY(-3px);
}

.step-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue-600);
}

.step-link:hover { text-decoration: underline; }

.steps li {
  position: relative;
  padding-top: 8px;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.steps h3 {
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.steps p {
  font-size: 0.9375rem;
  color: var(--muted);
}

.steps em { color: var(--navy); font-style: normal; font-weight: 500; }

/* Payment */
.payment-grid { max-width: 900px; }

.payment-lead {
  color: var(--muted);
  margin-top: 12px;
  font-size: 1.0625rem;
}

.payment-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.pay-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--white);
}

.pay-card--primary {
  border-color: var(--blue-600);
  background: linear-gradient(135deg, var(--blue-50), transparent);
}

.pay-card h3 {
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.pay-card ul {
  margin-bottom: 16px;
}

.pay-card li {
  padding: 6px 0;
  font-size: 0.9375rem;
}

.pay-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

.payment-note {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Quality */
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.quality-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
  color: var(--muted);
}

.quality-list strong { color: var(--navy); }

/* COA trust */
.section-coa {
  background: linear-gradient(180deg, var(--white) 0%, var(--blue-50) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.coa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.coa-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.coa-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(12, 61, 122, 0.09);
}

.coa-card--primary {
  border-color: var(--blue-600);
  background: linear-gradient(145deg, var(--blue-50) 0%, var(--white) 100%);
  box-shadow: 0 0 0 1px var(--blue-100);
}

.coa-card-kicker {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clinical);
}

.coa-card-stat {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--blue-600);
}

.coa-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--blue-900);
}

.coa-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.coa-card-list {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.coa-card-list li {
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.45;
}

.coa-card-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--clinical);
  font-weight: 700;
}

.coa-request {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue-600);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.coa-request h3 {
  font-size: 1.125rem;
  color: var(--blue-900);
  margin-bottom: 8px;
}

.coa-request p {
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.55;
}

.coa-request p strong {
  color: var(--blue-900);
}

.coa-request p em {
  font-style: normal;
  font-weight: 500;
  color: var(--blue-800);
}

.coa-request-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0;
}

.coa-request-hint {
  font-size: 0.75rem;
  color: var(--muted);
}

#coa {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* Shipping */
.shipping-block h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.ship-table {
  width: 100%;
  max-width: 560px;
  border-collapse: collapse;
}

.ship-table th,
.ship-table td {
  text-align: left;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
}

.ship-table th {
  font-weight: 600;
  color: var(--navy);
  width: 40%;
}

.ship-table td { color: var(--muted); }

/* FAQ */
.faq-list { max-width: 720px; }

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}

.faq-item summary {
  padding: 18px 0;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--gold);
  font-weight: 400;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 0.9375rem;
}

.faq-item a { color: var(--teal); text-decoration: underline; }

/* Community */
.community-header {
  max-width: 640px;
  margin-bottom: 40px;
}

.community-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--blue-900);
  margin-bottom: 12px;
}

.community-lead {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.community-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.moderated-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue-800);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(12, 61, 122, 0.06);
}

.moderated-badge svg {
  color: var(--clinical);
  flex-shrink: 0;
}

.community-rules {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  margin-bottom: 28px;
  box-shadow: 0 8px 28px rgba(12, 61, 122, 0.06);
}

.community-rules-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-bottom: 10px;
}

.community-rules-head h3 {
  font-size: 1.25rem;
  color: var(--navy);
}

.community-rules-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-800);
  background: var(--blue-50);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 100px;
}

.community-rules-intro {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.community-rules-intro strong {
  color: var(--blue-900);
}

.rules-ban-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.rules-ban-chip {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--blue-900);
  background: var(--blue-50);
  border: 1px solid rgba(12, 61, 122, 0.2);
  border-left: 3px solid var(--blue-800);
  padding: 8px 14px;
  border-radius: var(--radius);
}

.community-rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rules-panel {
  border-radius: var(--radius);
  padding: 20px 22px;
  border: 1px solid var(--line);
}

.rules-panel--allowed {
  background: linear-gradient(145deg, var(--blue-50) 0%, var(--white) 100%);
  border-color: rgba(37, 99, 235, 0.2);
}

.rules-panel--forbidden {
  background: var(--white);
  border-color: rgba(12, 61, 122, 0.18);
  border-left: 3px solid var(--blue-800);
}

.rules-panel h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.rules-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.rules-panel--allowed .rules-icon {
  background: var(--blue-600);
  color: var(--white);
}

.rules-panel--forbidden .rules-icon {
  background: var(--blue-900);
  color: var(--white);
}

.rules-panel ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.rules-panel li {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.rules-panel--forbidden li strong {
  color: var(--blue-900);
}

.rules-panel li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--clinical);
  font-weight: 700;
}

.rules-panel a {
  color: var(--blue-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.community-rules-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--muted);
}

.community-rules-foot a {
  color: var(--blue-600);
  font-weight: 600;
}

.community-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.community-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: var(--white);
  transition: transform 0.25s var(--ease), border-color 0.2s, box-shadow 0.25s;
}

.community-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 10px 28px rgba(12, 61, 122, 0.08);
}

.community-card--group {
  border-left: 3px solid #229ed9;
}

.community-card--group span { color: #229ed9; }

.community-card--primary {
  border-color: var(--blue-600);
  background: linear-gradient(135deg, var(--blue-50), transparent);
}

.community-card--catalog {
  border-left: 3px solid var(--gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent);
}

.community-card--catalog span { color: var(--gold); }

.community-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.community-card p {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.community-card span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}

/* CTA final */
.cta-final {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-final h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-final .btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.cta-final .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.cta-final p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

.cta-final-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--cream);
  padding: 48px 0 24px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 8px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-nav a:hover { color: var(--navy); }

.footer-catalog-btn {
  font: inherit;
  font-size: 0.875rem;
  color: var(--muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.footer-catalog-btn:hover { color: var(--navy); }

.footer-legal {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Catalog drawer */
.catalog-drawer {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.35s;
}

.catalog-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.catalog-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 34, 0.55);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.catalog-drawer.is-open .catalog-drawer-backdrop { opacity: 1; }

.catalog-drawer-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 92vh;
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.45s var(--ease);
  box-shadow: 0 -20px 60px rgba(12, 18, 34, 0.2);
}

.catalog-drawer.is-open .catalog-drawer-panel { transform: translateY(0); }

.catalog-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.catalog-drawer-head h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
}

.catalog-drawer-sub {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 4px;
}

.catalog-close {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--cream);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--navy);
}

.catalog-drawer-filters {
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.catalog-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.catalog-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.catalog-chip:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.catalog-chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.catalog-chip-count {
  opacity: 0.65;
  margin-left: 4px;
  font-weight: 500;
}

.catalog-hint {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 8px 0 12px;
  min-height: 1.2em;
}

.catalog-toolbar {
  display: flex;
  gap: 12px;
}

.catalog-toolbar input,
.catalog-toolbar select {
  font-family: var(--font);
  font-size: 0.875rem;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
}

.catalog-toolbar input { flex: 1; min-width: 0; }

.catalog-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px 24px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  min-height: min(48vh, 400px);
  contain: layout style;
}

.catalog-grid--skeleton {
  pointer-events: none;
}

.catalog-card-placeholder {
  aspect-ratio: 0.72;
  min-height: 280px;
  border-radius: var(--radius-lg);
  background: linear-gradient(110deg, var(--cream) 8%, var(--white) 18%, var(--cream) 33%);
  background-size: 200% 100%;
  animation: catalog-shimmer 1.4s ease-in-out infinite;
}

@keyframes catalog-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.catalog-drawer-foot {
  flex-shrink: 0;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--white), var(--cream));
}

.catalog-drawer-foot p {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 12px;
  text-align: center;
}

.catalog-drawer-filters {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--white);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  min-height: 280px;
}

.catalog-grid .product-card {
  content-visibility: auto;
  contain-intrinsic-size: auto 320px;
}

.catalog-empty {
  text-align: center;
  color: var(--muted);
  padding: 48px 24px;
}

/* Modal & legal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(12, 18, 34, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.hidden { display: none; }

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 440px;
  width: 100%;
}

.modal h2 {
  font-family: var(--serif);
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.modal p, .modal li {
  font-size: 0.9375rem;
  color: var(--muted);
}

.modal ul { margin: 16px 0 24px; padding-left: 20px; list-style: disc; }

.legal-panel {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(12, 18, 34, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.legal-panel[aria-hidden="false"] { display: flex; }

.legal-panel-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
}

.legal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: var(--radius);
  padding: 4px 8px;
  line-height: 1;
}

.legal-content h2 { font-family: var(--serif); margin-bottom: 16px; }
.legal-content h3 { margin: 20px 0 8px; font-size: 1rem; }
.legal-content p, .legal-content li { font-size: 0.9375rem; color: var(--muted); margin-bottom: 8px; }

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--line);
  z-index: 150;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Reveal animations */
.reveal-on-load {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal-on-load.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.45s var(--ease-out),
    transform 0.45s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    border-color 0.2s;
  transition-delay: var(--stagger, 0ms);
}

.reveal-stagger.is-visible .stagger-item,
.stagger-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 900px) {
  .catalog-drawer-panel {
    bottom: auto;
    top: 0;
    left: auto;
    right: 0;
    width: min(720px, 92vw);
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    transform: translateX(100%);
  }

  .catalog-drawer.is-open .catalog-drawer-panel {
    transform: translateX(0);
  }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-bg { background-position: center; opacity: 0.35; }
  .bestseller-grid { grid-template-columns: repeat(2, 1fr); }
  .bestseller-grid .product-card { grid-column: span 1 !important; display: flex !important; }
  .bestseller-grid .product-card:nth-child(4) { grid-column: span 2 !important; }
  .reta-packages { grid-template-columns: repeat(2, 1fr); }
  .goal-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .visual-grid { grid-template-columns: repeat(4, 1fr); }
  .glp-compare-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .coa-grid { grid-template-columns: 1fr; }
  .steps--timeline::before { display: none; }
}

#community,
#community-regeln {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .marquee-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .hero-bg,
  .hero-visual .hero-card,
  .telegram-dock-group { animation: none; }
  .reveal,
  .reveal-on-load,
  .stagger-item { opacity: 1; transform: none; transition: none; }
  .catalog-drawer,
  .catalog-drawer-backdrop,
  .catalog-drawer-panel,
  .sticky-cta,
  .btn { transition: none; }
  .catalog-card-placeholder { animation: none; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
    z-index: 199;
  }
  .steps,
  .payment-cards,
  .quality-grid { grid-template-columns: 1fr; }
  .bestseller-grid,
  .reta-packages,
  .goal-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-bottom: 64px; }
  .section { padding: 64px 0; }
  .visual-grid { grid-template-columns: repeat(3, 1fr); }
  .marquee-item { width: 110px; }
  .telegram-hero-inner { grid-template-columns: 1fr; }
  .telegram-hero-cards { grid-template-columns: 1fr; }
  .telegram-stats { flex-direction: column; }
  .info-board { grid-template-columns: 1fr; }
  .tg-arch {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .tg-arch-connector { display: none; }
  .community-rules-grid { grid-template-columns: 1fr; }
  .community-cta-row { flex-direction: column; align-items: stretch; }
  .moderated-badge { justify-content: center; }
  .community-rules { padding: 22px 18px 20px; }
  .community-cards { grid-template-columns: 1fr; }
  .community-header .btn { width: 100%; }
  .telegram-dock {
    flex-direction: row;
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 6px;
  }
  body:has(.sticky-cta.visible) .telegram-dock {
    bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }
  .telegram-dock-btn {
    flex: 1;
    min-width: 0;
    padding: 9px 6px;
    border-radius: var(--radius);
    box-shadow: 0 4px 14px rgba(12, 61, 122, 0.14);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .telegram-dock-btn span { font-size: 0.6875rem; }
  .telegram-dock-btn small {
    font-size: 0.5625rem;
    line-height: 1.25;
    margin-top: 1px;
  }
  .telegram-dock-catalog { flex: 1.2; }
  .telegram-dock-group { animation: none; }
  .hero-cta .btn { width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .coa-request { padding: 22px 20px; flex-direction: column; align-items: stretch; }
  .coa-request-actions { width: 100%; }
  .coa-request-actions .btn { width: 100%; }
  .nav-mobile-only { display: list-item; }
  .nav-mobile-only .btn { width: 100%; margin-top: 8px; }
  .glp-table-wrap { display: none; }
}

/* Setup page — legal footer */
.setup-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 12px;
  font-size: 0.8125rem;
}

.setup-legal-nav a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.setup-legal-nav a:hover,
.setup-legal-nav a:focus-visible {
  color: var(--navy);
}