/* ========================================================================
   EXPERT METHOD - Landing page
   Brand: Dark / Premium (świadome odejście od głównego brandu Apple Light)
   Akcent: Apple Blue #0066CC (zachowana sygnatura Macieja)
   ======================================================================== */

:root {
  /* Background palette - dark */
  --bg-primary: #0F1012;
  --bg-secondary: #161719;
  --bg-subtle: #1A1B1E;
  --bg-elevated: #1F2024;

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.48);
  --text-faint: rgba(255, 255, 255, 0.32);

  /* Accent - Apple Blue sygnatura */
  --accent: #0066CC;
  --accent-hover: #0077E6;
  --accent-glow: rgba(0, 102, 204, 0.4);
  --accent-glow-soft: rgba(0, 102, 204, 0.16);
  --accent-bg: rgba(0, 102, 204, 0.08);

  /* Stary model akcent (subtelnie czerwonawy, dla porównania) */
  --warn: rgba(255, 95, 95, 0.7);
  --warn-bg: rgba(255, 95, 95, 0.06);

  /* Borders */
  --border-default: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-accent: rgba(0, 102, 204, 0.3);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(0, 102, 204, 0.25);

  /* Spacing */
  --space-section: clamp(80px, 12vw, 160px);
  --space-section-sm: clamp(60px, 8vw, 100px);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Easing (Emil Kowalski) */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Typography */
  --font-display: 'Space Grotesk', 'Inter', -apple-system, system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
}

/* ========================================================================
   RESET & BASE
   ======================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Subtle noise overlay dla premium feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 0%, rgba(0, 102, 204, 0.08), transparent 50%),
                    radial-gradient(circle at 80% 100%, rgba(0, 102, 204, 0.05), transparent 50%);
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

a:hover { color: var(--accent-hover); }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--accent);
  color: white;
}

/* ========================================================================
   LAYOUT - Container
   ======================================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 767px) {
  .container { padding: 0 20px; }
}

/* ========================================================================
   TYPOGRAPHY
   ======================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: inline-block;
}

.section-title {
  font-size: clamp(36px, 5.5vw, 64px);
  margin-bottom: 24px;
}

.section-title--center {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.65;
}

.section-intro--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.accent-text { color: var(--accent); }
.muted-text { color: var(--text-muted); }

strong, b { color: var(--text-primary); font-weight: 600; }
em { color: var(--text-primary); font-style: italic; }

/* ========================================================================
   BUTTONS
   ======================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset, var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 0 60px rgba(0, 102, 204, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-accent);
  color: var(--text-primary);
}

.btn-full { width: 100%; }

.btn-large {
  padding: 20px 36px;
  font-size: 16px;
}

/* ========================================================================
   NAV
   ======================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(15, 16, 18, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-default);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.nav-brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-left: 10px;
}

.nav-cta {
  font-size: 14px;
  padding: 11px 20px;
}

@media (max-width: 480px) {
  .nav-brand-sub { display: none; }
}

/* ========================================================================
   HERO
   ======================================================================== */

.hero {
  padding: calc(120px + var(--space-section-sm)) 0 var(--space-section);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow-soft), transparent 60%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

/* Hero z background image i filmowym dark overlay
   - background-size: cover wypelnia sekcje bez sztucznego zoomu
   - background-position: center 28% trzyma twarz w gornej czesci kadru */
.hero--with-bg {
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
  padding: calc(140px + var(--space-section-sm)) 0 calc(var(--space-section) + 20px);
}

.hero--with-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(15, 16, 18, 0.92) 0%,
      rgba(15, 16, 18, 0.78) 35%,
      rgba(15, 16, 18, 0.82) 65%,
      rgba(15, 16, 18, 0.98) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(15, 16, 18, 0.4) 80%);
  z-index: 0;
  pointer-events: none;
}

