/* ===========================
  7LEADERS – PREMIUM CSS
  =========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #7C3AED;
  --primary-dark:  #5B21B6;
  --primary-light: #A78BFA;
  --secondary:     #3B82F6;
  --primary-rgb:   124,58,237;
  --secondary-rgb: 59,130,246;
  --bg:            #090a0f;
  --bg-2:          #0c0d14;
  --bg-3:          #10111a;
  --bg-card:       rgba(255,255,255,0.03);
  --bg-card-h:     rgba(255,255,255,0.06);
  --border:        rgba(255,255,255,0.08);
  --border-h:      rgba(255,255,255,0.14);
  --white:         #ffffff;
  --light:         #e2e8f0;
  --muted:         #94a3b8;
  --grad-orange:   linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --shadow-btn:    0 4px 20px rgba(var(--primary-rgb),0.35);
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --ease:  cubic-bezier(.4,0,.2,1);
  --t:     all 0.3s var(--ease);
  --max-w: 1200px;
  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(var(--primary-rgb),.3); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ── CONTAINER ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── SECTION ── */
.section { padding: 100px 0; }

/* ── TYPOGRAPHY ── */
.gradient-text {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  background: rgba(var(--primary-rgb),.1);
  border: 1px solid rgba(var(--primary-rgb),.28);
  color: var(--primary);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}
.tag-red   { background:rgba(255,60,60,.08);  border-color:rgba(255,60,60,.25);  color:#FF5757; }
.tag-white { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.18); color:#fff; }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: .9rem;
}

.section-subtitle,
.section-desc {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 1rem;
}

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.cta-center { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: .88rem; letter-spacing: .03em; text-transform: uppercase;
  text-decoration: none; border: none; border-radius: var(--r-sm);
  cursor: pointer; transition: var(--t); white-space: nowrap;
  padding: 12px 24px;
}
.btn svg { transition: transform .2s; flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--grad-orange); color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { filter: brightness(1.12); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(var(--primary-rgb),.50); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.2);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

.btn-lg  { padding: 15px 30px; font-size: .95rem; }
.btn-xl  { padding: 18px 36px; font-size: 1rem; letter-spacing: .04em; }
.btn-full { width: 100%; }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: var(--t);
}
.navbar.scrolled { background: rgba(7,7,7,.97); box-shadow: 0 4px 28px rgba(0,0,0,.55); }

.nav-container {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 36px;
}

.logo { text-decoration: none; display: flex; align-items: center; gap: 1px; flex-shrink: 0; }
.logo-img { display: block; height: 28px; width: auto; }
.footer-logo .logo-img { height: 34px; }
.logo-number { font-size: 1.9rem; font-weight: 900; color: var(--primary); line-height: 1; letter-spacing: -.05em; }
.logo-text   { font-size: 1.1rem; font-weight: 900; color: #fff; letter-spacing: .09em; text-transform: uppercase; }
.footer-logo .logo-number { font-size: 2.2rem; }
.footer-logo .logo-text   { font-size: 1.3rem; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin-left: auto; }

.nav-link {
  color: var(--muted); text-decoration: none; font-size: .88rem;
  font-weight: 500; padding: 8px 13px; border-radius: var(--r-sm);
  transition: var(--t);
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.06); }
.nav-link.active { color: var(--primary); }

.nav-cta { padding: 9px 20px; font-size: .83rem; flex-shrink: 0; }

.hamburger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 26px; height: 19px; cursor: pointer; background: none; border: none;
  padding: 0; margin-left: auto;
}
.hamburger span { display: block; width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: var(--t); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh; padding-top: var(--nav-h);
  display: flex; align-items: center; position: relative; overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(var(--primary-rgb),.065) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 15% 85%, rgba(var(--primary-rgb),.04) 0%, transparent 60%);
}

.hero-bg-glow {
  position: absolute; top: -15%; right: -8%; width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb),.09) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 7s ease-in-out infinite alternate;
}
@keyframes glowPulse { from { opacity:.5; transform:scale(1); } to { opacity:1; transform:scale(1.12); } }

