
/* ==============================================
   RESET & BASE
   ============================================== */
*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #0a0a0a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
h1, h2, h3, h4, h5, h6 { margin: 0; }
p { margin: 0; }

/* ==============================================
   DESIGN TOKENS
   ============================================== */
:root {
  --white: #ffffff;
  --black: #0a0a0a;
  --bg-light: #f0f5f6;
  --accent: #5FD4B3;
  --accent-dark: #3eb898;
  --black-10: rgba(10,10,10,0.1);
  --black-06: rgba(10,10,10,0.06);

  --font-body: 'Inter', sans-serif;
  --font-heading: 'Urbanist', 'Inter', sans-serif;

  --radius-card: 40px;
  --radius-btn: 58px;
  --radius-sm: 16px;

  /* legacy vars used in subpage styles */
  --color-text: #0a0a0a;
  --color-muted: #6b7079;
  --color-subtle: #9aa1a9;
  --color-surface: #f0f5f6;
  --color-surface-2: #e8eef0;
  --color-border: rgba(10,10,10,0.1);
  --color-accent: #5FD4B3;
  --color-accent-text: #0a0a0a;
}

/* ==============================================
   TYPOGRAPHY PRESETS
   ============================================== */
.t-h1 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 80px;
  letter-spacing: -2px;
  line-height: 95%;
}
.t-h2-large {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 54px;
  letter-spacing: -1px;
  line-height: 1.1;
}
.t-h2-medium {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -1px;
  line-height: 1.15;
}
.t-h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.t-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.t-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}
.muted { opacity: 0.5; }
.muted-white { opacity: 0.6; }

/* ==============================================
   BUTTONS
   ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-btn);
  padding: 14px 26px;
  transition: opacity 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn:hover { opacity: 0.85; transform: scale(1.02); }

.btn-primary {
  background: var(--black);
  color: var(--white);
}
.btn-border {
  background: var(--white);
  color: var(--black);
  border: 1px solid rgba(69,65,64,0.3);
}
.btn-accent {
  background: var(--accent);
  color: var(--black);
}
.btn-ghost {
  background: transparent;
  color: var(--black);
  opacity: 0.7;
  font-size: 13px;
  padding: 8px 16px;
  border: 1px solid var(--black-10);
  border-radius: var(--radius-btn);
}
.btn-ghost:hover { opacity: 1; }

/* legacy secondary */
.btn-secondary {
  background: var(--bg-light);
  color: var(--black);
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--radius-btn);
  font-weight: 500;
}
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ==============================================
   SCROLL REVEAL
   ============================================== */
/* Scroll reveal — elements start hidden only when JS marks them as ready */
.reveal-ready {
  opacity: 0;
  transform: translateY(50px);
}
.reveal-ready.in-view {
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready { opacity: 1; transform: none; }
}

/* ==============================================
   HEADER
   ============================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  padding: 0 clamp(20px, 3vw, 48px);
  border-bottom: 1px solid var(--black-10);
  transition: box-shadow 0.2s ease;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 56px;
}
.nav-logo {
  flex-shrink: 0;
  line-height: 0;
}
.nav-logo img {
  height: 32px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.nav-menu {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-menu li a {
  padding: 9px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  position: relative;
  font-weight: 400;
  color: var(--black);
  opacity: 0.65;
  border-radius: 0;
  background: none;
  transition: opacity 0.2s ease;
  display: block;
  white-space: nowrap;
}
.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-menu li a:hover { opacity: 1; background: none; }
.nav-menu li a:hover::after { transform: scaleX(1); }
.nav-menu li a.active { opacity: 1; font-weight: 600; }
.nav-menu li a.active::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link-text {
  font-family: var(--font-body);
  font-size: 15px;
  opacity: 0.65;
  position: relative;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.nav-link-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-link-text:hover { opacity: 1; }
.nav-link-text:hover::after { transform: scaleX(1); }

.btn.btn-primary {
  font-size: 15px;
  padding: 12px 24px;
}

@media (max-width: 767px) {
  .header { padding: 0 16px; }
  .header-inner { height: 64px; }
  .nav-menu { display: none; }
  .nav-left { gap: 0; }
  .nav-link-text { display: none; }
  .nav-right { gap: 10px; }
  .btn.btn-primary { font-size: 13px; padding: 10px 16px; }
}

/* ==============================================
   CONTAINER
   ============================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* ==============================================
   HERO
   ============================================== */
main { display: block; }

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vh, 64px);
  padding: clamp(72px, 10vh, 120px) 24px clamp(72px, 10vh, 120px);
  background: #ffffff;
}

/* DNA canvas — diagonal helix on right side, overflows hero bottom */
.hero__dna {
  position: absolute;
  top: 0;
  right: 20px;          /* bardziej w lewo */
  width: 360px;
  height: calc(100% + 180px);  /* wychodzi poza dolną krawędź hero */
  pointer-events: none;
  overflow: visible;
  z-index: 0;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 70%,
    rgba(0,0,0,0) 100%
  ), linear-gradient(
    to left,
    rgba(0,0,0,1) 20%,
    rgba(0,0,0,0.5) 65%,
    rgba(0,0,0,0) 100%
  );
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 70%,
    rgba(0,0,0,0) 100%
  ), linear-gradient(
    to left,
    rgba(0,0,0,1) 20%,
    rgba(0,0,0,0.5) 65%,
    rgba(0,0,0,0) 100%
  );
  mask-composite: intersect;
}
.hero__dna canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
@media (max-width: 767px) {
  .hero__dna { display: none; }
}

.hero__title {
  margin: 0;
  font-family: var(--font-heading);
  text-align: center;
  font-weight: 400;
  color: #111213;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #111213;
}
.hero__title strong { font-weight: 700; }
.hero__accent { color: #5FD4B3; font-weight: 700; }

.hero__vial {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
}
.hero__vial img {
  display: block;
  width: clamp(190px, 23vw, 340px);
  height: auto;
  filter: drop-shadow(0 32px 40px rgba(0,0,0,0.12));
  animation: vial-float 5.5s ease-in-out infinite;
  will-change: transform;
}
.hero__vial-shadow {
  position: absolute;
  bottom: -22px;
  left: 50%;
  width: clamp(140px, 17vw, 250px);
  height: 18px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0) 70%);
  filter: blur(6px);
  animation: vial-shadow 5.5s ease-in-out infinite;
  z-index: -1;
}

@keyframes vial-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes vial-shadow {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.85; }
  50% { transform: translateX(-50%) scale(0.85); opacity: 0.55; }
}

