/* ============================================================
   PATRYCJA KACZOROWSKA — Coaching Długowieczności
   Główny stylesheet (granat + kobalt + jasne złoto + biel)
   Klub Długowieczności używa style-klub.css (zielony)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --navy: #09045d;
  --navy-mid: #151083;
  --blue: #1c15a8;
  --blue-light: #342bc7;
  --blue-pale: #f0efff;
  --gold: #f4df8c;
  --gold-light: #fff0b3;
  --cream: #fefefe;
  --cream-dark: #f7f6ff;
  --text: #09045d;
  --text-mid: #353067;
  --text-muted: #7772a5;
  --white: #ffffff;
  --border: rgba(28,21,168,0.14);
  --shadow: 0 4px 32px rgba(9,4,93,0.10);
  --shadow-lg: 0 12px 48px rgba(9,4,93,0.16);
  --r: 4px;
  --r-lg: 10px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--cream); line-height: 1.7; font-size: 17px; overflow-x: hidden; }

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.newsletter-privacy { margin-top: 0.85rem; font-size: 0.78rem; color: rgba(255,255,255,0.68); text-align: center; }
.newsletter-privacy a { color: var(--gold-light); }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: start; }

/* ── NAV ── */
nav.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(9,4,93,0.97); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: space-between; padding: 0 3%; height: 70px; border-bottom: 1px solid rgba(244,223,140,0.30); }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--white); letter-spacing: 0.02em; text-decoration: none; white-space: nowrap; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: clamp(0.55rem, 1.15vw, 1.15rem); list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 0.7rem; letter-spacing: 0.045em; text-transform: uppercase; font-weight: 700; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--navy); padding: 9px 16px; border-radius: var(--r); font-weight: 700; font-size: 0.7rem; text-decoration: none; letter-spacing: 0.05em; text-transform: uppercase; transition: background 0.2s, transform 0.15s; white-space: nowrap; }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-links a.nav-cta { color: var(--navy); }
.nav-links a.nav-cta:hover { color: var(--navy); }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ── BUTTONS ── */
.btn-primary { background: var(--gold); color: var(--navy); padding: 15px 34px; border-radius: var(--r); font-weight: 700; font-size: 0.9rem; text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.2s; display: inline-block; border: none; cursor: pointer; font-family: 'Lato', sans-serif; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(244,223,140,0.35); }
.btn-outline { background: transparent; color: var(--white); padding: 15px 34px; border-radius: var(--r); font-weight: 700; font-size: 0.9rem; text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; border: 1.5px solid rgba(255,255,255,0.45); transition: all 0.2s; display: inline-block; font-family: 'Lato', sans-serif; cursor: pointer; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline.dark { color: var(--navy); border-color: rgba(9,4,93,0.4); }
.btn-outline.dark:hover { border-color: var(--blue); color: var(--blue); }
.btn-sm { padding: 10px 22px; border-radius: var(--r); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none; background: var(--blue); color: white; transition: all 0.2s; display: inline-block; border: none; cursor: pointer; font-family: 'Lato', sans-serif; }
.btn-sm:hover { background: var(--blue-light); }

/* ── HERO ── */
.hero { min-height: 100vh; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 52%, var(--blue) 100%); display: flex; align-items: center; padding: 90px 5% 60px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -120px; right: -80px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(244,223,140,0.12) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(28,21,168,0.24) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: clamp(3.5rem, 6vw, 6rem); align-items: center; width: 100%; position: relative; z-index: 1; }
.hero-copy { min-width: 0; }
.hero-inner.single { grid-template-columns: 1fr; max-width: 900px; text-align: center; }
.hero-inner.single .hero-divider, .hero-inner.single .hero-stats { margin-left: auto; margin-right: auto; }
.hero-inner.single .hero-sub { margin-left: auto; margin-right: auto; }
.hero-eyebrow { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 1.4rem; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 3.55vw, 3.2rem); color: var(--white); line-height: 1.18; font-weight: 700; margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.75); margin-bottom: 0.8rem; line-height: 1.65; max-width: 520px; }
.hero-sub strong { color: rgba(255,255,255,0.95); }
.hero-divider { width: 50px; height: 2px; background: var(--gold); margin: 1.6rem 0; }
.hero-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; color: rgba(255,255,255,0.65); margin-bottom: 2.4rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-inner.single .hero-actions { justify-content: center; }
.hero-stats { display: flex; gap: 2.4rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); display: block; }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; }
.hero-photo-wrap { position: relative; }
.hero-photo-frame { width: 100%; aspect-ratio: 3/4; background: linear-gradient(160deg, rgba(244,223,140,0.22) 0%, rgba(28,21,168,0.34) 100%); border-radius: 12px 12px 60px 12px; border: 1px solid rgba(244,223,140,0.34); display: flex; align-items: flex-end; justify-content: center; overflow: hidden; position: relative; }
.hero-photo-inner { width: 100%; height: 100%; background: linear-gradient(180deg, transparent 30%, rgba(9,4,93,0.88) 100%); display: flex; align-items: flex-end; padding: 2rem; }
.hero-photo-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; color: white; display: block; }
.hero-photo-role { font-size: 0.82rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; }
.hero-badge { position: absolute; top: -16px; right: -16px; background: var(--gold); color: var(--navy); padding: 12px 18px; border-radius: 50%; width: 90px; height: 90px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 700; font-size: 0.7rem; text-align: center; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.04em; box-shadow: 0 4px 20px rgba(244,223,140,0.4); }

/* Page hero (smaller, for inner pages) */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 140px 5% 80px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(244,223,140,0.11), transparent 70%); }
.page-hero-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-eyebrow { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 1.2rem; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); color: var(--white); line-height: 1.2; font-weight: 700; margin-bottom: 1.2rem; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 640px; margin: 0 auto; }
.page-hero .hero-divider { margin: 1.6rem auto; }

/* ── SECTION ── */
section { padding: 90px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-bottom: 0.8rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy); font-weight: 700; line-height: 1.2; margin-bottom: 1.2rem; }
.section-lead { font-size: 1.1rem; color: var(--text-mid); max-width: 620px; line-height: 1.75; }
.gold-line { width: 48px; height: 3px; background: var(--gold); margin: 1.4rem 0; }
.text-center { text-align: center; }
.text-center .section-lead, .text-center .gold-line { margin-left: auto; margin-right: auto; }

/* ── DŁUGOWIECZNOŚĆ / KROK ── */
.longevity-intro { background: linear-gradient(180deg, var(--white) 0%, #fbfaff 100%); padding-bottom: 55px; }
#o-mnie { padding-top: 65px; }
.longevity-intro-head { max-width: 780px; margin: 0 auto; }
.longevity-intro-head .section-lead { max-width: 720px; }
.longevity-focus-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; margin-top: 3.2rem; }
.longevity-focus-card { min-height: 230px; padding: 2.1rem 2rem; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--white); box-shadow: 0 12px 38px rgba(9,4,93,0.07); position: relative; overflow: hidden; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.longevity-focus-card::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--blue)); transform: scaleX(.28); transform-origin: left; transition: transform .35s ease; }
.longevity-focus-card:hover { transform: translateY(-5px); border-color: rgba(28,21,168,.28); box-shadow: var(--shadow-lg); }
.longevity-focus-card:hover::after { transform: scaleX(1); }
.longevity-focus-num { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--blue-pale); color: var(--blue); font-family: 'Playfair Display', serif; font-weight: 700; font-size: .9rem; margin-bottom: 1.2rem; }
.longevity-focus-card h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.25rem; margin-bottom: .65rem; }
.longevity-focus-card p { color: var(--text-mid); font-size: .92rem; line-height: 1.68; }
.longevity-intro-action { display: flex; justify-content: center; margin-top: 2.4rem; }
.longevity-points { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.7rem 0 2rem; }
.longevity-points span { padding: 8px 14px; border-radius: 999px; background: var(--blue-pale); color: var(--blue); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.pillars-grid.services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 1050px; }
.pillars-grid.services-grid .pillar-card { min-height: 390px; display: flex; flex-direction: column; }
.pillars-grid.services-grid .pillar-cta { margin-top: auto; align-self: flex-start; }
.trust-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; max-width: 920px; margin: 0 auto; }
.trust-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem 1.6rem; box-shadow: var(--shadow); }
.trust-number { display: block; font-family: 'Playfair Display', serif; color: var(--blue); font-size: 2.2rem; line-height: 1; font-weight: 700; margin-bottom: 0.8rem; }
.trust-card strong { display: block; color: var(--navy); font-size: 0.95rem; margin-bottom: 0.5rem; }
.trust-card p { color: var(--text-mid); font-size: 0.86rem; line-height: 1.6; }
.krok-word { color: var(--gold); font-style: italic; text-transform: uppercase; }
.krok-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; max-width: 920px; margin: 0 auto; }
.krok-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem 1.6rem; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.krok-card::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(var(--gold), var(--blue)); }
.krok-card > span { display: block; font-family: 'Playfair Display', serif; color: var(--blue); font-size: 2.5rem; line-height: 1; font-weight: 700; margin-bottom: 1rem; }
.krok-card h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.2rem; margin-bottom: 0.6rem; }
.krok-card p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.65; }
.process-steps.four-steps { grid-template-columns: repeat(4, 1fr); }

