/* ═══════════════════════════════════════════
   AETERA — City Page Stylesheet
   Design tokens — reusable across all city pages
═══════════════════════════════════════════ */
:root {
  --bg:#0A0A0A; --bg-2:#111111; --bg-3:#181818;
  --gold:#D4AF37; --gold-lt:#E8C95A; --gold-dim:rgba(212,175,55,.12);
  --ivory:#FDFCF0; --ivory-m:#B8B8A8;
  --border-gold:rgba(212,175,55,.22); --border-s:rgba(255,255,255,.06);
  --text:#FDFCF0; --text-m:#7A7A6A;
  --font-serif:'Playfair Display',Georgia,serif;
  --font-sans:'Inter',system-ui,sans-serif;
  --r:4px; --r-md:8px; --r-lg:16px;
  --ease:cubic-bezier(.4,0,.2,1); --hh:70px;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Layout primitives ── */
.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
.sec { padding: 88px 0; }
.hidden { display: none !important; }

/* ── Typography tokens ── */
.lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  text-align: center;
}
.h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ivory);
  margin-bottom: 18px;
  text-align: center;
}
.sec-hdr {
  text-align: center;
  margin-bottom: 52px;
}
.sec-hdr .divgold {
  margin: 20px auto;
}
.sec-hdr p {
  font-size: 1rem;
  color: var(--text-m);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}
.divgold {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto;
}

/* ── Pulse animation ── */
.pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(1.45); }
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #0A0A0A;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 18px 42px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 24px rgba(212,175,55,.25);
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(212,175,55,.35);
}
.btn-primary-sm {
  display: inline-block;
  background: var(--gold);
  color: #0A0A0A;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-primary-sm:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-cta {
  background: var(--gold);
  color: #0A0A0A;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background .25s, transform .2s;
}
.btn-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* Centered CTA wrapper — used across multiple sections */
.cta-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  gap: 0;
}
.cta-sub {
  font-size: 12px;
  color: var(--text-m);
  margin-top: 12px;
  line-height: 1.6;
  text-align: center;
}

/* ── Cookie ── */
#cookie-banner {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: #1A1A18;
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: 18px 26px;
  width: min(calc(100vw - 40px), 660px);
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 8px 48px rgba(0,0,0,.65);
}
#cookie-banner p { font-size: 13px; color: var(--ivory-m); flex: 1; line-height: 1.6; }
#cookie-banner a { color: var(--gold); text-decoration: underline; }
.ck-btns { display: flex; gap: 10px; flex-shrink: 0; }
.ck-ok {
  background: var(--gold); color: #0A0A0A; border: none;
  padding: 9px 20px; border-radius: var(--r);
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  cursor: pointer; white-space: nowrap;
}
.ck-ok:hover { background: var(--gold-lt); }
.ck-no {
  background: transparent; color: var(--text-m);
  border: 1px solid var(--border-s);
  padding: 9px 20px; border-radius: var(--r);
  font-family: var(--font-sans); font-size: 13px; cursor: pointer; white-space: nowrap;
}

/* ── Header ── */
#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--hh);
  background: rgba(10,10,10,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-s);
}
.hdr-in { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo { font-family: var(--font-serif); font-size: 1.65rem; font-weight: 700; color: var(--ivory); letter-spacing: .06em; }
nav { display: flex; align-items: center; gap: 34px; }
nav a {
  font-size: 13px; font-weight: 500; color: var(--ivory-m);
  letter-spacing: .04em; position: relative; transition: color .25s;
}
nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .25s;
}
nav a:hover { color: var(--ivory); }
nav a:hover::after { transform: scaleX(1); }
.ham {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px;
}
.ham span { display: block; width: 22px; height: 1.5px; background: var(--ivory); }
#mob-nav {
  display: none;
  position: fixed; top: var(--hh); left: 0; right: 0;
  background: #111; border-bottom: 1px solid var(--border-s);
  padding: 20px 28px; z-index: 999;
  flex-direction: column; gap: 14px;
}
#mob-nav.open { display: flex; }
#mob-nav a { font-size: 15px; color: var(--ivory-m); padding: 10px 0; border-bottom: 1px solid var(--border-s); }
#mob-nav .btn-cta { margin-top: 6px; text-align: center; }