.hero__scroll {
  position: absolute;
  bottom: clamp(20px, 4vh, 36px);
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a4d52;
  border-radius: 50%;
  text-decoration: none;
  animation: scroll-pulse 2.2s ease-in-out infinite;
  transition: color 0.2s ease;
}
.hero__scroll:hover { color: #111213; }
.hero__scroll svg { width: 24px; height: 24px; display: block; }

@keyframes scroll-pulse {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.55; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__vial img, .hero__vial-shadow, .hero__scroll { animation: none; }
}

@media (max-width: 900px) {
  .hero__title { font-size: clamp(24px, 5.2vw, 40px); }
}
@media (max-width: 640px) {
  .hero {
    padding-top: clamp(56px, 10vh, 96px);
    padding-bottom: clamp(56px, 10vh, 96px);
    gap: clamp(24px, 4vh, 48px);
  }
  .hero__title { font-size: clamp(22px, 6.4vw, 30px); line-height: 1.3; }
  .hero__title br { display: none; }
  .hero__vial img { width: clamp(170px, 46vw, 240px); }
}
@media (max-width: 360px) {
  .hero__title { font-size: 20px; }
}

/* ==============================================
   COMPARISON SECTION
   ============================================== */
.comparison {
  padding: clamp(40px, 8vh, 100px) clamp(20px, 4vw, 48px) clamp(60px, 10vh, 120px);
  background: #ffffff;
}
.comparison__card {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(36px, 5.5vw, 80px);
  border-radius: var(--radius-card);
  background: var(--bg-light);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.comparison__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vh, 32px);
}
.comparison__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--black);
}
.comparison__lede {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--black);
}
.comparison__lede strong { font-weight: 700; }
.comparison__brand { color: var(--accent); }

.comparison__right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(28px, 4vh, 44px);
}

.compare-glass {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(20px, 2.4vw, 36px);
  padding: clamp(22px, 3vw, 34px);
  border-radius: 22px;
  background: rgba(255,255,255,0.7);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 20px 50px -20px rgba(20,30,40,0.12);
}
.compare-glass__divider {
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.09) 50%, transparent 100%);
}
.compare-glass__col h3 {
  margin: 0 0 14px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.compare-glass__col--neg h3 { color: var(--color-muted); }
.compare-glass__col--pos h3 { color: var(--accent-dark); }

.compare-glass ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compare-glass li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--black);
  font-weight: 400;
}
.compare-glass__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.compare-glass__col--neg .compare-glass__icon { color: var(--color-subtle); }
.compare-glass__col--pos .compare-glass__icon { color: var(--accent); }

.cta-pill {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 26px;
  border-radius: var(--radius-btn);
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.cta-pill:hover { opacity: 0.85; transform: scale(1.02); }
.cta-pill svg { width: 14px; height: 14px; }

@media (max-width: 980px) {
  .comparison__card {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vh, 48px);
  }
  .comparison__title br, .comparison__lede br { display: none; }
  .comparison__title { font-size: clamp(28px, 6vw, 42px); }
  .comparison__lede { font-size: clamp(22px, 5vw, 32px); }
}
@media (max-width: 640px) {
  .comparison { padding-left: 16px; padding-right: 16px; }
  .comparison__card { padding: 28px 22px; border-radius: 24px; }
  .compare-glass {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px;
  }
  .compare-glass__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.09) 50%, transparent 100%);
  }
  .cta-pill { align-self: stretch; justify-content: center; }
}

/* ==============================================
   STATS BAR
   ============================================== */
.stats-bar {
  padding: clamp(48px, 8vh, 80px) clamp(20px, 4vw, 48px);
  background: var(--black);
}
.stats-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-item__num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-item__num span { color: var(--accent); }
.stat-item__label {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
@media (max-width: 767px) {
  .stats-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
}

/* ==============================================
   PEPTYDY GRID SECTION (homepage)
   ============================================== */
.peptydy-section {
  padding: clamp(60px, 10vh, 120px) 0;
  background: var(--white);
}
.section-header {
  max-width: 1280px;
  margin: 0 auto 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -1px;
  color: var(--black);
  line-height: 1.1;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-muted);
  max-width: 480px;
  line-height: 1.6;
  margin-top: 12px;
}

.peptydy-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.peptyd-card {
  background: var(--bg-light);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
  text-decoration: none;
  color: var(--black);
}
.peptyd-card:hover { transform: translateY(-4px); }

.peptyd-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.peptyd-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.peptyd-card__desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}
.peptyd-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--black-10);
}
.peptyd-card__stat {
  font-size: 13px;
  color: var(--color-muted);
}

@media (max-width: 980px) {
  .peptydy-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .peptydy-grid { grid-template-columns: 1fr; }
}

/* ==============================================
   RAPORTY / FEATURES BENTO
   ============================================== */
.raporty-section {
  padding: clamp(60px, 10vh, 120px) 0;
  background: var(--bg-light);
}
.bento-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
.bento-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
  overflow: hidden;
}
.bento-card:hover { transform: translateY(-4px); }
.bento-card--wide { grid-column: span 7; }
.bento-card--narrow { grid-column: span 5; }
.bento-card--full { grid-column: span 12; }
.bento-card--third { grid-column: span 4; }

.bento-card__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.bento-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--black);
}
.bento-card__desc {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.65;
  flex: 1;
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 100px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}
.icon-circle--accent { background: var(--accent); }
.icon-circle--accent svg { stroke: var(--black); }

@media (max-width: 980px) {
  .bento-card--wide, .bento-card--narrow, .bento-card--third { grid-column: span 12; }
}

/* ==============================================
   STEPS SECTION
   ============================================== */