/* ── SOCIAL PROOF STRIP ── */
.social-strip { background: var(--navy); padding: 22px 5%; display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; justify-content: center; }
.social-strip-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.45); white-space: nowrap; }
.social-strip-logos { display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; }
.social-strip-logo { font-weight: 700; font-size: 0.82rem; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; white-space: nowrap; }

/* ── TEDx ANNOUNCEMENT ── */
.tedx-announcement { background: var(--cream); padding: 46px 5%; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tedx-announcement-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 1.6rem; }
.tedx-mark { flex: 0 0 auto; color: #e62b1e; font-family: Arial, sans-serif; font-size: 2.25rem; font-weight: 900; letter-spacing: -0.1em; line-height: 1; text-decoration: none; }
.tedx-mark span { font-size: 0.72em; font-weight: 700; vertical-align: 0.2em; }
.tedx-announcement-content { flex: 1; min-width: 0; }
.tedx-announcement-eyebrow { margin: 0 0 0.35rem; color: var(--blue); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.tedx-announcement h2 { margin: 0 0 0.35rem; color: var(--navy); font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 2.2vw, 1.7rem); line-height: 1.2; }
.tedx-announcement-copy { max-width: 720px; margin: 0; color: var(--text-mid); font-size: 0.94rem; line-height: 1.55; }
.tedx-announcement-link { flex: 0 0 auto; color: var(--navy); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-decoration: none; white-space: nowrap; }
.tedx-announcement-link span { color: #e62b1e; font-size: 1.1rem; }
.tedx-announcement-link:hover { color: var(--blue); }

/* ── ABOUT GRID ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo { width: 100%; aspect-ratio: 4/5; background: var(--blue-pale); border-radius: 10px 80px 10px 80px; border: 1px solid var(--border); position: relative; overflow: hidden; }
.about-photo-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(244,223,140,0.10), rgba(28,21,168,0.14)); }
.about-quote { position: absolute; bottom: -24px; left: -24px; background: var(--gold); color: var(--navy); padding: 20px 24px; border-radius: var(--r-lg); max-width: 240px; font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.9rem; font-weight: 600; line-height: 1.4; box-shadow: var(--shadow); }
.about-content { padding-top: 1rem; }
.about-story { font-size: 1rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.2rem; }
.about-story strong { color: var(--navy); font-weight: 700; }
.about-credentials { display: flex; flex-direction: column; gap: 0.7rem; margin: 2rem 0; }
.credential { display: flex; align-items: center; gap: 0.8rem; font-size: 0.92rem; color: var(--text-mid); }
.credential-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── PILLARS ── */
.pillars-bg { background: var(--navy); }
.pillars-bg .section-title { color: var(--white); }
.pillars-bg .section-lead { color: rgba(255,255,255,0.65); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.pillar-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(244,223,140,0.22); border-radius: var(--r-lg); padding: 2.4rem 2rem; transition: all 0.25s; position: relative; overflow: hidden; }
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.pillar-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); border-color: rgba(244,223,140,0.46); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon { font-size: 2.4rem; margin-bottom: 1.2rem; display: block; }
.pillar-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--white); font-weight: 700; margin-bottom: 0.8rem; }
.pillar-desc { font-size: 0.93rem; color: rgba(255,255,255,0.62); line-height: 1.7; margin-bottom: 1.6rem; }
.pillar-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.pillar-list li { font-size: 0.85rem; color: rgba(255,255,255,0.5); padding-left: 1.2rem; position: relative; }
.pillar-list li::before { content: '–'; position: absolute; left: 0; color: var(--gold); }
.pillar-cta { display: inline-block; margin-top: 1.8rem; color: var(--gold); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; }
.pillar-cta:hover { color: var(--gold-light); }

/* ── DLA KOGO / FOR WHO ── */
.for-who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.for-who-card { background: var(--white); border-radius: var(--r-lg); padding: 2.4rem; border: 1px solid var(--border); box-shadow: var(--shadow); }
.for-who-card-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); font-weight: 700; margin-bottom: 1.4rem; padding-bottom: 1rem; border-bottom: 2px solid var(--blue-pale); }
.for-who-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.for-who-list li { display: flex; gap: 0.9rem; font-size: 0.95rem; color: var(--text-mid); line-height: 1.5; }
.for-who-check { color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }

/* ── MEMBERSHIP / PRICING ── */
.membership-bg { background: var(--cream-dark); }
.membership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.membership-card { background: var(--white); border-radius: var(--r-lg); padding: 2.4rem 2rem; border: 1px solid var(--border); display: flex; flex-direction: column; position: relative; transition: box-shadow 0.25s, transform 0.25s; }
.membership-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.membership-card.featured { border: 2px solid var(--blue); background: linear-gradient(160deg, #f7f6ff 0%, #ffffff 100%); }
.membership-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue); color: white; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 18px; border-radius: 20px; white-space: nowrap; }
.membership-tier { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-bottom: 0.6rem; }
.membership-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); font-weight: 700; margin-bottom: 1rem; }
.membership-price { margin-bottom: 1.6rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--border); }
.membership-price-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--navy); font-weight: 700; display: block; line-height: 1; }
.membership-price-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.3rem; }
.membership-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; flex: 1; }
.membership-features li { display: flex; gap: 0.75rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.45; }
.feature-check { color: var(--blue); font-weight: 700; flex-shrink: 0; }
.membership-cta-wrap { margin-top: 2rem; }
.btn-membership { display: block; text-align: center; padding: 13px 20px; border-radius: var(--r); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; transition: all 0.2s; }
.btn-membership.primary { background: var(--blue); color: white; }
.btn-membership.primary:hover { background: var(--blue-light); transform: translateY(-1px); }
.btn-membership.outline { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-membership.outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-membership.gold { background: var(--gold); color: var(--navy); }
.btn-membership.gold:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: var(--white); border-radius: var(--r-lg); padding: 2rem; border: 1px solid var(--border); position: relative; }
.testimonial-quote-icon { font-family: 'Playfair Display', serif; font-size: 5rem; line-height: 0.6; color: var(--blue-pale); margin-bottom: 1.2rem; display: block; font-weight: 700; }
.testimonial-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; font-style: italic; margin-bottom: 1.4rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: var(--blue); flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); display: block; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-stars { color: var(--blue); font-size: 0.85rem; letter-spacing: 0.05em; margin-bottom: 0.3rem; }

