:root {
  --dark: #0f0f0f;
  --dark2: #161616;
  --dark3: #1e1e1e;
  --gold: #C7A56F;
  --gold-soft: #d4b98a;
  --gold-dim: rgba(199,165,111,0.08);
  --cream: #FAF7F2;
  --cream2: #F0ECE4;
  --text: #1a1a1a;
  --text-soft: rgba(255,255,255,0.75);
  --muted: rgba(0,0,0,0.45);
  --w: 1080px;
  --w-narrow: 740px;
  --ff: 'DM Sans', system-ui, sans-serif;
  --fd: 'Playfair Display', Georgia, serif;
  --ease: cubic-bezier(.4,0,.2,1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 28px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);
  --shadow-gold: 0 4px 16px rgba(199,165,111,.08);
  --glow-gold: 0 0 30px rgba(199,165,111,.06);

  /* Type scale - all relative to html font-size (18px desktop, 16px mobile) */
  --fs-2xs: 0.7rem;    /* 12.6px - countdown labels, badges */
  --fs-xs: 0.78rem;    /* 14px - overlines, price labels */
  --fs-sm: 0.85rem;    /* 15.3px - captions, meta, footer */
  --fs-base: 1rem;     /* 18px - body text, paragraphs */
  --fs-md: 1.1rem;     /* 19.8px - emphasis, lead text */
  --fs-lg: 1.25rem;    /* 22.5px - subheadings, names */
  --fs-xl: 1.5rem;     /* 27px - section intros */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 18px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-timeline: --page-scroll block; scrollbar-color: rgba(199,165,111,.35) rgba(15,15,15,.6); scrollbar-width: thin; background-color: #0f0f0f; }
/* Webkit scrollbar (Chrome/Edge/Safari) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: rgba(15,15,15,.6); }
::-webkit-scrollbar-thumb { background: rgba(199,165,111,.35); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(199,165,111,.55); }

/* Modern CSS 2025+ features */
@supports (animation-timeline: scroll()) {
  .numbers-strip .number-value {
    animation: countFade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 50%;
  }
  @keyframes countFade {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to { opacity: 1; transform: none; }
  }
  .sect { view-transition-name: auto; }
}
body { font-family: var(--ff); font-size: var(--fs-base); line-height: 1.7; color: var(--text); background: var(--dark); -webkit-font-smoothing: antialiased; overflow-x: hidden; -webkit-tap-highlight-color: transparent; padding-top: 52px; }

/* iOS safe areas + touch optimizations */
.hero-inner { padding-left: max(36px, env(safe-area-inset-left)); padding-right: max(36px, env(safe-area-inset-right)); }
.footer { padding-bottom: max(48px, calc(48px + env(safe-area-inset-bottom))); }
.top-bar { padding-top: env(safe-area-inset-top); }
.btn, .top-bar-cta, a { -webkit-touch-callout: none; touch-action: manipulation; }
.btn:active { transform: scale(.97); }

/* === REVEAL (progressive disclosure) === */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.js .reveal.visible { opacity: 1; transform: none; }

/* ============ STICKY TOP BAR ============ */
.top-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--dark); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(199,165,111,.1); transition: transform .35s var(--ease); }
.top-bar.scrolled-down { transform: translateY(-100%); }
.top-bar-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 52px; gap: 20px; }
.top-bar-brand { font-family: var(--fd); font-size: var(--fs-base); white-space: nowrap; letter-spacing: .03em; font-weight: 600; background: linear-gradient(135deg, var(--gold) 0%, #e8d5b0 40%, var(--gold) 80%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 0 8px rgba(199,165,111,.3)); }
.top-bar-countdown { display: flex; align-items: center; gap: 12px; }
.top-bar-label { font-size: .78rem; color: rgba(255,255,255,.55); white-space: nowrap; }
.countdown { display: flex; align-items: center; gap: 2px; }
.cd-unit { text-align: center; min-width: 36px; }
.cd-num { display: block; font-family: var(--fd); font-size: 1.1rem; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.cd-label { display: block; font-size: .7rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-top: -1px; }
.cd-sep { font-family: var(--fd); font-size: .9rem; color: rgba(199,165,111,.3); padding: 0 1px; margin-top: -8px; }
.top-bar-cta { font-family: var(--ff); font-size: .82rem; font-weight: 700; color: #1a1200; background: linear-gradient(135deg, #b8944d 0%, var(--gold) 40%, #e0c88f 100%); padding: 8px 20px; border-radius: 6px; text-decoration: none; white-space: nowrap; transition: all .2s; box-shadow: 0 2px 8px rgba(199,165,111,.2); position: relative; overflow: hidden; }
.top-bar-cta::after { content: ''; position: absolute; top: -50%; left: -60%; width: 40%; height: 200%; background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.08) 35%, rgba(255,255,255,.22) 48%, rgba(255,255,255,.3) 50%, rgba(255,255,255,.22) 52%, rgba(255,255,255,.08) 65%, transparent 80%); transform: skewX(-15deg); animation: sunSweep 5s var(--ease) 2.5s infinite; pointer-events: none; z-index: 1; }
.top-bar-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(199,165,111,.3); }

/* === LAYOUT === */
.container { max-width: var(--w); margin: 0 auto; padding: 0 36px; }
.sect { padding: 110px 0; position: relative; }
.sect-dark { background: linear-gradient(180deg, var(--dark) 0%, #0c0b09 100%); color: var(--text-soft); }
.sect-cream { background: var(--cream); color: var(--text); position: relative; }
.sect-cream::after { content: ''; position: absolute; top: 0; right: 0; width: 300px; height: 300px; background: radial-gradient(ellipse, rgba(199,165,111,.06) 0%, transparent 70%); pointer-events: none; }

/* Gold accent line between sections */
.sect + .sect::before { content: ''; position: absolute; top: 0; left: 50%; width: 32px; height: 1px; background: var(--gold); transform: translateX(-50%); opacity: .25; }

/* === TYPOGRAPHY === */
h1 { font-family: var(--fd); font-size: clamp(2rem, 3.2vw, 3.1rem); line-height: 1.08; color: #fff; margin-bottom: 24px; letter-spacing: -0.025em; text-wrap: balance; text-shadow: 0 2px 20px rgba(0,0,0,.4); }
h2 { font-family: var(--fd); font-size: clamp(1.6rem, 2.7vw, 2.4rem); line-height: 1.12; margin-bottom: 44px; letter-spacing: -0.015em; text-wrap: balance; }
.sect-cream h2 { background: linear-gradient(135deg, var(--text) 0%, #4a3928 60%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 1px 4px rgba(0,0,0,.08)); }
h3 { font-family: var(--ff); font-size: var(--fs-md); font-weight: 600; margin-bottom: 6px; }
p { margin-bottom: 16px; } p:last-child { margin-bottom: 0; }
a { color: inherit; }
strong { font-weight: 600; }
.sect-dark h2 { background: linear-gradient(135deg, #fff 0%, var(--gold-soft) 60%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 2px 8px rgba(0,0,0,.3)); }
.sect-dark strong { color: var(--gold-soft); }
.gold-text { background: linear-gradient(135deg, var(--gold) 0%, #e8d5b0 50%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Hero kicker (above h1) */
.hero-kicker { font-family: var(--fd); font-size: var(--fs-lg); font-weight: 400; color: var(--gold-soft); letter-spacing: .04em; margin-bottom: 14px; text-shadow: 0 2px 12px rgba(199,165,111,.3); }

.overline { font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .24em; color: var(--muted); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.overline::before { content: ''; width: 24px; height: 2px; background: var(--gold); opacity: .4; flex-shrink: 0; }
.overline-gold { color: var(--gold); opacity: .75; }
.overline-gold::before { opacity: .6; }

/* ============ HERO (typography-driven, no external images) ============ */
.hero { position: relative; padding: 0; background: var(--dark); color: #fff; overflow: hidden; min-height: calc(100vh - 52px); display: flex; flex-direction: column; justify-content: center; }

/* Hero slider (Nano Banana Pro generated photos) */
.hero-slider { position: absolute; inset: 0; pointer-events: none; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s var(--ease); filter: saturate(.8); }
.hero-slide.active { opacity: .32; }
/* Dark gradient overlay */
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8,6,4,.92) 0%, rgba(10,8,5,.85) 45%, rgba(12,10,7,.78) 65%, rgba(8,6,4,.82) 100%); pointer-events: none; z-index: 0; }
/* Rich gold glow accent */
.hero::after { content: ''; position: absolute; top: 5%; left: 10%; width: 600px; height: 500px; background: radial-gradient(ellipse, rgba(199,165,111,.1) 0%, transparent 55%); pointer-events: none; z-index: 0; }

/* Text readability on photo backgrounds - shadows only, no dark boxes */
.sect-dark h2, .sect-dark .overline, .sect-dark .overline-gold { text-shadow: 0 1px 8px rgba(0,0,0,.3); }

.hero-inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 60px; padding: 140px 36px 100px; max-width: var(--w); margin: 0 auto; }
.hero-content { flex: 1; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero-content > * { animation: fadeIn .55s var(--ease) both; }
.hero-content > :nth-child(1) { animation-delay: .05s; }
.hero-content > :nth-child(2) { animation-delay: .15s; }
.hero-content > :nth-child(3) { animation-delay: .25s; }
.hero-content > :nth-child(4) { animation-delay: .38s; }
.hero-content > :nth-child(5) { animation-delay: .48s; }

/* Avatar - placeholder until real professional photo */
.hero-avatar { flex-shrink: 0; text-align: center; animation: fadeIn .55s var(--ease) .25s both; }
.hero-avatar img { width: 220px; height: 220px; border-radius: 50%; border: 2.5px solid rgba(199,165,111,.6); box-shadow: 0 0 0 8px rgba(199,165,111,.08), 0 8px 32px rgba(0,0,0,.3), var(--glow-gold); object-fit: cover; }
.hero-avatar-name { font-family: var(--fd); font-size: var(--fs-lg); font-weight: bold; color: #fff; margin-top: 18px; text-shadow: 0 2px 12px rgba(0,0,0,.4); letter-spacing: .01em; }
.hero-avatar-role { font-size: var(--fs-sm); font-weight: 600; color: var(--gold); margin-top: 6px; text-shadow: 0 2px 10px rgba(199,165,111,.3); letter-spacing: .03em; }
.hero-avatar-stats { font-size: var(--fs-sm); color: rgba(255,255,255,.65); margin-top: 10px; letter-spacing: .02em; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.hero-avatar-stats strong { color: var(--gold); font-weight: 600; }

/* Trust bar */
.trust-bar-wrap { position: relative; z-index: 2; background: linear-gradient(180deg, rgba(18,16,13,.98) 0%, rgba(12,11,9,.98) 100%); border-top: 1px solid rgba(199,165,111,.1); padding: 0; }
.trust-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.55); padding: 16px 22px; position: relative; transition: background .25s, color .25s; white-space: nowrap; flex-shrink: 0; }
.trust-item:hover { background: rgba(199,165,111,.06); color: rgba(255,255,255,.7); }
.trust-item + .trust-item::before { content: ''; position: absolute; left: 0; top: 25%; height: 50%; width: 1px; background: rgba(199,165,111,.12); }
.trust-item svg { color: var(--gold); opacity: .7; transition: opacity .25s; }
.trust-item:hover svg { opacity: 1; }

/* Badge - solid, no glassmorphism */
.badge { display: inline-block; font-size: .78rem; font-weight: 500; text-transform: uppercase; letter-spacing: .18em; color: rgba(199,165,111,.85); padding: 8px 22px; border: 1px solid rgba(199,165,111,.3); border-radius: 24px; margin-bottom: 28px; background: rgba(199,165,111,.08); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.badge strong { color: var(--gold); font-weight: 700; }

.hero-languages { font-size: .88rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; text-shadow: 0 2px 10px rgba(199,165,111,.3); }
.hero-sub { font-size: var(--fs-base); line-height: 1.72; color: rgba(255,255,255,.8); max-width: 560px; margin-bottom: 36px; text-shadow: 0 2px 10px rgba(0,0,0,.4); }
.hero-accent { font-weight: 700; background: linear-gradient(135deg, var(--gold) 0%, #e8d5b0 40%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 2px 6px rgba(199,165,111,.35)); }

/* MasterClass brand highlight - used throughout page */
.mc-highlight { color: var(--gold); font-weight: 700; font-style: normal; }
.sect-dark .mc-highlight { color: var(--gold-soft); }
.sect-cream .mc-highlight { color: #8B6914; }
.hero-friction { font-size: .84rem; color: rgba(255,255,255,.6); margin-top: 16px; letter-spacing: .02em; text-shadow: 0 1px 6px rgba(0,0,0,.3); }

/* ============ BUTTONS (calm, confident) ============ */
.btn { display: inline-block; font-family: var(--ff); font-size: var(--fs-base); font-weight: 700; text-decoration: none; border: none; cursor: pointer; border-radius: 8px; transition: background .2s, transform .15s, box-shadow .2s; min-height: 44px; -webkit-appearance: none; letter-spacing: .01em; }
.btn-gold { background: linear-gradient(135deg, #b8944d 0%, var(--gold) 30%, #e0c88f 60%, var(--gold) 100%); color: #1a1200; padding: 16px 44px; box-shadow: 0 4px 16px rgba(199,165,111,.3), inset 0 1px 0 rgba(255,255,255,.2); background-size: 200% 100%; transition: background-position .4s var(--ease), transform .15s, box-shadow .2s; position: relative; overflow: hidden; }
.btn-gold .btn-text { background: linear-gradient(135deg, #1a1200 0%, #3d2e14 50%, #1a1200 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; position: relative; z-index: 1; }
.btn-gold:hover { background-position: 100% 0; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(199,165,111,.35), 0 0 0 1px rgba(199,165,111,.15); }
/* Cursor-tracking shine effect */
.btn-gold .btn-shine { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; background: radial-gradient(circle 100px at var(--mx, -100px) var(--my, -100px), rgba(255,255,255,.18) 0%, rgba(255,255,255,.04) 45%, transparent 70%); opacity: 0; transition: opacity .4s; mix-blend-mode: overlay; }
.btn-gold:hover .btn-shine { opacity: 1; }
/* Auto sun-ray sweep - light beam slides across button like sunlight on gold */
.btn-gold::after { content: ''; position: absolute; top: -50%; left: -60%; width: 40%; height: 200%; background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.06) 35%, rgba(255,255,255,.18) 48%, rgba(255,255,255,.25) 50%, rgba(255,255,255,.18) 52%, rgba(255,255,255,.06) 65%, transparent 80%); transform: skewX(-15deg); animation: sunSweep 5s var(--ease) infinite; pointer-events: none; z-index: 1; }
@keyframes sunSweep { 0%, 100% { left: -60%; opacity: 0; } 10% { opacity: 1; } 50% { left: 120%; opacity: 1; } 60%, 100% { left: 120%; opacity: 0; } }
.btn-lg { padding: 18px 52px; font-size: var(--fs-md); }
.btn-full { display: block; width: 100%; text-align: center; }

.cta-center { text-align: center; margin-top: 56px; }
.cta-sub { font-size: .85rem; opacity: .5; margin-top: 14px; }

/* ============ NUMBERS STRIP (prezentacja v10 style) ============ */
.numbers-strip { position: relative; padding: 72px 0; background: var(--dark); color: #fff; overflow: hidden; }
.numbers-strip .hero-photo { opacity: .08; }
.numbers-inner { position: relative; z-index: 1; }
.numbers-grid { display: flex; gap: 12px; margin-bottom: 32px; }
.number-block { flex: 1; text-align: center; padding: 16px 8px; border-radius: 10px; transition: transform .25s var(--ease), background .25s; }
.number-block:hover { transform: translateY(-3px); background: rgba(199,165,111,.05); }
.number-value { font-family: var(--fd); font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; text-shadow: 0 2px 12px rgba(199,165,111,.2); }
.number-label { font-size: .84rem; color: rgba(255,255,255,.6); line-height: 1.4; }
.number-context { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: 4px; }
/* ============ RYNEK (market section) ============ */
.rynek-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rynek-card { background: #fff; border-radius: 12px; padding: 28px 24px; border: 1px solid rgba(199,165,111,.08); box-shadow: var(--shadow-md); position: relative; overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s; }
.rynek-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.rynek-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), transparent 80%); opacity: .5; }
.rynek-num { font-family: var(--fd); font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px; text-shadow: 0 1px 8px rgba(199,165,111,.15); }
.rynek-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; }
.rynek-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; margin-bottom: 0; }

/* ============ MENTOR MESSAGE (asymmetric stagger layout) ============ */
.mentor-message { display: flex; gap: 24px; align-items: flex-start; max-width: 80%; margin: 0 auto; background: #fff; padding: 32px 36px; border-radius: 14px; border: 1px solid rgba(199,165,111,.1); box-shadow: var(--shadow-lg); position: relative; }
.mentor-message::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), transparent 80%); border-radius: 14px 14px 0 0; opacity: .5; }
.mentor-photo { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(199,165,111,.4); box-shadow: 0 4px 16px rgba(0,0,0,.1), var(--shadow-gold); }
.mentor-text p { font-size: var(--fs-base); color: var(--text); line-height: 1.72; font-style: italic; }
.mentor-italic { font-style: italic; color: var(--gold) !important; font-family: var(--fd); font-size: var(--fs-md) !important; }
.mentor-sign { display: block; margin-top: 14px; font-size: .98rem; font-weight: 600; color: var(--text); }
.mentor-sign span { display: block; font-size: .86rem; font-weight: 400; color: var(--muted); margin-top: 2px; }
/* Video row - shifted right */
.mentor-video-row { display: flex; justify-content: flex-end; margin-top: 20px; }
.mentor-video { width: 70%; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/9; position: relative; }
.mentor-video::before { content: ''; position: absolute; inset: 0; border-radius: 12px; border: 1px solid rgba(199,165,111,.1); pointer-events: none; z-index: 1; }
.mentor-video iframe { width: 100%; height: 100%; border: 0; }
.yt-facade { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; transition: filter .2s; }
.yt-facade:hover { filter: brightness(1.1); }

/* Investment note (replaces pricing grid) */
.invest-note { text-align: center; padding: 32px; background: linear-gradient(145deg, var(--dark2) 0%, var(--dark3) 100%); border-radius: 14px; border: 1px solid rgba(199,165,111,.12); margin-bottom: 36px; }
.invest-note p { font-size: var(--fs-base); color: rgba(255,255,255,.65); margin-bottom: 0; line-height: 1.7; }

/* ============ TRANSFORMATION (two-column before/after) ============ */
.transform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.tf-col { border-radius: 14px; padding: 28px 28px 24px; }
.tf-before { background: rgba(0,0,0,.03); border: 1px solid rgba(0,0,0,.06); }
.tf-after { background: rgba(199,165,111,.06); border: 1px solid rgba(199,165,111,.12); position: relative; overflow: hidden; }
.tf-after::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), transparent 80%); opacity: .5; }
.tf-header { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 18px; }
.tf-before .tf-header { color: rgba(0,0,0,.3); }
.tf-after .tf-header { color: var(--gold); }
.tf-col ul { list-style: none; }
.tf-col li { font-size: .96rem; line-height: 1.6; padding: 8px 0 8px 22px; position: relative; border-bottom: 1px solid rgba(0,0,0,.04); }
.tf-col li:last-child { border-bottom: none; }
.tf-before li::before { content: '✕'; position: absolute; left: 0; top: 8px; font-size: .7rem; color: rgba(0,0,0,.2); }
.tf-before li { color: var(--muted); }
.tf-after li::before { content: '✓'; position: absolute; left: 0; top: 8px; font-size: .75rem; color: var(--gold); font-weight: 700; }
.tf-after li { color: var(--text); font-weight: 500; }

/* ============ AUDIENCE GRID ============ */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 32px; }
.audience-card { background: linear-gradient(145deg, var(--dark2) 0%, var(--dark3) 100%); border-radius: 12px; padding: 28px 18px 24px; border: 1px solid rgba(199,165,111,.12); text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,.2); transition: transform .25s var(--ease), box-shadow .25s; }
.audience-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.25), var(--glow-gold); }
.audience-icon { width: 28px; height: 28px; stroke: var(--gold); margin-bottom: 14px; }
.audience-card h3 { font-size: .95rem; font-weight: 600; color: #fff; margin-bottom: 5px; }
.audience-card p { font-size: .9rem; color: rgba(255,255,255,.55); margin-bottom: 0; line-height: 1.5; }
.audience-note { font-size: 1rem; color: rgba(255,255,255,.55); text-align: center; margin-top: 8px; }
.audience-note strong { color: var(--gold-soft); }

/* ============ INLINE QUOTE (Basecamp - woven into narrative) ============ */
.inline-quote { padding: 26px 30px; background: var(--cream2); border-radius: 12px; border-left: 3px solid var(--gold); margin: 40px 0 0; font-size: var(--fs-base); font-style: italic; color: var(--text); line-height: 1.72; box-shadow: var(--shadow-sm); transition: box-shadow .25s var(--ease), border-color .25s; }
.inline-quote:hover { box-shadow: var(--shadow-md); border-left-color: var(--gold-soft); }
.inline-quote footer { font-style: normal; margin-top: 12px; font-size: .84rem; color: var(--muted); }
.inline-quote footer strong { color: var(--text); font-weight: 600; }
.sect-dark .inline-quote { background: linear-gradient(135deg, var(--dark3) 0%, rgba(30,30,28,1) 100%); color: rgba(255,255,255,.65); box-shadow: 0 4px 20px rgba(0,0,0,.25); }
.sect-dark .inline-quote footer { color: rgba(255,255,255,.3); }
.sect-dark .inline-quote footer strong { color: var(--gold-soft); }

/* Expandable quotes (ROZWIŃ) */
.quote-expand { max-height: 100px; overflow: hidden; position: relative; transition: max-height .4s var(--ease); }
.quote-expand.expanded { max-height: 600px; }
.quote-expand::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50px; background: linear-gradient(transparent, var(--cream2)); pointer-events: none; transition: opacity .3s; }
.quote-expand.expanded::after { opacity: 0; }
.sect-dark .quote-expand::after { background: linear-gradient(transparent, var(--dark3)); }
.sect-dark .quote .quote-expand::after { background: linear-gradient(transparent, var(--dark2)); }
.quote-toggle { display: inline-block; margin-top: 10px; font-family: var(--ff); font-size: var(--fs-xs); font-weight: 600; color: var(--gold); background: none; border: 1px solid rgba(199,165,111,.25); padding: 5px 16px; border-radius: 16px; cursor: pointer; transition: all .2s; font-style: normal; }
.quote-toggle:hover { background: rgba(199,165,111,.08); border-color: var(--gold); }
.sect-dark .inline-quote footer strong { color: var(--gold-soft); }

/* ============ PROGRAM ============ */
.program-stats { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 24px; margin-bottom: 40px; padding: 22px 30px; background: rgba(199,165,111,.06); border-radius: 12px; border: 1px solid rgba(199,165,111,.08); font-size: .92rem; color: var(--gold-soft); }
.program-stats strong { color: var(--gold); font-family: var(--fd); font-size: 1.15rem; }
.ps-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: .3; }

.program-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.program-block { background: var(--dark2); border-radius: 10px; padding: 24px 22px; border: 1px solid rgba(255,255,255,.05); position: relative; }
.program-block::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); opacity: .4; border-radius: 10px 10px 0 0; }
.program-num { font-family: var(--fd); font-size: .75rem; font-weight: bold; color: rgba(199,165,111,.18); position: absolute; top: 14px; right: 16px; }
.program-block-title { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; color: var(--gold); margin-bottom: 14px; }
.program-block ul { list-style: none; }
.program-block li { font-size: .92rem; color: rgba(255,255,255,.6); padding: 4px 0 4px 15px; position: relative; line-height: 1.55; }
.program-block li::before { content: ''; position: absolute; left: 0; top: 11px; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: .25; }