.hero .container { position: relative; z-index: 2; padding: 80px 24px 80px; }

.hero-inner {
  max-width: 760px; margin: 0 auto; text-align: center;
  animation: fadeUp .8s ease forwards;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }

.edition-badge {
  display: inline-flex; align-items: center;
  background: var(--grad-orange); color: #fff;
  font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 20px; border-radius: 100px; margin-bottom: .55rem;
  box-shadow: 0 4px 18px rgba(var(--primary-rgb),.4);
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse { 0%,100% { box-shadow:0 4px 18px rgba(var(--primary-rgb),.4); } 50% { box-shadow:0 4px 28px rgba(var(--primary-rgb),.65); } }

.edition-dates {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin: 0 auto 1.25rem;
}

.hero-title {
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -.035em;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.1rem; color: var(--muted); line-height: 1.75;
  margin: 0 auto .85rem; max-width: 660px;
}
.hero-subtitle strong { color: var(--white); }

.hero-tagline {
  font-size: 1.02rem;
  font-weight: 700;
  color: rgba(255,255,255,.72);
  margin: 0 auto 2rem;
  max-width: 660px;
}

/* Stats */
.hero-stats {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0; margin-bottom: 2.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.stat-item { padding: 20px 28px; text-align: center; }
.stat-number { display: block; font-size: 1.6rem; font-weight: 900; color: var(--primary); letter-spacing: -.02em; line-height: 1; margin-bottom: 4px; }
.stat-label  { display: block; font-size: .72rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: .05em; }
.stat-divider { width: 1px; align-self: stretch; background: var(--border); }

.hero-funnel {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 10px;
  margin: -1.6rem auto 1.75rem;
  max-width: 760px;
}
.hero-funnel-label {
  font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.hero-funnel-step {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 12px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--light);
}
.hero-funnel-sep { color: rgba(255,255,255,.25); font-weight: 700; }

.hero-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 1.75rem; }

.hero-urgency {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(var(--primary-rgb),.08); border: 1px solid rgba(var(--primary-rgb),.2);
  border-radius: 100px; padding: 8px 18px;
  font-size: .82rem; color: var(--light);
}
.urgency-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0;
  animation: dotBlink 1.3s ease-in-out infinite;
}
@keyframes dotBlink { 0%,100% { opacity:1; } 50% { opacity:.3; } }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--muted); font-size: .73rem; letter-spacing: .05em; cursor: pointer;
  transition: var(--t);
}
.hero-scroll:hover { color: #fff; }
.scroll-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--primary);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100% { transform:translateY(0); opacity:1; } 50% { transform:translateY(7px); opacity:.4; } }

/* Marketplace Club */
.marketplace-club-section { background: var(--bg-2); }

/* ══════════════════════════════
   TRUSTED BAR
══════════════════════════════ */
.trusted-bar {
  background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trusted-bar .container { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.trusted-label { font-size: .73rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.trusted-logos { display: flex; gap: 36px; flex-wrap: wrap; align-items: center; justify-content: center; }
.trusted-logo { display: inline-flex; align-items: center; justify-content: center; cursor: default; }
.trusted-logo img { height: 22px; width: auto; opacity: 1; filter: none; transition: var(--t); }
.trusted-logo:hover img { opacity: 1; filter: none; }

/* ══════════════════════════════
   O NAS
══════════════════════════════ */
.o-nas { background: var(--bg); }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 2rem; }
.feature-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: .93rem; color: var(--light); font-weight: 500;
}
.feature-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(var(--primary-rgb),.1); border: 1px solid rgba(var(--primary-rgb),.2);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}

/* Visual card stack */
.col-visual { display: flex; justify-content: center; align-items: center; }

.visual-card-stack { position: relative; width: 340px; height: 420px; }

