/* ==========================================================================
   Landing page — Plan GOLD
   Shared by landing_pl.html and landing_en.html.
   Light theme (matches legacy.app), with intentional dark breaks at:
     - marquee strip  (visual separator)
     - escalation     (dramatic core — human stepping in)
     - final CTA      (closing accord)
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  --navy:  #060d1a;
  --navy2: #0b1628;
  --navy3: #111f38;
  --blue:  #1a3a6e;
  --bm:    #2251a3;
  --bl:    #3068cc;
  --la-blue: #0057b7;       /* legacy.app primary */
  --gold:  #c9a84c;
  --goldl: #e8c97a;
  --goldd: #8a6520;
  --ink:   #f0f4ff;         /* text on dark bg */
  --inks:  #9aaac8;         /* muted on dark bg */
  --mu:    #5a6a88;
  --ru:    rgba(255,255,255,.08);
  --ink-dk: #0d1f4a;        /* heading on light bg */
  --ink-md: #4a5568;        /* body text on light bg */
  --ink-lt: #5d606f;        /* nav link grey */
  --line-lt: #e2e8f2;       /* hairline on light bg */
  --bg-light:  #ffffff;     /* default light section */
  --bg-tint:   #f7faff;     /* alternating tint */
  --sf: 'Lora', Georgia, serif;
  --ss: 'DM Sans', system-ui, sans-serif;
  --si: 'Inter', system-ui, sans-serif;
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 110px; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }
body { font-family: var(--ss); background: var(--bg-light); color: var(--ink-dk); -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100%; line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
a { -webkit-tap-highlight-color: transparent; }
button { font-family: inherit; }

/* --- Background canvas (only visible on dark sections, covered by light bgs) */
#bg-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .3; }

/* --- Layout containers ---------------------------------------------------- */
.pw { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
@media (min-width: 768px) { .pw { padding: 0 32px; } }
@media (min-width: 1100px) { .pw { padding: 0 40px; } }

/* ==========================================================================
   NAV — 1:1 layout z legacy.app + dodana pozycja GOLD + Login dropdown
   ========================================================================== */
.la-nav-wrapper {
  position: sticky; top: 0; z-index: 100;
  background: #ffffff;
  height: 72px;
  box-shadow: 0 3px 6px rgba(0,0,0,.04);
  border-bottom: 1px solid #f0f0f0;
}
@media (min-width: 860px) {
  .la-nav-wrapper { height: 99px; box-shadow: 0 3px 6px #f6f5f5; border-bottom: none; }
}
.la-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1134px; margin: 0 auto; height: 100%; padding: 0 20px;
  position: relative;
}
@media (min-width: 860px) { .la-nav-inner { padding: 0 32px; } }

.la-logo { flex-shrink: 0; }
.la-logo a { display: inline-flex; align-items: center; text-decoration: none; }
.la-logo picture { display: block; line-height: 0; }
.la-logo img { height: 30px; width: auto; max-width: none; display: block; object-fit: contain; }
@media (min-width: 860px) { .la-logo img { height: 44px; } }

.la-nav-list {
  display: none; list-style: none; align-items: center; gap: 0;
}
@media (min-width: 860px) { .la-nav-list { display: flex; } }

.la-nav-link {
  display: block;
  font-family: var(--si); font-size: 14px; font-weight: 400;
  text-transform: uppercase; letter-spacing: normal;
  color: var(--ink-lt); text-decoration: none;
  padding: 10px 15px;
  transition: color .15s;
  position: relative;
}
.la-nav-link:hover { color: var(--la-blue); }
.la-nav-link.active { color: var(--la-blue); font-weight: 600; }

/* GOLD — wyróżniony kolorem + złotą podkreślką */
.la-nav-link.la-nav-gold { color: var(--goldd); }
.la-nav-link.la-nav-gold::before {
  content: ''; position: absolute;
  left: 10px; right: 10px; bottom: 4px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--goldl));
  border-radius: 2px;
}
.la-nav-link.la-nav-gold:hover { color: var(--goldd); }
.la-nav-link.la-nav-gold.active { color: var(--goldd); font-weight: 600; }

/* Prawa strona: login dropdown + język */
.la-nav-right { display: flex; align-items: center; gap: 0; }
.la-login-wrap { position: relative; margin-left: 10px; }