/* ── Breadcrumb ── */
.breadcrumb { padding: calc(var(--hh) + 16px) 0 0; background: var(--bg); }
.bc-list { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; list-style: none; }
.bc-list li { font-size: 12px; color: var(--text-m); }
.bc-list a { color: var(--text-m); transition: color .2s; }
.bc-list a:hover { color: var(--gold); }
.bc-sep { opacity: .4; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  padding-top: 32px;
  padding-bottom: 88px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 70% 55%, rgba(212,175,55,.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 75%, rgba(212,175,55,.04) 0%, transparent 60%);
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(212,175,55,.07) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.hero-body { position: relative; z-index: 1; max-width: 780px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(212,175,55,.1); border: 1px solid var(--border-gold);
  border-radius: 100px; padding: 6px 16px;
  font-size: 11px; font-weight: 500; color: var(--gold);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 32px;
}
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700; line-height: 1.18;
  color: var(--ivory); margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.05rem; color: var(--ivory-m);
  line-height: 1.85; max-width: 600px; margin-bottom: 32px;
}
.hero-benefits { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.hero-benefit {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold-dim); border: 1px solid var(--border-gold);
  border-radius: 100px; padding: 6px 14px;
  font-size: 12px; font-weight: 500; color: var(--ivory-m);
}
.hero-benefit::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 11px; }

/* Hero CTA is left-aligned by design */
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero-trust { font-size: 12px; color: var(--text-m); margin-top: 14px; }

/* ══════════════════════════════════════
   TRANSITION DIVIDER — Premium Gold Frame
══════════════════════════════════════ */
.transition-divider { padding: 0 0 64px; }
.transition-divider-inner {
  border: 1px solid var(--gold-lt);
  border-radius: var(--r-lg);
  padding: 28px 40px;
  background: linear-gradient(135deg, rgba(212,175,55,.04) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.transition-divider-inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.transition-divider-inner::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.3), transparent);
}
.transition-divider p {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-style: italic;
  color: var(--ivory-m); line-height: 1.7;
}

/* ══════════════════════════════════════
   BLOK 2: CZY TO DLA MNIE
══════════════════════════════════════ */
#dm { background: var(--bg); }

/* Mobile-first: swipeable carousel */
#dm-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}
#dm-slider::-webkit-scrollbar { height: 3px; }
#dm-slider::-webkit-scrollbar-track { background: var(--bg-3); }
#dm-slider::-webkit-scrollbar-thumb { background: var(--border-gold); border-radius: 2px; }

.dm-card {
  flex: 0 0 85%;
  scroll-snap-align: start;
  background: var(--bg-2);
  border: 1px solid var(--border-s);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s;
}
.dm-card:hover { border-color: var(--border-gold); }
.dm-card-inner { padding: 24px; flex: 1; }
.dm-title {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 700;
  color: var(--ivory); margin-bottom: 14px;
}
.dm-quote {
  font-size: 13.5px; font-style: italic; color: var(--text-m);
  border-left: 2px solid var(--gold);
  padding-left: 14px; margin-bottom: 16px; line-height: 1.7;
}
.dm-body {
  font-size: 13.5px; color: var(--ivory-m);
  line-height: 1.78; margin-bottom: 14px;
}
.dm-highlight {
  font-size: 12.5px; color: var(--gold); font-weight: 500;
  background: var(--gold-dim); border: 1px solid var(--border-gold);
  border-radius: var(--r-md); padding: 10px 14px; line-height: 1.6;
}
.dm-drop-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; border-top: 1px solid var(--border-s);
  cursor: pointer; gap: 12px; user-select: none;
}
.dm-drop-title {
  font-size: 12px; font-weight: 600; color: var(--text-m);
  letter-spacing: .02em; line-height: 1.4; flex: 1;
}
.dm-drop-trigger {
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease), background .2s, color .2s, border-color .2s;
  flex-shrink: 0;
  line-height: 1;
}
.dm-drop-trigger.open {
  transform: rotate(45deg);
  background: rgba(212,175,55,.22);
  color: var(--gold-lt);
  border-color: var(--gold-lt);
}
.dm-drop-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.dm-drop-content-inner { padding: 0 24px 18px; }
.dm-drop-content-inner p {
  font-size: 13px; color: var(--text-m);
  line-height: 1.78; padding-top: 12px;
  border-top: 1px solid var(--border-s);
}

/* Desktop 2×2 grid override */
@media (min-width: 961px) {
  #dm-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    overflow-x: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }
  .dm-card { flex: none; }
}

/* ══════════════════════════════════════
   BLOK 3: PORÓWNANIE — Adaptive dual layout
══════════════════════════════════════ */
#porownanie { background: var(--bg-2); }
.cmp-sub {
  font-size: 1rem; color: var(--text-m);
  margin: 0 auto 36px; line-height: 1.8;
  max-width: 560px; text-align: center;
}