.steps-section {
  padding: clamp(60px, 10vh, 120px) 0;
  background: var(--white);
}
.steps-grid {
  max-width: 1280px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--bg-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.step-card:hover { transform: translateY(-4px); }
.step-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px 20px;
}
.step-number-group {
  display: flex;
  flex-direction: column;
}
.step-word {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.step-num {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 32px;
  opacity: 0.5;
  letter-spacing: -1px;
  line-height: 1;
}
.step-card__body {
  padding: 0 32px 32px;
  border-top: 1px solid var(--black-10);
  margin-top: 8px;
  padding-top: 24px;
}
.step-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.step-card__desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ==============================================
   CTA BANNER
   ============================================== */
.cta-banner {
  padding: clamp(48px, 8vh, 80px) clamp(40px, 6vw, 80px);
  background: var(--black);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner__text { display: flex; flex-direction: column; gap: 12px; }
.cta-banner__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1.15;
}
.cta-banner__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.cta-banner .btn-accent { font-size: 15px; padding: 16px 32px; }
@media (max-width: 767px) {
  .cta-banner { flex-direction: column; align-items: flex-start; }
}

/* ==============================================
   NEWSLETTER
   ============================================== */
.newsletter-section {
  padding: clamp(60px, 10vh, 120px) clamp(20px, 4vw, 48px);
  background: var(--bg-light);
  text-align: left;
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-inner .section-title { text-align: center; }
.newsletter-inner .section-subtitle { text-align: center; margin: 12px auto 32px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-input {
  flex: 1;
  min-width: 240px;
  height: 52px;
  padding: 0 20px;
  border: 1px solid var(--black-10);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.15s ease;
}
.newsletter-input::placeholder { color: var(--color-muted); }
.newsletter-input:focus { border-color: var(--accent); }
.newsletter-form .btn-primary { height: 52px; flex-shrink: 0; }

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--black-10);
  padding: 0 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-main-row {
  max-width: 1280px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--black-10);
  gap: 40px;
  flex-wrap: wrap;
}
.footer-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.footer-left .t-h2-medium {
  font-size: clamp(24px, 3vw, 40px);
  color: var(--black);
}
.footer-right {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
}

.footer-bottom {
  max-width: 1280px;
  width: 100%;
  padding-top: 48px;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  gap: 40px;
}
.footer-brand {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand img {
  height: 26px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.footer-copyright {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--black);
  opacity: 0.5;
}
.footer-links-row {
  display: flex;
  flex-direction: row;
  gap: 64px;
}
.footer-link-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link-col-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 4px;
}
.footer-link {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  position: relative;
  display: inline-block;
  opacity: 0.7;
  transition: opacity 0.15s ease;
  display: block;
  text-decoration: none;
}
.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer-link:hover { opacity: 1; }
.footer-link:hover::after { transform: scaleX(1); }

.footer-copyright-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--black-10);
  margin-top: 40px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-disclaimer {
  font-size: 12px;
  color: var(--black);
  opacity: 0.4;
  max-width: 480px;
}
.footer-socials {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.footer-social {
  width: 20px;
  height: 20px;
  opacity: 0.5;
  transition: opacity 0.15s ease;
  color: var(--black);
}
.footer-social:hover { opacity: 1; }

@media (max-width: 767px) {
  .footer { padding: 0 16px 32px; }
  .footer-main-row { flex-direction: column; padding: 48px 0 40px; }
  .footer-left, .footer-right { width: 100%; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .footer-brand { width: 100%; }
  .footer-links-row { gap: 32px; flex-wrap: wrap; }
}

/* ==============================================
   LISTING PAGES (peptydy/, dostawcy/)
   ============================================== */
.listing-hero {
  padding: clamp(48px, 8vh, 80px) 0 clamp(32px, 5vh, 56px);
  background: var(--white);
  border-bottom: 1px solid var(--black-10);
  position: relative;
  overflow: hidden;
}
.listing-hero .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.listing-hero__canvas {
  position: absolute;
  bottom: -300px;
  right: -300px;
  width: 580px;
  height: 580px;
  opacity: 1;
  pointer-events: auto;
  cursor: none;
  z-index: 1;
}
@media (max-width: 760px) {
  .listing-hero__canvas { display: none; }
}
.listing-hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -1px;
  color: var(--black);
  line-height: 1.1;
}
.listing-hero p {
  font-size: 16px;
  color: var(--color-muted);
  max-width: 640px;
  line-height: 1.65;
}
.listing-meta {
  font-size: 13px;
  color: var(--color-subtle);
  margin-top: 4px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-muted);
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--color-muted);
  transition: color 0.15s;
}
.breadcrumb a:hover { color: var(--black); }
.breadcrumb__sep { opacity: 0.4; }

/* FILTER ROW */
.filtry {
  position: sticky;
  top: 80px;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--black-10);
  padding: 16px 0;
}
.filtry .container { }
.filtry__row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.filtry__select {
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--black-10);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s;
}
.filtry__select:focus { border-color: var(--accent); }
.filtry__search-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
}
.filtry__search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--color-muted);
  pointer-events: none;
}
.filtry__search {
  width: 100%;
  height: 44px;
  padding: 0 16px 0 40px;
  border: 1px solid var(--black-10);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
}
.filtry__search::placeholder { color: var(--color-muted); }
.filtry__search:focus { border-color: var(--accent); }

/* LISTING SECTION */
.listing-section {
  padding: clamp(32px, 6vh, 64px) 0 clamp(60px, 10vh, 100px);
  background: var(--white);
}
.listing-count {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 24px;
}

/* GRID 3 */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3 { grid-template-columns: 1fr; } }

/* ================================================
   RANKING LIST — scientific editorial
   ================================================ */
.peptyd-ranking {
  display: flex;
  flex-direction: column;
}

/* Table header */
.peptyd-ranking__header {
  display: grid;
  grid-template-columns: 72px 1fr 120px 120px 140px 24px;
  gap: 0 24px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--black-10);
  margin-bottom: 0;
}
.peptyd-ranking__header span {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-subtle);
}
.peptyd-ranking__header span:nth-child(3),
.peptyd-ranking__header span:nth-child(4),
.peptyd-ranking__header span:nth-child(5) {
  text-align: right;
}

/* Row */
.rank-row {
  display: grid;
  grid-template-columns: 72px 1fr 120px 120px 140px 24px;
  gap: 0 24px;
  align-items: center;
  padding: 22px 0;
  text-decoration: none;
  color: var(--black);
  border-bottom: 1px solid var(--black-10);
  position: relative;
  transition: background 0.18s ease;
  overflow: hidden;
}
.rank-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #5fd4b3;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.rank-row:hover { background: rgba(95,212,179,0.025); }
.rank-row:hover::after { width: 100%; }

/* Image */
.rank-row__img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: var(--bg-light);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black-06);
  transition: border-color 0.2s;
}
.rank-row:hover .rank-row__img { border-color: rgba(95,212,179,0.4); }
.rank-row__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

/* Main — name block */
.rank-row__main {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.rank-row__category {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
}
.rank-row__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.4px;
  line-height: 1.1;
  color: var(--black);
}
.rank-row__full {
  font-size: 12px;
  color: var(--color-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

/* Data columns */
.rank-row__pubmed,
.rank-row__dostawcy,
.rank-row__status {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.rank-row__data-val {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--black);
  line-height: 1;
}
.rank-row__data-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-subtle);
  line-height: 1;
}