.la-nav-login {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--si); font-size: 14px; font-weight: 400;
  text-transform: uppercase; color: var(--la-blue);
  padding: 10px 20px; border: 1px solid var(--la-blue); border-radius: 10px;
  background: #fff; cursor: pointer; white-space: nowrap;
  transition: background .15s, color .15s;
}
@media (min-width: 860px) { .la-nav-login { padding: 10px 24px; } }
.la-nav-login:hover,
.la-login-wrap:hover .la-nav-login,
.la-login-wrap.is-open .la-nav-login { background: var(--la-blue); color: #fff; }
.la-nav-login svg { transition: transform .2s; }
.la-login-wrap:hover .la-nav-login svg,
.la-login-wrap.is-open .la-nav-login svg { transform: rotate(180deg); }

.la-login-menu {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: #fff; border: 1px solid var(--line-lt); border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  min-width: 240px; padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .15s, transform .15s, visibility .15s;
  z-index: 20;
}
.la-login-wrap:hover .la-login-menu,
.la-login-wrap:focus-within .la-login-menu,
.la-login-wrap.is-open .la-login-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.la-login-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; text-decoration: none;
  font-family: var(--si); font-size: 13px; font-weight: 500; color: var(--ink-dk);
  border-radius: 6px; transition: background .15s;
}
.la-login-item:hover { background: #f0f4ff; }
.la-login-item.gold { color: var(--goldd); }
.la-login-item.gold:hover { background: rgba(201,168,76,.08); }

.la-login-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: #f0f4ff; color: var(--bm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.la-login-item.gold .la-login-icon { background: rgba(201,168,76,.12); color: var(--goldd); }
.la-login-item-body { display: flex; flex-direction: column; }
.la-login-item-title { font-size: 13px; font-weight: 600; }
.la-login-item-sub { font-size: 11px; color: #6b7280; font-weight: 400; margin-top: 1px; }
.la-login-item.gold .la-login-item-sub { color: #a28240; }

.la-nav-lang {
  display: flex; align-items: center; gap: 4px; margin-left: 16px;
  font-family: var(--si); font-size: 13px; font-weight: 500; color: var(--ink-lt);
  text-decoration: none;
  padding: 6px 8px; border-radius: 6px;
  transition: color .15s, background .15s;
}
.la-nav-lang:hover { color: var(--la-blue); background: #f5f7fb; }
.la-nav-lang-caret { font-size: 9px; opacity: .7; }

/* Mobile — hamburger panel */
.la-nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; margin-left: 8px;
  background: transparent; border: none; color: var(--ink-dk);
  cursor: pointer; border-radius: 8px;
}
.la-nav-toggle:hover { background: #f0f4ff; }
@media (min-width: 860px) { .la-nav-toggle { display: none; } }

.la-nav-panel {
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-top: 1px solid #f0f0f0;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  padding: 8px 20px 16px;
  display: none;
}
.la-nav-panel.is-open { display: block; }
.la-nav-panel ul { list-style: none; }
.la-nav-panel .la-nav-link { padding: 12px 8px; font-size: 15px; }
.la-nav-panel .la-nav-link.la-nav-gold::before { left: 8px; right: 8px; bottom: 6px; }
.la-nav-panel-sep {
  margin-top: 8px;
  padding: 10px 8px 4px;
  border-top: 1px solid #e7eaf0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #6b7686;
}
@media (min-width: 860px) { .la-nav-panel { display: none !important; } }

/* ==========================================================================
   HERO — jasny (wariant C), jedno CTA "Kup Plan GOLD"
   ========================================================================== */
.hero-light {
  position: relative; z-index: 3;
  background: linear-gradient(160deg, #f7f9ff 0%, #eef3fc 55%, #f0f4fa 100%);
  padding: 32px 0 48px;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 768px) { .hero-light { padding: 80px 0 96px; } }
.hero-light::before {
  content: ''; position: absolute;
  bottom: 8%; right: -25%;
  width: 100vw; max-width: 560px; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.7) 0%, rgba(201,168,76,0) 65%);
  filter: blur(40px);
  pointer-events: none; z-index: 1;
}
@media (min-width: 900px) {
  .hero-light::before { top: -80px; right: -120px; bottom: auto; width: 520px; max-width: none; }
}
.hero-light::after {
  content: ''; position: absolute;
  bottom: 25%; left: 15%;
  width: 80vw; max-width: 380px; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(48,104,204,.55) 0%, rgba(48,104,204,0) 70%);
  filter: blur(50px);
  pointer-events: none; z-index: 1;
}
@media (min-width: 900px) {
  .hero-light::after { top: 220px; left: auto; right: 140px; bottom: auto; width: 380px; max-width: none; }
}

.hero-inner {
  position: relative; z-index: 3;
  width: 100%; max-width: 1134px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media (min-width: 768px) { .hero-inner { padding: 0 32px; } }
@media (min-width: 900px) { .hero-inner { grid-template-columns: minmax(0,1fr) 400px; gap: 56px; } }

.hero-left { display: flex; flex-direction: column; align-items: flex-start; text-align: left; min-width: 0; }

.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.13); border: 1px solid rgba(201,168,76,.38);
  border-radius: 50px; padding: 6px 16px;
  font-family: var(--si); font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #7a5c1e;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp .6s .1s ease forwards;
}
.hero-chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.hero-h1 {
  font-family: var(--sf);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -.03em;
  color: var(--ink-dk); margin-bottom: 8px;
  opacity: 0; animation: fadeUp .7s .2s ease forwards;
}
.hero-h1 em,
.hero-rotator-item {
  font-style: italic; font-weight: 400;
  color: transparent;
  background: linear-gradient(135deg, var(--goldl) 0%, var(--gold) 60%);
  -webkit-background-clip: text; background-clip: text;
}
.hero-rotator { display: inline-block; }
.hero-rotator-item { display: inline-block; transition: opacity .35s ease, transform .35s ease; }
.hero-rotator-item.is-fading { opacity: 0; transform: translateY(6px); }

.hero-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,.2) 100%);
  border-radius: 2px; margin: 22px 0;
  opacity: 0; animation: fadeUp .6s .3s ease forwards;
}

.hero-sub {
  font-family: var(--si); font-size: clamp(14px, 2.2vw, 16px);
  color: var(--ink-md); line-height: 1.75; max-width: 480px; margin-bottom: 32px;
  opacity: 0; animation: fadeUp .7s .35s ease forwards;
}

.hero-cta-single {
  display: flex; align-items: center;
  opacity: 0; animation: fadeUp .7s .45s ease forwards;
}

.btn-gold-lg {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--goldl) 0%, var(--gold) 60%);
  color: #3a2a00;
  font-family: var(--si); font-size: 16px; font-weight: 700;
  padding: 16px 34px; border-radius: 12px; text-decoration: none;
  box-shadow: 0 6px 24px rgba(201,168,76,.45);
  transition: transform .2s, box-shadow .2s; border: 1px solid rgba(138,101,32,.15);
}
.btn-gold-lg:hover { transform: translateY(-1px); box-shadow: 0 10px 32px rgba(201,168,76,.55); }

.hero-trust {
  display: flex; gap: 18px; margin-top: 28px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .7s .55s ease forwards;
}
.hero-trust span {
  font-family: var(--si); font-size: 12px;
  color: var(--bm); display: flex; align-items: center; gap: 5px;
}

