/* ═══════════════════════════════════════════
   VIBRAÉ BEAUTY — LANDING
   Premium dark luxury + interaktywność
   ═══════════════════════════════════════════ */

:root {
  /* paleta */
  --bg: #0a0908;
  --bg-2: #100e0c;
  --bg-3: #1a1614;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);

  --ink: #f5efe6;
  --ink-mute: #b8ada0;
  --ink-soft: #8a8377;

  --gold: #d4a574;
  --gold-bright: #e8c191;
  --gold-deep: #a47d4f;
  --cream: #f0e5d2;

  --danger: #d27860;
  --success: #8ec79a;

  /* typografia */
  --f-display: "Cormorant Garamond", "Times New Roman", serif;
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* spacing */
  --pad-y: clamp(80px, 12vh, 140px);
  --pad-x: clamp(20px, 5vw, 80px);
  --radius: 4px;
  --radius-lg: 8px;

  /* timing */
  --t-fast: 180ms cubic-bezier(.4,0,.2,1);
  --t-base: 280ms cubic-bezier(.4,0,.2,1);
  --t-slow: 560ms cubic-bezier(.22,.61,.36,1);
}

/* ═══════ RESET ═══════ */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--bg); }

/* ═══════ TYPO HELPERS ═══════ */
.h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
  color: var(--ink);
}
.h2-large { font-size: clamp(2.6rem, 5.6vw, 5rem); }
.h2-light { color: var(--cream); }
.h2 .accent { color: var(--gold); font-style: italic; }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 56ch;
  margin: 0 0 48px;
}
.lead-light { color: rgba(245,239,230,0.75); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.eyebrow .dash {
  width: 32px; height: 1px;
  background: var(--gold);
}
.eyebrow-light { color: var(--cream); }
.eyebrow-light .dash { background: var(--cream); }

/* ═══════ LAYOUT ═══════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section {
  position: relative;
  padding: var(--pad-y) 0;
  overflow: hidden;
}
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

/* ═══════ TOPBAR ═══════ */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px var(--pad-x);
  background: rgba(10,9,8,0.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--t-base), backdrop-filter var(--t-base), padding var(--t-base), border-color var(--t-base);
}
.topbar.scrolled {
  background: rgba(10,9,8,0.88);
  backdrop-filter: blur(16px);
  padding: 10px var(--pad-x);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-sans);
  letter-spacing: 0.18em;
  font-size: 0.86rem;
  font-weight: 500;
}
.brand-logo {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(1.02);
}
.topbar.scrolled .brand-logo { height: 24px; transition: height var(--t-base); }
.footer-brand .brand-logo { height: 32px; }

.topnav {
  display: flex;
  gap: 22px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  flex-wrap: nowrap;
  white-space: nowrap;
}
.topnav a { position: relative; padding: 4px 0; }
.topnav a:hover { color: var(--gold); }
.topnav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-base);
}
.topnav a:hover::after { width: 100%; }
@media (max-width: 1180px) {
  .topnav { gap: 16px; font-size: 0.7rem; }
}
@media (max-width: 1024px) {
  .topnav { display: none; }
}

/* ═══════ LOCALE SWITCHER (language + currency) ═══════ */
.locale-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: auto;
  margin-right: 16px;
  position: relative;
}
.locale-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  cursor: pointer;
  transition: all var(--t-fast);
  position: relative;
}
.locale-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,165,116,0.06);
}
.locale-btn .locale-flag { font-size: 1rem; line-height: 1; }
.locale-btn .locale-code { letter-spacing: 0.08em; }
.locale-btn .locale-caret {
  font-size: 0.7rem;
  color: var(--ink-soft);
  transition: transform var(--t-fast);
}
.locale-btn[aria-expanded="true"] .locale-caret { transform: rotate(180deg); color: var(--gold); }

.locale-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--bg-3);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  box-shadow: 0 16px 40px -10px rgba(0,0,0,0.8);
  display: none;
  min-width: 160px;
  z-index: 110;
}
#langDropdown { left: 0; }
#currencyDropdown { right: 0; min-width: 130px; }
.locale-dropdown.open { display: block; animation: dropIn 200ms cubic-bezier(.22,.61,.36,1); }
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.locale-dropdown li {
  padding: 8px 12px;
  border-radius: 2px;
  font-size: 0.86rem;
  color: var(--ink-mute);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--t-fast);
}
.locale-dropdown li:hover {
  background: rgba(212,165,116,0.08);
  color: var(--gold);
}
.locale-dropdown li .locale-flag { font-size: 1.1rem; }

@media (max-width: 880px) {
  .locale-switcher { margin: 0 8px; gap: 4px; }
  .locale-btn { padding: 6px 8px; font-size: 0.72rem; }
  .locale-btn .locale-flag { font-size: 0.9rem; }
}
@media (max-width: 540px) {
  .locale-switcher .locale-code { display: none; }
  .locale-switcher .locale-caret { display: none; }
}

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px rgba(212,165,116,0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-mini { padding: 11px 18px; font-size: 0.74rem; }
.btn-large { padding: 20px 36px; font-size: 0.92rem; }
.btn-full { width: 100%; justify-content: center; }
.btn .arrow { transition: transform var(--t-base); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ═══════ HERO ═══════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 96px var(--pad-x) clamp(60px, 10vh, 100px);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .hero { padding-top: 80px; }
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: brightness(0.78) saturate(1.05) contrast(1.05);
  transform: scale(1.08);
  animation: heroZoom 14s ease-out forwards;
  will-change: transform;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(10,9,8,0.92) 30%, rgba(10,9,8,0.55) 55%, rgba(10,9,8,0.15) 80%, transparent 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 30%);
  z-index: 1;
}
.hero-overlay::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(40% 60% at 75% 40%, rgba(212,165,116,0.12), transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 100%;
}
.hero-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 16px 0 28px;
  color: var(--ink);
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .accent {
  color: var(--gold);
  font-style: italic;
}
.hero-title .dot { color: var(--gold); }
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(245,239,230,0.82);
  max-width: 540px;
  margin: 0 0 40px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}