/* ============ PROGRAM TIMELINE (collapsible) ============ */
.program-timeline { margin-bottom: 32px; }
.pt-block { background: linear-gradient(145deg, var(--dark2) 0%, var(--dark3) 100%); border-radius: 12px; border: 1px solid rgba(199,165,111,.1); margin-bottom: 8px; overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.pt-block:hover { border-color: rgba(199,165,111,.18); }
.pt-header { display: flex; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; transition: background .2s; }
.pt-header:hover { background: rgba(199,165,111,.04); }
.pt-num { font-family: var(--fd); font-size: .84rem; font-weight: bold; color: var(--gold); opacity: .7; min-width: 44px; }
.pt-title { flex: 1; font-size: 1rem; font-weight: 600; color: #fff; }
.pt-toggle { font-size: 1.2rem; font-weight: 300; color: var(--gold); transition: transform .3s var(--ease); flex-shrink: 0; }
.pt-block-open .pt-toggle { transform: rotate(45deg); }
.pt-block-open { border-color: rgba(199,165,111,.25); }
.pt-body { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 0 24px 0; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s var(--ease), opacity .3s, padding .3s; }
.pt-block-open .pt-body { max-height: 600px; opacity: 1; padding: 0 24px 24px; }
.pt-col-title { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 12px; font-family: var(--ff); }
.pt-body ul { list-style: none; }
.pt-body li { font-size: .92rem; color: rgba(255,255,255,.6); padding: 4px 0 4px 16px; position: relative; line-height: 1.6; }
.pt-body li::before { content: ''; position: absolute; left: 0; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: .35; }

/* ============ CALENDAR STRIP ============ */
.calendar-strip { margin-top: 40px; padding: 30px 28px; background: linear-gradient(145deg, var(--dark2) 0%, var(--dark3) 100%); border-radius: 12px; border: 1px solid rgba(199,165,111,.08); }
.calendar-title { font-size: .95rem; font-weight: 600; color: var(--gold-soft); margin-bottom: 20px; text-align: center; }
.calendar-timeline { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.cal-item { flex: 1; min-width: 110px; text-align: center; padding: 16px 12px; background: rgba(255,255,255,.03); border-radius: 10px; border: 1px solid rgba(255,255,255,.06); transition: border-color .25s, box-shadow .25s, background .25s; }
.cal-item:hover { border-color: rgba(199,165,111,.2); box-shadow: 0 0 16px rgba(199,165,111,.08); background: rgba(255,255,255,.05); }
.cal-item.cal-stac { border-color: rgba(199,165,111,.35); background: rgba(199,165,111,.08); position: relative; }
.cal-item.cal-stac::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); border-radius: 10px 10px 0 0; opacity: .6; }
.cal-date { font-family: var(--fd); font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 6px; }
.cal-stac .cal-date { color: var(--gold); text-shadow: 0 1px 6px rgba(199,165,111,.2); }
.cal-type { font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.45); margin-bottom: 6px; }
.cal-stac .cal-type { color: var(--gold); opacity: .75; }
.cal-desc { font-size: .65rem; color: rgba(255,255,255,.4); line-height: 1.4; }
.calendar-footer { font-size: .84rem; color: rgba(255,255,255,.45); text-align: center; border-top: 1px solid rgba(199,165,111,.08); padding-top: 16px; margin-top: 4px; }
.calendar-footer strong { color: rgba(255,255,255,.6); }