/* Hero right — wszystkie karty jako frost-glass nad blob-ami w .hero-light */
.hero-right-light {
  display: flex; flex-direction: column; gap: 14px; min-width: 0;
  position: relative; z-index: 2;
}
.hero-right-light .stat-card,
.hero-right-light .process-card {
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 16px 48px rgba(34, 81, 163, 0.14),
    0 2px 8px rgba(201, 168, 76, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateZ(0);
}
/* Mobile: pokazuj tylko "7 dni" — process i Zero do desktop */
@media (max-width: 899px) {
  .hero-right-light .process-card,
  .hero-right-light .stat-card.blue { display: none; }
}

.stat-card {
  background: #fff; border: 1px solid var(--line-lt);
  border-radius: 14px; padding: 20px 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,.15));
}
.stat-card.blue::before { background: linear-gradient(90deg, var(--bl), rgba(48,104,204,.15)); }

.stat-main { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; }
.stat-ico {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.stat-ico.blue { background: rgba(48,104,204,.08); border-color: rgba(48,104,204,.2); color: var(--bl); }
.stat-num { font-family: var(--sf); font-size: 2rem; font-weight: 700; color: var(--ink-dk); letter-spacing: -.04em; line-height: 1; }
.stat-num.blue { font-size: 1.4rem; color: var(--bl); }
.stat-label { font-family: var(--si); font-size: 10px; font-weight: 600; color: #9ca3af; text-transform: uppercase; letter-spacing: .1em; }
.stat-desc { font-family: var(--si); font-size: 13px; color: #6b7280; line-height: 1.55; }

/* Visual-only "7 dni" banner */
.stat-card--banner { padding: 22px 24px; }
.stat-banner {
  display: flex; align-items: center; gap: 16px;
}
.stat-card--banner .stat-ico {
  width: 48px; height: 48px;
  background: rgba(201, 168, 76, 0.18);
  border-color: rgba(201, 168, 76, 0.45);
}
.stat-card--banner .stat-num {
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--goldd) 0%, var(--gold) 60%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-card--banner .stat-label {
  font-size: 11px; color: var(--bm); margin-top: 4px;
}

.process-card {
  background: #fff; border: 1px solid var(--line-lt);
  border-radius: 14px; padding: 20px 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  position: relative; overflow: hidden;
}
.process-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--bl), rgba(48,104,204,.15));
}
.process-title { font-family: var(--si); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #9ca3af; margin-bottom: 16px; }
.process-steps { display: flex; flex-direction: column; }
.process-step { display: flex; align-items: flex-start; gap: 12px; padding-bottom: 12px; }
.process-step:last-child { padding-bottom: 0; }
.process-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.p-dot {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--si); font-size: 10px; font-weight: 800; flex-shrink: 0;
}
.p-dot.b { background: rgba(48,104,204,.12); border: 1px solid rgba(48,104,204,.3); color: var(--bl); }
.p-dot.g { background: rgba(201,168,76,.14); border: 1px solid rgba(201,168,76,.35); color: var(--goldd); }
.p-line { width: 1px; flex: 1; min-height: 10px; background: var(--line-lt); margin: 3px 0; }
.process-body { padding-top: 2px; }
.process-body h5 { font-family: var(--si); font-size: 13px; font-weight: 600; color: var(--ink-dk); margin-bottom: 2px; }
.process-body p { font-family: var(--si); font-size: 12px; color: #6b7280; line-height: 1.5; }

/* ==========================================================================
   BUTTONS (używane w sekcjach ciemnych: CTA)
   ========================================================================== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-family: var(--ss); font-size: 15px; font-weight: 700;
  padding: 14px 28px; min-height: 52px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 4px 32px rgba(201,168,76,.35);
  transition: background .15s, box-shadow .15s, transform .15s; border: none; cursor: pointer;
  animation: goldGlow 3s ease-in-out infinite;
}
.btn-primary:hover { background: var(--goldl); box-shadow: 0 8px 48px rgba(201,168,76,.5); transform: translateY(-2px); color: var(--navy); animation: none; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--inks);
  font-family: var(--ss); font-size: 15px; font-weight: 500;
  padding: 14px 24px; min-height: 52px; border-radius: 50px; border: 1px solid var(--ru);
  text-decoration: none; transition: border-color .15s, color .15s, background .15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.2); color: var(--ink); background: rgba(255,255,255,.04); }

/* ==========================================================================
   INTRO BANNER — card-in-card z niebieskim akcentem, żeby się wybijało
   ========================================================================== */
.intro-banner {
  position: relative; z-index: 2;
  background: linear-gradient(180deg, #eef3fc 0%, #f5f8fd 100%);
  padding: 22px 20px;
}
@media (min-width: 768px) { .intro-banner { padding: 28px 20px; } }
.intro-inner {
  max-width: 1134px; margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--line-lt);
  border-left: 4px solid var(--la-blue);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
}
@media (min-width: 680px) { .intro-inner { flex-direction: row; align-items: center; justify-content: space-between; padding: 20px 28px; gap: 24px; } }
.intro-title { font-family: var(--si); font-size: 15px; font-weight: 700; color: var(--ink-dk); margin-bottom: 4px; line-height: 1.4; }
.intro-sub { font-family: var(--si); font-size: 13px; color: var(--ink-md); line-height: 1.6; max-width: 580px; }
.intro-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--si); font-size: 13px; font-weight: 600;
  color: #ffffff; text-decoration: none;
  padding: 10px 22px; border-radius: 50px;
  background: var(--la-blue); border: 1px solid var(--la-blue);
  white-space: nowrap; flex-shrink: 0;
  transition: background .15s, border-color .15s, transform .15s;
}
.intro-link:hover { background: #004a9e; border-color: #004a9e; transform: translateY(-1px); }

/* ==========================================================================
   SECTIONS — eyebrow/title/subhead (default = dark bg variants, overridden
   by .sec-light scoped selectors below for light sections).
   ========================================================================== */
.sec-ey { display: block; font-family: var(--si); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.sec-t { font-family: var(--sf); font-size: clamp(1.7rem, 6vw, 3rem); font-weight: 700; color: var(--ink); letter-spacing: -.03em; line-height: 1.12; margin-bottom: 24px; max-width: 640px; }
.sec-s { font-family: var(--si); font-size: 15px; color: var(--inks); line-height: 1.75; max-width: 540px; margin-bottom: 56px; }
@media (min-width: 768px) { .sec-ey { margin-bottom: 24px; } .sec-t { margin-bottom: 28px; } .sec-s { margin-bottom: 72px; } }

/* Light section heading overrides — scoped to sections that are on light bg */
.how-sec .sec-ey,
.op-sec .sec-ey,
.channels-sec .sec-ey,
.why-sec .sec-ey,
.faq-sec .sec-ey { color: var(--goldd); }

.how-sec .sec-t,
.op-sec .sec-t,
.channels-sec .sec-t,
.why-sec .sec-t,
.faq-sec .sec-t { color: var(--ink-dk); }

.how-sec .sec-s,
.op-sec .sec-s,
.channels-sec .sec-s,
.why-sec .sec-s,
.faq-sec .sec-s { color: var(--ink-md); }

/* Accent divider — rysowana pod eyebrow, spina feel z hero-divider */
.how-sec .sec-ey,
.op-sec .sec-ey,
.channels-sec .sec-ey,
.why-sec .sec-ey,
.faq-sec .sec-ey {
  position: relative; padding-bottom: 10px;
}
.how-sec .sec-ey::after,
.op-sec .sec-ey::after,
.channels-sec .sec-ey::after,
.why-sec .sec-ey::after,
.faq-sec .sec-ey::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,.2) 100%);
  border-radius: 2px;
}