.v-card {
  position: absolute; border-radius: var(--r-xl);
  border: 1px solid var(--border);
}
.v-card-back {
  width: 310px; height: 380px; right: -12px; bottom: -12px;
  background: rgba(var(--primary-rgb),.04);
  transform: rotate(4deg);
}
.v-card-mid {
  width: 325px; height: 395px; right: -6px; bottom: -6px;
  background: rgba(var(--primary-rgb),.07);
  transform: rotate(2deg);
}
.v-card-front {
  width: 340px; height: 410px; right: 0; bottom: 0;
  background: var(--bg-card);
  border-color: rgba(var(--primary-rgb),.18);
  padding: 28px;
  display: flex; flex-direction: column; gap: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  animation: cardFloat 5s ease-in-out infinite alternate;
}
@keyframes cardFloat { from { transform:translateY(0); } to { transform:translateY(-10px); } }

.v-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.v-card-logo { font-size: 2rem; font-weight: 900; color: var(--primary); letter-spacing: -.05em; }
.v-card-badge {
  background: rgba(var(--primary-rgb),.15); border: 1px solid rgba(var(--primary-rgb),.3);
  color: var(--primary); font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
}
.v-card-title { font-size: 1.6rem; font-weight: 900; line-height: 1.15; letter-spacing: -.03em; margin-bottom: 6px; }
.v-card-sub { font-size: .8rem; color: var(--muted); margin-bottom: 24px; }
.v-card-stats {
  display: flex; gap: 20px; margin-bottom: 24px;
  padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.v-card-stats div { display: flex; flex-direction: column; gap: 2px; }
.v-card-stats strong { font-size: 1.4rem; font-weight: 900; color: var(--primary); line-height: 1; }
.v-card-stats span { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.v-card-avatars { display: flex; gap: -6px; margin-bottom: 8px; }
.v-avatar {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800; color: #fff;
  margin-left: -8px;
}
.v-avatar:first-child { margin-left: 0; }
.v-avatar.more { background: rgba(255,255,255,.1); color: var(--muted); font-size: .65rem; }
.v-card-members { font-size: .75rem; color: var(--muted); }

/* ══════════════════════════════
   DLA KOGO
══════════════════════════════ */
.dla-kogo-section { background: var(--bg-2); }

.dla-kogo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 60px;
}

.dk-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px; transition: var(--t); position: relative; overflow: hidden;
}
.dk-card::before {
  content: ''; position: absolute; inset-inline: 0; top: 0; height: 2px;
  background: var(--grad-orange); opacity: 0; transition: opacity .3s;
}
.dk-card:hover { border-color: rgba(var(--primary-rgb),.2); background: var(--bg-card-h); transform: translateY(-4px); box-shadow: 0 14px 38px rgba(0,0,0,.35); }
.dk-card:hover::before { opacity: 1; }