.hero-meta {
  display: flex;
  gap: 32px;
  font-size: 0.82rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 540px;
}
.hero-meta strong { color: var(--cream); font-weight: 600; }
@media (max-width: 640px) {
  .hero-meta { flex-direction: column; gap: 4px; }
}

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  width: 24px; height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
}
.scroll-cue span {
  position: absolute;
  left: 50%; top: 8px;
  width: 2px; height: 8px;
  background: var(--gold);
  border-radius: 1px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(14px); opacity: 0.3; }
}

/* ═══════ PROBLEM ═══════ */
.section-problem { background: var(--bg-2); }
.problem-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.problem-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.problem-list li:last-child { border-bottom: 1px solid var(--line); }
.problem-list .num {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}
.problem-list h4 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.problem-list p {
  margin: 0;
  color: var(--ink-mute);
  font-size: 0.96rem;
}
.quote {
  margin: 0;
  padding: 24px 28px;
  border-left: 2px solid var(--gold);
  background: rgba(212,165,116,0.05);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--cream);
}
.image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.8);
}
.image-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.22,.61,.36,1);
}
.image-frame:hover img { transform: scale(1.04); }
.col-image-tall .image-frame img { aspect-ratio: 3/4; }
.image-tag {
  position: absolute;
  top: 24px; left: 24px;
  padding: 8px 14px;
  background: rgba(10,9,8,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; }
  .col-image { order: -1; }
  .image-frame img { aspect-ratio: 4/3; }
}

/* ═══════ SOLUTION ═══════ */
.section-solution {
  position: relative;
  background: var(--bg);
}
.solution-bg { position: absolute; inset: 0; z-index: 0; }
.solution-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.35) saturate(0.7);
}
.solution-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 30%, transparent 70%, var(--bg) 100%);
}
.section-solution .container { position: relative; z-index: 2; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0 60px;
}
.feature {
  padding: 36px 32px;
  background: rgba(26,22,20,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--t-base), transform var(--t-base), background var(--t-base);
}
.feature:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: rgba(26,22,20,0.95);
}
.feature-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 18px;
  line-height: 1;
}
.feature h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
}
.feature p {
  margin: 0;
  color: var(--ink-mute);
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 720px) { .features-grid { grid-template-columns: 1fr; } }

.solution-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: linear-gradient(90deg, rgba(212,165,116,0.12), rgba(212,165,116,0.02));
  border: 1px solid rgba(212,165,116,0.3);
  border-radius: var(--radius);
}
.banner-mark {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.banner-text {
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--cream);
}
.banner-text strong { color: var(--gold); font-weight: 600; }

/* ═══════ KALKULATOR ═══════ */
.section-calc { background: var(--bg-2); }
.calc-head { text-align: left; margin-bottom: 56px; }
.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 980px) { .calc-grid { grid-template-columns: 1fr; } }

.calc-controls {
  padding: 40px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.preset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.preset-label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-right: 8px;
}
.preset {
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  transition: all var(--t-fast);
}
.preset:hover, .preset.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,165,116,0.06);
}
.control { margin-bottom: 28px; }
.control:last-child { margin-bottom: 0; }
.control label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.control-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.control output {
  flex-shrink: 0;
  min-width: 90px;
  text-align: right;
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.control .hint {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* range slider */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 4px;
  background: linear-gradient(to right, var(--gold) var(--p, 50%), var(--line-strong) var(--p, 50%));
  border-radius: 2px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  background: var(--gold);
  border: 3px solid var(--bg-3);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 4px 12px rgba(212,165,116,0.4);
  transition: transform var(--t-fast);
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.1); }
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--gold);
  border: 3px solid var(--bg-3);
  border-radius: 50%;
  cursor: grab;
}

.control-toggle .toggle-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.toggle {
  padding: 14px 12px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: var(--ink-mute);
  transition: all var(--t-fast);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  cursor: pointer;
}
.toggle .toggle-name {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.toggle .toggle-name em {
  font-style: normal;
  color: var(--gold);
  margin-left: 2px;
}
.toggle .toggle-price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.toggle:hover { border-color: var(--gold); color: var(--ink); }
.toggle.active {
  background: linear-gradient(135deg, rgba(212,165,116,0.15), rgba(212,165,116,0.04));
  border-color: var(--gold);
  color: var(--ink);
}
.toggle.active .toggle-price { color: var(--gold-bright); }
.toggle.active .toggle-name em { color: var(--gold-bright); }

/* badge w nagłówku systemu (gwiazdka "pod beauty") */
.system-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 9px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  vertical-align: middle;
}

/* ceny w karcie systemu */
.system-price {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink-mute);
  line-height: 1.7;
}
.system-price strong {
  color: var(--gold);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
}
.system-price .price-label {
  display: inline-block;
  width: 56px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.system-price .price-meta {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-left: 4px;
}

.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.result-card {
  position: relative;
  padding: 24px 22px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.result-card.primary {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(212,165,116,0.18), rgba(212,165,116,0.04));
  border-color: var(--gold);
}
.result-card.highlight {
  grid-column: 1 / -1;
  background: var(--bg-3);
  border-color: var(--line-strong);
}
.result-label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.result-value {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
  transition: color var(--t-base);
}
.result-card.primary .result-value { color: var(--gold); }
.result-unit {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
}
.result-note {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-style: italic;
}
.result-foot {
  grid-column: 1 / -1;
  padding-top: 8px;
}
.result-foot p {
  font-size: 0.92rem;
  color: var(--ink-mute);
  margin: 0 0 20px;
}
.result-foot strong { color: var(--cream); }
.result-foot em { color: var(--gold); font-style: normal; font-weight: 600; }

/* counter animation */
.result-value.flash { animation: numFlash 600ms; }
@keyframes numFlash {
  0%, 100% { color: inherit; }
  40% { color: var(--gold-bright); }
}

/* ═══════ KONFIGURATOR ═══════ */
.section-config { background: var(--bg); }
.config-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
  margin-top: 48px;
}
@media (max-width: 980px) { .config-grid { grid-template-columns: 1fr; } }