.hero--with-bg .hero-inner {
  position: relative;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.hero-content {
  text-align: center;
}


.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--accent-bg);
  border: 1px solid var(--border-accent);
  margin-bottom: 32px;
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2.4s var(--ease-in-out) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.hero-title .accent-line {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(17px, 2.1vw, 21px);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 44px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-meta .dot {
  margin: 0 10px;
  opacity: 0.4;
}

/* Mobile - stack w kolumnie, zeby grupy ("Max 5 miejsc" itp.) sie nie lamaly */
@media (max-width: 600px) {
  .hero-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
  .hero-meta .dot { display: none; }
}

/* ========================================================================
   VIDEO PROOF (rekomendacja terapeutki)
   ======================================================================== */

.proof-video {
  padding: var(--space-section-sm) 0;
  position: relative;
}

.proof-video::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 360px;
  background: radial-gradient(ellipse, var(--accent-glow-soft), transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.proof-video-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.proof-video-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 20px;
  line-height: 1.12;
}

.proof-video-intro {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.proof-video-frame {
  margin: 0 auto;
  width: min(100%, 440px, var(--proof-video-max, 440px));
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.proof-video-player {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 464 / 832;
  background: #000;
  outline: none;
}

.proof-video-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  padding: 16px 22px;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-default);
}

.proof-video-author {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.proof-video-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.proof-video-frame-note {
  margin: 32px auto 0;
  max-width: 680px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.proof-video-frame-note strong {
  color: var(--text-secondary);
  font-weight: 600;
}

@media (max-width: 600px) {
  .proof-video-caption {
    padding: 14px 18px;
  }
  .proof-video-frame-note {
    font-size: 14px;
  }
}

/* ========================================================================
   SOCIAL PROOF (countery)
   ======================================================================== */

.social-proof {
  padding: var(--space-section-sm) 0;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  background: var(--bg-secondary);
}

.proof-intro {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.proof-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.proof-bridge {
  text-align: center;
  max-width: 720px;
  margin: 40px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--border-default);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.proof-bridge strong {
  color: var(--text-primary);
  font-weight: 600;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.proof-card {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
  border: 1px solid var(--border-default);
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}

.proof-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
}

.proof-value {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
  display: inline-block;
}

.proof-value .accent-text { color: var(--accent); }

.proof-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.proof-context {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================================================
   TRUST BAR (pasek wiarygodności - dowody nie-numeryczne, index)
   ======================================================================== */

.trust-bar {
  padding: var(--space-section-sm) 0;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  background: var(--bg-secondary);
}

.trust-bar-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  padding: 8px 12px;
}

.trust-item-value {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.trust-item-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .trust-bar-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 480px) {
  .proof-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ========================================================================
   PROBLEM AGITATION
   ======================================================================== */

.problem {
  padding: var(--space-section) 0;
}

.problem-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.problem-body {
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.55;
  color: var(--text-secondary);
}

.problem-body p {
  margin-bottom: 28px;
}

.problem-body p:last-child { margin-bottom: 0; }

.problem-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.problem-divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 48px auto;
  opacity: 0.5;
}

/* ========================================================================
   PROBLEM DETAILS (lista bolaczek)
   ======================================================================== */

.pains {
  padding: var(--space-section-sm) 0 var(--space-section);
}

.pains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.pain-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  transition: all 0.3s var(--ease-out);
}

.pain-item:hover {
  background: var(--bg-subtle);
  border-color: var(--border-strong);
}

.pain-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 2px;
  flex-shrink: 0;
}

.pain-text {
  color: var(--text-secondary);
  line-height: 1.55;
}

.pain-text strong { color: var(--text-primary); }

@media (max-width: 767px) {
  .pains-grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   DIFFERENCE (stary vs nowy model)
   ======================================================================== */

.difference {
  padding: var(--space-section) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.diff-col {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-default);
  background: var(--bg-subtle);
  position: relative;
}

.diff-col-old {
  opacity: 0.85;
}

.diff-col-new {
  border-color: var(--border-accent);
  background: linear-gradient(180deg, rgba(0, 102, 204, 0.04), var(--bg-subtle));
  box-shadow: var(--shadow-glow);
}

.diff-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.diff-tag-old {
  color: var(--warn);
  background: var(--warn-bg);
  border: 1px solid rgba(255, 95, 95, 0.2);
}

.diff-tag-new {
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid var(--border-accent);
}

.diff-title {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-bottom: 24px;
  color: var(--text-primary);
}

.diff-list {
  list-style: none;
}

.diff-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-default);
  color: var(--text-secondary);
  line-height: 1.5;
}

.diff-list li:last-child { border-bottom: none; }

.diff-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.diff-col-old .diff-list li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5f5f' stroke-width='2' opacity='0.7' stroke-linecap='round'><line x1='6' y1='6' x2='18' y2='18'/><line x1='6' y1='18' x2='18' y2='6'/></svg>");
}

