/* ============================================================
   WODNA HARMONIA — wspólne style dla wszystkich podstron
   Edytuj ten jeden plik, żeby zmienić wygląd całej witryny.
   ============================================================ */

:root {
  --ink: #0a1628;
  --deep: #0d2045;
  --mid: #1a3a6b;
  --teal: #0e7490;
  --electric: #22d3ee;
  --glow: #67e8f9;
  --white: #f8fafc;
  --muted: #94a3b8;
  --card: rgba(255,255,255,0.04);
  --border: rgba(34,211,238,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

/* ── TŁO + BĄBELKI H₂ — widoczne na całej stronie, na każdej podstronie ── */
.bg-base {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 80% 55% at 60% 12%, rgba(14,116,144,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 85% 65%, rgba(34,211,238,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 12% 88%, rgba(14,116,144,0.12) 0%, transparent 65%),
    linear-gradient(165deg, #0a1628 0%, #0d2045 48%, #0a1628 100%);
}
.bubble-field { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bubble {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(34,211,238,0.28);
  animation: rise linear infinite;
}
.bubble::after {
  content: ''; position: absolute; inset: 3px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(103,232,249,0.35), transparent 70%);
}
@keyframes rise {
  0%   { transform: translateY(110vh) scale(1);   opacity: 0; }
  8%   { opacity: 0.9; }
  92%  { opacity: 0.5; }
  100% { transform: translateY(-12vh) scale(0.55); opacity: 0; }
}
nav, section, footer, main { position: relative; z-index: 1; }
section { background: transparent; }

/* ── NAWIGACJA (wspólna na wszystkich podstronach) ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 16px 40px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(10,22,40,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo a { display: flex; }
.nav-logo svg { display: block; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 34px; height: 34px; background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--white); border-radius: 2px; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--electric); }
.nav-links a.active { color: var(--electric); }
.nav-cta {
  background: var(--electric) !important; color: var(--ink) !important;
  padding: 10px 22px; border-radius: 50px;
  font-weight: 600 !important; letter-spacing: 0.02em;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--glow) !important; transform: translateY(-1px); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 66px; left: 0; right: 0;
    background: rgba(10,22,40,0.97); backdrop-filter: blur(12px);
    flex-direction: column; align-items: stretch; gap: 0;
    border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 420px; }
  .nav-links a:not(.nav-cta) { padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a.nav-cta { margin: 14px 24px; text-align: center; border-radius: 50px; }
}

/* ── HERO (tylko strona główna) ── */
.hero {
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 130px 40px 70px; text-align: center;
}
.hero-content { max-width: 760px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--electric);
  border: 1px solid var(--border);
  padding: 7px 18px; border-radius: 50px;
  margin-bottom: 28px;
  background: rgba(34,211,238,0.06);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 6vw, 4.1rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 22px; letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; color: var(--electric); }
.hero-sub {
  font-size: 1.1rem; font-weight: 300; color: #cbd5e1;
  max-width: 560px; margin: 0 auto 40px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--electric));
  color: var(--ink); font-weight: 700;
  padding: 16px 36px; border-radius: 50px;
  text-decoration: none; font-size: 1rem;
  display: inline-block; border: none; cursor: pointer;
  transition: all 0.25s; box-shadow: 0 0 30px rgba(34,211,238,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(34,211,238,0.5); }
.btn-ghost {
  border: 1px solid var(--border); color: var(--white); font-weight: 500;
  padding: 16px 36px; border-radius: 50px;
  text-decoration: none; font-size: 1rem; display: inline-block;
  transition: all 0.2s; background: rgba(255,255,255,0.03);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: var(--electric); }
.hero-stats { margin-top: 56px; display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--electric); display: block; }
.stat-label { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.04em; }

/* ── NAGŁÓWEK PODSTRONY (zamiast pełnego hero) ── */
.page-head { padding: 150px 40px 50px; text-align: center; }
.page-head .container { max-width: 760px; margin: 0 auto; }
.page-head .section-lead { margin: 0 auto; }

/* ── WSPÓLNE: SEKCJA / KONTENER / NAGŁÓWKI ── */
section { padding: 90px 40px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--electric); margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700; line-height: 1.2; margin-bottom: 16px;
}
.section-lead { color: var(--muted); font-size: 1.03rem; max-width: 600px; line-height: 1.7; }
.divider-top { border-top: 1px solid rgba(34,211,238,0.08); }