.dk-icon { font-size: 1.8rem; margin-bottom: 14px; }
.dk-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.dk-card p  { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* Nie dla kogo */
.nie-dla-kogo {
  margin-top: 72px; padding-top: 64px; border-top: 1px solid var(--border);
}
.ndk-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.ndk-card {
  background: rgba(255,60,60,.04); border: 1px solid rgba(255,60,60,.12);
  border-radius: var(--r-lg); padding: 28px; transition: var(--t);
}
.ndk-card:hover { border-color: rgba(255,60,60,.25); transform: translateY(-3px); }
.ndk-icon { font-size: 1.5rem; margin-bottom: 12px; color: #FF5757; }
.ndk-card h3 { font-size: .92rem; font-weight: 700; color: #FF7070; margin-bottom: 8px; line-height: 1.3; }
.ndk-card p  { font-size: .84rem; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════
   BENEFITY / AGENDA
══════════════════════════════ */
.benefity { background: var(--bg); }

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.agenda-item {
  background: var(--bg-card); padding: 28px; transition: var(--t);
  position: relative;
}
.agenda-item:hover { background: var(--bg-card-h); z-index: 1; }
.agenda-item.featured { background: rgba(var(--primary-rgb),.06); border-color: rgba(var(--primary-rgb),.15); }
.agenda-item.featured::after {
  content: '★ Wyróżnione'; position: absolute; top: 14px; right: 14px;
  background: rgba(var(--primary-rgb),.18); color: var(--primary);
  font-size: .68rem; font-weight: 700; padding: 3px 10px; border-radius: 100px;
  letter-spacing: .05em; text-transform: uppercase;
}

.agenda-num {
  font-size: 2.4rem; font-weight: 900; color: rgba(255,255,255,.92);
  line-height: 1; letter-spacing: -.05em; margin-bottom: 12px;
}
.agenda-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.agenda-month { font-size: .7rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .07em; }

.agenda-type {
  font-size: .68rem; font-weight: 700; padding: 3px 9px; border-radius: 100px;
  letter-spacing: .05em; text-transform: uppercase;
}
.agenda-type.online    { background:rgba(59,130,246,.15);  color:#60A5FA; }
.agenda-type.mastermind{ background:rgba(139,92,246,.15);  color:#A78BFA; }
.agenda-type.live      { background:rgba(var(--primary-rgb),.18);   color:var(--primary); }
.agenda-type.szkolenie { background:rgba(16,185,129,.15);  color:#34D399; }
.agenda-type.finał     { background:rgba(234,179,8,.15);   color:#FBBF24; }

.agenda-body h3 { font-size: .95rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }

.agenda-points { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.agenda-points li {
  font-size: .82rem; color: var(--muted); line-height: 1.5;
  padding-left: 14px; position: relative;
}
.agenda-points li::before {
  content: '•'; position: absolute; left: 0; color: var(--primary); font-size: .8rem;
}

/* ══════════════════════════════
   GALERIA
══════════════════════════════ */
.galeria-section { background: var(--bg-2); }

.galeria-feature { display: flex; justify-content: center; }
.galeria-feature .galeria-item { width: min(520px, 100%); }

.galeria-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.galeria-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.galeria-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

.galeria-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.galeria-item {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border); transition: var(--t);
  cursor: pointer;
  background: var(--bg-card);
  aspect-ratio: 16 / 9;
}
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.galeria-item--rect { aspect-ratio: 16 / 9; }
.galeria-item--square { aspect-ratio: 1 / 1; }
.galeria-item:hover { border-color: rgba(var(--primary-rgb),.25); transform: scale(1.02); background: var(--bg-card-h); }

.galeria-placeholder {
  background: transparent;
  height: 100%; width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; transition: var(--t);
}
.g-big .galeria-placeholder { height: 100%; }

.gp-icon { font-size: 2.2rem; }
.galeria-placeholder span { font-size: .8rem; color: var(--muted); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }

/* ══════════════════════════════
   REKRUTACJA + EKSPERCI
══════════════════════════════ */
.rekrutacja { background: var(--bg); }

.steps-list { display: flex; flex-direction: column; }
.step-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--border); transition: var(--t);
}
.step-item:last-child { border-bottom: none; }
.step-item:hover .step-number { background: var(--primary); color: #fff; border-color: var(--primary); }

.step-number {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid rgba(var(--primary-rgb),.3); color: var(--primary);
  font-weight: 800; font-size: .82rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.step-content h4 { font-size: .92rem; font-weight: 700; margin-bottom: 4px; }
.step-content p  { font-size: .84rem; color: var(--muted); line-height: 1.6; }
.step-content p strong { color: var(--white); }

/* Eksperci box */
.col-right-visual { display: flex; align-items: flex-start; }

.eksperci-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 36px; width: 100%;
}
.eksperci-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; }
.eksperci-desc  { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }

.ekspert-list { display: flex; flex-direction: column; gap: 16px; }
.ekspert-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px; border-radius: var(--r-md);
  border: 1px solid var(--border); background: rgba(255,255,255,.02);
  transition: var(--t);
}
.ekspert-item:hover { border-color: rgba(var(--primary-rgb),.2); background: rgba(var(--primary-rgb),.03); }

.ekspert-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; font-weight: 900; color: #fff;
  overflow: hidden;
}
.ekspert-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ekspert-info { display: flex; flex-direction: column; gap: 1px; }
.ekspert-info strong { font-size: .9rem; font-weight: 700; color: var(--white); }
.ekspert-info span   { font-size: .75rem; color: var(--primary); font-weight: 600; }
.ekspert-info em     { font-size: .75rem; color: var(--muted); font-style: normal; }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-section { background: var(--bg-2); }

.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden; transition: border-color .3s;
}
.faq-item.open { border-color: rgba(var(--primary-rgb),.25); }

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px;
  background: none; border: none; cursor: pointer; text-align: left;
  color: var(--white); font-size: .97rem; font-weight: 600; font-family: 'Inter', sans-serif;
  transition: var(--t);
}
.faq-question:hover { background: rgba(255,255,255,.03); }
.faq-item.open .faq-question { background: rgba(var(--primary-rgb),.04); }

.faq-icon {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: var(--t);
}
.faq-item.open .faq-icon { background: rgba(var(--primary-rgb),.15); color: var(--primary); transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); padding: 0 24px; }
.faq-answer p { padding-bottom: 20px; font-size: .9rem; color: var(--muted); line-height: 1.7; }
.faq-answer p strong { color: var(--white); }
.faq-item.open .faq-answer { max-height: 600px; }

/* ══════════════════════════════
   KAWA SECTION
══════════════════════════════ */
.kawa-section { background: var(--bg); }

.kawa-wrapper {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 60px;
  display: flex; align-items: center; gap: 60px;
}

.kawa-content { flex: 1; }
.kawa-content .section-title { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: .75rem; }

.kawa-cards { display: flex; flex-direction: column; gap: 16px; flex-shrink: 0; min-width: 280px; }

.kawa-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px 20px; transition: var(--t);
}
.kawa-card:hover { border-color: rgba(var(--primary-rgb),.2); }