.diff-col-new .diff-list li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066CC' stroke-width='2.5' stroke-linecap='round'><polyline points='4 12 10 18 20 6'/></svg>");
}

@media (max-width: 900px) {
  .diff-grid { grid-template-columns: 1fr; }
  .diff-col { padding: 32px 24px; }
}

/* ========================================================================
   ANATOMY (5 komponentów L.E.A.D.S.)
   ======================================================================== */

.anatomy {
  padding: var(--space-section) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
  position: relative;
}

.anatomy::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-glow-soft), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.anatomy > * { position: relative; }

.anatomy-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.anatomy-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-subtle);
  border: 1px solid var(--border-default);
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.anatomy-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 102, 204, 0.04));
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}

.anatomy-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.anatomy-card:hover::after { opacity: 1; }

.anatomy-letter {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 0 32px var(--accent-glow);
}

.anatomy-card-title {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.anatomy-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .anatomy-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .anatomy-grid { grid-template-columns: 1fr; gap: 12px; }
  .anatomy-card { padding: 28px 20px; }
  .anatomy-letter { font-size: 52px; margin-bottom: 14px; }
}

/* Bonus stripe pod Anatomy - mentoring */
.anatomy-bonus {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 32px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(0, 102, 204, 0.02));
  border: 1px solid var(--border-accent);
  box-shadow: 0 0 40px rgba(0, 102, 204, 0.12);
  position: relative;
}

.anatomy-bonus-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-bg);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.anatomy-bonus-text {
  flex: 1;
  min-width: 0;
}

.anatomy-bonus-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.anatomy-bonus-text p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.anatomy-bonus-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

@media (max-width: 600px) {
  .anatomy-bonus {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }
}

/* Wyróżnione deliverables (mentoring) */
.process-deliverables li.is-mentoring {
  margin-top: 12px;
  padding-top: 14px;
  padding-bottom: 4px;
  padding-left: 22px;
  border-top: 1px solid var(--border-default);
  color: var(--text-primary);
  font-weight: 500;
}

.process-deliverables li.is-mentoring::before {
  top: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066CC' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/></svg>");
}

/* ========================================================================
   PROCESS (3 fazy z deliverables)
   ======================================================================== */

.process {
  padding: var(--space-section) 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.process-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  position: relative;
  transition: all 0.4s var(--ease-out);
}

.process-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.9;
}

.process-week {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.process-title {
  font-size: 24px;
  margin-bottom: 14px;
}

.process-desc {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 24px;
}

.process-deliverables {
  list-style: none;
  padding-top: 20px;
  border-top: 1px solid var(--border-default);
}

.process-deliverables li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.process-deliverables li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066CC' stroke-width='3' stroke-linecap='round'><polyline points='4 12 10 18 20 6'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   AUTHOR (kto poprowadzi program)
   ======================================================================== */

.author {
  padding: var(--space-section) 0;
}

.author-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: center;
}

.author-media {
  position: relative;
}

.author-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-subtle);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.author-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(0, 102, 204, 0.08) 100%);
  z-index: 1;
  pointer-events: none;
}

.author-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.02) saturate(0.95);
}

.author-content {
  max-width: 580px;
}

.author-body {
  margin-top: 8px;
  margin-bottom: 36px;
}