.config-problems {
  padding: 32px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
}
.config-problems h4 {
  margin: 0 0 24px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
}
.checks { display: grid; gap: 4px; }
.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--t-fast);
  font-size: 0.94rem;
  color: var(--ink-mute);
}
.check:hover { background: rgba(212,165,116,0.06); color: var(--cream); }
.check input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all var(--t-fast);
  cursor: pointer;
}
.check input:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.check input:checked::after {
  content: "";
  position: absolute;
  left: 5px; top: 1px;
  width: 5px; height: 10px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check input:checked ~ span { color: var(--ink); }

.config-systems { display: grid; gap: 16px; }
.system {
  position: relative;
  padding: 28px 32px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all var(--t-base);
  opacity: 0.55;
}
.system.active {
  opacity: 1;
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212,165,116,0.08), var(--bg-3));
  transform: translateX(6px);
}
.system-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.system-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
}
.system h4 {
  margin: 0;
  flex: 1;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.system-status {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.system.active .system-status {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.system.active .system-status::before { content: "✓ "; }
.system p {
  margin: 0 0 16px;
  color: var(--ink-mute);
  font-size: 0.94rem;
  line-height: 1.55;
}
.system-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.system-tags span {
  padding: 4px 10px;
  background: rgba(212,165,116,0.08);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  border-radius: 2px;
}

.config-result {
  margin-top: 8px;
  padding: 20px 24px;
  background: rgba(212,165,116,0.06);
  border: 1px solid rgba(212,165,116,0.25);
  border-radius: var(--radius);
}
.config-result-label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.config-result-value {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
}

/* ═══════ SCENARIUSZE ═══════ */
.section-scenarios { background: var(--bg-2); }
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 980px) { .scenarios-grid { grid-template-columns: 1fr; } }

.scenario {
  text-align: left;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}
.scenario:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}
.scenario-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.scenario-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.22,.61,.36,1);
}
.scenario:hover .scenario-img img { transform: scale(1.08); }
.scenario-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  padding: 6px 12px;
  background: rgba(10,9,8,0.85);
  backdrop-filter: blur(8px);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  z-index: 2;
}
.scenario h4 {
  margin: 24px 28px 12px;
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.2;
}
.scenario > p {
  margin: 0 28px 24px;
  font-size: 0.94rem;
  color: var(--ink-mute);
  line-height: 1.6;
  flex: 1;
}
.scenario-foot {
  margin-top: auto;
  padding: 16px 28px;
  background: rgba(212,165,116,0.08);
  border-top: 1px solid rgba(212,165,116,0.2);
  font-size: 0.88rem;
  color: var(--cream);
}
.scenario-foot strong { color: var(--gold); }

/* ═══════ NAUKA ═══════ */
.section-science {
  position: relative;
  background: var(--bg);
}
.science-bg { position: absolute; inset: 0; z-index: 0; }
.science-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.25) saturate(0.6);
  object-position: right center;
}
.section-science::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, var(--bg) 30%, rgba(10,9,8,0.6) 80%, transparent 100%);
}
.section-science .container { position: relative; z-index: 2; }
.science-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 48px 0 40px;
}
@media (max-width: 720px) { .science-grid { grid-template-columns: 1fr; } }
.science-card {
  padding: 28px 32px;
  background: rgba(26,22,20,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all var(--t-base);
}
.science-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.science-card h4 {
  margin: 0 0 12px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.science-card p {
  margin: 0 0 16px;
  color: rgba(245,239,230,0.78);
  font-size: 0.95rem;
  line-height: 1.6;
}
.science-ref {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-style: italic;
  letter-spacing: 0.04em;
}
.science-foot {
  padding: 20px 24px;
  border-left: 2px solid var(--gold);
  background: rgba(212,165,116,0.06);
  font-size: 0.96rem;
  color: rgba(245,239,230,0.85);
}
.science-foot strong { color: var(--gold); display: block; margin-bottom: 4px; }

/* ═══════ PROCES ═══════ */
.section-process { background: var(--bg-2); }
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.process-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.process-list li:last-child { border-bottom: 1px solid var(--line); }
.process-list .num {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-style: italic;
  margin-top: 4px;
}
.process-list h4 {
  margin: 4px 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}
.process-list p {
  margin: 0;
  color: var(--ink-mute);
  font-size: 0.96rem;
  line-height: 1.6;
}
.process-list strong { color: var(--cream); }
.sub-list {
  margin: 14px 0 0;
  padding: 16px 20px;
  background: rgba(212,165,116,0.04);
  border-radius: 2px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}
.sub-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--ink-mute);
  border: none !important;
}
.sub-list li::before {
  content: "·";
  position: absolute; left: 6px;
  color: var(--gold);
}
@media (max-width: 600px) { .sub-list { grid-template-columns: 1fr; } }

/* ═══════ CTA ═══════ */
.section-cta {
  position: relative;
  background: var(--bg);
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.4) saturate(0.7);
}
.cta-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,9,8,0.85), rgba(10,9,8,0.5));
}
.cta-grid {
  position: relative;
  z-index: 2;
  align-items: start;
}
.process-mini {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.process-mini li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: rgba(245,239,230,0.82);
  font-size: 0.98rem;
}
.process-mini li:last-child { border-bottom: 1px solid var(--line); }
.process-mini .num {
  display: grid; place-items: center;
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ═══════ FORMULARZ ═══════ */
.form-wrap {
  position: sticky;
  top: 100px;
}
.lead-form {
  background: var(--bg-3);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.8);
}
.form-head { margin-bottom: 24px; }
.form-head h3 {
  margin: 0 0 6px;
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--ink);
}
.form-head p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-mute);
}
.field {
  display: block;
  margin-bottom: 18px;
}
.field-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.field input[type="text"],
.field input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: var(--ink);
  font-size: 0.96rem;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field input::placeholder { color: var(--ink-soft); }
.field input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212,165,116,0.04);
}
.field input:invalid:not(:placeholder-shown) { border-color: var(--danger); }
.field-radio { border: 0; padding: 0; }
.field-radio legend { margin-bottom: 8px; padding: 0; }
.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 480px) { .radio-grid { grid-template-columns: 1fr; } }
.radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.86rem;
  color: var(--ink-mute);
  transition: all var(--t-fast);
}
.radio:hover { border-color: var(--gold); color: var(--ink); }
.radio input {
  appearance: none;
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all var(--t-fast);
}
.radio input:checked {
  border-color: var(--gold);
}
.radio input:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--gold);
  border-radius: 50%;
}
.radio:has(input:checked) {
  border-color: var(--gold);
  background: rgba(212,165,116,0.06);
  color: var(--ink);
}