.kawa-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 900; color: #fff;
  overflow: hidden;
}
.kawa-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kawa-info { flex: 1; }
.kawa-info strong { display: block; font-size: .92rem; font-weight: 700; }
.kawa-info span   { font-size: .76rem; color: var(--muted); }

.kawa-card .btn { padding: 8px 16px; font-size: .75rem; flex-shrink: 0; }
.kawa-card .btn svg { flex-shrink: 0; }

/* ══════════════════════════════
   CTA BANNER
══════════════════════════════ */
.cta-banner {
  background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.cta-banner-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-banner-text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800; line-height: 1.3; max-width: 560px;
}
.cta-banner .btn { flex-shrink: 0; }

/* ══════════════════════════════
   FORMULARZ
══════════════════════════════ */
.form-section { background: var(--bg); position: relative; overflow: hidden; }
.form-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 65% 50% at 50% 0%, rgba(var(--primary-rgb),.055) 0%, transparent 70%);
}

.form-wrapper { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.form-header { text-align: center; margin-bottom: 44px; }
.form-header .section-subtitle { margin: 0 auto 1.5rem; }

.form-price-box {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  background: rgba(var(--primary-rgb),.08); border: 1.5px solid rgba(var(--primary-rgb),.25);
  border-radius: var(--r-md); padding: 16px 28px; margin-top: .5rem;
}
.price-label  { font-size: .75rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.price-amount { font-size: 2rem; font-weight: 900; color: var(--primary); letter-spacing: -.03em; line-height: 1; }
.price-note   { font-size: .75rem; color: var(--primary); font-weight: 600; }

.application-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 48px;
  display: flex; flex-direction: column; gap: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label { font-size: .8rem; font-weight: 600; color: var(--light); letter-spacing: .02em; }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(255,255,255,.08);
  border-radius: var(--r-sm); color: var(--white); font-family: 'Inter', sans-serif;
  font-size: .93rem; padding: 13px 15px; outline: none; width: 100%;
  transition: var(--t); -webkit-appearance: none; appearance: none;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}
.form-group select option { background: #1a1a1a; color: #fff; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.18); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(var(--primary-rgb),.5);
  background: rgba(var(--primary-rgb),.04);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.08);
}
.form-group input.error { border-color: rgba(255,80,80,.5) !important; }
.form-group textarea { resize: vertical; min-height: 105px; }