.author-body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.author-body p:last-child { margin-bottom: 0; }

.author-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.author-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border-default);
}

.author-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.author-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.author-stat-value {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .author-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .author-image-frame {
    max-width: 440px;
    margin: 0 auto;
  }
  .author-stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .author-stat {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-default);
  }
  .author-stat-value {
    text-align: right;
    min-width: 0;
  }
  .author-stat:last-child { border-bottom: none; }
}

/* Bardzo waski mobile - stack label/value w kolumnie, zeby dlugie wartosci sie miescily */
@media (max-width: 600px) {
  .author-stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .author-stat-value {
    text-align: left;
  }
}

/* ========================================================================
   APPLICATION STEPS (4 etapy)
   ======================================================================== */

.steps {
  padding: var(--space-section) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
}

.step-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.step-title {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.steps-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   APPLICATION FORM (glassmorphism card)
   ======================================================================== */

.application {
  padding: var(--space-section) 0;
  position: relative;
}

.application::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow-soft), transparent 60%);
  filter: blur(100px);
  z-index: 0;
}

.application-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.application-title {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 18px;
}

.application-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.6;
}

.form-card {
  text-align: left;
  padding: 48px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.25s var(--ease-out);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-faint);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 102, 204, 0.04);
  box-shadow: 0 0 0 4px var(--accent-glow-soft);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

.form-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 20px;
}

.form-success {
  text-align: center;
  padding: 64px 32px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--accent-bg);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.form-success-title {
  font-size: 26px;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.form-success-body {
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .form-card { padding: 32px 24px; }
}

/* ========================================================================
   FAQ
   ======================================================================== */

.faq {
  padding: var(--space-section) 0;
}

.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-default);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: color 0.25s var(--ease-out);
  letter-spacing: -0.01em;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out);
}

.faq-icon::before {
  width: 12px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 12px;
}

.faq-item[aria-expanded="true"] .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
}

.faq-item[aria-expanded="true"] .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer-inner {
  padding: 0 0 28px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  max-width: 680px;
}

.faq-answer-inner strong { color: var(--text-primary); }

/* ========================================================================
   FINAL CTA
   ======================================================================== */

.final-cta {
  padding: var(--space-section) 0;
  text-align: center;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-default);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow-soft), transparent 60%);
  filter: blur(100px);
  pointer-events: none;
}

.final-cta > .container { position: relative; z-index: 1; }

.final-cta-title {
  font-size: clamp(32px, 4.5vw, 52px);
  max-width: 720px;
  margin: 0 auto 24px;
  line-height: 1.08;
}

.final-cta-text {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.final-cta-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 20px auto 0;
}

/* ========================================================================
   FOOTER
   ======================================================================== */

.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--border-default);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.footer-brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-left: 10px;
}

.footer-meta {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover { color: var(--accent); }

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ========================================================================
   REVEAL ANIMATIONS
   ======================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ========================================================================
   CONSENT MODAL (Meta Pixel / Consent Mode v2)
   - blokujacy full-screen overlay, oba przyciski rownej wagi
   - dark theme dostosowany do brandu LP
   ======================================================================== */

.consent-banner {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 16, 18, 0.78);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  animation: consentFadeIn 0.24s ease-out;
}

.consent-banner[hidden] {
  display: none;
}

@keyframes consentFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.consent-banner-inner {
  width: 100%;
  max-width: 480px;
  padding: 32px 32px 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: consentCardIn 0.32s var(--ease-out);
}

@keyframes consentCardIn {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.consent-banner-text {
  font-family: var(--font-body);
  color: var(--text-primary);
  margin-bottom: 22px;
}

.consent-banner-text strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.consent-banner-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.consent-banner-text p a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-banner-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Oba przyciski tej samej wagi wizualnej - brak dark pattern.
   Akceptuj = wypelniony; Odrzuc = outline w tym samym rozmiarze. */
.consent-btn {
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  min-height: 44px;
}

@media (max-width: 480px) {
  .consent-banner-inner {
    padding: 24px 22px 22px;
  }
}