/* Status column — dot + text */
.rank-row__status { align-items: flex-end; }
.rank-row__status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 5px;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}
.rank-row__status-inner {
  display: flex;
  align-items: center;
}
.rank-row__status-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}
.rank-row__status--zbadany .rank-row__status-dot    { background: #3ec97a; box-shadow: 0 0 0 3px rgba(62,201,122,0.18); }
.rank-row__status--w_trakcie .rank-row__status-dot  { background: #f0a000; box-shadow: 0 0 0 3px rgba(240,160,0,0.18); }
.rank-row__status--niezbadany .rank-row__status-dot { background: #b0b8c1; box-shadow: none; }
.rank-row__status-sub {
  font-size: 10px;
  color: var(--color-subtle);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Arrow — hidden, appears on hover */
.rank-row__arrow {
  color: var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.rank-row:hover .rank-row__arrow {
  opacity: 1;
  transform: translateX(0);
}
.rank-row__arrow svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .peptyd-ranking__header,
  .rank-row {
    grid-template-columns: 64px 1fr 100px 120px 24px;
  }
  .peptyd-ranking__header span:nth-child(3),
  .rank-row__pubmed { display: none; }
  .rank-row__img { width: 64px; height: 64px; }
}
@media (max-width: 700px) {
  .peptyd-ranking__header { display: none; }
  .rank-row {
    grid-template-columns: 48px 1fr auto;
    gap: 0 12px;
    padding: 16px 0;
  }
  .rank-row__img { width: 48px; height: 48px; border-radius: 10px; }
  .rank-row__pubmed,
  .rank-row__dostawcy { display: none; }
  .rank-row__status { align-items: flex-end; }
  .rank-row__arrow { opacity: 1; transform: none; color: var(--color-muted); }
}
@media (max-width: 480px) {
  .rank-row {
    grid-template-columns: 44px 1fr;
    gap: 0 10px;
    padding: 14px 0;
  }
  .rank-row__img { width: 44px; height: 44px; }
  .rank-row__status { display: none; }
  .rank-row__arrow { display: none; }
  .rank-row__name { font-size: 18px; }
}

/* ==============================================
   CUSTOM CURSOR
   ============================================== */
body { cursor: none; }
a, button, [role="button"], select, input, label { cursor: none; }

#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transition: width 0.2s cubic-bezier(0.22,1,0.36,1),
              height 0.2s cubic-bezier(0.22,1,0.36,1),
              background 0.2s,
              opacity 0.2s;
  will-change: transform;
}
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.2s, width 0.15s, height 0.15s;
  will-change: transform;
}

/* CARDS (listing) */
.card {
  background: var(--bg-light);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
  text-decoration: none;
  color: var(--black);
}
.card:hover { transform: translateY(-4px); }

.card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.4px;
}
.card__desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--black-10);
  gap: 8px;
  flex-wrap: wrap;
}
.card__meta { font-size: 12px; color: var(--color-subtle); }

/* TABLE */
.table-wrap { overflow-x: auto; border-radius: 24px; border: 1px solid var(--black-10); }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table thead {
  background: var(--bg-light);
}
.data-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted);
  white-space: nowrap;
  border-bottom: 1px solid var(--black-10);
}
.data-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--black-06);
  vertical-align: middle;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: var(--bg-light); }

.score-cell { display: flex; align-items: center; gap: 8px; }
.score-num { font-weight: 700; font-size: 15px; font-family: var(--font-heading); }
.score-num--green { color: #1a9c72; }
.score-num--amber { color: #c47f00; }
.score-num--red { color: #c44040; }

/* PILLS */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.pill-green { background: rgba(95,212,179,0.15); color: #1a9c72; }
.pill-amber { background: rgba(255,180,0,0.12); color: #c47f00; }
.pill-red { background: rgba(220,50,50,0.1); color: #c44040; }
.pill-gray { background: var(--bg-light); color: var(--color-muted); }
.pill-blue { background: rgba(60,120,240,0.1); color: #3c78f0; }

/* VISUALLY HIDDEN */
.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;
}

/* ==============================================
   PEPTYD DETAIL PAGE
   ============================================== */
.peptyd-layout {
  padding: clamp(32px, 6vh, 64px) 0 clamp(60px, 10vh, 100px);
  background: var(--white);
}
.peptyd-layout__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(32px, 4vw, 56px);
  margin-top: 28px;
  align-items: start;
}
.peptyd-sidebar {
  position: sticky;
  top: 100px;
  background: var(--bg-light);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.peptyd-sidebar__img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
  padding: 16px;
}
.peptyd-sidebar__info { display: flex; flex-direction: column; gap: 12px; }
.peptyd-sidebar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--black-10);
}
.peptyd-sidebar__row:last-child { border-bottom: none; }
.peptyd-sidebar__key { font-size: 13px; color: var(--color-muted); }
.peptyd-sidebar__val { font-size: 14px; font-weight: 500; }

article { min-width: 0; }
.content-section {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--black-10);
}
.content-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.content-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--black);
  margin-bottom: 16px;
}
.content-section p { font-size: 15px; line-height: 1.75; color: #333; margin-bottom: 12px; }
.content-section p:last-child { margin-bottom: 0; }
.content-section ul, .content-section ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.content-section li { font-size: 15px; line-height: 1.7; color: #333; }
.content-section a { color: var(--accent-dark); text-decoration: underline; }

/* SUPPLIER TABLE in peptyd */
.supplier-table-wrap { overflow-x: auto; border-radius: 20px; border: 1px solid var(--black-10); margin-top: 16px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--black-10); border-radius: 20px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--black-10); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--bg-light); }
.faq-question__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-muted);
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.faq-question[aria-expanded="true"] .faq-question__icon { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 12px 24px 20px;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
}
.faq-answer.open { display: block; }

@media (max-width: 767px) {
  .peptyd-layout__inner {
    grid-template-columns: 1fr;
  }
  .peptyd-sidebar { position: static; }
}

/* Peptyd article elements */
.peptyd-article { min-width: 0; }
.peptyd-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.peptyd-h1 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 24px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.peptyd-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--black-10);
}

/* Peptyd data table */
.peptyd-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border: 1px solid var(--black-10);
  border-radius: 16px;
  overflow: hidden;
}
.peptyd-table tr { border-bottom: 1px solid var(--black-10); }
.peptyd-table tr:last-child { border-bottom: none; }
.peptyd-table td { padding: 12px 16px; vertical-align: top; line-height: 1.6; }
.peptyd-table__key {
  font-weight: 500;
  color: var(--color-muted);
  width: 200px;
  background: var(--bg-light);
  white-space: nowrap;
}

/* Research stage badge */
.etap-badge {
  display: inline-block;
  font-size: 12px;
  color: var(--color-muted);
  background: var(--bg-light);
  border: 1px solid var(--black-10);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 10px;
}
.etap-badge strong { color: var(--accent-dark); }

/* Content section H3 for zastosowania */
.content-section h3 {
  font-family: var(--font-heading);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  color: var(--black);
  margin: 28px 0 8px;
}
.content-section h3:first-child { margin-top: 0; }

/* Sources list */
.sources-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sources-list li {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}
.sources-list a { color: var(--accent-dark); text-decoration: none; }
.sources-list a:hover { text-decoration: underline; }

/* Similar peptides links */
.content-section p a[href*="/peptydy/"] {
  color: var(--accent-dark);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}
.content-section p a[href*="/peptydy/"]:hover { border-bottom-color: transparent; }

/* ===== SKROT CARD — "W skrócie dla niewtajemniczonych" ===== */
.skrot-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d2b22 0%, #0a1f1a 60%, #071510 100%);
  border-radius: 28px;
  padding: 36px 40px 32px;
  margin-bottom: 40px;
  color: #fff;
  /* Geometric background pattern — CSS only */
  --mint: #5FD4B3;
}
/* Circle decorations */
.skrot-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1.5px solid rgba(95,212,179,0.12);
  pointer-events: none;
}
.skrot-card::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1.5px solid rgba(95,212,179,0.08);
  pointer-events: none;
}
.skrot-deco {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(95,212,179,0.06);
  pointer-events: none;
}

.skrot-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.skrot-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent, #5FD4B3);
}
.skrot-header-line {
  flex: 1;
  height: 1px;
  background: rgba(95,212,179,0.15);
}