.checkbox-group { gap: 0; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; font-size: .83rem; color: var(--muted); line-height: 1.6;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkmark {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  border: 2px solid rgba(255,255,255,.15); border-radius: 4px;
  background: transparent; transition: var(--t); position: relative;
}
.checkbox-label input:checked ~ .checkmark { background: var(--primary); border-color: var(--primary); }
.checkbox-label input:checked ~ .checkmark::after {
  content: ''; position: absolute; left: 5px; top: 1px;
  width: 6px; height: 11px; border: 2px solid #fff;
  border-top: none; border-left: none; transform: rotate(45deg);
}
.checkbox-label a { color: var(--primary); text-decoration: underline; }

/* Messages */
.form-success, .form-error-box {
  border-radius: var(--r-md); padding: 28px; margin-bottom: 24px; text-align: center;
}
.form-success { background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.2); }
.success-icon { font-size: 2.5rem; margin-bottom: 10px; }
.form-success h3 { font-size: 1.2rem; font-weight: 800; color: #4ade80; margin-bottom: 6px; }
.form-success p { color: var(--muted); }

.form-error-box {
  background: rgba(255,70,70,.07); border: 1px solid rgba(255,70,70,.2);
  color: #FF7070; text-align: left;
}
.form-error-box ul { padding-left: 18px; margin-top: 8px; font-size: .85rem; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 72px 0 0; }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
}

.footer-brand p { font-size: .86rem; color: var(--muted); line-height: 1.7; max-width: 270px; margin: 14px 0 18px; }

.footer-contact-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); text-decoration: none; font-size: .83rem; transition: var(--t);
}
.footer-contact-link:hover { color: var(--primary); }

.footer-nav h4, .footer-legal-col h4 {
  font-size: .78rem; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px;
}

.footer-nav ul, .footer-legal-col ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.footer-nav a, .footer-legal-col a {
  color: var(--muted); text-decoration: none; font-size: .86rem; transition: var(--t);
}
.footer-nav a:hover, .footer-legal-col a:hover { color: var(--primary); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .8rem; color: var(--muted); }
.footer-creators strong { color: var(--light); }

/* ══════════════════════════════
   ANIMATIONS / AOS
══════════════════════════════ */
[data-aos] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos][data-aos-delay="60"]  { transition-delay: 60ms; }
[data-aos][data-aos-delay="120"] { transition-delay: 120ms; }
[data-aos][data-aos-delay="150"] { transition-delay: 150ms; }
[data-aos][data-aos-delay="180"] { transition-delay: 180ms; }
[data-aos][data-aos-delay="240"] { transition-delay: 240ms; }
[data-aos][data-aos-delay="300"] { transition-delay: 300ms; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
  .agenda-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .visual-card-stack { width: 300px; height: 370px; }
  .v-card-front { width: 300px; height: 370px; }
  .dla-kogo-grid { grid-template-columns: repeat(2, 1fr); }
  .ndk-grid { grid-template-columns: repeat(2, 1fr); }
  .kawa-wrapper { flex-direction: column; padding: 40px 24px; }
  .kawa-cards { flex-direction: column; width: 100%; gap: 14px; }
  .kawa-card { flex-wrap: nowrap; width: 100%; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-text h2 { max-width: 100%; }
  .galeria-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 70px 0; }

  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(8,8,8,.98); backdrop-filter: blur(22px);
    padding: 16px 20px 28px; gap: 2px;
    border-bottom: 1px solid var(--border); z-index: 999;
  }
  .nav-links.open .nav-link { padding: 13px 16px; font-size: .95rem; }
  .hamburger { display: flex; }

  .hero .container { padding: 40px 20px 70px; }
  .hero-title { font-size: clamp(2rem, 7.5vw, 2.8rem); }
  .hero-stats { flex-wrap: wrap; }
  .stat-item { flex: 1; min-width: 100px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }

  .dla-kogo-grid { grid-template-columns: 1fr; }
  .ndk-grid { grid-template-columns: 1fr; }
  .agenda-grid { grid-template-columns: 1fr; }
  .galeria-layout { grid-template-columns: 1fr; }
  .galeria-pair { grid-template-columns: 1fr; }
  .galeria-strip { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .application-form { padding: 28px 20px; border-radius: var(--r-lg); }
  .form-row { grid-template-columns: 1fr; }

  .kawa-cards { flex-direction: column; width: 100%; }
  .kawa-card { flex-wrap: wrap; width: 100%; }
  .kawa-card .btn {
    margin-left: auto;
    margin-top: 8px;
  }

  .eksperci-box { padding: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; align-self: auto; }
  .cta-banner { padding: 44px 0; }
  .application-form { padding: 22px 14px; }
  .btn {
    white-space: normal;
    text-align: center;
  }
}