/* ── OFFER CARDS ── */
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.offer-card { background: var(--white); border-radius: var(--r-lg); padding: 2.2rem; border: 1px solid var(--border); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 1rem; }
.offer-card.featured { border: 2px solid var(--blue); }
.offer-card-tag { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); font-weight: 700; }
.offer-card.featured .offer-card-tag { color: var(--blue); }
.offer-card-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); font-weight: 700; }
.offer-card-desc { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }
.offer-benefits { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.offer-benefits li { display: flex; gap: 0.7rem; font-size: 0.88rem; color: var(--text-mid); }
.offer-benefits li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.offer-price-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.offer-price { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); font-weight: 700; }
.offer-price small { font-family: 'Lato', sans-serif; font-size: 0.82rem; color: var(--text-muted); font-weight: 400; }

/* ── VALUES GRID ── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
.values-grid.four-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 980px; margin-left: auto; margin-right: auto; }
.value-card { padding: 1.8rem 1.5rem; border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--white); }
.value-icon { font-size: 1.5rem; margin-bottom: 0.8rem; display: block; }
.value-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); font-weight: 700; margin-bottom: 0.5rem; }
.value-desc { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; }

/* ── PROCESS ── */
.process-bg { background: var(--blue-pale); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 3rem; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 26px; left: 10%; right: 10%; height: 2px; background: repeating-linear-gradient(90deg, var(--gold) 0 18px, rgba(28,21,168,.30) 18px 29px); z-index: 0; }
.process-steps::after { content: ''; position: absolute; top: -20px; left: 8%; width: 72px; height: 40px; z-index: 2; opacity: 0; pointer-events: none; filter: drop-shadow(0 4px 7px rgba(9,4,93,.18)); background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 36'%3E%3Cg fill='%231c15a8'%3E%3Cellipse cx='18' cy='22' rx='7' ry='11' transform='rotate(-24 18 22)'/%3E%3Ccircle cx='9' cy='8' r='4'/%3E%3Cellipse cx='53' cy='15' rx='7' ry='11' transform='rotate(24 53 15)'/%3E%3Ccircle cx='63' cy='29' r='4'/%3E%3C/g%3E%3C/svg%3E"); animation: processWalk 7s cubic-bezier(.45,.05,.55,.95) infinite; }
@keyframes processWalk { 0% { left: 7%; opacity: 0; transform: translateY(3px) rotate(-3deg); } 10%, 82% { opacity: .72; } 48% { transform: translateY(-3px) rotate(3deg); } 92%, 100% { left: 85%; opacity: 0; transform: translateY(2px) rotate(-2deg); } }
.process-step { text-align: center; padding: 0 0.8rem; position: relative; z-index: 1; }
.process-num { width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; border: 3px solid var(--gold); box-shadow: 0 0 0 6px var(--blue-pale); transition: transform .25s ease, box-shadow .25s ease; }
.process-step:hover .process-num { transform: translateY(-4px); box-shadow: 0 0 0 6px var(--blue-pale), 0 10px 24px rgba(9,4,93,.18); }
.process-step-title { font-weight: 700; font-size: 0.88rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.5rem; }
.process-step-desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.55; }

/* ── EVENTS / TRAINING ── */
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.event-card { background: var(--white); border-radius: var(--r-lg); padding: 1.8rem 2rem; border: 1px solid var(--border); display: flex; gap: 1.5rem; align-items: flex-start; }
.event-year { background: var(--navy); color: var(--gold); font-weight: 700; font-size: 0.8rem; padding: 6px 12px; border-radius: var(--r); white-space: nowrap; flex-shrink: 0; letter-spacing: 0.05em; }
.event-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); font-weight: 700; margin-bottom: 0.4rem; }
.event-desc { font-size: 0.87rem; color: var(--text-mid); line-height: 1.55; }

/* ── NEWSLETTER ── */
.newsletter-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); position: relative; overflow: hidden; }
.newsletter-section::before { content: ''; position: absolute; top: -60px; right: -60px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(244,223,140,0.13), transparent 70%); }
.newsletter-inner { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.newsletter-inner .section-title { color: var(--white); }
.newsletter-inner .section-lead { color: rgba(255,255,255,0.7); margin: 0 auto 0.8rem; }
.newsletter-inner .gold-line { margin: 1.2rem auto; }
.newsletter-perks { display: flex; flex-direction: column; gap: 0.5rem; margin: 1.6rem 0 2.2rem; }
.newsletter-perk { font-size: 0.92rem; color: rgba(255,255,255,0.72); display: flex; align-items: center; justify-content: center; gap: 0.7rem; }
.newsletter-perk::before { content: '✉'; font-size: 1rem; }
.newsletter-form { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 200px; padding: 14px 18px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); border-radius: var(--r); color: white; font-size: 0.95rem; font-family: 'Lato', sans-serif; outline: none; transition: border-color 0.2s; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-bonus { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 1rem; }
.newsletter-bonus strong { color: var(--gold); }

/* ── FINAL CTA ── */
.final-cta { background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%); text-align: center; padding: 100px 5%; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(244,223,140,0.11), transparent 70%); }
.final-cta-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.final-cta .section-title { color: var(--white); margin-bottom: 1.2rem; }
.final-cta-sub { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 2.4rem; line-height: 1.7; }
.final-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.final-cta-note { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-top: 1.4rem; }

/* ── FORMS ── */
.form-section { background: var(--cream-dark); }
.form-wrap { background: var(--white); padding: 3rem; border-radius: var(--r-lg); box-shadow: var(--shadow); border: 1px solid var(--border); }
.form-intro { color: var(--text-mid); font-size: 0.9rem; line-height: 1.65; max-width: 560px; margin: 1rem 0 1.5rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; letter-spacing: 0.04em; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: var(--r); font-size: 0.95rem; font-family: 'Lato', sans-serif; color: var(--text); background: var(--cream); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-checkbox { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }
.form-checkbox input { width: auto; margin-top: 0.2rem; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 3rem auto 0; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.6rem 2rem; margin-bottom: 1rem; }
.faq-q { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); font-weight: 700; margin-bottom: 0.6rem; }
.faq-a { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; }

/* ── BLOG / ARTICLES ── */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.article-card { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-image { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--blue-pale), var(--cream-dark)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.article-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.article-date { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-bottom: 0.6rem; }
.article-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--navy); font-weight: 700; line-height: 1.35; margin-bottom: 0.8rem; }
.article-excerpt { font-size: 0.92rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1.2rem; flex: 1; }
.article-link { color: var(--blue); text-decoration: none; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-top: auto; }
.article-link:hover { color: var(--navy); }

/* ── PUBLICATIONS / SPEAKING ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.event-pill { display: flex; gap: 1rem; align-items: flex-start; padding: 1.4rem; background: var(--blue-pale); border-radius: var(--r-lg); border: 1px solid var(--border); margin-bottom: 1rem; }
.event-pill-year { background: var(--navy); color: var(--gold); font-size: 0.72rem; font-weight: 700; padding: 5px 10px; border-radius: 4px; white-space: nowrap; flex-shrink: 0; }
.event-pill-year.future { background: var(--gold); color: var(--navy); }
.event-pill-title { font-weight: 700; color: var(--navy); font-size: 0.95rem; margin-bottom: 0.2rem; }
.event-pill-desc { font-size: 0.83rem; color: var(--text-mid); }
.publication-card { padding: 1.8rem; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--white); margin-bottom: 1.2rem; }
.publication-card.upcoming { border-color: rgba(244,223,140,0.65); background: linear-gradient(135deg, #fffdf3, #fff); }
.publication-eyebrow { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-bottom: 0.5rem; }
.publication-eyebrow.muted { color: var(--text-muted); }
.publication-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); font-weight: 700; margin-bottom: 0.4rem; }
.publication-desc { font-size: 0.85rem; color: var(--text-mid); }

/* ── INFO BOX ── */
.info-box { padding: 2rem 2.4rem; background: var(--blue-pale); border-radius: var(--r-lg); border: 1px solid rgba(28,21,168,0.16); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.5rem; }
.info-box-title { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.3rem; }
.info-box-desc { font-size: 0.88rem; color: var(--text-mid); }