.form-alt {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--ink-mute);
}
.alt-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--t-fast);
}
.alt-link:hover { color: var(--gold); }
.alt-icon { font-size: 1.1em; }

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 2px;
  font-size: 0.92rem;
  display: none;
}
.form-status.ok {
  display: block;
  background: rgba(142,199,154,0.1);
  border: 1px solid rgba(142,199,154,0.3);
  color: var(--success);
}
.form-status.err {
  display: block;
  background: rgba(210,120,96,0.1);
  border: 1px solid rgba(210,120,96,0.3);
  color: var(--danger);
}

/* ═══════ FOOTER ═══════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.82rem;
  color: var(--ink-mute);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.18em;
}
.footer-meta div { line-height: 1.6; }
.footer-meta strong { color: var(--cream); }
.footer-meta a { color: var(--ink-mute); }
.footer-meta a:hover { color: var(--gold); }
.footer-tags {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}

/* ═══════ REVEAL ANIMATIONS ═══════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(.22,.61,.36,1), transform 800ms cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
  .hero-bg img { animation: none; transform: none; }
  .scroll-cue span { animation: none; }
}

/* ═══════ INSPIRACJE VIBRAE.PL — DODATKI ═══════ */

/* glow podświetlenie wokół primary CTA (magnetic ready) */
.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s cubic-bezier(.22,.61,.36,1);
  z-index: -1;
}
.btn-primary:hover::before { transform: translateX(100%); }

/* parallax na obrazach tła (działa z JS data-parallax) */
.hero-bg img,
.solution-bg img,
.cta-bg img,
.science-bg img {
  transition: transform 50ms linear;
}

/* delikatny gold glow follower (custom cursor blob) */
.cursor-blob {
  position: fixed;
  top: 0; left: 0;
  width: 480px; height: 480px;
  pointer-events: none;
  z-index: 99;
  background: radial-gradient(circle, rgba(212,165,116,0.10) 0%, rgba(212,165,116,0.04) 30%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 400ms;
  opacity: 0;
  mix-blend-mode: screen;
}
.cursor-blob.on { opacity: 1; }
@media (hover: none), (max-width: 880px) {
  .cursor-blob { display: none; }
}

/* split-text reveal — litera po literze dla h1 */
.split-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%);
  transition: opacity 0.6s, transform 0.7s cubic-bezier(.22,.61,.36,1);
  transition-delay: calc(var(--i, 0) * 22ms);
}
.split-char.in { opacity: 1; transform: translateY(0); }

/* marquee gold cienka linia pod nagłówkiem hero — subtle */
.hero::after {
  content: "";
  position: absolute;
  left: var(--pad-x); right: var(--pad-x); bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.4;
  z-index: 3;
}

/* better hover dla scenariuszy */
.scenario { will-change: transform; }
.scenario:hover .scenario-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(212,165,116,0.18));
  pointer-events: none;
}
.scenario-img { position: relative; }

/* lekkie sectiony dzielniki — kreska gold */
.section:not(.hero):not(.section-cta)::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  transform: translate(-50%, -30px);
  opacity: 0.5;
  z-index: 5;
}

/* ═══════ HERO TRUST PILLS ═══════ */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.trust-pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(212,165,116,0.12);
  border: 1px solid rgba(212,165,116,0.4);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* ═══════ KALKULATOR — leasing line ═══════ */
.leasing-line {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(212,165,116,0.08);
  border-left: 2px solid var(--gold);
  border-radius: 2px;
}
.leasing-line .gold { color: var(--gold); font-weight: 600; }
.result-foot strong.gold { color: var(--gold); }

/* ═══════ SOCIAL PROOF / TESTIMONIALE ═══════ */
.section-proof { background: var(--bg-2); }
.section-proof .lead em { color: var(--ink-soft); font-style: italic; font-size: 0.9em; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 40px;
}
@media (max-width: 980px) { .proof-grid { grid-template-columns: 1fr; } }

.proof {
  padding: 32px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}
.proof:hover { border-color: var(--gold); transform: translateY(-4px); }
.proof-stars {
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.proof blockquote {
  margin: 0 0 24px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--cream);
  flex: 1;
}
.proof footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-mute);
}
.proof footer strong { color: var(--ink); font-weight: 600; }
.proof-stat {
  margin-top: 8px;
  padding: 6px 12px;
  background: rgba(212,165,116,0.1);
  color: var(--gold);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.05rem;
  border-radius: 2px;
  align-self: flex-start;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
}
@media (max-width: 820px) { .proof-bar { grid-template-columns: 1fr 1fr; } }
.proof-stat-card {
  padding: 24px 20px;
  background: var(--bg-3);
  text-align: center;
}
.proof-stat-num {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.proof-stat-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}

/* ═══════ BEZPIECZEŃSTWO / CERTYFIKATY ═══════ */
.section-trust { background: var(--bg); }
.trust-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.trust-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.trust-list li:first-child { border-top: 1px solid var(--line); }
.trust-mark {
  display: grid; place-items: center;
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 2px;
}
.trust-list h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.trust-list p {
  margin: 0;
  color: var(--ink-mute);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* ═══════ JAK SPRZEDAĆ KLIENTCE ═══════ */
.section-howto { background: var(--bg-2); }
.howto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 32px;
}
@media (max-width: 980px) { .howto-grid { grid-template-columns: 1fr; } }
.howto {
  position: relative;
  padding: 32px 28px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all var(--t-base);
}
.howto:hover { border-color: var(--gold); transform: translateY(-4px); }
.howto-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.5;
}
.howto h4 {
  margin: 0 0 12px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--ink);
  padding-right: 30px;
}
.howto-context {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.5;
}
.howto-script {
  padding: 16px 18px;
  background: rgba(212,165,116,0.06);
  border-left: 2px solid var(--gold);
  border-radius: 2px;
  margin-bottom: 14px;
}
.howto-script strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.howto-script em {
  color: var(--cream);
  font-style: italic;
  font-size: 0.94rem;
  line-height: 1.6;
}
.howto-effect {
  display: block;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.howto-foot {
  padding: 20px 24px;
  background: rgba(212,165,116,0.04);
  border: 1px dashed rgba(212,165,116,0.3);
  border-radius: 4px;
}
.howto-foot p {
  margin: 0;
  color: var(--ink-mute);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ═══════ ACADEMY ═══════ */
.section-academy { background: var(--bg); }
.academy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0 24px;
}
@media (max-width: 480px) { .academy-grid { grid-template-columns: 1fr; } }
.academy-card {
  padding: 20px 22px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--t-fast);
}
.academy-card:hover { border-color: var(--gold); }
.academy-num {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 999px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 500;
}
.academy-card h5 {
  margin: 6px 0 8px;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink);
}
.academy-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-mute);
  line-height: 1.55;
}
.academy-meta {
  padding: 16px 20px;
  background: rgba(212,165,116,0.06);
  border-left: 2px solid var(--gold);
  font-size: 0.92rem;
  color: var(--ink-mute);
}
.academy-meta strong { color: var(--cream); }