/* ══════════════════════════════
   VSL SECTION
══════════════════════════════ */
.vsl-section { background: var(--bg-2); position: relative; overflow: hidden; }
.vsl-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(var(--primary-rgb),.06) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 85% 80%, rgba(139,92,246,.04) 0%, transparent 60%);
}

.vsl-header { text-align: center; margin-bottom: 52px; }
.vsl-header .section-subtitle { margin: 0 auto; }

/* Player */
.vsl-player-wrap {
  max-width: 860px; margin: 0 auto 64px;
  position: relative;
}

.vsl-player {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-xl);
  background: #0D0D0D;
  border: 1px solid rgba(var(--primary-rgb),.22);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(var(--primary-rgb),.08),
    0 30px 80px rgba(0,0,0,.7),
    0 0 60px rgba(var(--primary-rgb),.07);
}

.vsl-player iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}

.vsl-glow {
  position: absolute; inset: -20%; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse 55% 45% at 50% 50%, rgba(var(--primary-rgb),.08) 0%, transparent 70%);
  animation: vslGlowPulse 4s ease-in-out infinite alternate;
}
@keyframes vslGlowPulse {
  from { opacity: .5; transform: scale(.95); }
  to   { opacity: 1;  transform: scale(1.05); }
}

/* Placeholder (before video is added) */
.vsl-placeholder {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; gap: 18px;
  background:
    linear-gradient(160deg, rgba(var(--primary-rgb),.04) 0%, rgba(0,0,0,0) 60%),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.012) 0px,
      rgba(255,255,255,.012) 1px,
      transparent 1px,
      transparent 28px
    );
}

.vsl-play-ring {
  width: 96px; height: 96px; border-radius: 50%;
  border: 2px solid rgba(var(--primary-rgb),.35);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: playRingPulse 2.5s ease-in-out infinite;
}
.vsl-play-ring::before {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(var(--primary-rgb),.15);
  animation: playRingPulse 2.5s ease-in-out infinite .5s;
}
@keyframes playRingPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb),.2); }
  50%      { box-shadow: 0 0 0 14px rgba(var(--primary-rgb),0); }
}

.vsl-play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--grad-orange);
  border: none; cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
  box-shadow: 0 8px 28px rgba(var(--primary-rgb),.45);
}
.vsl-play-btn:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(var(--primary-rgb),.6); }
.vsl-play-btn svg { margin-left: 3px; }

.vsl-coming-label {
  font-size: 1rem; font-weight: 700; color: var(--light);
  letter-spacing: .02em;
}
.vsl-duration {
  font-size: .8rem; color: var(--muted);
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 100px;
}

/* Bullets grid */
.vsl-bullets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
}

.vsl-bullet-item {
  background: var(--bg-card);
  padding: 28px 26px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: var(--t);
}
.vsl-bullet-item:hover { background: var(--bg-card-h); }