.skrot-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 28px;
}
.skrot-col__title {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.skrot-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.skrot-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.skrot-item:last-child { border-bottom: none; }
.skrot-item--green .skrot-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent, #5FD4B3);
  box-shadow: 0 0 6px rgba(95,212,179,0.5);
  margin-top: 7px;
}
.skrot-item--orange .skrot-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,200,100,0.7);
  box-shadow: 0 0 6px rgba(255,200,100,0.3);
  margin-top: 7px;
}
.skrot-icon { display: none; }

.skrot-footer {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  padding-top: 20px;
  border-top: 1px solid rgba(95,212,179,0.12);
  margin: 0;
}
.skrot-footer strong { color: rgba(95,212,179,0.85); font-weight: 500; }

/* Mobile peptyd */
@media (max-width: 600px) {
  .peptyd-table__key { width: auto; white-space: normal; }
  .peptyd-table { font-size: 13px; }
  .peptyd-intro { font-size: 15px; }
  .skrot-body { grid-template-columns: 1fr; gap: 20px; }
  .skrot-card { padding: 24px 22px 20px; border-radius: 20px; }
}

/* ==============================================
   DOSTAWCY DETAIL PAGE
   ============================================== */
.dostawca-hero {
  padding: clamp(48px, 8vh, 80px) 0;
  background: var(--white);
  border-bottom: 1px solid var(--black-10);
}
.dostawca-hero .container { display: flex; flex-direction: column; gap: 20px; }
.dostawca-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.dostawca-score {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--bg-light);
}
.dostawca-score__num {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
}
.dostawca-score__label { font-size: 13px; color: var(--color-muted); }

.dostawca-layout {
  padding: clamp(32px, 6vh, 64px) 0 clamp(60px, 10vh, 100px);
  background: var(--white);
}
.dostawca-layout__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 900px) {
  .dostawca-layout__inner { grid-template-columns: 1fr; }
}

/* ==============================================
   HOMEPAGE v2 — FILARY SECTION
   ============================================== */
.filary-section {
  padding: clamp(56px, 8vh, 100px) 0;
  background: var(--white);
}
.filary-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 960px) {
  .filary-grid { grid-template-columns: 1fr; }
}

.filar {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.filar__block {
  padding: 28px 0;
}
.filar__divider {
  height: 1px;
  background: var(--black-10);
}
.filar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.filar__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-subtle);
}
.filar__link {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--accent-dark);
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  transition: opacity 0.15s;
}
.filar__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.filar__link:hover::after { transform: scaleX(1); }

/* ARTICLE ROWS */
.artykuly-lista {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.artykul-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid var(--black-06);
  text-decoration: none;
  color: var(--black);
  transition: background 0.15s;
}
.artykul-row:last-child { border-bottom: none; }
.artykul-row__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.3;
  color: var(--black);
  transition: color 0.15s;
}
.artykul-row:hover .artykul-row__title { color: var(--accent-dark); }
.artykul-row__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-muted);
}
.artykul-row__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-light);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-muted);
  flex-shrink: 0;
  border: 1px solid var(--black-10);
}
.artykul-row__sep { opacity: 0.35; }
.artykul-row__autor { font-weight: 500; color: var(--black); opacity: 0.7; }
.artykul-row__spec { color: var(--color-subtle); font-size: 12px; }
.artykul-row__new {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 999px;
  background: rgba(95,212,179,0.18);
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 4px;
}

/* PEPTYD PILLS */
.peptydy-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.peptyd-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-light);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  border: 1px solid var(--black-10);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.peptyd-pill:hover {
  background: rgba(95,212,179,0.12);
  border-color: rgba(95,212,179,0.4);
  color: var(--accent-dark);
}

/* DOSTAWCY MINI ROWS */
.dostawcy-mini {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dostawca-mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--black-06);
  text-decoration: none;
  color: var(--black);
  gap: 12px;
  transition: opacity 0.15s;
}
.dostawca-mini-row:last-child { border-bottom: none; }
.dostawca-mini-row:hover { opacity: 0.75; }
.dostawca-mini-row__name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
}
.dostawca-mini-row__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dostawca-mini-row__peptydy {
  font-size: 12px;
  color: var(--color-subtle);
}
.dostawca-mini-row__score {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 999px;
}
.score-green { background: rgba(62,201,122,0.12); color: #1a9c72; }
.score-amber { background: rgba(240,160,0,0.12); color: #c47f00; }
.score-red   { background: rgba(196,64,64,0.1);  color: #c44040; }

/* EKSPERCI MINI ROWS */
.eksperci-mini {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ekspert-mini-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--black-06);
  text-decoration: none;
  color: var(--black);
  transition: opacity 0.15s;
}
.ekspert-mini-row:last-child { border-bottom: none; }
.ekspert-mini-row:hover { opacity: 0.75; }
.ekspert-mini-row__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1.5px solid var(--black-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-muted);
  flex-shrink: 0;
}
.ekspert-mini-row__info { display: flex; flex-direction: column; gap: 2px; }
.ekspert-mini-row__name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
}
.ekspert-mini-row__meta {
  font-size: 12px;
  color: var(--color-subtle);
}

/* NEWSLETTER DARK (homepage v3) */
.newsletter-section {
  padding: clamp(60px, 8vh, 100px) 0;
  background: var(--white);
}
.newsletter-dark {
  background: var(--black);
  border-radius: var(--radius-card);
  width: 100%;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 400px;
  padding: clamp(48px, 7vw, 88px) clamp(32px, 6vw, 80px);
  gap: 0;
}
.newsletter-dark__canvas {
  position: absolute;
  right: -280px;
  top: 50%;
  transform: translateY(-50%);
  width: 760px;
  height: 760px;
  pointer-events: auto;
  cursor: none;
  z-index: 1;
}
@media (max-width: 900px) {
  .newsletter-dark__canvas { right: -320px; width: 640px; height: 640px; opacity: 0.6; }
}
@media (max-width: 640px) {
  .newsletter-dark__canvas { display: none; }
}

.newsletter-dark__content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  align-items: flex-start;
}
.newsletter-dark__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.newsletter-dark__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
}
.newsletter-dark__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0;
  max-width: 420px;
}
.newsletter-dark__form { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.newsletter-dark__row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter-dark__input {
  flex: 1;
  min-width: 220px;
  height: 52px;
  padding: 0 20px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.newsletter-dark__input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-dark__input:focus { border-color: var(--accent); background: rgba(95,212,179,0.06); }
.newsletter-dark__btn {
  height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-btn);
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s;
}
.newsletter-dark__btn:hover { background: #4ec9a8; transform: translateY(-1px); }
.newsletter-dark__rodo {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin: 0;
}
@media (max-width: 640px) {
  .newsletter-dark {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 48px 28px;
  }
  .newsletter-dark__deco { display: none; }
  .newsletter-dark__row { flex-direction: column; }
  .newsletter-dark__input, .newsletter-dark__btn { width: 100%; }
}

/* legacy newsletter-form (sidebar) */
.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter-form__input {
  flex: 1;
  min-width: 200px;
  height: 48px;
  padding: 0 18px;
  border: 1px solid var(--black-10);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  background: var(--bg-light);
  outline: none;
  transition: border-color 0.15s;
}
.newsletter-form__input::placeholder { color: var(--color-subtle); }
.newsletter-form__input:focus { border-color: var(--accent); background: var(--white); }
.newsletter-form__status {
  font-size: 13px;
  color: var(--color-muted);
  width: 100%;
  margin-top: 4px;
}

/* ==============================================
   WIEDZA LISTING PAGE
   ============================================== */
.filtry--pills .filtry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filtry-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--black-10);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.filtry-pill:hover {
  background: var(--bg-light);
  border-color: var(--black-10);
}
.filtry-pill--active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.wiedza-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 900px) {
  .wiedza-layout { grid-template-columns: 1fr; }
  .wiedza-sidebar { display: none; }
}

