@charset "UTF-8";
/* ============================================================
   PolyMem® — arkusz stylów
   Branding: koralowa czerwień (logo) + głęboki granat (klinika)
   ============================================================ */

:root {
  --coral:        #ee5d5d;
  --coral-strong: #e34a4a;
  --coral-dark:   #c93b3b;
  --coral-soft:   #fbe6e6;
  --coral-tint:   #fdf1f1;
  --navy:         #14284b;
  --navy-2:       #1d3767;
  --navy-soft:    #eef2f8;
  --ink:          #23252b;
  --ink-soft:     #4f545e;
  --muted:        #7b818d;
  --line:         #e7e2e0;
  --bg:           #ffffff;
  --bg-warm:      #fbf7f6;
  --white:        #ffffff;
  --silver:       #6d7178;

  --radius:   14px;
  --radius-lg:22px;
  --shadow-sm: 0 2px 8px rgba(20,40,75,.06);
  --shadow:    0 12px 30px rgba(20,40,75,.10);
  --shadow-lg: 0 26px 60px rgba(20,40,75,.16);

  --maxw: 1160px;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--coral-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.18; color: var(--navy); margin: 0 0 .5em; font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p  { margin: 0 0 1rem; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--warm { background: var(--bg-warm); }
.section--navy { background: var(--navy); color: #dfe6f2; }
.section--navy h2, .section--navy h3 { color: #fff; }

.reg { font-size: .55em; vertical-align: super; font-weight: 700; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: var(--coral-dark);
  background: var(--coral-soft); padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.section--navy .eyebrow { background: rgba(238,93,93,.18); color: #ffb3b3; }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.1rem; color: var(--ink-soft); }
.section--navy .section-head p { color: #c3cde0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 1rem; padding: 14px 26px;
  border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 8px 22px rgba(238,93,93,.34); }
.btn--primary:hover { background: var(--coral-strong); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--coral); color: var(--coral-dark); }
.btn--light { background: #fff; color: var(--navy); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.brand { display: flex; align-items: center; }
.brand img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: .96rem; }
.nav-links a:hover { color: var(--coral-dark); text-decoration: none; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .25s; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; background: linear-gradient(160deg, #fff 0%, var(--coral-tint) 100%); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding: clamp(48px, 7vw, 90px) 0;
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); color: var(--navy); margin-bottom: 20px; }
.hero h1 .accent { color: var(--coral); }
.hero__lead { font-size: 1.22rem; color: var(--ink-soft); max-width: 46ch; }
.hero__tagline {
  font-family: var(--serif); font-style: italic; font-size: 1.35rem;
  color: var(--coral-dark); margin: 4px 0 26px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero__stats .stat strong { display: block; font-size: 1.9rem; color: var(--coral); font-weight: 800; }
.hero__stats .stat span { font-size: .9rem; color: var(--muted); }
.hero__media { position: relative; }
.hero__media img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  width: 100%; object-fit: cover; aspect-ratio: 4/3;
}
.hero__badge {
  position: absolute; bottom: -22px; left: -22px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 16px 20px; display: flex; align-items: center; gap: 12px; max-width: 260px;
}
.hero__badge .dot { width: 42px; height: 42px; border-radius: 50%; background: var(--coral-soft); display: grid; place-items: center; flex: none; }
.hero__badge strong { color: var(--navy); font-size: .98rem; }
.hero__badge span { font-size: .82rem; color: var(--muted); }

/* ---------- Trust strip ---------- */
.trust { border-top: 1px solid var(--line); background: #fff; }
.trust__inner { display: flex; flex-wrap: wrap; gap: 18px 42px; align-items: center; justify-content: center; padding: 22px 0; }
.trust__inner span { font-size: .9rem; color: var(--muted); font-weight: 600; display: inline-flex; gap: 8px; align-items: center; }
.trust__inner svg { color: var(--coral); flex: none; }

/* ============================================================
   Feature / mechanizm grid
   ============================================================ */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ico {
  width: 52px; height: 52px; border-radius: 14px; background: var(--coral-soft);
  display: grid; place-items: center; margin-bottom: 18px; color: var(--coral-dark);
}
.card h3 { font-size: 1.16rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: .98rem; margin: 0; }

/* Ingredients / split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.ingredients { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 16px; }
.ingredients li { display: flex; gap: 16px; align-items: flex-start; }
.ingredients .num {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 800;
}
.ingredients strong { color: var(--navy); display: block; }
.ingredients span { color: var(--ink-soft); font-size: .96rem; }

/* mechanizm list on navy */
.mech-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.mech-list li {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 18px 20px;
}
.mech-list .chk { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--coral); color: #fff; display: grid; place-items: center; font-weight: 800; }
.mech-list strong { color: #fff; }
.mech-list p { margin: 3px 0 0; color: #c3cde0; font-size: .96rem; }

/* ============================================================
   Video
   ============================================================ */
.video-block { display: grid; grid-template-columns: 1.15fr .85fr; gap: 46px; align-items: center; }
.video-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #000; aspect-ratio: 16/9;
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-frame video { position: relative; z-index: 1; }
.video-frame__poster {
  position: absolute; inset: 0; z-index: 3; cursor: pointer; border: 0; padding: 0;
  background-size: cover; background-position: center;
  display: grid; place-items: center; transition: opacity .3s ease;
}
.video-frame__poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,40,75,.15), rgba(20,40,75,.5)); }
.play-btn {
  position: relative; z-index: 2; width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255,255,255,.94); display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.3); transition: transform .2s ease;
}
.video-frame__poster:hover .play-btn { transform: scale(1.08); }
.play-btn svg { color: var(--coral); margin-left: 4px; }
.video-caption { font-size: .86rem; color: var(--muted); margin-top: 12px; }

/* ============================================================
   Evidence / histology
   ============================================================ */
.eviden-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.eviden-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.eviden-card img { aspect-ratio: 1/1; object-fit: cover; }
.eviden-card .body { padding: 18px 20px; }
.eviden-card h4 { color: var(--navy); margin: 0 0 4px; font-size: 1.02rem; }
.eviden-card p { margin: 0; font-size: .9rem; color: var(--ink-soft); }
.eviden-card.win { border-color: var(--coral); box-shadow: 0 0 0 2px var(--coral-soft), var(--shadow); }
.eviden-card .tag { display:inline-block; font-size:.72rem; font-weight:800; text-transform:uppercase; letter-spacing:.08em; padding:3px 10px; border-radius:999px; margin-bottom:10px; }
.tag--muted { background: var(--navy-soft); color: var(--silver); }
.tag--win { background: var(--coral); color:#fff; }

/* ============================================================
   Audience / procedury (tabs)
   ============================================================ */
.tabs { }
.tab-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.tab-btn {
  border: 1px solid var(--line); background: #fff; color: var(--navy);
  padding: 12px 20px; border-radius: 999px; font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: .15s; display: inline-flex; align-items: center; gap: 9px;
}
.tab-btn:hover { border-color: var(--coral); color: var(--coral-dark); }
.tab-btn.active { background: var(--coral); color: #fff; border-color: var(--coral); box-shadow: 0 6px 16px rgba(238,93,93,.3); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade .35s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.proc { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.proc__intro h3 { font-size: 1.5rem; }
.proc__intro .who { font-weight: 700; color: var(--coral-dark); margin-bottom: 4px; }
.proc__intro .benefits { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.proc__intro .benefits li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-soft); }
.proc__intro .benefits svg { color: var(--coral); flex: none; margin-top: 3px; }
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.steps li { position: relative; padding: 0 0 24px 56px; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 800; display: grid; place-items: center;
}
.steps li::after {
  content: ""; position: absolute; left: 18px; top: 40px; bottom: 4px; width: 2px; background: var(--line);
}
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }
.steps strong { color: var(--navy); display: block; margin-bottom: 2px; }
.steps span { color: var(--ink-soft); font-size: .96rem; }
.proc-card { background: var(--bg-warm); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; }

.note {
  background: var(--coral-tint); border-left: 4px solid var(--coral); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; font-size: .94rem; color: var(--ink-soft); margin-top: 22px;
}
.note strong { color: var(--coral-dark); }

/* ============================================================
   Products
   ============================================================ */
.prod-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.prod {
  display: grid; grid-template-columns: 150px 1fr; gap: 24px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-sm); transition: .18s;
}
.prod:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.prod__img { background: var(--bg-warm); border-radius: var(--radius); padding: 12px; display: grid; place-items: center; aspect-ratio: 1/1; }
.prod__img img { object-fit: contain; max-height: 100%; }
.prod h3 { margin: 0 0 4px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pill { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: 3px 9px; border-radius: 999px; }
.pill--silver { background: #e9ecef; color: #5a6169; }
.pill--top { background: var(--coral-soft); color: var(--coral-dark); }
.prod p { margin: 0; font-size: .95rem; color: var(--ink-soft); }
.prod--wide { grid-column: 1 / -1; grid-template-columns: 200px 1fr; }

.size-table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: .88rem; }
.size-table th, .size-table td { text-align: left; padding: 8px 12px; border-bottom: 1px solid var(--line); }
.size-table th { color: var(--navy); font-weight: 700; background: var(--bg-warm); }
.size-table td:first-child { font-weight: 700; color: var(--coral-dark); white-space: nowrap; }
.tbl-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }

details.sizes { margin-top: 14px; }
details.sizes summary { cursor: pointer; font-weight: 700; color: var(--coral-dark); font-size: .9rem; list-style: none; display: inline-flex; align-items: center; gap: 6px; }
details.sizes summary::-webkit-details-marker { display: none; }
details.sizes summary::before { content: "\25B8"; transition: .2s; }
details.sizes[open] summary::before { transform: rotate(90deg); }

/* ============================================================
   Benefits band
   ============================================================ */
.benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.benefit {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 26px; text-align: left;
}
.benefit .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--coral); display: grid; place-items: center; color: #fff; margin-bottom: 14px; }
.benefit h4 { color: #fff; margin: 0 0 6px; font-size: 1.05rem; }
.benefit p { margin: 0; font-size: .92rem; color: #c3cde0; }

/* ============================================================
   Contact + distributor
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: .88rem; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; font-size: .96rem; background: var(--bg-warm); transition: .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--coral); background: #fff; box-shadow: 0 0 0 3px var(--coral-soft);
}
.field textarea { resize: vertical; min-height: 120px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: var(--muted); }
.consent input { width: auto; margin-top: 4px; }
.form-status { margin-top: 14px; font-size: .92rem; font-weight: 600; }
.form-status.ok { color: #1a7f4b; }
.form-status.err { color: var(--coral-dark); }

.dist-card { background: var(--navy); color: #dfe6f2; border-radius: var(--radius-lg); padding: 36px; }
.dist-card h3 { color: #fff; }
.dist-card .company { font-size: 1.2rem; font-weight: 800; color: #fff; }
.dist-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 18px; }
.dist-list li { display: flex; gap: 14px; align-items: flex-start; }
.dist-list .ico { flex: none; width: 42px; height: 42px; border-radius: 12px; background: rgba(238,93,93,.2); color: #ffb3b3; display: grid; place-items: center; }
.dist-list a { color: #fff; }
.dist-list span.lbl { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: #9fb0cc; }
.dist-hours { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); font-size: .9rem; color: #b7c3da; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #0f1d38; color: #93a2c0; padding: 56px 0 28px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.site-footer a { color: #b7c3da; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-brand img { height: 30px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .95; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .82rem; color: #6f7f9e; }

.disclaimer { font-size: .82rem; color: #6f7f9e; margin-top: 8px; max-width: 70ch; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .split, .video-block, .proc, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .grid-4, .benefit-grid { grid-template-columns: repeat(2,1fr); }
  .grid-3, .eviden-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .prod--wide { grid-template-columns: 150px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-links {
    display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    background: #fff; border-bottom: 1px solid var(--line); padding: 18px 24px; gap: 16px; box-shadow: var(--shadow);
  }
}
@media (max-width: 560px) {
  .grid-4, .benefit-grid, .grid-2, .eviden-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .prod, .prod--wide { grid-template-columns: 1fr; text-align: center; }
  .prod__img { max-width: 200px; margin: 0 auto; }
  .hero__badge { position: static; margin-top: 18px; max-width: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