/* ============ MENTOR FULL SECTION ============ */
.mentor-full { display: flex; gap: 32px; align-items: center; margin-bottom: 36px; }
.mentor-full-photo img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(199,165,111,.4); box-shadow: 0 0 0 10px rgba(199,165,111,.06), 0 12px 40px rgba(0,0,0,.12), var(--glow-gold); }
.mentor-full-bio h3 { font-family: var(--fd); font-size: var(--fs-xl); color: var(--text); margin-bottom: 12px; background: linear-gradient(135deg, var(--text) 0%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mentor-full-bio p { font-size: 1.02rem; color: var(--muted); line-height: 1.72; }
.mentor-stats { display: flex; gap: 12px; flex-wrap: wrap; }
.mentor-stat { flex: 1; min-width: 140px; text-align: center; padding: 22px 14px; background: #fff; border-radius: 12px; border: 1px solid rgba(199,165,111,.08); box-shadow: var(--shadow-md); transition: transform .25s var(--ease), box-shadow .25s; position: relative; overflow: hidden; }
.mentor-stat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), transparent 80%); opacity: .5; }
.mentor-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg), var(--shadow-gold); }
.mentor-stat-value { font-family: var(--fd); font-size: 1.4rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px; text-shadow: 0 1px 8px rgba(199,165,111,.15); }
.mentor-stat-label { font-size: .78rem; color: var(--muted); }