/* ── FOOTER ── */
footer.site-footer { background: #050231; color: rgba(255,255,255,0.62); padding: 60px 5% 32px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 2.4rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--white); font-weight: 600; margin-bottom: 1rem; display: block; text-decoration: none; }
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.4rem; }
.footer-contact a { display: block; color: var(--gold); font-size: 0.88rem; text-decoration: none; margin-bottom: 0.4rem; }
.footer-heading { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); font-weight: 700; margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom-links { display: flex; gap: 1.4rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* ── TABLET / MOBILE ── */
@media (max-width: 1150px) {
  nav.site-nav { padding: 0 4%; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 1.5rem 5%; gap: 1.2rem; border-top: 1px solid rgba(244,223,140,0.24); }
  .nav-toggle { display: block; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) 330px; gap: 3rem; }
  .hero h1 { font-size: 2.55rem; }
  .pillars-grid.services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .krok-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero { min-height: auto; padding-top: 92px; }
  .hero-inner { grid-template-columns: 1fr; max-width: 800px; }
  .hero-photo-wrap { display: block; order: -1; width: min(100%, 430px); margin: 0 auto; }
  .hero-photo-frame { height: min(100vw, 430px); aspect-ratio: auto; border-radius: 12px 12px 48px 12px; }
  .hero-photo-inner { padding: 1.35rem; }
  .hero-photo-name { font-size: 1.15rem; }
  .hero-photo-role { font-size: 0.68rem; }
  .hero-badge { top: -10px; right: -10px; width: 84px; height: 84px; font-size: 0.64rem; }
}

@media (max-width: 900px) {
  nav.site-nav { padding: 0 4%; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 1.5rem 5%; gap: 1.2rem; border-top: 1px solid rgba(244,223,140,0.24); }
  .nav-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-photo-wrap { display: block; order: -1; width: min(100%, 430px); margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .for-who-grid { grid-template-columns: 1fr; }
  .membership-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before, .process-steps::after { display: none; }
  .events-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .longevity-focus-grid { grid-template-columns: 1fr; max-width: 620px; margin-left: auto; margin-right: auto; }
  .pillars-grid.services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .krok-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-steps.four-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 650px) {
  .pillars-grid.services-grid, .krok-grid { grid-template-columns: 1fr; }
  .pillars-grid.services-grid .pillar-card { min-height: 0; }
}
@media (max-width: 580px) {
  section { padding: 60px 5%; }
  .hero { padding: 86px 5% 54px; }
  .hero-inner { gap: 2rem; }
  .hero-photo-wrap { width: min(100%, 390px); }
  .hero-photo-frame { height: min(100vw, 390px); border-radius: 10px 10px 36px 10px; }
  .hero-photo-inner { padding: 1.1rem; }
  .hero-photo-name { font-size: 1rem; }
  .hero-photo-role { display: block; max-width: 185px; line-height: 1.35; }
  .hero-badge { top: -8px; right: -6px; width: 76px; height: 76px; padding: 8px; font-size: 0.58rem; }
  .hero h1 { font-size: clamp(2rem, 9.8vw, 2.55rem); }
  .hero-sub { font-size: 1.02rem; }
  .hero-stats { gap: 1.15rem; margin-top: 2.2rem; justify-content: space-between; }
  .hero-stat-num { font-size: 1.7rem; }
  .hero-stat-label { font-size: 0.66rem; letter-spacing: 0.06em; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-wrap { padding: 2rem 1.5rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .process-steps.four-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   ARTYKUŁ — pojedynczy wpis blogowy
   ============================================================ */
.article-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 5% 70px;
  text-align: center;
  position: relative; overflow: hidden;
}
.article-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,223,140,0.11), transparent 70%);
}
.article-hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.article-hero-cat {
  font-size: 0.75rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 1.4rem;
}
.article-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white); line-height: 1.25;
  font-weight: 700; margin-bottom: 1.6rem;
}
.article-hero h1 em { font-style: italic; color: var(--gold); }
.article-meta {
  display: flex; gap: 1.5rem; justify-content: center;
  align-items: center; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
  margin-top: 1.4rem;
}
.article-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.article-meta strong { color: var(--gold); font-weight: 700; }

/* Article body */
.article-body-wrap {
  max-width: 720px; margin: 0 auto;
  padding: 70px 5% 80px;
}
.article-lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; line-height: 1.5;
  color: var(--navy); font-style: italic;
  margin-bottom: 2.5rem; padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.article-content {
  font-size: 1.05rem; color: var(--text-mid); line-height: 1.85;
}
.article-content p { margin-bottom: 1.4rem; }
.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; color: var(--navy);
  font-weight: 700; margin: 2.5rem 0 1rem;
  line-height: 1.3;
}
.article-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--navy);
  font-weight: 700; margin: 2rem 0 0.8rem;
  line-height: 1.35;
}
.article-content strong { color: var(--navy); font-weight: 700; }
.article-content em { font-style: italic; color: var(--text); }
.article-content a { color: var(--blue); text-decoration: underline; }
.article-content a:hover { color: var(--navy); }
.article-content ul, .article-content ol {
  margin: 1rem 0 1.6rem 1.6rem;
}
.article-content li { margin-bottom: 0.5rem; }
.article-content blockquote {
  margin: 2rem 0; padding: 1.5rem 2rem;
  background: var(--cream-dark); border-left: 4px solid var(--gold);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1.15rem;
  color: var(--navy); line-height: 1.6;
}
.article-content img {
  max-width: 100%; height: auto;
  border-radius: var(--r-lg); margin: 1.5rem 0;
}

/* Author box at end of article */
.author-box {
  display: flex; gap: 1.5rem; align-items: center;
  padding: 2rem; background: var(--cream-dark);
  border-radius: var(--r-lg); margin-top: 3rem;
  border: 1px solid var(--border);
}
.author-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--navy);
  font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700;
}
.author-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--navy);
  font-weight: 700; margin-bottom: 0.3rem;
}
.author-bio { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

/* CTA inside article */
.article-cta {
  margin: 3rem 0; padding: 2rem 2.4rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white; border-radius: var(--r-lg);
  text-align: center;
}
.article-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: white; margin-bottom: 0.6rem;
}
.article-cta-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem; margin-bottom: 1.4rem;
}

/* Related articles section */
.related-section {
  background: var(--cream-dark);
  padding: 70px 5%;
}
.related-section .section-inner { max-width: 1100px; }
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem; margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .related-grid { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; text-align: center; }
}

/* ============================================================
   ZDJĘCIA — hero photo + logo Klubu
   ============================================================ */
.hero-photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  z-index: 0;
}
.hero-photo-inner {
  position: relative; z-index: 1;
}

/* Logo Klubu */
.klub-logo-hero {
  width: 160px; height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.25));
}
.klub-logo-section {
  background: var(--cream);
  text-align: center;
  padding: 50px 5%;
  border-bottom: 1px solid var(--border);
}
.klub-logo-large {
  max-width: 240px; width: 100%;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}
.klub-logo-caption {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 580px) {
  .klub-logo-hero { width: 120px; }
  .klub-logo-large { max-width: 180px; }
}

/* Zdjęcie wewnątrz about-photo ramki */
.about-photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  z-index: 0;
}
.about-photo-overlay {
  z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(9,4,93,0.18) 100%) !important;
}

/* ============================================================
   EBOOK PRODUCT CARD — subtelna karta sprzedażowa
   ============================================================ */