.wiedza-main { min-width: 0; }

.artykuly-editorial {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Editorial article card */
.artykul-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--black-10);
  text-decoration: none;
  color: var(--black);
  transition: opacity 0.15s;
}
.artykul-card:last-child { border-bottom: none; }
.artykul-card:hover { opacity: 0.8; }
.artykul-card--featured {
  grid-template-columns: 1fr;
  padding: 28px 32px;
  background: var(--bg-light);
  border-radius: 20px;
  border: none;
  margin-bottom: 8px;
}
.artykul-card__body { display: flex; flex-direction: column; gap: 8px; }
.artykul-card__category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.artykul-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.3;
  color: var(--black);
}
.artykul-card--featured .artykul-card__title {
  font-size: clamp(20px, 2.5vw, 26px);
}
.artykul-card__intro {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.artykul-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-subtle);
  flex-wrap: wrap;
}
.artykul-card__meta-sep { opacity: 0.4; }
.artykul-card__time {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.artykul-card__read-time {
  font-size: 12px;
  color: var(--color-subtle);
  white-space: nowrap;
}

/* SIDEBAR */
.wiedza-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}
.sidebar-block {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-block__title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.1px;
  color: var(--black);
}
.sidebar-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sidebar-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--white);
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  border: 1px solid var(--black-10);
  cursor: default;
  transition: background 0.15s, border-color 0.15s;
}
a.sidebar-pill { cursor: pointer; }
a.sidebar-pill:hover {
  background: rgba(95,212,179,0.1);
  border-color: rgba(95,212,179,0.3);
}
.sidebar-newsletter .newsletter-form { flex-direction: column; gap: 8px; }
.sidebar-newsletter .newsletter-form__input { min-width: unset; width: 100%; }

/* ==============================================
   EKSPERCI LISTING PAGE
   ============================================== */
.eksperci-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .eksperci-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .eksperci-grid { grid-template-columns: 1fr; } }

.ekspert-card {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: var(--black);
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s;
  border: 1px solid transparent;
}
.ekspert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: rgba(95,212,179,0.25);
}
.ekspert-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--black-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
.ekspert-card__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--black);
}
.ekspert-card__title {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.5;
}
.ekspert-card__afiliacja {
  font-size: 12px;
  color: var(--color-subtle);
}
.ekspert-card__stats {
  display: flex;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--black-10);
}
.ekspert-card__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ekspert-card__stat-val {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--black);
}
.ekspert-card__stat-label {
  font-size: 11px;
  color: var(--color-subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =============================================
   WIREFRAME V3 — SEKCJE HOMEPAGE
   ============================================= */

/* Wspólny helper */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* SEKCJA 2 — DWA WEJŚCIA */
.dwa-wejscia {
  padding: clamp(48px, 7vh, 80px) 0;
  background: var(--white);
  border-bottom: 1px solid var(--black-10);
}
.dwa-wejscia__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.wejscie-karta {
  border-radius: 20px;
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wejscie-karta--dostawcy {
  background: var(--black);
  color: var(--white);
}
.wejscie-karta--wiedza {
  background: var(--bg-light);
  color: var(--black);
}
.wejscie-karta__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.wejscie-karta--wiedza .wejscie-karta__label { color: var(--accent-dark); }
.wejscie-karta__title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1.2;
}
.wejscie-karta--dostawcy .wejscie-karta__title { color: var(--white); }
.wejscie-karta__desc {
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
}
.wejscie-karta--dostawcy .wejscie-karta__desc { color: rgba(255,255,255,0.65); }
.wejscie-karta--wiedza .wejscie-karta__desc { color: var(--color-muted); }
@media (max-width: 640px) {
  .dwa-wejscia__grid { grid-template-columns: 1fr; }
}

/* SEKCJA 3 — DOSTAWCY */
.dostawcy-section {
  padding: clamp(56px, 8vh, 96px) 0;
  background: var(--white);
}
.dostawca-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--black-10);
  gap: 16px;
  flex-wrap: wrap;
}
.dostawca-row:last-child { border-bottom: none; }
.dostawca-row__name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.2px;
}
.dostawca-row__meta {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 3px;
}
.dostawca-row__tagi {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.dostawca-tag {
  display: inline-flex;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--bg-light);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-muted);
  border: 1px solid var(--black-10);
}
.dostawca-row__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.dostawca-row__nolink {
  font-size: 12px;
  color: var(--color-subtle);
}
.dostawcy-disclaimer {
  font-size: 12px;
  color: var(--color-subtle);
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--bg-light);
  border-radius: 10px;
  line-height: 1.6;
}