/* — Desktop table (hidden on mobile) — */
.cmp-table-wrap { margin-bottom: 24px; }
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border-s);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cmp-table th {
  padding: 14px 24px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: var(--bg-3); text-align: left;
}
.cmp-table th:first-child  { color: var(--text-m);    width: 16%; }
.cmp-table th:nth-child(2) { color: var(--ivory-m); }
.cmp-table th:nth-child(3) { color: var(--gold); }
.cmp-table td {
  padding: 18px 24px;
  font-size: 13.5px; line-height: 1.72;
  border-top: 1px solid var(--border-s);
  vertical-align: top;
}
.cmp-table td:first-child {
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-m); background: var(--bg-3); white-space: nowrap;
}
.cmp-table td:nth-child(2) { color: var(--ivory-m); background: var(--bg-2); }
.cmp-table td:nth-child(3) { color: var(--ivory-m); background: rgba(212,175,55,.04); }
.cmp-table td:nth-child(3) strong { color: var(--gold); }

/* — Mobile card array (hidden on desktop) — */
.cmp-mobile { display: none; margin-bottom: 24px; }
.cmp-mobile-card {
  border: 1px solid var(--border-s);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 12px;
}
.cmp-mobile-card:last-child { margin-bottom: 0; }
.cmp-mobile-label {
  background: var(--bg-3);
  padding: 10px 18px;
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border-s);
}
.cmp-mobile-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cmp-mobile-col {
  padding: 16px 18px;
  font-size: 13px; line-height: 1.72; color: var(--ivory-m);
}
.cmp-mobile-col:first-child {
  border-right: 1px solid var(--border-s);
  background: var(--bg-2);
}
.cmp-mobile-col:last-child {
  background: rgba(212,175,55,.04);
}
.cmp-mobile-col strong { color: var(--gold); font-weight: 600; }
.cmp-mobile-col-head {
  font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-m); margin-bottom: 8px; display: block;
}
.cmp-mobile-col:last-child .cmp-mobile-col-head { color: var(--gold); }

/* Responsive switch */
@media (max-width: 960px) {
  .cmp-table-wrap { display: none; }
  .cmp-mobile { display: block; }
}

/* Common: disclaimer + summary */
.cmp-disclaimer {
  font-size: 12px; color: var(--text-m); margin-bottom: 28px;
  font-style: italic; text-align: center;
}
.cmp-summary {
  background: var(--bg-3); border: 1px solid var(--border-s);
  border-radius: var(--r-lg); padding: 28px 32px;
}
.cmp-summary p {
  font-size: 13.5px; color: var(--text-m); line-height: 1.78; margin-bottom: 10px;
}
.cmp-summary p:last-child { margin-bottom: 0; }
.cmp-summary .s-aetera { color: var(--ivory-m); }
.cmp-summary .s-question {
  font-family: var(--font-serif); font-size: 1rem; font-style: italic;
  color: var(--gold); margin-top: 16px !important;
  border-top: 1px solid var(--border-s); padding-top: 16px;
}