.ebook-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.ebook-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.ebook-cover {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, var(--blue) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem 1rem;
  position: relative;
  min-height: 240px;
}
.ebook-cover::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(244,223,140,0.18), transparent 60%);
}
.ebook-cover-inner {
  position: relative; z-index: 1;
  border: 1px solid rgba(244,223,140,0.38);
  padding: 1.4rem 1rem;
  border-radius: 4px;
  text-align: center;
  background: rgba(0,0,0,0.15);
  max-width: 140px;
}
.ebook-cover-eyebrow {
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 0.6rem;
}
.ebook-cover-title {
  font-family: 'Playfair Display', serif;
  color: var(--white); font-size: 0.95rem;
  font-weight: 700; line-height: 1.25;
  margin-bottom: 0.6rem;
}
.ebook-cover-author {
  font-size: 0.65rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.1em;
  border-top: 1px solid rgba(244,223,140,0.34);
  padding-top: 0.6rem; margin-top: 0.6rem;
}
.ebook-sale-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--gold); color: var(--navy);
  font-size: 0.65rem; font-weight: 700;
  padding: 4px 9px; border-radius: 3px;
  letter-spacing: 0.1em; z-index: 2;
}
.ebook-body {
  padding: 1.8rem 2rem;
  display: flex; flex-direction: column;
  justify-content: center;
}
.ebook-tag {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blue);
  font-weight: 700; margin-bottom: 0.6rem;
}
.ebook-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--navy);
  font-weight: 700; line-height: 1.3;
  margin-bottom: 0.6rem;
}
.ebook-desc {
  font-size: 0.92rem; color: var(--text-mid);
  line-height: 1.6; margin-bottom: 1.2rem;
}
.ebook-price-row {
  display: flex; align-items: center;
  gap: 1rem; flex-wrap: wrap;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.ebook-price-now {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; color: var(--navy);
  font-weight: 700;
}
.ebook-price-old {
  font-size: 0.95rem; color: var(--text-muted);
  text-decoration: line-through;
}
.ebook-cta {
  margin-left: auto;
  background: var(--gold); color: var(--navy);
  padding: 11px 22px; border-radius: var(--r);
  font-weight: 700; font-size: 0.82rem;
  text-decoration: none; letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.ebook-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(244,223,140,0.34);
}

/* Compact wersja (dla strony głównej — jeszcze bardziej subtelna) */
.ebook-card.compact {
  max-width: 640px;
}
.ebook-card.compact .ebook-cover { min-height: 200px; }
.ebook-card.compact .ebook-body { padding: 1.5rem 1.8rem; }

@media (max-width: 700px) {
  .ebook-card { grid-template-columns: 1fr; }
  .ebook-cover { min-height: 200px; padding: 2rem 1rem; }
  .ebook-body { padding: 1.5rem; }
  .ebook-price-row { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .ebook-cta { margin-left: 0; width: 100%; text-align: center; }
}

/* ============================================================
   COOKIES BANNER (RODO)
   ============================================================ */
.cookies-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(9,4,93,0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(244,223,140,0.38);
  padding: 1.2rem 5%;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  line-height: 1.55;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookies-banner.visible { transform: translateY(0); }
.cookies-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; gap: 1.4rem; align-items: center;
  flex-wrap: wrap; justify-content: center;
}
.cookies-text { flex: 1; min-width: 260px; }
.cookies-text strong { color: var(--gold); font-weight: 700; }
.cookies-text a { color: var(--gold); text-decoration: underline; }
.cookies-text a:hover { color: var(--gold-light); }
.cookies-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cookies-btn {
  padding: 10px 22px; border-radius: var(--r);
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: 'Lato', sans-serif;
  transition: all 0.2s;
}
.cookies-btn.accept { background: var(--gold); color: var(--navy); }
.cookies-btn.accept:hover { background: var(--gold-light); }
.cookies-btn.reject {
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
}
.cookies-btn.reject:hover { color: white; border-color: rgba(255,255,255,0.6); }
@media (max-width: 600px) {
  .cookies-banner { padding: 1rem 4%; font-size: 0.82rem; }
  .cookies-actions { width: 100%; justify-content: stretch; }
  .cookies-btn { flex: 1; }
}

/* ============================================================
   OFERTY PDF — karty do pobrania (szkolenia.html)
   ============================================================ */
.offers-pdf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.offer-pdf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.offer-pdf-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244,223,140,0.48);
}
.offer-pdf-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.offer-pdf-card:hover::before { transform: scaleX(1); }
.offer-pdf-icon {
  width: 54px; height: 54px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.offer-pdf-target {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blue);
  font-weight: 700; margin-bottom: 0.3rem;
}
.offer-pdf-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--navy);
  font-weight: 700; line-height: 1.35;
}
.offer-pdf-desc {
  font-size: 0.9rem; color: var(--text-mid);
  line-height: 1.65; flex: 1;
}
.offer-pdf-meta {
  font-size: 0.78rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 0.5rem;
  padding-top: 0.8rem; border-top: 1px solid var(--border);
}
.offer-pdf-download {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 12px 22px; border-radius: var(--r);
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 0.82rem;
  text-decoration: none; letter-spacing: 0.06em;
  text-transform: uppercase; transition: all 0.2s;
  margin-top: auto;
}
.offer-pdf-download:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(244,223,140,0.34);
}
@media (max-width: 900px) {
  .offers-pdf-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LIFTING 2026 — mikroanimacje i akcenty (navy/blue/gold)
   ============================================================ */

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); transition-delay: var(--reveal-delay, 0s); }
.reveal.revealed { opacity: 1; transform: none; }

/* Złota linia rysuje się przy scrollu */
.reveal-line { transform: scaleX(0); transform-origin: left center; transition: transform .9s cubic-bezier(.16,1,.3,1) .2s; }
.text-center .reveal-line { transform-origin: center; }
.reveal-line.revealed { transform: scaleX(1); }

/* Złoty "sheen" na głównych przyciskach */
.btn-primary, .btn-membership.gold, .ebook-cta { position: relative; overflow: hidden; }
.btn-primary::after, .btn-membership.gold::after, .ebook-cta::after {
  content: ''; position: absolute; top: 0; left: -80%; width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg); transition: left .55s ease; pointer-events: none;
}
.btn-primary:hover::after, .btn-membership.gold:hover::after, .ebook-cta:hover::after { left: 130%; }

/* Miękkie uniesienie kart + złota ramka */
.offer-card, .value-card, .testimonial-card, .for-who-card, .faq-item, .article-card, .offer-pdf-card, .training-card {
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease;
}
.offer-card:hover, .value-card:hover, .testimonial-card:hover, .for-who-card:hover, .article-card:hover, .offer-pdf-card:hover, .training-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(244,223,140,0.52);
}
.membership-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(244,223,140,0.58); }

/* Nav: złote podkreślenie */
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -5px; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.nav-links a:not(.nav-cta):hover::after, .nav-links a:not(.nav-cta).active::after { transform: scaleX(1); }

/* Zdjęcie w hero: łagodne wejście */
.hero-photo-img { animation: heroPhotoIn 1.5s cubic-bezier(.16,1,.3,1) both; }
@keyframes heroPhotoIn { from { opacity: 0; transform: scale(1.07); } to { opacity: 1; transform: scale(1); } }

/* Badge konsultacji: delikatne unoszenie + klikalny */
a.hero-badge { text-decoration: none; cursor: pointer; animation: badgeFloat 5s ease-in-out infinite; transition: box-shadow .3s ease, background .3s ease; }
a.hero-badge:hover { background: var(--gold-light); box-shadow: 0 8px 32px rgba(244,223,140,0.65); }
@keyframes badgeFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -7px; } }

/* Box "wybierz termin" na kontakcie (pokazuje się po podpięciu kalendarza) */
.booking-box { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); border: 1px solid rgba(244,223,140,0.48); border-radius: var(--r-lg); padding: 1.6rem 1.8rem; margin-bottom: 2rem; color: white; }
.booking-box .btn-primary { margin-top: 0.8rem; }

/* Szacunek dla reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-line { opacity: 1; transform: none; transition: none; }
  .hero-photo-img, a.hero-badge { animation: none; }
  .btn-primary::after, .btn-membership.gold::after, .ebook-cta::after { display: none; }
}

/* ============================================================
   HERO — sekwencja wejścia sloganu (strona główna)
   ============================================================ */