/* ==========================================================================
   HOW IT WORKS — light
   ========================================================================== */
.how-sec { padding: 64px 0; position: relative; z-index: 2; background: var(--bg-light); }
@media (min-width: 768px) { .how-sec { padding: 96px 0; } }
.how-sec::before { content: ''; position: absolute; right: -200px; top: 50%; transform: translateY(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(48,104,204,.05) 0%, transparent 65%); pointer-events: none; }

.how-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 600px) { .how-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.how-card { background: #fff; border: 1px solid var(--line-lt); border-radius: 14px; padding: 24px 22px; position: relative; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.04); transition: box-shadow .25s, transform .25s, border-color .2s; }
.how-card:hover { border-color: rgba(48,104,204,.2); box-shadow: 0 10px 28px rgba(0,0,0,.08); transform: translateY(-4px); }
.how-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; }
.how-card--blue::before { background: linear-gradient(90deg, var(--bl), rgba(48,104,204,.15)); }
.how-card--gold::before { background: linear-gradient(90deg, var(--gold), rgba(201,168,76,.15)); }
.how-step { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--si); font-size: 13px; font-weight: 700; margin-bottom: 14px; }
.how-step--blue { background: rgba(48,104,204,.1); color: var(--bl); border: 1px solid rgba(48,104,204,.25); }
.how-step--gold { background: rgba(201,168,76,.1); color: var(--goldd); border: 1px solid rgba(201,168,76,.3); }
.how-card h3 { font-family: var(--sf); font-size: 1.05rem; font-weight: 700; color: var(--ink-dk); margin-bottom: 8px; line-height: 1.3; }
.how-card p { font-family: var(--si); font-size: 13.5px; color: var(--ink-md); line-height: 1.7; }
.hint-box { background: #fef8e7; border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0; padding: 14px 18px; font-family: var(--si); font-size: 13px; color: #5d4a18; line-height: 1.65; margin-top: 26px; }
.hint-box strong { color: var(--goldd); font-weight: 700; }

/* ==========================================================================
   GUARDIAN (OPERATOR) — light, subtle tint
   ========================================================================== */
.op-sec { padding: 64px 0; position: relative; z-index: 2; background: var(--bg-tint); border-top: 1px solid var(--line-lt); border-bottom: 1px solid var(--line-lt); }
@media (min-width: 768px) { .op-sec { padding: 96px 0; } }
.op-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 768px) { .op-grid { grid-template-columns: 220px 1fr; gap: 44px; } }
.op-photo { border-radius: 14px; aspect-ratio: 3/4; overflow: hidden; box-shadow: 0 4px 24px rgba(13,31,74,.1); }
.op-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.op-lead { font-family: var(--si); font-size: 15px; color: var(--ink-md); line-height: 1.75; margin-bottom: 20px; }
.op-cards { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }
@media (min-width: 600px) { .op-cards { grid-template-columns: repeat(3, 1fr); } }
.op-card { background: #fff; border: 1px solid var(--line-lt); border-radius: 12px; padding: 18px; box-shadow: 0 2px 10px rgba(0,0,0,.04); transition: border-color .2s, transform .25s, box-shadow .25s; }
.op-card:hover { border-color: rgba(48,104,204,.2); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.06); }
.op-card-ico { width: 38px; height: 38px; border-radius: 9px; background: rgba(48,104,204,.08); border: 1px solid rgba(48,104,204,.2); display: flex; align-items: center; justify-content: center; color: var(--bl); margin-bottom: 12px; }
.op-card h4 { font-family: var(--sf); font-size: 14px; font-weight: 700; color: var(--ink-dk); margin-bottom: 6px; line-height: 1.3; }
.op-card p { font-family: var(--si); font-size: 12.5px; color: var(--ink-md); line-height: 1.65; }

/* ==========================================================================
   MARQUEE — CIEMNY pasek (separator wizualny)
   ========================================================================== */
.marquee-sec { padding: 44px 0; position: relative; z-index: 2; overflow: hidden; background: var(--navy); border-top: 1px solid var(--ru); border-bottom: 1px solid var(--ru); }
@media (min-width: 768px) { .marquee-sec { padding: 56px 0; } }
.marquee-sec::before, .marquee-sec::after { content: ''; position: absolute; top: 0; width: 120px; height: 100%; z-index: 3; pointer-events: none; }
.marquee-sec::before { left: 0; background: linear-gradient(90deg, var(--navy) 0%, transparent 100%); }
.marquee-sec::after  { right: 0; background: linear-gradient(270deg, var(--navy) 0%, transparent 100%); }
.marquee-label { text-align: center; font-family: var(--si); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--mu); margin-bottom: 28px; }
.marquee-track { display: flex; gap: 36px; animation: marquee 25s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 10px; white-space: nowrap; font-family: var(--si); font-size: 14px; font-weight: 500; color: var(--inks); }
.marquee-item svg { color: var(--gold); flex-shrink: 0; }