/* ═══════ KONFIGURATOR — system-explain ═══════ */
.system-explain {
  margin-top: 14px;
  padding: 14px 16px;
  background: rgba(212,165,116,0.04);
  border-radius: 2px;
  font-size: 0.86rem;
  color: var(--ink-mute);
}
.system-explain p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.system-explain ul {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 6px;
}
.system-explain li {
  font-size: 0.88rem;
  line-height: 1.55;
}
.system-explain strong { color: var(--cream); }

/* ═══════ ACADEMY — formaty ═══════ */
.academy-formats {
  margin: 12px 0 14px;
  padding-left: 16px;
  display: grid;
  gap: 8px;
}
.academy-formats li {
  font-size: 0.92rem;
  color: var(--ink-mute);
  line-height: 1.55;
}
.academy-formats strong { color: var(--cream); }

/* ═══════ COMPARE TABLE meta ═══════ */
.th-meta {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: none;
}

/* ═══════ COMPARE GRID V2 — animowana tabela porównawcza ═══════ */
.compare-wrap-v2 {
  margin-top: 48px;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.5fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.cmp-cell {
  padding: 18px 20px;
  background: var(--bg-3);
  font-size: 0.94rem;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  min-height: 64px;
  transition: background 250ms ease, color 250ms ease;

  /* stagger reveal */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(.22,.61,.36,1), transform 0.6s cubic-bezier(.22,.61,.36,1), background 250ms, color 250ms;
}
.cmp-cell.in {
  opacity: 1;
  transform: translateY(0);
}

/* row hover: każda komórka w wierszu o tym samym data-row */
.compare-grid:hover .cmp-cell:not(.cmp-h) { background: var(--bg-3); }
.cmp-cell[data-row].hover-row { background: rgba(212,165,116,0.06); }
.cmp-cell.cmp-us[data-row].hover-row { background: rgba(212,165,116,0.18); }

/* nagłówki */
.cmp-h {
  background: var(--bg-2);
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 22px 16px;
}
.cmp-h-feature { background: var(--bg-2); }
.cmp-h-us {
  background: linear-gradient(180deg, rgba(212,165,116,0.18), rgba(212,165,116,0.08));
  color: var(--gold);
  position: relative;
}
.cmp-brand {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-bright);
}
.cmp-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.cmp-tag-small {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.cmp-good { background: rgba(142,199,154,0.15); color: var(--success); }
.cmp-bad  { background: rgba(210,120,96,0.12); color: var(--danger); }

/* wiersz cech */
.cmp-feat {
  background: var(--bg-2);
  color: var(--ink);
  font-weight: 500;
  font-size: 0.92rem;
}
.cmp-us {
  background: linear-gradient(90deg, rgba(212,165,116,0.06), rgba(212,165,116,0.02));
  color: var(--ink);
  font-weight: 500;
}
.cmp-us strong { color: var(--gold); }

/* animowane ikony */
.cmp-ico {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 380ms cubic-bezier(.34,1.56,.64,1), box-shadow 280ms;
  will-change: transform;
}
.cmp-yes {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--bg);
  box-shadow: 0 4px 14px -3px rgba(212,165,116,0.5);
}
.cmp-no {
  background: rgba(255,255,255,0.04);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.cmp-cell.in .cmp-yes {
  animation: iconPop 600ms cubic-bezier(.34,1.56,.64,1);
}
@keyframes iconPop {
  0%   { transform: scale(0) rotate(-90deg); }
  60%  { transform: scale(1.2) rotate(10deg); }
  100% { transform: scale(1) rotate(0); }
}
.cmp-cell:hover .cmp-yes { transform: scale(1.15) rotate(8deg); box-shadow: 0 6px 20px -3px rgba(212,165,116,0.7); }
.cmp-cell:hover .cmp-no  { transform: scale(1.08); }

/* compare foot */
.compare-foot {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(212,165,116,0.06);
  border-left: 3px solid var(--gold);
  font-size: 0.96rem;
  color: var(--ink-mute);
  line-height: 1.65;
  border-radius: 0 4px 4px 0;
}
.compare-foot strong { color: var(--gold); }
.compare-foot em { color: var(--cream); font-style: italic; font-weight: 500; }

/* mobile */
@media (max-width: 880px) {
  .compare-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
  .cmp-cell {
    padding: 14px 10px;
    font-size: 0.84rem;
    min-height: 56px;
  }
  .cmp-h { font-size: 0.66rem; padding: 14px 8px; }
  .cmp-brand { font-size: 0.78rem; letter-spacing: 0.1em; }
  .cmp-tag { font-size: 0.5rem; padding: 2px 6px; }
  .cmp-ico { width: 28px; height: 28px; font-size: 0.9rem; }
}
@media (max-width: 540px) {
  /* na mobilkach ukrywamy kolumnę endermologii — zostaje Vibraé vs Tradycyjny EMS */
  .compare-grid {
    grid-template-columns: 1.3fr 1.1fr 1fr;
  }
  .cmp-cell[data-row]:nth-child(4n) { display: none; }
}

/* ═══════ COMPARE TABLE (stara, zachowana fallback) ═══════ */
.section-compare { background: var(--bg-2); }
.compare-wrap {
  margin-top: 40px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: var(--bg-3);
}
.compare-table th, .compare-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.compare-table thead th {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  background: var(--bg-2);
}
.compare-table thead .col-us {
  color: var(--gold);
  background: rgba(212,165,116,0.1);
}
.compare-table td:first-child {
  color: var(--ink-mute);
  font-weight: 500;
  width: 36%;
}
.compare-table td.col-us {
  background: rgba(212,165,116,0.06);
  color: var(--ink);
  font-weight: 500;
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table .yes {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.compare-table .no {
  color: var(--ink-soft);
  font-style: italic;
}
.compare-table .partial {
  color: var(--ink-mute);
  font-style: italic;
}

/* ═══════ FOOTER ROZBUDOWANE ═══════ */
.footer { padding: 56px 0 24px; }
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 880px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-col h5 {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-col p {
  margin: 0 0 8px;
  font-size: 0.88rem;
  color: var(--ink-mute);
  line-height: 1.5;
}
.footer-col p a { color: var(--ink-mute); transition: color var(--t-fast); }
.footer-col p a:hover { color: var(--gold); }
.footer-col p strong { color: var(--cream); }
.footer-tagline {
  margin: 16px 0 20px !important;
  font-size: 0.86rem !important;
  line-height: 1.6 !important;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  transition: all var(--t-fast);
}
.footer-social a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--bg);
}
.placeholder-data {
  color: var(--ink-soft);
  font-style: italic;
  font-size: 0.85em;
}
.footer-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--ink-mute); transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--gold); }
.footer-tags {
  margin-left: auto;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}