/* SEKCJA 4 — METODOLOGIA */
.metodologia-section {
  padding: clamp(80px, 10vh, 128px) 0;
  background: #F2F2F2;
}
.metodologia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.metodologia-karta {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 48px 40px 52px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.metodologia-karta__icon {
  width: 52px;
  height: 52px;
  background: rgba(95, 212, 179, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.metodologia-karta__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-dark);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.metodologia-karta__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-subtle);
  margin-bottom: 10px;
}
.metodologia-karta__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
}
.metodologia-karta__desc {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.7;
}
.metodologia-cta {
  margin-top: 56px;
  text-align: center;
}
@media (max-width: 900px) {
  .metodologia-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .metodologia-grid { grid-template-columns: 1fr; }
  .metodologia-karta { padding: 36px 28px 40px; }
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.is-open {
  display: flex;
}
.modal-box,
.modal {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  max-width: 460px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 18px;
  color: var(--color-muted);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.modal-title,
.modal__title {
  font-family: var(--font-heading, 'Urbanist', sans-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--color-text, #1a1a1a);
  margin: 0;
}
.modal-desc,
.modal__desc {
  font-size: 14px;
  color: var(--color-muted, #6b7280);
  line-height: 1.6;
  margin: 0;
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--color-text, #1a1a1a);
  background: #f9fafb;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.input:focus {
  border-color: var(--color-accent, #111);
  background: #fff;
}
.modal-status {
  font-size: 13px;
  color: var(--accent-dark);
}

/* SEKCJA 5 — PEPTYDY GRID */
.peptydy-home-section {
  padding: clamp(56px, 8vh, 96px) 0;
  background: var(--white);
}
.peptydy-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.peptyd-home-karta {
  background: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--black);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s;
  border: 1px solid transparent;
}
.peptyd-home-karta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  border-color: rgba(95,212,179,0.25);
}
.peptyd-home-karta__img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8f5f2 0%, #d4ede8 100%);
}
.peptyd-home-karta__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.peptyd-home-karta__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.peptyd-home-karta__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.peptyd-home-karta__meta {
  font-size: 12px;
  color: var(--color-muted);
}
.peptyd-home-karta--more {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
.peptyd-home-karta--more:hover { border-color: var(--accent); }
.peptyd-home-karta__more-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.peptyd-home-karta__more-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
}
.peptyd-home-karta__more-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 840px) {
  .peptydy-home-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .peptydy-home-grid { grid-template-columns: 1fr; }
}

/* SEKCJA 6 — ARTYKUŁY */
.artykuly-home-section {
  padding: clamp(56px, 8vh, 96px) 0;
  background: var(--white);
  border-top: 1px solid var(--black-10);
}
.artykuly-home-lista {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) {
  .artykuly-home-lista { grid-template-columns: 1fr; }
}
.artykul-home-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--black-10);
  border-radius: var(--radius-card);
  padding: 36px 36px 32px;
  text-decoration: none;
  color: var(--black);
}
.artykul-home-row__category {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
}
.artykul-home-row__cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.artykul-home-row__cat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-subtle);
}
.artykul-home-row__title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 24px;
  flex: 1;
}
.artykul-home-row__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--black-10);
  margin-top: auto;
}
.artykul-row__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.artykul-home-row__autor-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.artykul-home-row__autor {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}
.artykul-home-row__spec {
  font-size: 12px;
  color: var(--color-subtle);
  line-height: 1.3;
}
.artykul-home-row__right {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.artykul-home-row__czas {
  font-size: 12px;
  color: var(--color-subtle);
  white-space: nowrap;
}
.artykul-row__new {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(95,212,179,0.18);
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.artykul-row__sep { display: none; }

/* SEKCJA 7 — EKSPERCI SLIDER */
.eksperci-home-section {
  background: #F2F2F2;
  padding: 0;
  border-top: 1px solid var(--black-10);
  position: relative;
  overflow: hidden;
}
/* full-width stage — no .container */
.eksperci-slider {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 640px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px clamp(16px, 4vw, 48px);
  gap: 80px;
}
/* arrow buttons — absolute on section edges */
.eksperci-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.eksperci-home-section { position: relative; }
.eksperci-slider__arrow:hover { opacity: 1; }
.eksperci-slider__arrow--prev { left: clamp(12px, 2vw, 36px); }
.eksperci-slider__arrow--next { right: clamp(12px, 2vw, 36px); }
.eksperci-slider__arrow svg {
  width: 32px;
  height: 32px;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* LEFT — info panel */
.eksperci-slider__info {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
}
.eksperci-slider__slide {
  display: none;
  flex-direction: column;
  gap: 0;
  animation: eksSlideIn 0.45s cubic-bezier(0.22,1,0.36,1) both;
}
.eksperci-slider__slide.active { display: flex; }
@keyframes eksSlideIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.eksperci-slider__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-subtle);
  margin-bottom: 16px;
}
.eksperci-slider__name {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.0;
  color: var(--black);
  margin-bottom: 12px;
}
.eksperci-slider__role {
  font-size: 16px;
  color: var(--accent-dark);
  font-weight: 500;
  margin-bottom: 4px;
}
.eksperci-slider__affil {
  font-size: 13px;
  color: var(--color-subtle);
  margin-bottom: 32px;
}
.eksperci-slider__bio-short {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.65;
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 460px;
}
.eks-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.eks-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--black-10);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-muted);
  background: var(--bg-light);
  letter-spacing: 0.01em;
}
.eks-footer {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.eks-stat {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.eks-stat__num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--black);
}
.eks-stat__label {
  font-size: 11px;
  color: var(--color-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.eksperci-slider__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: none;
}
.eksperci-slider__link svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* dots nav — bottom left */
.eksperci-slider__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}
.eksperci-slider__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(10,10,10,0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.eksperci-slider__dot.active {
  background: var(--black);
  transform: scale(1.4);
}
/* RIGHT — photo pinned bottom-right */
.eksperci-slider__photo-wrap {
  position: relative;
  align-self: flex-end;
  width: clamp(240px, 22vw, 340px);
  aspect-ratio: 3/4;
  border-radius: 32px 32px 0 0;
  overflow: hidden;
  z-index: 1;
  margin-bottom: -80px;
}
.eksperci-slider__photo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}
.eksperci-slider__photo-slide.active { opacity: 1; }
.eksperci-slider__photo-slide.active .eksperci-slider__photo-placeholder {
  animation: eksPhotoReveal 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes eksPhotoReveal {
  from { transform: translateY(32px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.eksperci-slider__photo-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.eksperci-slider__photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #dde8ea 0%, #c4d8db 60%, #afc9cd 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 40px;
  gap: 8px;
}
.eksperci-slider__photo-initials {
  font-family: var(--font-heading);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: -2px;
  line-height: 1;
  user-select: none;
}
.eksperci-slider__photo-name-tag {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.eksperci-slider__photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.12) 0%, transparent 50%);
  pointer-events: none;
}
/* unused legacy */
.eksperci-home-grid { display: none; }
.eksperci-slider__meta,
.eksperci-slider__count,
.eksperci-slider__count-label,
.eksperci-slider__specs,
.eksperci-slider__spec-tag,
.eksperci-slider__bio { display: none; }
@media (max-width: 760px) {
  .eksperci-slider {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 48px 24px 0;
    min-height: unset;
  }
  .eksperci-slider__photo-wrap {
    width: 100%;
    border-radius: 0;
    aspect-ratio: 4/3;
    margin-bottom: 0;
  }
  .eksperci-slider__name { font-size: clamp(28px, 7vw, 40px); letter-spacing: -1px; }
  .eksperci-home-section .eksperci-slider__arrow { display: none; }
  .eksperci-slider__dots { justify-content: center; }
}
@media (max-width: 480px) {
  .eksperci-slider { padding: 32px 16px 0; }
  .eksperci-slider__name { font-size: 26px; }
  .eksperci-slider__role { font-size: 13px; }
  .eksperci-slider__quote { font-size: 15px; }
}

/* SEKCJA 8 — NOWOŚCI */
.nowosci-section {
  padding: clamp(56px, 8vh, 96px) 0;
  background: var(--white);
  border-top: 1px solid var(--black-10);
}
.nowosci-feed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 720px) {
  .nowosci-feed { grid-template-columns: 1fr; }
}
.nowosci-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--black-10);
  border-radius: var(--radius-card);
  padding: 36px 36px 32px;
  text-decoration: none;
  color: var(--black);
  position: relative;
  overflow: hidden;
}
.nowosci-item__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
}
.nowosci-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nowosci-dot--green  { background: #3ec97a; }
.nowosci-dot--blue   { background: #3c78f0; }
.nowosci-dot--amber  { background: #f0a000; }
.nowosci-dot--red    { background: #c44040; }
.nowosci-item__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-subtle);
}
.nowosci-item__desc {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 24px;
  flex: 1;
}
.nowosci-item__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--black-10);
  margin-top: auto;
}
.nowosci-item__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.nowosci-item__autor {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nowosci-item__autor-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}
.nowosci-item__autor-role {
  font-size: 12px;
  color: var(--color-subtle);
  line-height: 1.3;
}
.nowosci-item__date {
  margin-left: auto;
  font-size: 12px;
  color: var(--color-subtle);
  white-space: nowrap;
}