/* ============ PRICING EXTRAS ============ */
.price-tier-brutto { font-size: .75rem; color: rgba(255,255,255,.35); margin-top: 4px; }
.price-info { display: flex; justify-content: center; gap: 8px; font-size: .84rem; color: rgba(255,255,255,.45); margin-bottom: 36px; flex-wrap: wrap; }

/* ============ QUOTES ============ */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote { padding: 24px 26px; background: var(--cream2); border-radius: 12px; border-left: 3px solid var(--gold); position: relative; transition: transform .25s var(--ease), box-shadow .25s; }
.quote:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.quote::before { content: '\201C'; position: absolute; top: 6px; left: 16px; font-family: var(--fd); font-size: 2.8rem; line-height: 1; color: var(--gold); opacity: .1; pointer-events: none; }
.quote-inner { display: flex; gap: 14px; align-items: flex-start; }
.quote-initials { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold) 0%, #e0c88f 100%); display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: .85rem; font-weight: bold; color: var(--dark); flex-shrink: 0; box-shadow: 0 2px 8px rgba(199,165,111,.2); }
.quote p { font-size: var(--fs-base); font-style: italic; color: var(--text); margin-bottom: 10px; line-height: 1.7; padding-left: 8px; }
.quote footer { display: flex; flex-direction: column; padding-left: 8px; }
.quote footer strong { font-size: .85rem; color: var(--text); }
.quote footer span { font-size: .78rem; color: var(--muted); margin-top: 1px; }
.quote-featured { background: rgba(199,165,111,.04); border-left-width: 4px; }
.sect-dark .quote { background: var(--dark2); border-left-color: var(--gold); border: 1px solid rgba(199,165,111,.1); border-left: 3px solid var(--gold); }
.sect-dark .quote p { color: rgba(255,255,255,.7); }
.sect-dark .quote footer strong { color: var(--gold-soft); }
.sect-dark .quote footer span { color: rgba(255,255,255,.35); }
.sect-dark .quote-featured { background: rgba(199,165,111,.06); border-left-width: 4px; }
.sect-dark .quote::before { color: var(--gold); opacity: .08; }
.sect-dark .quotes { grid-template-columns: 1fr 1fr; }
.sect-dark .quote-initials { background: var(--gold); color: var(--dark); }