/* ══════════════════════════════════════
   BLOK 4: KALKULATOR
══════════════════════════════════════ */
#calc { background: var(--bg); }
.calc-sub {
  font-size: 1rem; color: var(--text-m);
  line-height: 1.85; max-width: 560px;
  margin: 0 auto 40px; text-align: center;
}
.calc-stack {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.calc-controls {
  background: var(--bg-2);
  border: 1px solid var(--border-s);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 36px 32px;
}
.calc-result {
  background: var(--bg-3);
  border: 1px solid var(--border-gold);
  border-top: none;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  padding: 36px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.calc-result::before {
  content: ''; position: absolute;
  top: -50px; left: -50px; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(212,175,55,.13) 0%, transparent 70%);
  pointer-events: none;
}
.cg { margin-bottom: 28px; }
.cg:last-child { margin-bottom: 0; }
.cg-lbl {
  font-size: 13px; font-weight: 500; color: var(--ivory-m);
  margin-bottom: 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.shift-v {
  font-size: 1.9rem; font-weight: 700;
  font-family: var(--font-serif); color: var(--ivory); line-height: 1;
}
input[type="range"] {
  -webkit-appearance: none; width: 100%; height: 3px;
  background: rgba(255,255,255,.1); border-radius: 2px; outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px;
  border-radius: 50%; background: var(--gold); cursor: pointer;
  border: 3px solid var(--bg-2); transition: transform .2s;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.25); }
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); cursor: pointer; border: 3px solid var(--bg-2);
}
.ticks { display: flex; justify-content: space-between; margin-top: 8px; }
.tick { font-size: 11px; color: var(--text-m); }
.tog-wrap {
  display: flex; background: var(--bg);
  border: 1px solid var(--border-s); border-radius: var(--r); overflow: hidden;
}
.tog-btn {
  flex: 1; padding: 11px 5px; background: none; border: none;
  color: var(--text-m); font-family: var(--font-sans); font-size: 12px;
  font-weight: 500; cursor: pointer; text-align: center;
  transition: background .2s, color .2s; line-height: 1.3;
}
.tog-btn.on { background: var(--gold); color: #0A0A0A; font-weight: 700; }
.tog-btn small { font-size: 10px; opacity: 0.7; }
.calc-tier-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
  background: var(--gold-dim); border: 1px solid var(--border-gold);
  border-radius: 100px; padding: 5px 14px;
  font-size: 11px; font-weight: 600; color: var(--gold);
  letter-spacing: .1em; text-transform: uppercase;
}
.tier-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); animation: pulse 2s infinite;
}
.calc-lbl-sm {
  font-size: 11px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-m); margin-bottom: 14px;
}
.calc-amt {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700; color: var(--gold); line-height: 1;
  transition: all .3s var(--ease);
}
.calc-cur { font-size: 1rem; color: var(--text-m); margin-top: 10px; }
.calc-note {
  font-size: 12px; color: var(--text-m);
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--border-s); line-height: 1.65;
}
.calc-cta-wrap {
  margin-top: 36px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; width: 100%;
}

/* ══════════════════════════════════════
   BLOK 5: TWÓJ ZESPÓŁ
══════════════════════════════════════ */
#team { background: var(--bg-2); }
.team-sub {
  font-size: 1rem; color: var(--text-m); line-height: 1.85;
  max-width: 620px; margin: 0 auto 48px; text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--bg-3); border: 1px solid var(--border-s);
  border-radius: var(--r-lg); padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: border-color .3s, transform .25s;
}
.team-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.team-icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
  box-shadow: 0 0 18px rgba(212,175,55,.1);
  transition: box-shadow .3s;
}
.team-card:hover .team-icon-wrap { box-shadow: 0 0 28px rgba(212,175,55,.22); }
.team-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.team-title {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700;
  color: var(--ivory); margin-bottom: 14px;
}
.team-body {
  font-size: 13.5px; color: var(--text-m);
  line-height: 1.78; flex: 1; margin-bottom: 20px;
}
.team-link { font-size: 13px; color: var(--gold); font-weight: 500; transition: color .2s; }
.team-link:hover { color: var(--gold-lt); }
.team-cta-wrap {
  margin-top: 44px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; width: 100%;
}

/* ══════════════════════════════════════
   BLOK 6: NARODOWY HOOK — Luxury Frame
══════════════════════════════════════ */
#hook { background: var(--bg-3); padding: 64px 0; }
.hook-frame {
  max-width: 780px; margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 2px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 52px 48px;
  box-shadow: 0 12px 40px rgba(212,175,55,.05), 0 0 0 1px rgba(212,175,55,.06) inset;
  text-align: center;
  position: relative; overflow: hidden;
}
.hook-frame::before {
  content: ''; position: absolute; top: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,175,55,.08) 0%, transparent 65%);
  pointer-events: none;
}
.hook-frame::after {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,175,55,.06) 0%, transparent 65%);
  pointer-events: none;
}
.hook-deco {
  font-family: var(--font-serif); font-size: 5rem; color: var(--gold);
  opacity: .18; line-height: .6; display: block;
  margin-bottom: 16px; font-style: normal;
}
.hook-quote {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.3rem); font-style: italic;
  color: var(--ivory-m); line-height: 1.82; margin-bottom: 28px;
  position: relative; z-index: 1;
}
.hook-divider { width: 52px; height: 1px; background: var(--gold); margin: 0 auto 18px; opacity: .5; }
.hook-sig {
  font-size: 11px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  position: relative; z-index: 1;
}