/* ==========================================================================
   CHANNELS — light
   ========================================================================== */
.channels-sec { padding: 64px 0; position: relative; z-index: 2; background: var(--bg-light); }
@media (min-width: 768px) { .channels-sec { padding: 96px 0; } }
.channels-sec::before { content: ''; position: absolute; left: -200px; top: 50%; transform: translateY(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,168,76,.05) 0%, transparent 65%); pointer-events: none; }
.channels-layout { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media (min-width: 768px) { .channels-layout { grid-template-columns: 1fr 1fr; gap: 52px; } }
.channels-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ch-card { background: #fff; border: 1px solid var(--line-lt); border-radius: 12px; padding: 16px 18px; display: flex; align-items: flex-start; gap: 12px; transition: border-color .2s, box-shadow .2s, transform .25s; position: relative; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.ch-card:hover { border-color: rgba(201,168,76,.4); box-shadow: 0 6px 18px rgba(0,0,0,.06); transform: translateY(-2px); }
.ch-ico { flex-shrink: 0; width: 36px; height: 36px; border-radius: 9px; background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.25); display: flex; align-items: center; justify-content: center; color: var(--goldd); }
.ch-card h4 { font-family: var(--sf); font-size: 13px; font-weight: 700; color: var(--ink-dk); margin-bottom: 3px; line-height: 1.3; }
.ch-card p  { font-family: var(--si); font-size: 11.5px; color: var(--ink-md); line-height: 1.55; }
.ch-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.3); border-radius: 50px; padding: 5px 14px; font-family: var(--si); font-size: 11px; font-weight: 700; color: var(--goldd); letter-spacing: .06em; margin-bottom: 16px; }

/* ==========================================================================
   ESCALATION — CIEMNA sekcja (rdzeń produktu, ludzka interwencja)
   ========================================================================== */
.esc-sec { padding: 72px 0; position: relative; z-index: 2; background: var(--navy); overflow: hidden; color: var(--ink); }
@media (min-width: 768px) { .esc-sec { padding: 112px 0; } }
.esc-sec::before { content: ''; position: absolute; right: -300px; bottom: -200px; width: 700px; height: 700px; border-radius: 50%; border: 1px solid rgba(201,168,76,.07); pointer-events: none; }
.esc-sec::after { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(201,168,76,.08) 0%, transparent 65%); pointer-events: none; }

/* W sekcji ciemnej override na jasny tekst */
.esc-sec .sec-t { color: var(--ink); }
.esc-sec .sec-s { color: var(--inks); }

.esc-header { margin-bottom: 48px; }
.esc-header .sec-s { margin-bottom: 0; }
@media (min-width: 768px) { .esc-header { max-width: 640px; } }
.esc-stages-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) { .esc-stages-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (min-width: 1000px) { .esc-stages-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.esc-stage-card { background: rgba(11,22,40,.7); border: 1px solid var(--ru); border-radius: 16px; overflow: hidden; transition: border-color .25s, transform .25s; display: flex; flex-direction: column; }
.esc-stage-card:hover { border-color: rgba(201,168,76,.25); transform: translateY(-4px); }
.esc-stage-card--gold { border-color: rgba(201,168,76,.25); background: rgba(15,24,46,.85); }
.esc-stage-card--gold:hover { border-color: rgba(201,168,76,.5); }
.esc-stage-img { position: relative; aspect-ratio: 3/4; background: linear-gradient(180deg, rgba(26,44,80,.8) 0%, rgba(6,13,26,.6) 100%); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--ru); overflow: hidden; }
.esc-stage-placeholder { width: 80px; height: 80px; opacity: .25; }
.esc-stage-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.esc-stage-card:hover .esc-stage-img img { transform: scale(1.03); }
.esc-stage-num { position: absolute; top: 14px; left: 14px; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--si); font-size: 13px; font-weight: 800; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.esc-stage-num--gray { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: var(--inks); }
.esc-stage-num--blue { background: rgba(48,104,204,.3); border: 1px solid rgba(48,104,204,.5); color: var(--bl); }
.esc-stage-num--gold { background: rgba(201,168,76,.3); border: 1px solid rgba(201,168,76,.5); color: var(--gold); }
.esc-stage-tag { position: absolute; top: 14px; right: 14px; font-family: var(--si); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.esc-stage-tag--auto { background: rgba(48,104,204,.25); border: 1px solid rgba(48,104,204,.3); color: #7ab3f0; }
.esc-stage-tag--gold { background: rgba(201,168,76,.2); border: 1px solid rgba(201,168,76,.3); color: var(--goldl); }
.esc-stage-body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.esc-stage-body h4 { font-family: var(--sf); font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
.esc-stage-card--gold .esc-stage-body h4 { color: var(--goldl); }
.esc-stage-body p { font-family: var(--si); font-size: 12px; color: var(--inks); line-height: 1.65; flex: 1; }
.esc-caption { margin-top: 20px; font-family: var(--si); font-size: 12px; color: var(--mu); text-align: center; line-height: 1.6; }
.esc-caption strong { color: var(--inks); }

/* ==========================================================================
   SECURITY — light, subtle tint
   ========================================================================== */
.why-sec { padding: 64px 0; position: relative; z-index: 2; background: var(--bg-tint); border-top: 1px solid var(--line-lt); border-bottom: 1px solid var(--line-lt); }
@media (min-width: 768px) { .why-sec { padding: 96px 0; } }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 600px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 18px; } }
.why-card { background: #fff; border: 1px solid var(--line-lt); border-radius: 14px; padding: 24px 22px; position: relative; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.04); transition: border-color .2s, transform .25s, box-shadow .25s; }
.why-card:hover { border-color: rgba(201,168,76,.3); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.06); }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: linear-gradient(to bottom, var(--gold) 0%, rgba(201,168,76,.1) 100%); opacity: 0; transition: opacity .2s; }
.why-card:hover::before { opacity: 1; }
.why-card-num { font-family: var(--sf); font-size: 2.6rem; font-weight: 700; color: rgba(201,168,76,.18); line-height: 1; letter-spacing: -.04em; position: absolute; top: 16px; right: 18px; }
.why-ico { width: 42px; height: 42px; border-radius: 10px; background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.25); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--goldd); }
.why-card h3 { font-family: var(--sf); font-size: 1.05rem; font-weight: 700; color: var(--ink-dk); margin-bottom: 8px; line-height: 1.3; }
.why-card p { font-family: var(--si); font-size: 14px; color: var(--ink-md); line-height: 1.7; }