/* ============ PRICING ============ */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 40px; }
.price-tier { text-align: center; padding: 32px 18px; background: linear-gradient(145deg, var(--dark2) 0%, var(--dark3) 100%); border-radius: 14px; border: 1px solid rgba(255,255,255,.05); position: relative; box-shadow: 0 4px 16px rgba(0,0,0,.2); transition: transform .25s var(--ease); }
.price-tier:hover { transform: translateY(-2px); }
.price-tier-active { border-color: rgba(199,165,111,.5); box-shadow: 0 8px 32px rgba(0,0,0,.3), var(--glow-gold); transform: scale(1.03); }
.price-tier-active::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-soft), transparent); border-radius: 14px 14px 0 0; }
.price-tier-active:hover { transform: scale(1.03) translateY(-2px); }
.price-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--dark); background: var(--gold); padding: 3px 14px; border-radius: 10px; white-space: nowrap; }
.price-tier-label { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 14px; }
.price-tier-amount { font-family: var(--fd); font-size: var(--fs-xl); font-weight: bold; color: #fff; line-height: 1.2; }
.price-tier-active .price-tier-amount { font-size: 1.8rem; color: var(--gold); }
.price-tier-amount span { font-size: .78rem; font-weight: 400; color: rgba(255,255,255,.35); }
.price-tier-note { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: 8px; }
.price-savings { font-size: .78rem; color: var(--gold); margin-top: 6px; font-weight: 500; }

/* Bonuses */
.bonuses { margin-bottom: 36px; padding: 28px 26px; background: linear-gradient(145deg, var(--dark2) 0%, var(--dark3) 100%); border-radius: 12px; border: 1px solid rgba(199,165,111,.06); }
.bonuses h3 { font-size: 1rem; font-weight: 600; color: var(--gold-soft); margin-bottom: 16px; }
.bonuses ul { list-style: none; columns: 2; column-gap: 32px; }
.bonuses li { font-size: .92rem; color: rgba(255,255,255,.55); padding: 5px 0 5px 20px; position: relative; break-inside: avoid; line-height: 1.55; }
.bonuses li::before { content: ''; position: absolute; left: 0; top: 12px; width: 6px; height: 6px; border-radius: 50%; border: 1.5px solid var(--gold); opacity: .5; }

/* Premium packs */
.premium-packs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 8px; }
.pack { padding: 22px 20px; background: linear-gradient(145deg, var(--dark2) 0%, var(--dark3) 100%); border-radius: 12px; border: 1px solid rgba(199,165,111,.1); transition: transform .2s var(--ease), box-shadow .2s, border-color .2s; }
.pack:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2), var(--glow-gold); border-color: rgba(199,165,111,.2); }
.pack-name { font-size: .95rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.pack-name span { font-weight: 400; color: rgba(255,255,255,.4); font-size: .84rem; }
.pack p { font-size: .9rem; color: rgba(255,255,255,.5); margin-bottom: 0; line-height: 1.6; }

/* ============ FAQ ============ */
.faq-light { max-width: var(--w-narrow); }
.faq-item-light { padding: 20px 24px; margin-bottom: 8px; background: #fff; border-radius: 12px; border: 1px solid rgba(0,0,0,.04); cursor: pointer; box-shadow: var(--shadow-sm); transition: box-shadow .25s, border-color .25s; }
.faq-item-light:hover { box-shadow: var(--shadow-md); border-color: rgba(199,165,111,.12); }
.faq-item-light.open { border-color: rgba(199,165,111,.2); box-shadow: var(--shadow-md), 0 0 0 1px rgba(199,165,111,.08); }
.faq-item-light h3 { font-size: 1.02rem; color: var(--text); margin-bottom: 0; display: flex; align-items: center; justify-content: space-between; }
.faq-item-light h3::after { content: '+'; font-size: 1.2rem; font-weight: 300; color: var(--gold); transition: transform .3s var(--ease); flex-shrink: 0; margin-left: 16px; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(199,165,111,.08); }
.faq-item-light.open h3::after { transform: rotate(45deg); background: rgba(199,165,111,.15); }
.faq-item-light.open h3 { margin-bottom: 12px; }
.faq-item-light p { font-size: var(--fs-base); color: var(--muted); margin-bottom: 0; line-height: 1.65; max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), opacity .3s; opacity: 0; }
.faq-item-light.open p { max-height: 200px; opacity: 1; }

/* ============ FORM ============ */
.form-sub { color: rgba(255,255,255,.55); font-size: 1.05rem; margin-bottom: 36px; max-width: var(--w-narrow); }
.form { max-width: 540px; }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.form-row .optional { font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-row input { display: block; width: 100%; padding: 15px 18px; font-family: var(--ff); font-size: 1rem; background: var(--dark2); color: #fff; border: 1px solid rgba(255,255,255,.08); border-radius: 8px; transition: border-color .2s, box-shadow .2s; }
.form-row input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(199,165,111,.1); }
.form-row input::placeholder { color: rgba(255,255,255,.15); }

.form-check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 24px; }
.form-check input { margin-top: 3px; accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
.form-check label { font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.5; cursor: pointer; }
.required { color: #e05050; font-weight: 700; font-size: .9rem; }
.form-error { font-size: .78rem; color: #e05050; margin-top: 6px; display: none; }
.form-check.shake { animation: formShake .4s ease; }
.form-check.shake label { color: rgba(255,200,200,.6); }
@keyframes formShake { 0%,100% { transform: translateX(0); } 20%,60% { transform: translateX(-4px); } 40%,80% { transform: translateX(4px); } }
.form-row input:invalid:not(:placeholder-shown) { border-color: rgba(224,80,80,.4); }
.form-note { font-size: .84rem; color: rgba(255,255,255,.45); margin-top: 14px; text-align: center; }

.form-ok { display: none; text-align: center; padding: 56px 24px; }
.form-ok.show { display: block; }
.form-ok svg { margin-bottom: 16px; }
.form-ok h3 { font-family: var(--fd); font-size: var(--fs-xl); color: #fff; margin-bottom: 8px; }
.form-ok p { color: rgba(255,255,255,.45); }

/* ============ FOOTER ============ */
.footer { background: linear-gradient(180deg, #111110 0%, var(--dark) 100%); color: rgba(255,255,255,.55); font-size: .88rem; position: relative; }
.footer a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer a:hover { color: var(--gold-soft); }

.footer-top { padding: 56px 0 40px; border-top: 2px solid rgba(199,165,111,.15); position: relative; }
.footer-top::before { content: ''; position: absolute; top: -2px; left: 50%; transform: translateX(-50%); width: 60px; height: 2px; background: var(--gold); opacity: .6; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; max-width: 1100px; margin: 0 auto; }
.footer-brand { display: block; font-family: var(--fd); font-size: 1.15rem; color: var(--gold-soft); margin-bottom: 14px; letter-spacing: .01em; }
.footer-address { color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 12px; font-size: .82rem; }
.footer-contact { line-height: 1.8; }
.footer-contact a { color: rgba(255,255,255,.6); }
.footer-heading { display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); margin-bottom: 16px; opacity: .7; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: .84rem; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 8px; transition: color .2s; }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-nav a:hover .footer-icon { opacity: .8; }
.footer-icon { width: 14px; height: 14px; stroke: var(--gold); opacity: .5; flex-shrink: 0; }
.footer-contact .footer-icon { width: 13px; height: 13px; vertical-align: -2px; display: inline; margin-right: 6px; }
.footer-vat { margin-top: 16px; font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.6; }
.footer-vat-inline { font-size: .75rem; color: rgba(255,255,255,.35); }

/* ============ SCROLL TO TOP ============ */
.scroll-top { position: fixed; bottom: 80px; right: 24px; z-index: 90; width: 44px; height: 44px; border-radius: 50%; background: rgba(199,165,111,.15); border: 1px solid rgba(199,165,111,.25); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transform: translateY(10px); transition: all .3s var(--ease); pointer-events: none; }
.scroll-top.visible { opacity: 1; transform: none; pointer-events: auto; }
.scroll-top:hover { background: rgba(199,165,111,.25); border-color: var(--gold); }
.scroll-top svg { width: 18px; height: 18px; stroke: var(--gold); stroke-width: 2; }

.footer-social-bar { display: flex; justify-content: center; margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(199,165,111,.06); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); transition: all .25s var(--ease); }
.footer-social a:hover { background: rgba(199,165,111,.12); border-color: rgba(199,165,111,.25); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(199,165,111,.15); }
.footer-social a i { font-size: 1rem; color: rgba(255,255,255,.4); transition: color .25s; }
.footer-social a:hover i { color: var(--gold); }

.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.04); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: 0; }
.footer-tagline { font-family: var(--fd); font-style: italic; color: rgba(199,165,111,.7); }

/* ============ TABLET (max 960px) ============ */
@media (max-width: 960px) {
  .hero-inner { gap: 40px; padding: 120px 36px 90px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .quotes { grid-template-columns: 1fr; }
}

/* ============ MOBILE (max 720px) ============ */
@media (max-width: 720px) {
  html { font-size: 16.5px; }
  .container { padding: 0 20px; }

  /* Top bar mobile - compact */
  .top-bar-inner { height: 40px; padding: 0 12px; gap: 8px; }
  .top-bar-brand { display: none; }
  .top-bar-label { display: none; }
  .cd-unit { min-width: 24px; }
  .cd-num { font-size: .85rem; }
  .cd-label { font-size: .62rem; }
  .cd-sep { font-size: .7rem; }
  .top-bar-cta { font-size: .75rem; padding: 5px 12px; }
  body { padding-top: 40px; }

  /* Hero mobile - reduce clutter */
  .hero { min-height: calc(100svh - 40px); }
  .hero-inner { flex-direction: column; padding: 48px 20px 40px; gap: 16px; text-align: center; }
  .hero-avatar { order: -1; }
  .hero-avatar img { width: 80px; height: 80px; }
  .hero-avatar-name { font-size: 1.08rem; margin-top: 10px; }
  .hero-avatar-role { font-size: .78rem; }
  .hero-avatar-stats { font-size: .75rem; margin-top: 6px; }
  .hero-kicker { font-size: 1.05rem; margin-bottom: 8px; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; font-size: .95rem; padding-left: 14px; border-left-width: 1.5px; }
  .hero-languages { font-size: .75rem; letter-spacing: .1em; margin-bottom: 10px; }
  .hero-friction { font-size: .78rem; }
  .badge { font-size: .68rem; letter-spacing: .1em; padding: 5px 12px; margin-bottom: 14px; }
  h1 { font-size: 1.6rem; margin-bottom: 12px; }
  .hero-photo { opacity: .1; }
  .sect { padding: 64px 0; }

  /* Trust bar mobile - compact */
  .trust-bar { justify-content: center; }
  .trust-item { padding: 10px 12px; font-size: .72rem; }
  .trust-item + .trust-item::before { display: none; }
  .trust-item svg { width: 12px; height: 12px; }

  /* Mentor mobile */
  .mentor-split { flex-direction: column; }
  .mentor-message { max-width: 100%; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 24px 20px; }
  .mentor-photo { width: 70px; height: 70px; }
  .mentor-video-row { justify-content: center; }
  .mentor-video { width: 100%; }

  /* Transformation */
  .transform-grid { grid-template-columns: 1fr; gap: 12px; }
  .tf-col { padding: 22px 20px 18px; }

  /* Program timeline */
  .pt-body { grid-template-columns: 1fr; }
  .pt-header { padding: 14px 16px; }

  /* Calendar - 2 per row on mobile */
  .calendar-timeline { flex-wrap: wrap; gap: 8px; }
  .cal-item { min-width: calc(50% - 8px); flex: 0 0 calc(50% - 8px); padding: 12px 10px; }
  .cal-date { font-size: .8rem; }
  .cal-type { font-size: .58rem; }
  .cal-desc { font-size: .62rem; }

  /* Mentor full */
  .mentor-full { flex-direction: column; text-align: center; gap: 20px; }
  .mentor-full-photo img { width: 140px; height: 140px; }
  .mentor-stats { gap: 8px; }
  .mentor-stat { min-width: calc(33% - 8px); padding: 14px 8px; }
  .mentor-stat-value { font-size: 1.1rem; }

  /* Quotes - dark section 1 col */
  .sect-dark .quotes { grid-template-columns: 1fr; }

  /* Photo backgrounds - scroll on mobile (iOS fixed bug) */
  .stat-break { background-attachment: scroll; padding: 60px 0; }

  /* Sections */
  h2 { font-size: 1.45rem; margin-bottom: 28px; }

  /* Numbers strip mobile - last odd item centered */
  .numbers-grid { flex-wrap: wrap; gap: 16px 0; }
  .number-block { flex: 0 0 50%; }
  .number-block:last-child:nth-child(odd) { flex: 0 0 100%; }
  .numbers-strip { padding: 56px 0; }

  /* Rynek mobile */
  .rynek-grid { grid-template-columns: 1fr; gap: 10px; }
  .rynek-num { font-size: 1.4rem; }

  /* Grids - single column on mobile */
  .audience-grid { grid-template-columns: 1fr; gap: 10px; }
  .audience-card { padding: 20px 18px; text-align: left; display: flex; gap: 14px; align-items: center; }
  .audience-icon { margin-bottom: 0; flex-shrink: 0; }
  .audience-card h3 { font-size: .92rem; margin-bottom: 2px; }
  .program-grid { grid-template-columns: 1fr; gap: 10px; }
  .pricing { grid-template-columns: 1fr; gap: 10px; }
  .price-tier { padding: 24px 16px; }
  .price-tier-active .price-tier-amount { font-size: 1.5rem; }
  .bonuses ul { columns: 1; }
  .premium-packs { grid-template-columns: 1fr; gap: 10px; }
  .program-stats { flex-direction: column; gap: 6px; padding: 16px 20px; }
  .ps-dot { display: none; }

  /* Inline quotes */
  .inline-quote { padding: 18px 20px; font-size: .95rem; margin-top: 28px; }

  /* Form */
  .form { max-width: 100%; }
  .form-sub { font-size: .98rem; }

  /* CTA full width on mobile */
  .btn-lg { padding: 16px 32px; width: 100%; text-align: center; display: block; }

  /* Footer mobile - compact 2-col */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .footer-brand { font-size: .98rem; margin-bottom: 10px; }
  .footer-address { font-size: .75rem; }
  .footer-contact { font-size: .75rem; }
  .footer-heading { font-size: .68rem; margin-bottom: 12px; }
  .footer-nav a { font-size: .78rem; gap: 6px; }
  .footer-icon { width: 12px; height: 12px; }
  .footer-vat { font-size: .72rem; }
  .footer-social-bar { margin-top: 20px; padding-top: 18px; }
  .footer-social a { width: 36px; height: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 4px; }
  .footer-bottom p { font-size: .72rem; }
}

/* ============ SMALL MOBILE (max 480px) ============ */
@media (max-width: 480px) {
  html { font-size: 16px; }
  body { padding-top: 40px; }
  .container { padding: 0 16px; }
  .hero-inner { padding: 36px 16px 32px; gap: 12px; }
  .hero-avatar img { width: 64px; height: 64px; border-width: 2px; }
  .hero-avatar-name { font-size: .95rem; margin-top: 8px; }
  .hero-avatar-role { font-size: .75rem; }
  .hero-avatar-stats { font-size: .7rem; }
  h1 { font-size: 1.5rem; line-height: 1.12; margin-bottom: 10px; }
  .hero-kicker { font-size: .95rem; margin-bottom: 6px; }
  .hero-languages { font-size: .7rem; letter-spacing: .08em; }
  .hero-sub { font-size: .9rem; margin-bottom: 24px; }
  .badge { font-size: .65rem; padding: 4px 10px; margin-bottom: 10px; }
  .btn-lg { padding: 14px 24px; font-size: .95rem; }

  .sect { padding: 48px 0; }
  h2 { font-size: 1.3rem; margin-bottom: 20px; }

  .btn-gold { display: block; width: 100%; text-align: center; padding: 15px 24px; }
  .form-row input { font-size: 16px; padding: 14px 16px; }
  .quote-inner { flex-direction: column; gap: 8px; }
  .quote-initials { width: 34px; height: 34px; font-size: .75rem; }
  .quote { padding: 18px 14px; }
  .quote::before { display: none; }
  .inline-quote { padding: 16px; font-size: .92rem; }
  .format-strip { padding: 18px 16px; }
  .bonuses { padding: 20px 16px; }
  .pack { padding: 18px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 16px 12px; }
  .footer-nav a { font-size: .75rem; }
  .footer-heading { font-size: .65rem; }
  .cookie-inner { flex-direction: column; text-align: center; gap: 12px; }
}

/* ============ COOKIE BANNER ============ */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; background: rgba(12,11,9,.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid rgba(199,165,111,.1); padding: 16px 24px; }
.cookie-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cookie-banner p { font-size: .84rem; color: rgba(255,255,255,.55); margin: 0; line-height: 1.5; }
.cookie-banner a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn { font-family: var(--ff); font-size: .82rem; font-weight: 600; border: none; border-radius: 6px; padding: 8px 18px; cursor: pointer; transition: all .2s; }
.cookie-btn-accept { background: var(--gold); color: var(--dark); }
.cookie-btn-accept:hover { background: var(--gold-soft); }
.cookie-btn-reject { background: transparent; color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.12); }
.cookie-btn-reject:hover { border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.7); }