.hero-headline .hl { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero-headline .hl { white-space: nowrap; }
.hero-headline .hl-in { display: block; transform: translateY(115%); animation: hlUp 1s cubic-bezier(.16,1,.3,1) forwards; }
.hero-headline .hl:nth-child(1) .hl-in { animation-delay: .15s; }
.hero-headline .hl:nth-child(2) .hl-in { animation-delay: .32s; }
.hero-headline .hl:nth-child(3) .hl-in { animation-delay: .49s; }
.hero-headline .hl:nth-child(4) .hl-in { animation-delay: .66s; }
@keyframes hlUp { to { transform: translateY(0); } }

/* Puenta: złote podkreślenie rysujące się pod "żyć." */
.hero h1 .em-final { position: relative; white-space: nowrap; }
.hero h1 .em-final::after {
  content: ''; position: absolute; left: 0.02em; right: 0.06em; bottom: 0.02em; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px; transform: scaleX(0); transform-origin: left center;
  animation: underlineDraw .8s cubic-bezier(.16,1,.3,1) 1.7s forwards;
}
@keyframes underlineDraw { to { transform: scaleX(1); } }

/* Delikatny złoty połysk przelatujący przez akcentowane słowa (2×) */
.hero h1 em {
  background: linear-gradient(110deg, var(--gold) 40%, #f4e6b8 50%, var(--gold) 60%);
  background-size: 220% 100%; background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: goldSheenText 2.6s ease-in-out 1.9s 2;
}
@keyframes goldSheenText { 0% { background-position: 100% 0; } 100% { background-position: -60% 0; } }

/* Kaskada: eyebrow → linie → kreska → opis → tagline → CTA → liczby */
.fx { opacity: 0; transform: translateY(18px); animation: fxUp .85s cubic-bezier(.16,1,.3,1) forwards; }
.fx-1 { animation-delay: .05s; }
.fx-3 { animation-delay: 1.0s; }
.fx-4 { animation-delay: 1.15s; }
.fx-5 { animation-delay: 1.3s; }
.fx-6 { animation-delay: 1.5s; }
@keyframes fxUp { to { opacity: 1; transform: translateY(0); } }

.hero-divider-draw { transform: scaleX(0); transform-origin: left center; animation: dividerDraw .7s cubic-bezier(.16,1,.3,1) .9s forwards; }
@keyframes dividerDraw { to { transform: scaleX(1); } }

/* Tło hero: poświaty łagodnie "oddychają" */
.hero::before { animation: glowDriftA 16s ease-in-out infinite alternate; }
.hero::after { animation: glowDriftB 19s ease-in-out infinite alternate; }
@keyframes glowDriftA { from { transform: translate(0, 0) scale(1); } to { transform: translate(-70px, 50px) scale(1.18); } }
@keyframes glowDriftB { from { transform: translate(0, 0) scale(1); } to { transform: translate(60px, -40px) scale(1.12); } }

@media (prefers-reduced-motion: reduce) {
  .hero-headline .hl-in { transform: none; animation: none; }
  .hero h1 .em-final::after { transform: scaleX(1); animation: none; }
  .hero h1 em { background: none; -webkit-text-fill-color: var(--gold); animation: none; }
  .fx { opacity: 1; transform: none; animation: none; }
  .hero-divider-draw { transform: none; animation: none; }
  .hero::before, .hero::after { animation: none; }
  .process-steps::after { display: none; }
}

@media (max-width: 960px) {
  .hero-headline .hl { white-space: normal; }
}

/* ============================================================
   POLECAM (główna): darmowy e-book + Klub + pas B2B
   ============================================================ */
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.promo-card { position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2.4rem 2.2rem; box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: flex-start; gap: 0.9rem; transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease; }
.promo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(244,223,140,0.58); }
.promo-card.navy { background: linear-gradient(150deg, var(--navy) 0%, var(--blue) 100%); border-color: rgba(244,223,140,0.40); }
.promo-badge { position: absolute; top: 20px; right: 20px; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 7px 16px; border-radius: 20px; box-shadow: 0 4px 16px rgba(244,223,140,0.52); }
.promo-eyebrow { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); font-weight: 700; margin: 0; }
.promo-card.navy .promo-eyebrow { color: var(--gold); }
.promo-title { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.promo-card.navy .promo-title { color: var(--white); }
.promo-desc { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; margin: 0; }
.promo-card.navy .promo-desc { color: rgba(255,255,255,0.78); }
.promo-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; padding: 0; margin: 0; color: var(--text-mid); }
.promo-card.navy .promo-list { color: rgba(255,255,255,0.85); }
.promo-list li::before { content: '✓'; color: var(--blue); font-weight: 700; margin-right: 0.55rem; }
.promo-card.navy .promo-list li::before { color: var(--gold); }
.promo-note { font-size: 0.78rem; color: var(--text-muted); }
.promo-card.navy .promo-note { color: rgba(255,255,255,0.5); }
.promo-cta-row { margin-top: auto; padding-top: 0.8rem; display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-start; }
.payment-coming-soon { display: flex; flex-direction: column; align-items: flex-start; gap: 0.35rem; padding: 0.75rem 0.9rem; border: 1px solid rgba(28,21,168,0.16); border-radius: var(--r); background: var(--blue-pale); }
.payment-coming-soon-label { color: var(--navy); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.payment-coming-soon-link { color: var(--blue); font-size: 0.82rem; font-weight: 700; text-decoration: none; }
.payment-coming-soon-link:hover { color: var(--navy); text-decoration: underline; }
.payment-live-link { color: var(--blue); font-size: 0.82rem; font-weight: 700; text-decoration: none; }
.payment-live-link:hover { color: var(--navy); text-decoration: underline; }
.article-cta .payment-coming-soon { display: inline-flex; align-items: center; border-color: rgba(244,223,140,0.36); background: rgba(255,255,255,0.08); }
.article-cta .payment-coming-soon-label { color: var(--gold); }
.article-cta .payment-coming-soon-link { color: var(--white); }
.membership-cta-wrap .payment-coming-soon { margin-top: 0; }
.offer-price-row .payment-coming-soon { margin-left: auto; }
.publication-card .payment-coming-soon { margin-top: 0.85rem; }
.promo-logo { width: 104px; height: auto; margin-bottom: 0.2rem; }
.promo-cover { width: 96px; aspect-ratio: 3/4; background: linear-gradient(160deg, var(--navy) 0%, var(--blue) 130%); border: 1px solid rgba(244,223,140,0.58); border-radius: 4px 10px 10px 4px; box-shadow: 6px 8px 20px rgba(9,4,93,0.25); display: flex; align-items: center; padding: 10px; margin-bottom: 0.2rem; }
.promo-cover-inner { display: flex; flex-direction: column; gap: 4px; }
.promo-cover-eyebrow { font-size: 0.5rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.promo-cover-title { font-family: 'Playfair Display', serif; font-size: 0.82rem; font-weight: 700; color: var(--white); line-height: 1.25; }
.promo-cover-author { font-size: 0.5rem; color: rgba(255,255,255,0.6); }
.promo-cover-photo { padding: 0; overflow: hidden; position: relative; width: 100%; max-width: 280px; aspect-ratio: 4 / 5; }
.promo-cover-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 33% 22%; display: block; }
.publication-book-photo { display: block; width: min(100%, 260px); aspect-ratio: 4 / 5; object-fit: cover; object-position: 33% 22%; border-radius: var(--r); margin: 0.8rem 0 1rem; }

.b2b-strip { background: var(--cream-dark); padding: 56px 5%; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.b2b-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; border-left: 4px solid var(--gold); padding-left: 2.2rem; }
.b2b-text .section-eyebrow { margin-bottom: 0.6rem; }
.b2b-text .section-title { margin-bottom: 0.8rem; }
.b2b-cta { flex-shrink: 0; }

@media (max-width: 860px) {
  .promo-grid { grid-template-columns: 1fr; }
  .b2b-inner { flex-direction: column; align-items: flex-start; border-left-width: 3px; padding-left: 1.4rem; }
  .tedx-announcement-inner { align-items: flex-start; flex-wrap: wrap; }
  .tedx-announcement-link { margin-left: calc(2.25rem + 1.6rem); }
}

@media (max-width: 580px) {
  .tedx-announcement-inner { gap: 1rem; }
  .tedx-mark { font-size: 1.8rem; }
  .tedx-announcement-link { margin-left: 0; }
  .tedx-announcement-copy { font-size: 0.86rem; }
}

/* ============================================================
   KLUB — podłużny banner na głównej (identyfikacja zielona)
   ============================================================ */
.klub-banner { background: linear-gradient(135deg, #2D3E3B 0%, #4A6B4E 55%, #6B8E6F 100%); padding: 64px 5%; position: relative; overflow: hidden; }
.klub-banner::before { content: ''; position: absolute; top: -80px; right: -60px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(201,169,112,0.14), transparent 70%); pointer-events: none; }
.klub-banner-inner { max-width: 1120px; margin: 0 auto; display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; position: relative; z-index: 1; }
.klub-banner-logo { width: 130px; height: auto; flex-shrink: 0; filter: drop-shadow(0 6px 20px rgba(0,0,0,0.25)); }
.klub-banner-text { flex: 1; min-width: 280px; }
.klub-banner-eyebrow { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: #C9A970; font-weight: 700; margin-bottom: 0.5rem; }
.klub-banner-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 2.6vw, 2.1rem); color: #FFFBF7; font-weight: 700; margin-bottom: 0.7rem; }
.klub-banner-desc { font-size: 0.98rem; color: rgba(255,251,247,0.82); line-height: 1.7; max-width: 560px; margin-bottom: 1rem; }
.klub-banner-list { list-style: none; display: flex; gap: 1.6rem; flex-wrap: wrap; padding: 0; margin: 0; font-size: 0.88rem; color: rgba(255,251,247,0.9); }
.klub-banner-list li::before { content: '✓'; color: #C9A970; font-weight: 700; margin-right: 0.5rem; }
.klub-banner-cta { flex-shrink: 0; text-align: center; }
.btn-klub { display: inline-block; background: #C9A970; color: #2D3E3B; padding: 15px 34px; border-radius: var(--r); font-weight: 700; font-size: 0.9rem; text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.25s; position: relative; overflow: hidden; }
.btn-klub:hover { background: #E8D8B0; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,169,112,0.4); }
.btn-klub::after { content: ''; position: absolute; top: 0; left: -80%; width: 45%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255,255,255,0.45), transparent); transform: skewX(-20deg); transition: left .55s ease; pointer-events: none; }
.btn-klub:hover::after { left: 130%; }
.klub-banner-note { display: block; margin-top: 0.7rem; font-size: 0.76rem; color: rgba(255,251,247,0.55); line-height: 1.5; }

/* Cena w karcie e-booka */
.promo-price-row { display: flex; align-items: baseline; gap: 0.7rem; }
.promo-price-now { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--navy); }
.promo-price-old { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; }

@media (max-width: 860px) {
  .klub-banner-inner { flex-direction: column; align-items: flex-start; gap: 1.8rem; }
  .klub-banner-list { flex-direction: column; gap: 0.5rem; }
}
@media (prefers-reduced-motion: reduce) { .btn-klub::after { display: none; } }

/* Strona podziękowania — animowany złoty check */
.thanks-check { margin-bottom: 1.6rem; }
.tc-circle { stroke-dasharray: 208; stroke-dashoffset: 208; animation: tcDraw 0.9s cubic-bezier(.16,1,.3,1) 0.2s forwards; }
.tc-mark { stroke-dasharray: 44; stroke-dashoffset: 44; animation: tcDraw 0.5s cubic-bezier(.16,1,.3,1) 1.0s forwards; }
@keyframes tcDraw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .tc-circle, .tc-mark { stroke-dashoffset: 0; animation: none; } }
@media (max-width: 860px) { .values-grid[style*="repeat(3"] { grid-template-columns: 1fr !important; } }

/* Sticky CTA — tylko mobile */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 150; padding: 10px 4% calc(10px + env(safe-area-inset-bottom)); background: rgba(9,4,93,0.97); backdrop-filter: blur(8px); border-top: 1px solid rgba(244,223,140,0.40); transform: translateY(110%); transition: transform .4s cubic-bezier(.16,1,.3,1); display: none; }
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-btn { display: block; text-align: center; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 0.88rem; letter-spacing: 0.04em; text-transform: uppercase; padding: 13px 16px; border-radius: var(--r); text-decoration: none; }
.sticky-cta-btn:active { background: var(--gold-light); }
@media (max-width: 860px) { .sticky-cta { display: block; } }
@media (prefers-reduced-motion: reduce) { .sticky-cta { transition: none; } }