.footer-copyright { width: 100%; }

/* ═══════ HERO VIDEO ═══════ */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 75% center;
  filter: brightness(0.82) saturate(1.05) contrast(1.05);
  z-index: 0;
}
.hero-img-fallback { display: none; }
@media (max-width: 640px) {
  .hero-video { object-position: 60% center; }
}

/* ═══════ FAQ ═══════ */
.section-faq { background: var(--bg-2); }
.faq-list {
  display: grid;
  gap: 4px;
  margin-top: 48px;
  max-width: 920px;
}
.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-3);
  overflow: hidden;
  transition: border-color var(--t-base);
}
.faq[open] { border-color: var(--gold); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  transition: color var(--t-fast);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq[open] summary { color: var(--gold); }
.faq summary > span:first-child {
  flex: 1;
  line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  position: relative;
  transition: all var(--t-fast);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  top: 50%; left: 50%;
  transition: transform var(--t-base);
}
.faq-icon::before { width: 12px; height: 1px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1px; height: 12px; transform: translate(-50%, -50%); }
.faq[open] .faq-icon { border-color: var(--gold); }
.faq[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-body {
  padding: 0 28px 24px;
  color: var(--ink-mute);
  font-size: 0.96rem;
  line-height: 1.7;
}
.faq-body p { margin: 0; }
.faq-body strong { color: var(--cream); }

/* ═══════ STICKY MOBILE CTA ═══════ */
.mobile-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  display: none;
  gap: 8px;
  padding: 10px;
  background: rgba(10,9,8,0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: 0 16px 40px -10px rgba(0,0,0,0.7);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-base), transform var(--t-base);
}
.mobile-cta.on { opacity: 1; transform: translateY(0); }
.mcta-btn {
  display: grid;
  place-items: center;
  height: 48px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform var(--t-fast);
}
.mcta-btn:active { transform: scale(0.96); }
.mcta-primary {
  flex: 1;
  background: var(--gold);
  color: var(--bg);
}
.mcta-wa, .mcta-tel {
  width: 48px;
  background: rgba(212,165,116,0.12);
  color: var(--gold);
  border: 1px solid rgba(212,165,116,0.3);
  font-size: 1.2rem;
}
@media (max-width: 880px) {
  .mobile-cta { display: flex; }
  /* offset stopki żeby nie zachodziła */
  .footer { padding-bottom: 80px; }
}

/* ═══════ EXIT-INTENT MODAL ═══════ */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-modal.on { display: flex; animation: modalIn 320ms ease-out; }
@keyframes modalIn { from { opacity: 0; } to { opacity: 1; } }
.exit-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
}
.exit-card {
  position: relative;
  max-width: 500px;
  width: 100%;
  padding: 40px 36px;
  background: var(--bg-3);
  border: 1px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8);
  animation: cardIn 420ms cubic-bezier(.22,.61,.36,1);
}
@keyframes cardIn { from { transform: translateY(20px) scale(0.98); opacity: 0; } to { transform: none; opacity: 1; } }
.exit-card h3 {
  margin: 16px 0 12px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.9rem;
  line-height: 1.1;
  color: var(--ink);
}
.exit-card h3 + p {
  margin: 0 0 24px;
  color: var(--ink-mute);
  font-size: 0.98rem;
  line-height: 1.6;
}
.exit-close {
  position: absolute;
  top: 12px; right: 16px;
  width: 36px; height: 36px;
  font-size: 1.6rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color var(--t-fast);
}
.exit-close:hover { color: var(--gold); }
.exit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.exit-actions .btn { flex: 1; justify-content: center; }
.exit-wa {
  display: block;
  font-size: 0.86rem;
  color: var(--ink-mute);
  text-align: center;
  transition: color var(--t-fast);
}
.exit-wa:hover { color: var(--gold); }

/* ═══════ MOBILE TWEAKS ═══════ */
@media (max-width: 640px) {
  .topbar { padding: 14px 20px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .lead-form { padding: 24px; }
  .calc-controls { padding: 24px; }
  .control-toggle .toggle-group { grid-template-columns: 1fr; }
  .preset-row { font-size: 0.7rem; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════
   FINAL PASS — 2026-05-29 — UX/UI poprawki
   ═══════════════════════════════════════════ */

/* — Solution features: duże numery 01–05 zamiast emoji */
.feature-icon { display: none; }
.feature-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: transform 600ms cubic-bezier(.22,.61,.36,1), color 400ms;
}
.feature:hover .feature-num {
  transform: scale(1.1) translateY(-4px);
  color: var(--gold-bright);
}
.feature-num-accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: numPulse 3s ease-in-out infinite;
}
@keyframes numPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}
.feature-wide {
  grid-column: 1 / -1;
  text-align: center;
  background: linear-gradient(135deg, rgba(212,165,116,0.06), rgba(212,165,116,0.02));
  border-color: rgba(212,165,116,0.3);
}
.feature-wide .feature-num {
  font-size: 4rem;
}
.feature-wide h4 {
  font-size: 1.2rem;
}
.feature-wide p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
}