/* ── TEASER KARTY (strona główna) ── */
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.teaser-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 26px;
  display: flex; flex-direction: column; transition: all 0.25s;
}
.teaser-card:hover { transform: translateY(-4px); border-color: rgba(34,211,238,0.4); background: rgba(34,211,238,0.05); }
.teaser-icon { font-size: 1.8rem; margin-bottom: 14px; }
.teaser-card h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 10px; }
.teaser-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; flex-grow: 1; margin-bottom: 18px; }
.teaser-link { color: var(--electric); font-weight: 600; font-size: 0.85rem; text-decoration: none; }
.teaser-link:hover { text-decoration: underline; }

/* ── PROBLEM: CO PIJESZ ── */
.danger-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 52px; align-items: start; }
.danger-card {
  background: rgba(239,68,68,0.05); border: 1px solid rgba(239,68,68,0.2);
  border-radius: 20px; padding: 30px 26px;
}
.danger-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700;
  color: #f87171; margin-bottom: 18px;
}
.danger-item { display: flex; gap: 12px; margin-bottom: 15px; font-size: 0.9rem; line-height: 1.55; color: #cbd5e1; }
.danger-item:last-child { margin-bottom: 0; }
.danger-dot { color: #f87171; font-size: 1.1rem; flex-shrink: 0; line-height: 1.3; }
.stat-highlight {
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25);
  border-radius: 12px; padding: 20px; margin-top: 24px; text-align: center;
}
.stat-highlight .big { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: #f87171; }
.stat-highlight .label { font-size: 0.8rem; color: var(--muted); margin-top: 4px; line-height: 1.5; }
.safe-card { background: rgba(34,211,238,0.06); border: 1px solid var(--border); border-radius: 20px; padding: 32px 28px; }
.safe-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--electric); margin-bottom: 20px; }
.safe-item { display: flex; gap: 12px; margin-bottom: 15px; font-size: 0.9rem; line-height: 1.55; color: #cbd5e1; }
.safe-dot { color: var(--electric); flex-shrink: 0; }
.source-note { margin-top: 22px; padding: 14px 16px; background: rgba(255,255,255,0.03); border-radius: 10px; font-size: 0.76rem; color: rgba(148,163,184,0.75); line-height: 1.55; }

/* ── JAK DZIAŁA JONIZATOR ── */
.core-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.core-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 32px 26px; transition: all 0.25s; }
.core-card:hover { transform: translateY(-4px); border-color: rgba(34,211,238,0.4); background: rgba(34,211,238,0.05); }
.core-step { font-family: 'Playfair Display', serif; font-size: 0.8rem; font-weight: 700; color: var(--electric); letter-spacing: 0.1em; opacity: 0.7; margin-bottom: 14px; }
.core-icon { font-size: 2rem; margin-bottom: 14px; }
.core-card h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 10px; }
.core-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.core-card .accent { color: var(--electric); font-weight: 600; }

/* ── WODÓR / ZDROWIE ── */
.h2-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 52px; }
.h2-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 28px 24px; }
.h2-card .ic { font-size: 1.6rem; margin-bottom: 12px; }
.h2-card h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 8px; }
.h2-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.h2-card .ref { display: block; margin-top: 12px; font-size: 0.72rem; color: rgba(148,163,184,0.7); font-style: italic; }
.h2-quote { margin-top: 36px; padding: 32px 36px; background: rgba(34,211,238,0.05); border: 1px solid var(--border); border-left: 3px solid var(--electric); border-radius: 0 16px 16px 0; }
.h2-quote p { font-family: 'Playfair Display', serif; font-size: 1.15rem; line-height: 1.55; color: var(--white); }
.h2-quote .src { display: block; margin-top: 14px; font-size: 0.82rem; color: var(--muted); font-style: normal; font-family: 'Inter', sans-serif; }
.disclaimer-box { margin-top: 28px; padding: 18px 22px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

/* ── JAPONIA / WYRÓB MEDYCZNY ── */
.jp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 52px; }
.jp-visual { background: linear-gradient(135deg, rgba(14,116,144,0.18), rgba(10,22,40,0.6)); border: 1px solid var(--border); border-radius: 24px; padding: 44px 36px; text-align: center; position: relative; overflow: hidden; }
.jp-flag { font-size: 2.5rem; margin-bottom: 8px; }
.jp-visual .big { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; color: var(--electric); margin-bottom: 6px; line-height: 1.3; }
.jp-visual .small { color: var(--muted); font-size: 0.88rem; margin-bottom: 28px; }
.jp-certs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.jp-cert { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 12px; padding: 14px 12px; }
.jp-cert .v { font-family: 'Playfair Display', serif; font-size: 1.08rem; font-weight: 700; color: var(--electric); }
.jp-cert .k { font-size: 0.7rem; color: var(--muted); margin-top: 3px; }
.jp-points { list-style: none; }
.jp-points li { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; gap: 14px; align-items: flex-start; }
.jp-points li:last-child { border-bottom: none; }
.jp-bullet { width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; background: rgba(34,211,238,0.1); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; }
.jp-points .t { font-weight: 600; margin-bottom: 3px; font-size: 0.95rem; }
.jp-points .d { font-size: 0.86rem; color: var(--muted); line-height: 1.55; }