/* ==========================================================================
   FAQ — light
   ========================================================================== */
.faq-sec { padding: 64px 0; position: relative; z-index: 2; background: var(--bg-light); }
@media (min-width: 768px) { .faq-sec { padding: 96px 0; } }
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.faq-item { background: #fff; border: 1px solid var(--line-lt); border-radius: 12px; overflow: hidden; box-shadow: 0 1px 6px rgba(0,0,0,.03); transition: border-color .15s, box-shadow .15s; }
.faq-item:hover { box-shadow: 0 4px 14px rgba(0,0,0,.05); }
.faq-item[open] { border-color: rgba(201,168,76,.4); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; cursor: pointer; user-select: none; font-family: var(--si); font-size: 14px; font-weight: 600; color: var(--ink-dk); line-height: 1.4; list-style: none; min-height: 56px; -webkit-tap-highlight-color: transparent; }
@media (min-width: 768px) { .faq-q { font-size: 15px; padding: 22px 24px; } }
.faq-q::-webkit-details-marker { display: none; }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: #f2f5fa; border: 1px solid var(--line-lt); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 300; color: var(--ink-md); line-height: 1; transition: background .15s, border-color .15s, transform .2s, color .15s; }
details[open] .faq-icon { background: rgba(201,168,76,.15); border-color: rgba(201,168,76,.4); color: var(--goldd); transform: rotate(45deg); }
.faq-a { margin: 0 20px; padding: 16px 0 22px; font-family: var(--si); font-size: 14px; color: var(--ink-md); line-height: 1.75; border-top: 1px solid var(--line-lt); }
@media (min-width: 768px) { .faq-a { margin: 0 24px; padding: 18px 0 24px; } }
.faq-a p + p { margin-top: 10px; }
.faq-a strong { color: var(--ink-dk); font-weight: 700; }
.faq-help { display: flex; flex-direction: column; gap: 10px; background: #f7faff; border: 1px solid var(--line-lt); border-radius: 12px; padding: 18px 20px; }
@media (min-width: 600px) { .faq-help { flex-direction: row; align-items: center; justify-content: space-between; padding: 20px 24px; } }
.faq-help p { font-family: var(--si); font-size: 14px; color: var(--ink-md); }
.faq-help a { font-family: var(--si); font-size: 14px; font-weight: 700; color: var(--goldd); text-decoration: none; padding: 4px 0; transition: color .15s; white-space: nowrap; }
.faq-help a:hover { color: var(--gold); }

/* ==========================================================================
   CTA (zakup) — CIEMNA sekcja zamknięcia
   ========================================================================== */
.cta-sec { padding: 64px 0 80px; position: relative; z-index: 2; background: var(--navy); color: var(--ink); overflow: hidden; }
@media (min-width: 768px) { .cta-sec { padding: 96px 0 112px; } }
.cta-sec::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1000px; height: 500px; background: radial-gradient(ellipse, rgba(201,168,76,.1) 0%, transparent 60%); pointer-events: none; }
.cta-block { background: linear-gradient(135deg, rgba(26,58,110,.5) 0%, rgba(11,22,40,.8) 100%); border: 1px solid rgba(201,168,76,.2); border-radius: 20px; padding: 44px 24px; text-align: center; position: relative; overflow: hidden; }
@media (min-width: 600px) { .cta-block { padding: 60px 48px; border-radius: 24px; } }
.cta-block::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 500px; height: 300px; background: radial-gradient(ellipse, rgba(201,168,76,.12) 0%, transparent 70%); pointer-events: none; }
.cta-block h2 { font-family: var(--sf); font-size: clamp(1.7rem, 6vw, 2.8rem); font-weight: 700; color: var(--ink); letter-spacing: -.03em; line-height: 1.15; margin-bottom: 14px; }
.cta-block > p { font-family: var(--si); font-size: 15px; color: var(--inks); line-height: 1.7; max-width: 480px; margin: 0 auto 28px; }
.cta-price { display: inline-flex; align-items: baseline; gap: 6px; margin-bottom: 28px; background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.2); border-radius: 50px; padding: 9px 26px; }
.cta-price-num { font-family: var(--sf); font-size: clamp(2rem, 6vw, 2.6rem); font-weight: 700; color: var(--gold); letter-spacing: -.04em; line-height: 1; }
.cta-price-per { font-family: var(--si); font-size: 14px; color: var(--mu); }
.cta-btns { display: flex; flex-direction: column; align-items: stretch; gap: 12px; max-width: 320px; margin: 0 auto; }
@media (min-width: 480px) { .cta-btns { flex-direction: row; justify-content: center; max-width: none; gap: 14px; } }
.cta-trust { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.cta-trust span { font-family: var(--si); font-size: 12px; color: var(--mu); display: flex; align-items: center; gap: 5px; }

/* ==========================================================================
   FOOTER — 1:1 z legacy.app + pozycja "Zaloguj do panelu GOLD"
   ========================================================================== */
.la-footer {
  position: relative; z-index: 2;
  background: #f6f5f5;
  padding: 44px 20px 28px;
  font-family: var(--si);
  color: #2e2e2e;
}
@media (min-width: 768px) { .la-footer { padding: 44px 32px 28px; } }
.la-footer-inner { max-width: 1134px; margin: 0 auto; }
.la-footer-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px; margin-bottom: 28px; align-items: start;
}
@media (min-width: 640px) { .la-footer-menu { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .la-footer-menu { grid-template-columns: 220px repeat(5, 1fr); gap: 40px; } }
.la-footer-logo img { height: 40px; width: auto; display: block; }
@media (min-width: 1000px) { .la-footer-logo img { height: 44px; } }
.la-footer-col h4 {
  font-family: var(--si); font-size: 12px; font-weight: 600;
  color: var(--ink-lt); text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 14px;
}
.la-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.la-footer-col a {
  font-family: var(--si); font-size: 14px; font-weight: 400;
  color: #2e2e2e; text-decoration: none;
  transition: color .15s;
}
.la-footer-col a:hover { color: var(--la-blue); }
.la-footer-col a.gold {
  color: var(--goldd); font-weight: 600;
  position: relative; padding-left: 14px;
  white-space: nowrap;
}
.la-footer-col a.gold::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
}
.la-footer-col a.gold:hover { color: #6b4f18; }

.la-footer-social { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.la-footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af; transition: color .15s, background .15s;
}
.la-footer-social a:hover { color: var(--la-blue); background: #fff; }

.la-footer-bottom {
  border-top: 1px solid #e0dede;
  padding-top: 20px;
  font-size: 13px; color: #9ca3af;
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
}

/* ==========================================================================
   REVEAL animacje
   ========================================================================== */
.reveal { opacity: 1; transform: none; }
.js-loaded .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.js-loaded .reveal.visible { opacity: 1; transform: translateY(0); }
.js-loaded .how-grid .reveal:nth-child(1) { transition-delay: 0s; }
.js-loaded .how-grid .reveal:nth-child(2) { transition-delay: .08s; }
.js-loaded .how-grid .reveal:nth-child(3) { transition-delay: .16s; }
.js-loaded .channels-grid .reveal:nth-child(1) { transition-delay: 0s; }
.js-loaded .channels-grid .reveal:nth-child(2) { transition-delay: .06s; }
.js-loaded .channels-grid .reveal:nth-child(3) { transition-delay: .12s; }
.js-loaded .channels-grid .reveal:nth-child(4) { transition-delay: .18s; }
.js-loaded .channels-grid .reveal:nth-child(5) { transition-delay: .24s; }
.js-loaded .channels-grid .reveal:nth-child(6) { transition-delay: .30s; }
.js-loaded .esc-stages-grid .reveal:nth-child(1) { transition-delay: 0s; }
.js-loaded .esc-stages-grid .reveal:nth-child(2) { transition-delay: .1s; }
.js-loaded .esc-stages-grid .reveal:nth-child(3) { transition-delay: .2s; }
.js-loaded .esc-stages-grid .reveal:nth-child(4) { transition-delay: .3s; }
.js-loaded .why-grid .reveal:nth-child(1) { transition-delay: 0s; }
.js-loaded .why-grid .reveal:nth-child(2) { transition-delay: .08s; }
.js-loaded .why-grid .reveal:nth-child(3) { transition-delay: .16s; }
.js-loaded .why-grid .reveal:nth-child(4) { transition-delay: .24s; }

@keyframes fadeUp  { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse   { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(.7); } }
@keyframes marquee { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@keyframes goldGlow { 0%,100% { box-shadow: 0 4px 32px rgba(201,168,76,.35); } 50% { box-shadow: 0 4px 48px rgba(201,168,76,.6), 0 0 0 4px rgba(201,168,76,.08); } }

/* ==========================================================================
   GOLD activation drawer — toggled w sekcji #cta
   ========================================================================== */
.gold-activation { text-align: center; margin-top: 14px; }

#gold-toggle-btn {
  background: none; border: none; cursor: pointer;
  color: var(--goldd);
  font-family: var(--si); font-size: 14px; font-weight: 600;
  padding: 8px 12px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: opacity 0.2s;
}
#gold-toggle-btn:hover { opacity: 0.75; }
#gold-toggle-btn .gold-chevron {
  display: inline-block;
  transition: transform 0.3s ease;
  font-style: normal; line-height: 1; font-size: 10px;
}
#gold-toggle-btn.open .gold-chevron { transform: rotate(180deg); }

#gold-drawer {
  overflow: hidden;
  max-height: 0; opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
#gold-drawer.open { max-height: 700px; opacity: 1; }

.gold-drawer-card {
  max-width: 480px; margin: 18px auto 0;
  padding: 28px 26px;
  background: #fff; border: 1px solid var(--line-lt);
  border-radius: 14px; text-align: left;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
}
.gold-drawer-desc {
  font-family: var(--si); font-size: 14px; color: var(--ink-md);
  margin: 0 0 22px; line-height: 1.6;
}
.gold-field { margin-bottom: 14px; }
.gold-field--last { margin-bottom: 22px; }
.gold-label {
  display: block;
  font-family: var(--si); font-size: 13px; font-weight: 500; color: var(--ink-dk);
  margin-bottom: 6px;
}
.gold-input {
  width: 100%; box-sizing: border-box;
  padding: 12px 14px;
  background: #fff; border: 1px solid var(--line-lt);
  border-radius: 8px; color: var(--ink-dk);
  font-family: var(--si); font-size: 15px; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.gold-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.18);
}
.gold-form-message {
  display: none;
  padding: 12px 14px; border-radius: 8px;
  font-family: var(--si); font-size: 14px; line-height: 1.5;
  margin-bottom: 14px;
}
.gold-form-message--success {
  background: #e9f7ef; color: #166534; border: 1px solid #bce5cd;
}
.gold-form-message--error {
  background: #fdecec; color: #b42318; border: 1px solid #f4c4c0;
}
.gold-submit {
  width: 100%; padding: 14px 24px;
  background: linear-gradient(135deg, var(--goldl) 0%, var(--gold) 60%);
  color: #3a2a00;
  font-family: var(--si); font-size: 15px; font-weight: 700;
  border: 1px solid rgba(138,101,32,.15); border-radius: 10px;
  cursor: pointer; letter-spacing: .02em;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}