/* ══════════════════════════════════════
   BLOK 7: BEZPIECZEŃSTWO
══════════════════════════════════════ */
#safety { background: var(--bg); }
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 36px;
}
.safety-card {
  background: var(--bg-2); border: 1px solid var(--border-s);
  border-radius: var(--r-lg); padding: 28px 24px;
  transition: border-color .3s, transform .25s;
}
.safety-card:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.sc-title-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.sc-ico-sm {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--gold-dim); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.sc-t { font-size: 14px; font-weight: 600; color: var(--ivory); }
.sc-d { font-size: 13px; color: var(--text-m); line-height: 1.75; }
.safety-reviews-wrap { text-align: center; }
.safety-reviews-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gold); font-weight: 500; transition: color .2s;
}
.safety-reviews-link:hover { color: var(--gold-lt); }

/* ══════════════════════════════════════
   BLOK 8: JAK TO DZIAŁA
══════════════════════════════════════ */
#how { background: var(--bg-2); }
.how-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.how-inner .divgold { margin: 20px auto; }
.how-body {
  font-size: 1rem; color: var(--ivory-m);
  line-height: 1.9; margin-bottom: 36px;
}

/* ══════════════════════════════════════
   BLOK 9: FINAL CTA
══════════════════════════════════════ */
#final-cta { background: var(--bg); padding: 80px 0; }
.final-cta-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.final-cta-inner .h2 em { font-style: italic; color: var(--gold); }
.final-cta-inner .h2 { text-align: center; }
.final-cta-inner p { font-size: 1rem; color: var(--text-m); margin-bottom: 14px; line-height: 1.8; }
.final-cta-inner .cta-center { margin-top: 32px; }
.final-cta-disclaimer {
  font-size: 12px; color: var(--text-m); margin-top: 24px;
  line-height: 1.6; max-width: 520px; margin-left: auto; margin-right: auto;
}

/* ══════════════════════════════════════
   BLOK 10: FAQ — Interactive Accordion
══════════════════════════════════════ */
#faq { background: var(--bg-3); }
.faq-hdr { max-width: 560px; margin: 0 auto 44px; text-align: center; }
.faq-hdr .divgold { margin: 20px auto; }
.faq-list {
  display: flex; flex-direction: column;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border-s);
}
.faq-item { background: var(--bg-2); }
.faq-item + .faq-item { border-top: 1px solid var(--border-s); }
button.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 26px;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  color: var(--ivory-m); line-height: 1.5;
  transition: background .2s, color .2s;
}
button.faq-q:hover { background: rgba(255,255,255,.03); color: var(--ivory); }
button.faq-q[aria-expanded="true"] { color: var(--ivory); background: rgba(212,175,55,.04); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  border: 1px solid var(--border-gold); background: var(--gold-dim);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1; font-style: normal; font-weight: 400;
  transition: transform .3s var(--ease), background .2s, color .2s;
}
button.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: rgba(212,175,55,.22); color: var(--gold-lt);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-a-inner {
  padding: 16px 26px 22px;
  font-size: 13.5px; color: var(--text-m); line-height: 1.78;
  border-top: 1px solid var(--border-s);
}

/* ── Footer ── */
#ftr { background: var(--bg); border-top: 1px solid var(--border-s); padding: 52px 0; }
.ftr-in { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.ftr-brand .logo { font-size: 1.4rem; margin-bottom: 14px; }
.ftr-brand p { font-size: 13px; color: var(--text-m); line-height: 1.7; max-width: 260px; }
.ftr-t {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ivory-m); margin-bottom: 18px;
}
.flinks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.flinks a { font-size: 13px; color: var(--text-m); transition: color .2s; }
.flinks a:hover { color: var(--gold); }
.ftr-bot {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--border-s);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.ftr-copy { font-size: 12px; color: var(--text-m); }
.ftr-leg { display: flex; gap: 22px; }
.ftr-leg a { font-size: 12px; color: var(--text-m); transition: color .2s; }
.ftr-leg a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
  nav { display: none; }
  .ham { display: flex; }
  .team-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .ftr-in { grid-template-columns: 1fr 1fr; }
  .hook-frame { padding: 36px 28px; }
}
@media (max-width: 640px) {
  .sec { padding: 64px 0; }
  .ftr-in { grid-template-columns: 1fr; }
  .ftr-bot { flex-direction: column; text-align: center; }
  #cookie-banner { flex-direction: column; text-align: center; }
  .ck-btns { width: 100%; justify-content: center; }
  .calc-controls, .calc-result { padding: 24px 20px; }
  .hook-frame { padding: 28px 20px; }
  .transition-divider-inner { padding: 20px 24px; }
  .cmp-mobile-cols { grid-template-columns: 1fr; }
  .cmp-mobile-col:first-child { border-right: none; border-bottom: 1px solid var(--border-s); }
}