/* — Solution banner: prawdziwe logo zamiast V */
.banner-mark { display: none; }
.banner-logo {
  height: 56px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(1.05);
}
@media (max-width: 640px) {
  .banner-logo { height: 40px; }
}

/* — Quote na pełnej szerokości pod sekcją Problem */
.quote-wide {
  display: block;
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 40px 56px;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.35;
  text-align: center;
  border-left: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
}
@media (max-width: 720px) {
  .quote-wide { padding: 28px 24px; font-size: 1.2rem; margin-top: 40px; }
}

/* — Sekcja Nauka: ukryj science-ref (źródła pseudo) */
.science-ref { display: none !important; }
.science-card { padding-bottom: 32px; }

/* — Scenariusze: dolny pasek bez nachodzenia napisów */
.scenario-foot {
  padding: 18px 24px;
  line-height: 1.5;
  font-size: 0.86rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.scenario-foot strong {
  display: inline;
  font-size: 0.94rem;
}
@media (max-width: 480px) {
  .scenario-foot { padding: 14px 18px; font-size: 0.8rem; }
}

/* — Compare table: REKOMENDOWANE tag pod brand bez overlap */
.cmp-h-us {
  padding-top: 28px !important;
  padding-bottom: 18px !important;
  gap: 10px !important;
}
.cmp-h-us .cmp-tag {
  margin-top: 4px;
  white-space: nowrap;
}
.cmp-brand {
  font-size: 0.88rem !important;
  line-height: 1.2;
}

/* — Process kropki/numery: czyste, bez błędnych markerów */
.process-list { list-style: none; padding: 0; }
.process-list .num {
  border-radius: 50%;
  font-variant-numeric: tabular-nums;
}
.sub-list { list-style: none !important; padding-left: 0 !important; }
.sub-list li::before {
  content: "·";
  display: inline-block;
  width: 18px;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1;
  vertical-align: baseline;
  margin-right: 4px;
}

/* — Usunięcie kropek z głównych nagłówków hasłowych H2 (PL: "klientki.", "się zastanawiasz." itd.) */
/* Te kropki są w treści (intentional decorative) — jeśli psują wygląd na mobile, można skryć: */
.h2 .dot { color: var(--gold); }

/* — Hero meta: większy, mocniejszy, „Vibraé — Energia, którą czujesz" */
.hero-meta { font-size: 0.9rem; }
.hero-meta strong { font-family: var(--f-display); font-style: italic; font-size: 1.4rem; color: var(--gold); letter-spacing: 0.04em; }

/* — Form ALT linki: SVG ikonki spójne wielkości */
.alt-link .alt-icon {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-right: 6px;
  color: var(--gold);
}
.alt-link:hover .alt-icon { color: var(--gold-bright); }

/* — Mobile CTA bar: SVG wielkości */
.mcta-wa svg, .mcta-tel svg { width: 22px; height: 22px; }

/* ═══════════════════════════════════════════
   MOBILE — pełen audyt 320–540px
   ═══════════════════════════════════════════ */
@media (max-width: 540px) {
  /* topbar fits */
  .topbar { gap: 8px; padding: 10px 16px; }
  .brand-logo { height: 22px; }
  .topnav { display: none; }
  .locale-switcher { margin: 0 4px; gap: 4px; }
  .locale-btn { padding: 5px 7px; font-size: 0.7rem; }
  .btn-mini { padding: 8px 12px; font-size: 0.7rem; }

  /* hero spacing */
  .hero { padding-top: 70px; padding-bottom: 56px; }
  .hero-title { font-size: clamp(2.4rem, 12vw, 3.2rem); margin-top: 12px; }
  .hero-trust { gap: 6px; }
  .trust-pill { font-size: 0.62rem; padding: 4px 10px; }
  .hero-sub { font-size: 0.96rem; }
  .hero-meta { font-size: 0.78rem; gap: 4px !important; }
  .hero-meta strong { font-size: 1.1rem; }

  /* problem */
  .problem-list .num { font-size: 1.2rem; }
  .problem-list h4 { font-size: 0.94rem; }

  /* solution features w pełnej kolumnie */
  .features-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .feature { padding: 24px 22px; }
  .feature-num { font-size: 2.6rem; margin-bottom: 12px; }
  .feature-wide .feature-num { font-size: 3.2rem; }

  /* solution banner stacked */
  .solution-banner { flex-direction: column; text-align: center; padding: 24px 20px; }

  /* proof testimoniale */
  .proof { padding: 24px 22px; }
  .proof blockquote { font-size: 1rem; line-height: 1.5; }

  /* compare grid: 3 kolumny (bez endermologii — już to było) */
  .compare-grid { gap: 1px; }
  .cmp-cell { padding: 10px 8px; font-size: 0.74rem; min-height: 48px; }
  .cmp-h { font-size: 0.58rem; padding: 12px 6px; }
  .cmp-brand { font-size: 0.7rem !important; }
  .cmp-tag { font-size: 0.46rem; padding: 2px 5px; }
  .cmp-ico { width: 24px; height: 24px; font-size: 0.8rem; }

  /* kalkulator controls — compact */
  .calc-controls { padding: 20px 18px; }
  .control output { font-size: 1.2rem; min-width: 72px; }
  .preset-label { font-size: 0.66rem; }
  .preset { padding: 6px 10px; font-size: 0.7rem; }
  .toggle { padding: 10px 8px; }
  .toggle .toggle-name { font-size: 0.74rem; }
  .toggle .toggle-price { font-size: 0.92rem; }

  /* config grid stacked */
  .config-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .config-problems { padding: 22px; position: relative; top: auto; }
  .system { padding: 20px 22px; }

  /* scenariusze — pełna szerokość */
  .scenarios-grid { grid-template-columns: 1fr !important; gap: 16px; }

  /* science cards stacked */
  .science-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .science-card { padding: 22px 24px; }

  /* process compact */
  .process-list .num { width: 32px; height: 32px; font-size: 0.95rem; }
  .process-list h4 { font-size: 0.98rem; }

  /* FAQ — większe touch targets */
  .faq summary { padding: 18px 20px; font-size: 0.96rem; gap: 14px; }
  .faq-body { padding: 0 20px 20px; font-size: 0.88rem; }

  /* CTA form */
  .lead-form { padding: 24px 22px; }
  .form-head h3 { font-size: 1.4rem; }
  .field input[type="text"], .field input[type="tel"] { padding: 12px 14px; font-size: 0.94rem; }
  .radio-grid { grid-template-columns: 1fr !important; }
  .radio { padding: 12px 14px; font-size: 0.86rem; }
  .btn-large { padding: 18px 24px; font-size: 0.86rem; }
  .form-alt { gap: 12px; font-size: 0.78rem; }
  .alt-link svg { width: 16px; height: 16px; }

  /* footer */
  .footer { padding: 40px 0 80px; }
  .footer-cols { grid-template-columns: 1fr !important; gap: 24px; }
  .footer-tags { font-size: 0.62rem; }

  /* sticky mobile CTA */
  .mobile-cta { left: 8px; right: 8px; bottom: 8px; padding: 8px; gap: 6px; }
  .mcta-btn { height: 44px; }
  .mcta-primary { font-size: 0.84rem; }

  /* exit modal */
  .exit-card { padding: 28px 22px; }
  .exit-card h3 { font-size: 1.5rem; }
  .exit-actions { flex-direction: column; }
}

@media (max-width: 380px) {
  .compare-grid { grid-template-columns: 1.2fr 1fr 1fr !important; }
  .cmp-cell[data-row]:nth-child(4n) { display: none; }
  .cmp-cell { padding: 8px 6px; font-size: 0.68rem; min-height: 42px; }
}

/* Konfigurator system-price łamanie linii na mobile */
@media (max-width: 540px) {
  .system-price { font-size: 0.84rem; }
  .system-price .price-label { width: auto; margin-right: 6px; }
}

/* — Proof stat bar: lepiej wypełniać czerni */
.proof-stat-num { font-variant-numeric: tabular-nums; }

/* — Footer materials: bez ikon ajaja */
.footer-col p a::before { content: none !important; }

/* — Hero title kropka dot bezpiecznie */
.hero-title .accent .dot { color: var(--gold); }

/* ═══════════════════════════════════════════
   AWARYJNY FALLBACK — pokaż treść nawet jeśli JS padnie
   po 2 sekundach reveal animations odpalają się same
   ═══════════════════════════════════════════ */
.reveal {
  animation: revealFallback 0s 2s forwards;
}
@keyframes revealFallback {
  to {
    opacity: 1;
    transform: none;
  }
}
/* JS-driven reveal wygrywa (klasa .in dodaje animację natychmiast) */
.reveal.in {
  animation: none;
}

/* ═══════════════════════════════════════════
   AWARYJNY FALLBACK V2 — szybsze + dla tabeli + split-char
   ═══════════════════════════════════════════ */
.reveal { animation: revealFallback 0s 600ms forwards; }
.cmp-cell { animation: revealFallback 0s 800ms forwards; }
.split-char { animation: revealFallback 0s 400ms forwards; }
.reveal.in, .cmp-cell.in, .split-char.in { animation: none; }

/* ═══════ HERO META — single line, balanced ═══════ */
.hero-meta-single {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.hero-meta-single strong {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  font-weight: 500;
  line-height: 1;
}
.hero-meta-single .sep {
  color: var(--ink-soft);
  font-size: 0.86rem;
  opacity: 0.6;
}
.hero-meta-single a {
  color: var(--cream);
  text-decoration: none;
  transition: color var(--t-fast);
  font-weight: 500;
}
.hero-meta-single a:hover {
  color: var(--gold);
}
@media (max-width: 640px) {
  .hero-meta-single {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .hero-meta-single .sep { display: none; }
  .hero-meta-single strong { font-size: 1.3rem; }
}

/* ═══════ HERO META STACKED — 2 wiersze ═══════ */
.hero-meta-stacked {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 8px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.hero-meta-stacked .meta-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.hero-meta-stacked .meta-row-brand strong {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  font-weight: 500;
  line-height: 1;
}
.hero-meta-stacked .meta-row-brand span:not(.sep) {
  font-size: 0.96rem;
}
.hero-meta-stacked .meta-row-contact {
  font-size: 0.92rem;
}
.hero-meta-stacked .meta-row-contact a {
  color: var(--cream);
  text-decoration: none;
  transition: color var(--t-fast);
  font-weight: 500;
}
.hero-meta-stacked .meta-row-contact a:hover { color: var(--gold); }
.hero-meta-stacked .sep {
  color: var(--ink-soft);
  opacity: 0.5;
}
@media (max-width: 540px) {
  .hero-meta-stacked .meta-row-contact { flex-direction: column; align-items: flex-start; gap: 4px; }
  .hero-meta-stacked .meta-row-contact .sep { display: none; }
  .hero-meta-stacked .meta-row-brand strong { font-size: 1.2rem; }
}

/* ═══════════════════════════════════════════
   COOKIE CONSENT (RODO / ePrivacy)
   ═══════════════════════════════════════════ */
.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(140%);
  width: min(680px, calc(100vw - 32px));
  background: var(--bg-3);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
  z-index: 10000;
  opacity: 0;
  transition: transform var(--t-slow), opacity var(--t-base);
}
.cookie-consent.on {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
}
.cookie-text {
  margin: 0;
  flex: 1;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ink-mute);
}
.cookie-text strong { color: var(--ink); font-weight: 600; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-text a:hover { color: var(--gold-bright); }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-actions .btn-mini { white-space: nowrap; }
@media (max-width: 600px) {
  .cookie-consent { bottom: 12px; }
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 14px; padding: 16px 18px; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn-mini { flex: 1; text-align: center; }
}