.vsl-bullet-num {
  font-size: 1.8rem; font-weight: 900; color: rgba(var(--primary-rgb),.18);
  line-height: 1; letter-spacing: -.05em; flex-shrink: 0;
  margin: 0 0 10px;
}
.vsl-bullet-body h4 {
  font-size: .92rem; font-weight: 700; margin-bottom: 6px; line-height: 1.3;
}
.vsl-bullet-body p {
  font-size: .82rem; color: var(--muted); line-height: 1.6;
}
.vsl-bullet-body ul {
  margin: 0;
  padding-left: 0;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
  list-style-position: inside;
  text-align: left;
  display: inline-block;
}
.vsl-bullet-body li { margin: 0; }

/* ══════════════════════════════
   PROBLEMY / TEMATY SECTION
══════════════════════════════ */
.problemy-section { background: var(--bg-3); position: relative; overflow: hidden; }
.problemy-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 35% at 20% 50%, rgba(var(--primary-rgb),.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 50%, rgba(139,92,246,.03) 0%, transparent 60%);
}

.problemy-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 10px;
  position: relative; z-index: 1;
}
.problemy-grid { scrollbar-width: none; }
.problemy-grid::-webkit-scrollbar { display: none; }

.problemy-carousel { position: relative; }
.problemy-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(10,10,10,.78);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  cursor: pointer;
  z-index: 3;
}
.problemy-carousel-btn.prev { left: 6px; }
.problemy-carousel-btn.next { right: 6px; }
.problemy-carousel-btn:active { transform: translateY(-50%) scale(.98); }

.problemy-grid .problem-card {
  flex: 0 0 calc((100% - 28px) / 3);
  scroll-snap-align: start;
}

.problem-card {
  border-radius: var(--r-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--t);
  position: relative; overflow: hidden;
  min-width: 0;
}
.problem-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--grad-orange); opacity: 0; transition: opacity .3s;
}
.problem-card:hover {
  border-color: rgba(var(--primary-rgb),.22);
  background: var(--bg-card-h);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.problem-card:hover::before { opacity: 1; }

.problem-card-inner { padding: 26px; }

.problem-icon {
  font-size: 1.75rem; margin-bottom: 12px; display: block;
}
.problem-num {
  font-size: 2.2rem; font-weight: 900;
  color: rgba(255,255,255,.92); line-height: 1;
  letter-spacing: -.05em; margin-bottom: 12px;
}
.problem-card h3 {
  font-size: 1.0rem; font-weight: 800; margin-bottom: 10px;
  line-height: 1.25; letter-spacing: -.02em;
}
.problem-card > .problem-card-inner > p {
  font-size: .86rem; color: var(--muted); line-height: 1.65; margin-bottom: 18px;
}

.problem-solution {
  margin-top: 20px;
  background: rgba(var(--primary-rgb),.06);
  border: 1px solid rgba(var(--primary-rgb),.15);
  border-radius: var(--r-md);
  padding: 16px 18px;
}
.problem-solution-tag {
  display: inline-block;
  font-size: .67rem; font-weight: 800;
  color: var(--primary); text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 6px;
}
.problem-solution p {
  font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.6;
  margin: 0 !important;
}

@media (max-width: 960px) {
  .problemy-grid .problem-card { flex-basis: 86%; }
}

/* ══════════════════════════════
   FORM SECTION LABEL
══════════════════════════════ */
.form-section-label {
  font-size: .7rem; font-weight: 800;
  color: var(--primary); text-transform: uppercase; letter-spacing: .12em;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(var(--primary-rgb),.15);
}

/* ══════════════════════════════
   RESPONSIVE – NEW SECTIONS
══════════════════════════════ */
@media (max-width: 1100px) {
  .vsl-bullets-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .vsl-bullets-grid { grid-template-columns: 1fr; }
  .vsl-bullet-item { padding: 22px 20px; }
  .vsl-player { border-radius: var(--r-lg); }
  .vsl-play-ring { width: 76px; height: 76px; }
  .vsl-play-btn  { width: 56px; height: 56px; }

  .problemy-grid .problem-card { flex-basis: 92%; }
  .problem-card-inner { padding: 24px 20px; }
}