.gold-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,.4); }
.gold-submit[disabled] { opacity: 0.6; cursor: default; transform: none; box-shadow: none; }
.gold-regulations {
  margin-top: 14px; font-family: var(--si); font-size: 12px; color: var(--ink-lt);
}
.gold-regulations a { color: var(--ink-lt); text-decoration: underline; }
.gold-regulations a:hover { color: var(--bm); }

/* ==========================================================================
   MOBILE — uproszczenie, idealne łamania linii, ukrycie zbędnych elementów
   ========================================================================== */
@media (max-width: 859px) {
  /* Login button ukryty na mobile — login dostępny w panelu hamburgera */
  .la-login-wrap { display: none; }
  /* Lang switcher kompaktowy */
  .la-nav-lang { margin-left: 0; padding: 6px 6px; }
  .la-nav-toggle { margin-left: 4px; }
}

@media (max-width: 767px) {
  /* Hero — zwarte, jeden ekran do CTA */
  .hero-light { padding: 28px 0 40px; }
  .hero-chip {
    font-size: 9.5px; padding: 5px 12px; letter-spacing: .1em;
    margin-bottom: 18px; max-width: 100%;
  }
  .hero-h1 { font-size: 1.85rem; line-height: 1.15; }
  .hero-h1 br { display: none; }
  .hero-divider { margin: 16px 0; width: 36px; height: 2px; }
  .hero-sub { font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
  .btn-gold-lg { padding: 14px 26px; font-size: 15px; width: 100%; justify-content: center; }
  .hero-trust {
    margin-top: 18px; gap: 10px 16px;
    flex-direction: row; flex-wrap: wrap;
  }
  .hero-trust span { font-size: 11px; }

  /* Karta "7 dni" — kompaktowa, frost glass widoczny nad gold-blob */
  .hero-right-light { gap: 0; }
  .stat-card--banner { padding: 18px 20px; }
  .stat-card--banner .stat-num { font-size: 1.9rem; }
  .stat-card--banner .stat-label { font-size: 10.5px; }

  /* Sekcje — mniejszy padding pionowy, lepsze marginesy w sec-* */
  .how-sec, .op-sec, .channels-sec { padding: 44px 0; }
  .esc-sec { padding: 52px 0; }
  .sec-ey { margin-bottom: 14px; font-size: 10px; }
  .sec-t { margin-bottom: 16px; }
  .sec-s { margin-bottom: 32px; font-size: 14px; }

  /* Marquee — wolniej + większy gap */
  .marquee-track { animation-duration: 35s; gap: 24px; }
  .marquee-item { font-size: 13px; }

  /* "Plan awaryjny" — bez dużych ikon na mobile, tylko tekst + nr etapu */
  .esc-stage-img { display: none; }
  .esc-stage-card { padding: 16px 18px 18px; }
  .esc-stage-body { padding: 0; }
  .esc-stage-body h4 { font-size: 16px; margin-bottom: 6px; }
  .esc-stage-body p { font-size: 13px; line-height: 1.55; }

  /* Footer — czytelniejszy */
  .la-footer-bottom { font-size: 11px; }
}

/* Tablet 768–899px: jeszcze bez prawej kolumny pełnej, ale z większą przestrzenią */
@media (min-width: 768px) and (max-width: 899px) {
  .hero-h1 br { display: none; }
  .hero-trust { gap: 14px; }
}

/* ==========================================================================
   Closed-funnel nav: primary "Buy" button + secondary GOLD-panel link
   ========================================================================== */
.la-nav-cta {
  display: inline-flex; align-items: center; margin-left: 10px;
  background: linear-gradient(135deg, var(--goldl) 0%, var(--gold) 60%);
  color: #3a2a00; font-family: var(--si); font-size: 14px; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  padding: 10px 20px; border-radius: 10px;
  border: 1px solid rgba(138,101,32,.15);
  box-shadow: 0 4px 16px rgba(201,168,76,.4);
  transition: transform .15s, box-shadow .15s;
}
.la-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(201,168,76,.5); }
.la-nav-panel-link {
  font-family: var(--si); font-size: 13px; font-weight: 500;
  color: var(--ink-lt); text-decoration: none; white-space: nowrap;
  margin-left: 14px; padding: 8px 10px; border-radius: 8px;
  transition: color .15s, background .15s;
}
.la-nav-panel-link:hover { color: var(--la-blue); background: #f5f7fb; }
.la-nav-panel .la-nav-panel-cta { color: var(--goldd); font-weight: 700; }

@media (max-width: 859px) {
  /* Top bar stays minimal on mobile — buying lives in the hamburger + sticky bar */
  .la-nav-cta, .la-nav-panel-link { display: none; }
}

/* ==========================================================================
   Definition line under the hero (plain "X is Y" for AI overviews)
   ========================================================================== */
.gold-def-wrap { position: relative; z-index: 3; padding: 4px 0 8px; }
.gold-def {
  max-width: 860px; margin: 0 auto; padding: 0 20px;
  font-family: var(--si); font-size: 15px; line-height: 1.7;
  color: var(--bm); text-align: center;
}
@media (min-width: 768px) { .gold-def { font-size: 16px; } }

/* ==========================================================================
   Sticky mobile CTA bar — strongest mobile conversion pattern
   ========================================================================== */
.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  backdrop-filter: blur(14px) saturate(180%);
  border-top: 1px solid var(--line-lt);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.sticky-cta a {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, var(--goldl) 0%, var(--gold) 60%);
  color: #3a2a00; font-family: var(--si); font-size: 16px; font-weight: 700;
  text-decoration: none; padding: 14px; border-radius: 12px;
  border: 1px solid rgba(138,101,32,.15);
}
@media (max-width: 767px) {
  .sticky-cta { display: block; }
  /* leave room so the bar never covers the footer's last line */
  .la-footer { padding-bottom: 90px; }
}