/* ── 5 RODZAJÓW WODY ── */
.waters-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; margin-top: 52px; }
.water-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 26px 22px; transition: all 0.25s; }
.water-card:hover { transform: translateY(-4px); border-color: rgba(34,211,238,0.4); background: rgba(34,211,238,0.05); }
.water-tag { display: inline-block; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 50px; margin-bottom: 14px; }
.water-ph { font-family: 'Playfair Display', serif; font-size: 1.65rem; font-weight: 700; margin-bottom: 6px; }
.water-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; }
.water-use { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ── DODATKOWE ZASTOSOWANIA + PDF ── */
.bonus-wrap { margin-top: 44px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: stretch; }
.bonus-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 32px 30px; }
.bonus-card h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 16px; }
.bonus-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.bonus-list div { font-size: 0.88rem; color: var(--muted); padding: 6px 0; display: flex; gap: 8px; }
.bonus-list div::before { content: "✦"; color: var(--electric); flex-shrink: 0; }
.pdf-card { background: linear-gradient(135deg, rgba(14,116,144,0.22), rgba(10,22,40,0.5)); border: 1px solid var(--border); border-radius: 20px; padding: 32px 30px; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.pdf-card .ic { font-size: 2.3rem; margin-bottom: 14px; }
.pdf-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.pdf-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 22px; line-height: 1.6; }

/* ── ZNANI / SOCIAL PROOF ── */
.celebs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 52px; }
.celeb-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 28px 24px; display: flex; gap: 18px; align-items: flex-start; transition: all 0.2s; }
.celeb-card:hover { border-color: rgba(34,211,238,0.35); background: rgba(34,211,238,0.04); }
.celeb-emoji { font-size: 2.1rem; flex-shrink: 0; }
.celeb-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.celeb-role { font-size: 0.74rem; color: var(--electric); font-weight: 500; letter-spacing: 0.04em; margin-bottom: 10px; }
.celeb-quote { font-size: 0.87rem; color: var(--muted); line-height: 1.55; }

/* ── KIM JESTEŚMY ── */
.about-wrap { max-width: 740px; margin: 0 auto; text-align: center; }
.about-wrap p { color: #cbd5e1; font-size: 1.04rem; line-height: 1.85; margin-bottom: 22px; }
.about-badges { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.about-badge { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px 26px; text-align: center; min-width: 170px; }
.about-badge .v { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--electric); }
.about-badge .k { font-size: 0.76rem; color: var(--muted); margin-top: 4px; }

/* ── OFERTA ── */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 52px; align-items: stretch; }
.offer-card { background: linear-gradient(135deg, rgba(14,116,144,0.16), rgba(10,22,40,0.55)); border: 1px solid var(--border); border-radius: 24px; padding: 40px 34px; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.offer-card.featured { border-color: rgba(34,211,238,0.4); box-shadow: 0 0 40px rgba(34,211,238,0.08); }
.offer-badge { display: inline-block; align-self: flex-start; background: rgba(34,211,238,0.12); border: 1px solid var(--border); color: var(--electric); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 50px; margin-bottom: 22px; }
.offer-price { font-family: 'Playfair Display', serif; font-size: 2.9rem; font-weight: 900; color: var(--electric); line-height: 1; margin-bottom: 6px; }
.offer-price span { font-size: 1.15rem; font-weight: 400; color: var(--muted); }
.offer-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 26px; }
.offer-card h3 { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; margin-bottom: 10px; }
.offer-card .lead { color: var(--muted); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }
.offer-includes { list-style: none; margin-bottom: 26px; flex-grow: 1; }
.offer-includes li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; color: #cbd5e1; }
.offer-includes li:last-child { border-bottom: none; }
.offer-includes .check { color: var(--electric); flex-shrink: 0; }
.offer-note { font-size: 0.8rem; color: var(--muted); margin-top: 18px; line-height: 1.6; }