/* ============================================================
   OSTATNIE SZLIFY — detale klasy premium
   ============================================================ */

/* Płynny scroll i złota selekcja tekstu */
html { scroll-behavior: smooth; }
::selection { background: var(--gold); color: var(--navy); }

/* Elegancki scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--navy-mid); border-radius: 6px; border: 2.5px solid var(--cream-dark); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Dostępność z klasą: złoty focus dla klawiatury */
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; }

/* Wejście hero na podstronach (kaskada jak na głównej) */
.page-hero-inner > * { opacity: 0; transform: translateY(16px); animation: fxUp .85s cubic-bezier(.16,1,.3,1) forwards; }
.page-hero-inner > *:nth-child(1) { animation-delay: .08s; }
.page-hero-inner > *:nth-child(2) { animation-delay: .2s; }
.page-hero-inner > *:nth-child(3) { animation-delay: .34s; }
.page-hero-inner > *:nth-child(4) { animation-delay: .48s; }
.page-hero-inner > *:nth-child(5) { animation-delay: .62s; }

/* Poświata w hero podstron delikatnie dryfuje */
.page-hero::before { animation: glowDriftA 18s ease-in-out infinite alternate; }

/* Formularz: kobaltowe podświetlenie pól */
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(28,21,168,0.14); }
.newsletter-form input:focus { box-shadow: 0 0 0 3px rgba(244,223,140,0.22); }

/* Pasek "Współpracuję z" — reakcja na hover */
.social-strip-logo { transition: color .3s ease; cursor: default; }
.social-strip-logo:hover { color: var(--gold-light); }

/* Stopka: linki ze złotym podkreśleniem */
.footer-links a { position: relative; }
.footer-links a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--gold); transition: width .3s ease; }
.footer-links a:hover::after { width: 100%; }

/* Zdjęcia: subtelne przybliżenie */
.about-photo { cursor: default; }
.about-photo-img { transition: transform 1.4s cubic-bezier(.16,1,.3,1); }
.about-photo:hover .about-photo-img { transform: scale(1.045); }
.hero-photo-frame:hover .hero-photo-img { transform: scale(1.03); }
.hero-photo-img { transition: transform 1.4s cubic-bezier(.16,1,.3,1); }

/* Hero: głębia, światło i spokojny ruch premium */
.hero-photo-frame {
  transform: perspective(1000px) rotateX(var(--hero-tilt-y, 0deg)) rotateY(var(--hero-tilt-x, 0deg));
  transition: transform .65s cubic-bezier(.16,1,.3,1), box-shadow .65s ease;
  box-shadow: 0 22px 58px rgba(3, 1, 46, .28);
  will-change: transform;
}
.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(132deg, rgba(255,255,255,.16), transparent 28%, transparent 72%, rgba(244,223,140,.12));
  mix-blend-mode: screen;
}
.hero-photo-frame::after {
  content: '';
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -75%;
  z-index: 2;
  width: 38%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.32), transparent);
  transform: skewX(-18deg);
  transition: left .8s cubic-bezier(.16,1,.3,1), opacity .25s ease;
}
.hero-photo-frame:hover { box-shadow: 0 28px 70px rgba(3, 1, 46, .38); }
.hero-photo-frame:hover::after { left: 135%; opacity: 1; }
.hero-photo-inner { position: relative; z-index: 3; }