/* ==============================================
   RESPONSIVE TYPOGRAPHY
   ============================================== */
@media (max-width: 1439px) {
  .t-h1 { font-size: 72px; }
  .t-h2-large { font-size: 48px; }
}
@media (max-width: 1199px) {
  .t-h1 { font-size: 48px; }
  .t-h2-large { font-size: 42px; }
  .t-h2-medium { font-size: 36px; }
}
@media (max-width: 767px) {
  .t-h1 { font-size: 36px; letter-spacing: -1px; }
  .t-h2-large { font-size: 32px; }
  .t-h2-medium { font-size: 28px; }
  .t-h3 { font-size: 26px; }
}
@media (max-width: 480px) {
  .t-h1 { font-size: 30px; }
  .t-h2-large { font-size: 26px; }
  .t-h2-medium { font-size: 24px; }
  .t-h3 { font-size: 22px; }
}

/* ==============================================
   MOBILE FIXES (global)
   ============================================== */

/* Modal - nie wylatuje poza viewport */
.modal-box { max-width: clamp(280px, 92vw, 440px); padding: clamp(20px, 5vw, 36px); }

/* Karty artykułów i nowości - mniejszy padding na mobile */
@media (max-width: 540px) {
  .artykul-home-row,
  .nowosci-item { padding: 24px 20px 20px; border-radius: 24px; }
  .nowosci-item__desc,
  .artykul-home-row__title { font-size: 16px; }
}

/* Newsletter dark - głębszy breakpoint */
@media (max-width: 480px) {
  .newsletter-dark { width: 100%; padding: 40px 20px; border-radius: 24px; }
  .newsletter-dark__title { font-size: 30px; letter-spacing: -1px; }
  .newsletter-dark__btn { width: 100%; }
  .newsletter-dark__input { min-width: unset; width: 100%; }
}

/* Listing hero - padding i h1 na małych ekranach */
@media (max-width: 480px) {
  .listing-hero h1 { font-size: clamp(22px, 7vw, 30px); }
  .listing-hero p { font-size: 14px; }
}

/* Sekcja metodologia - padding kart */
@media (max-width: 480px) {
  .metodologia-karta { padding: 28px 20px; border-radius: 24px; }
}

/* Footer - mniejszy tekst stopki na ultra-small */
@media (max-width: 480px) {
  .footer-copyright, .footer-disclaimer { font-size: 11px; }
  .footer-links-row { gap: 20px; }
}

/* Container - minimalny padding na bardzo małych ekranach */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .newsletter-dark { width: 100%; }
}

/* ============================================================
   AGENT WIEDZY — widget czatu na kartach peptydów
   ============================================================ */

.aw-sekcja {
  margin: 48px 0;
  border: 1px solid var(--black-10);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #fff;
}

.aw-naglowek {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--black-10);
  background: var(--bg-light);
}

.aw-ikona {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aw-tytul {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--black);
}

.aw-podtytul {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0;
}

.aw-przykladowe-pytania {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 32px;
  border-bottom: 1px solid var(--black-10);
  background: var(--bg-light);
}

.aw-przyklad {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-muted);
  background: #fff;
  border: 1px solid var(--black-10);
  border-radius: 20px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.aw-przyklad:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: #fff;
}

.aw-czat {
  min-height: 240px;
  max-height: 440px;
  overflow-y: auto;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
}

.aw-wiadomosc {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.aw-wiadomosc--uzytkownik {
  align-items: flex-end;
}

.aw-wiadomosc--agent,
.aw-wiadomosc--system,
.aw-wiadomosc--blad {
  align-items: flex-start;
}

.aw-bubble {
  max-width: 82%;
  padding: 12px 18px;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.aw-wiadomosc--uzytkownik .aw-bubble {
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.aw-wiadomosc--agent .aw-bubble {
  background: var(--bg-light);
  color: var(--black);
  border-bottom-left-radius: 4px;
}

.aw-wiadomosc--system .aw-bubble {
  background: transparent;
  color: var(--color-muted);
  font-size: 0.8rem;
  padding: 4px 0;
}

.aw-wiadomosc--blad .aw-bubble {
  background: #fff0f0;
  color: #c0392b;
  border: 1px solid #fcc;
  border-bottom-left-radius: 4px;
}

.aw-zrodlo {
  font-size: 0.72rem;
  color: var(--color-subtle);
  padding-left: 18px;
  margin-top: 2px;
}

/* Animacja kropek ładowania */
.aw-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.aw-dots span {
  width: 7px;
  height: 7px;
  background: var(--color-subtle);
  border-radius: 50%;
  animation: aw-pulse 1.2s ease-in-out infinite;
}

.aw-dots span:nth-child(2) { animation-delay: 0.2s; }
.aw-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes aw-pulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.9); }
  40% { opacity: 1; transform: scale(1.1); }
}

/* Formularz */
.aw-formularz {
  padding: 20px 32px 24px;
  border-top: 1px solid var(--black-10);
  background: var(--bg-light);
}

.aw-input-wiersz {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  margin-bottom: 10px;
}

.aw-input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--black);
  background: #fff;
  border: 1px solid var(--black-10);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  resize: none;
  outline: none;
  transition: border-color 0.18s ease;
  line-height: 1.5;
}

.aw-input:focus {
  border-color: var(--accent);
}

.aw-input:disabled {
  opacity: 0.6;
}

.aw-btn-wyslij {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s ease, transform 0.12s ease;
}

.aw-btn-wyslij:hover {
  background: var(--accent-dark);
}

.aw-btn-wyslij:active {
  transform: scale(0.94);
}

.aw-btn-wyslij:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.aw-email-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--black);
  background: #fff;
  border: 1px solid var(--black-10);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.18s ease;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.aw-email-input:focus {
  border-color: var(--accent);
}

.aw-disclaimer {
  font-size: 0.75rem;
  color: var(--color-subtle);
  margin: 0;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 767px) {
  .aw-naglowek { padding: 20px; }
  .aw-przykladowe-pytania { padding: 12px 20px; }
  .aw-czat { padding: 20px; max-height: 360px; }
  .aw-formularz { padding: 16px 20px 20px; }
  .aw-bubble { max-width: 94%; }
  .aw-przyklad { font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .aw-przykladowe-pytania { gap: 6px; }
  .aw-przyklad { padding: 5px 10px; }
}