/* ── KROKI ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.step-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 32px 26px; text-align: center; }
.step-num { width: 50px; height: 50px; border-radius: 50%; background: rgba(34,211,238,0.1); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--electric); }
.step-card h4 { font-weight: 700; font-size: 1.02rem; margin-bottom: 10px; }
.step-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.6; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 52px auto 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 0; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: var(--white); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q:hover { color: var(--electric); }
.faq-arrow { font-size: 1.1rem; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; color: var(--muted); font-size: 0.92rem; line-height: 1.7; padding-bottom: 0; }
.faq-item.open .faq-a { max-height: 360px; padding-bottom: 24px; }

/* ── KONTAKT / CTA ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.contact-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 30px 28px; }
.contact-card .ic { font-size: 1.7rem; margin-bottom: 12px; }
.contact-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.contact-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.contact-card a.value { color: var(--electric); font-weight: 600; text-decoration: none; font-size: 0.95rem; }
.contact-card a.value:hover { text-decoration: underline; }

.cta-final { text-align: center; border-top: 1px solid var(--border); padding: 110px 40px; }
.cta-final h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 700; margin-bottom: 18px; }
.cta-final p { color: var(--muted); font-size: 1.03rem; max-width: 500px; margin: 0 auto 36px; }
.cta-contact { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.contact-chip { background: var(--card); border: 1px solid var(--border); padding: 12px 22px; border-radius: 50px; font-size: 0.88rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.contact-chip a { color: var(--electric); text-decoration: none; }
.contact-chip a:hover { text-decoration: underline; }

/* ── STOPKA (wspólna, z linkami do podstron — ważne dla nawigacji mobilnej) ── */
footer { padding: 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.84rem; }
.footer-links a:hover { color: var(--electric); }
.footer-bottom { max-width: 1100px; margin: 28px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.76rem; color: var(--muted); }

/* ── KREDYT „STRONĘ ZAPROJEKTOWAŁA" (logo Inyss Studio w stopce) ── */
.footer-credit {
  max-width: 1100px; margin: 18px auto 0; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  flex-wrap: wrap;
}
.footer-credit span { font-size: 0.74rem; color: rgba(148,163,184,0.7); }
.footer-credit a { display: inline-flex; align-items: center; opacity: 0.88; transition: opacity 0.2s; }
.footer-credit a:hover { opacity: 1; }
.footer-credit img { height: 50px; width: auto; display: block; }

/* ── PASEK SOCIAL PROOF (pod hero) ── */
.proof-strip { border-top: 1px solid rgba(34,211,238,0.08); border-bottom: 1px solid rgba(34,211,238,0.08); padding: 46px 40px; }
.proof-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; text-align: left; }
.proof-item { display: flex; gap: 14px; align-items: flex-start; background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 20px 22px; }
.proof-emoji { font-size: 1.7rem; flex-shrink: 0; line-height: 1.2; }
.proof-item .t { font-weight: 600; font-size: 0.93rem; margin-bottom: 4px; }
.proof-item .d { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.proof-link { display: inline-block; margin-top: 22px; color: var(--electric); font-weight: 600; font-size: 0.86rem; text-decoration: none; }
.proof-link:hover { text-decoration: underline; }

/* ── LISTA BADAŃ NAUKOWYCH ── */
.studies-list { margin-top: 40px; display: grid; gap: 14px; }
.study { background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--electric); border-radius: 0 14px 14px 0; padding: 18px 22px; }
.study .find { font-weight: 600; font-size: 0.95rem; margin-bottom: 6px; color: var(--white); }
.study .cite { font-size: 0.78rem; color: rgba(148,163,184,0.8); font-style: italic; line-height: 1.5; }

/* ── RESPONSYWNOŚĆ ── */
@media (max-width: 880px) {
  .teaser-grid, .core-grid, .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  section { padding: 64px 20px; }
  .hero { padding: 110px 20px 60px; }
  .page-head { padding: 130px 20px 40px; }
  .danger-grid, .jp-grid, .bonus-wrap, .offer-grid, .contact-grid, .proof-grid { grid-template-columns: 1fr; }
  .bonus-list { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .footer-grid, .footer-bottom { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bubble { animation: none; opacity: 0; }
}