/* Cienki wskaźnik postępu przewijania */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 210;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 14px rgba(244,223,140,.48);
}

/* Logo w nav: złota iskra na hover */
.nav-logo { transition: opacity .25s ease; }
.nav-logo:hover span { color: var(--gold-light); }
.nav-logo span { transition: color .3s ease; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .page-hero-inner > * { opacity: 1; transform: none; animation: none; }
  .page-hero::before { animation: none; }
  .about-photo-img, .hero-photo-img, .hero-photo-frame { transition: none; }
  .hero-photo-frame::after { display: none; }
}

/* ============================================================
   TYTUŁY PODSTRON — maskowane wejście linii + złota puenta
   ============================================================ */
.headline-split .hl { display: block; overflow: hidden; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.headline-split .hl-in { display: block; transform: translateY(115%); animation: hlUp 1s cubic-bezier(.16,1,.3,1) forwards; }
.headline-split .hl:nth-child(1) .hl-in { animation-delay: .18s; }
.headline-split .hl:nth-child(2) .hl-in { animation-delay: .36s; }
.headline-split .hl:nth-child(3) .hl-in { animation-delay: .54s; }
.headline-split .hl:nth-child(4) .hl-in { animation-delay: .72s; }

/* Tytuł nie dubluje się z ogólną kaskadą hero */
.page-hero-inner > h1.headline-split { opacity: 1; transform: none; animation: none; }

/* Złoty połysk + rysujące się podkreślenie — jak na głównej */
.page-hero h1 em {
  background: linear-gradient(110deg, var(--gold) 40%, #f4e6b8 50%, var(--gold) 60%);
  background-size: 220% 100%; background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: goldSheenText 2.6s ease-in-out 1.6s 2;
}
.page-hero h1 .em-final { position: relative; }
.page-hero h1 .em-final::after {
  content: ''; position: absolute; left: 0.02em; right: 0.06em; bottom: 0.02em; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px; transform: scaleX(0); transform-origin: left center;
  animation: underlineDraw .8s cubic-bezier(.16,1,.3,1) 1.4s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .headline-split .hl-in { transform: none; animation: none; }
  .page-hero h1 em { background: none; -webkit-text-fill-color: var(--gold); animation: none; }
  .page-hero h1 .em-final::after { transform: scaleX(1); animation: none; }
}

/* Tytuły artykułów — ta sama animacja i złota puenta */
.article-hero h1 em {
  background: linear-gradient(110deg, var(--gold) 40%, #f4e6b8 50%, var(--gold) 60%);
  background-size: 220% 100%; background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: goldSheenText 2.6s ease-in-out 1.6s 2;
}
.article-hero h1 .em-final { position: relative; }
.article-hero h1 .em-final::after {
  content: ''; position: absolute; left: 0.02em; right: 0.06em; bottom: 0.02em; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px; transform: scaleX(0); transform-origin: left center;
  animation: underlineDraw .8s cubic-bezier(.16,1,.3,1) 1.4s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .article-hero h1 em { background: none; -webkit-text-fill-color: var(--gold); animation: none; }
  .article-hero h1 .em-final::after { transform: scaleX(1); animation: none; }
}

/* ============================================================
   DOŁĄCZ DO KLUBU — zielony formularz z animowanym logo
   ============================================================ */
.join-logo-wrap { position: relative; width: 150px; height: 150px; margin: 0 auto 1.6rem; display: flex; align-items: center; justify-content: center; }
.join-logo { width: 118px; height: auto; position: relative; z-index: 2; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3)); animation: joinLogoIn 1.1s cubic-bezier(.16,1,.3,1) both, joinLogoFloat 6s ease-in-out 1.2s infinite; }
.join-logo-ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(201,169,112,0.55); animation: joinRing 3.2s cubic-bezier(.16,1,.3,1) infinite; }
.join-logo-ring.r2 { animation-delay: 1.6s; }
@keyframes joinLogoIn { from { opacity: 0; transform: scale(0.7); } to { opacity: 1; transform: scale(1); } }
@keyframes joinLogoFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }
@keyframes joinRing { 0% { transform: scale(0.75); opacity: 0; } 35% { opacity: 0.8; } 100% { transform: scale(1.35); opacity: 0; } }

.join-form-card { max-width: 520px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--gold); border-radius: var(--r-lg); padding: 2.6rem 2.4rem; box-shadow: var(--shadow-lg); }
.join-form-note { margin-top: 1rem; font-size: 0.78rem; color: var(--text-muted); text-align: center; line-height: 1.6; }
.join-perks { max-width: 520px; margin: 1.6rem auto 0; display: flex; justify-content: center; gap: 1.6rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-mid); }
.join-perks span::first-letter { color: var(--blue); }

@media (max-width: 600px) { .join-form-card { padding: 2rem 1.5rem; } .join-perks { flex-direction: column; align-items: center; gap: 0.5rem; } }
@media (prefers-reduced-motion: reduce) { .join-logo, .join-logo-ring { animation: none; } .join-logo-ring { opacity: 0.4; transform: none; } }

/* ============================================================
   UMÓW ROZMOWĘ — lejek: kalendarz albo "oddzwonię"
   ============================================================ */
.rozmowa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 920px; margin: 0 auto; align-items: start; }
.rozmowa-card { position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2.4rem 2.2rem; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 0.9rem; }
.rozmowa-card.featured { border-top: 4px solid var(--gold); box-shadow: var(--shadow-lg); }
.rozmowa-badge { position: absolute; top: -13px; left: 2rem; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 14px; border-radius: 14px; }
.rozmowa-icon { font-size: 1.9rem; }
.rozmowa-title { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--navy); }
.rozmowa-desc { font-size: 0.93rem; color: var(--text-mid); line-height: 1.65; margin: 0; }
.rozmowa-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; }
.rozmowa-expect { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 2.6rem; font-size: 0.9rem; color: var(--text-mid); }
.rozmowa-expect span::first-letter { color: var(--blue); }
.hero-cta-note { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 0.9rem; letter-spacing: 0.03em; }
@media (max-width: 860px) { .rozmowa-grid { grid-template-columns: 1fr; } .rozmowa-expect { flex-direction: column; align-items: center; gap: 0.6rem; } }

/* ============================================================
   LOGO KLUBU — animacje (hero klubu + banner na głównej)
   ============================================================ */
.klub-logo-wrap { position: relative; width: 190px; height: 190px; margin: 0 auto 1.2rem; display: flex; align-items: center; justify-content: center; }
.klub-logo-wrap .klub-logo-hero { margin: 0; position: relative; z-index: 2; animation: klubLogoIn 1.1s cubic-bezier(.16,1,.3,1) both, klubLogoFloat 6.5s ease-in-out 1.2s infinite; filter: drop-shadow(0 8px 26px rgba(0,0,0,0.28)); }
@keyframes klubLogoIn { from { opacity: 0; transform: scale(0.72); } to { opacity: 1; transform: scale(1); } }
@keyframes klubLogoFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }

/* Banner na głównej: łagodne unoszenie + oddychająca złota poświata */
.klub-banner-logo { animation: klubLogoFloat 7s ease-in-out infinite, klubLogoGlow 4.5s ease-in-out infinite alternate; }
@keyframes klubLogoGlow {
  from { filter: drop-shadow(0 6px 20px rgba(0,0,0,0.25)); }
  to { filter: drop-shadow(0 6px 20px rgba(0,0,0,0.2)) drop-shadow(0 0 22px rgba(201,169,112,0.5)); }
}

@media (prefers-reduced-motion: reduce) {
  .klub-logo-wrap .klub-logo-hero, .klub-banner-logo { animation: none; }
}

/* Rząd przycisków — zawsze równo, zawija się elegancko */
.btn-row { display: flex; gap: 0.9rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.btn-row .btn-primary, .btn-row .btn-outline { margin: 0; }
