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

sup.reg { font-size: 0.5em; vertical-align: super; opacity: 0.65; font-weight: 400; letter-spacing: 0; }

:root {
  --bg: #f5f0fa;
  --primary: #7c5cbf;
  --primary-hover: #6240a8;
  --btn-bg: #8b5ec4;
  --btn-hover: #6a4aad;
  --text-dark: #3d2260;
  --text-medium: #5a3c7a;
  --text-light: #9b87b8;
  --card-bg: rgba(255, 255, 255, 0.65);
  --card-border: rgba(180, 140, 220, 0.25);
  --shadow: 0 4px 32px rgba(124, 92, 191, 0.10);
  --shadow-hover: 0 10px 44px rgba(124, 92, 191, 0.18);
  --radius: 18px;
  --radius-btn: 50px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-medium);
  background-color: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(180, 140, 230, 0.20) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(200, 165, 240, 0.16) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(155, 120, 220, 0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 35% 90%, rgba(190, 155, 235, 0.11) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-dark);
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { line-height: 1.78; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius-btn);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, #9b6ed4, var(--btn-hover));
  color: white;
  box-shadow: 0 4px 20px rgba(139, 94, 196, 0.38);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 94, 196, 0.50);
  background: linear-gradient(135deg, #a87adc, #7350b8);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* ── Cards ── */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* ── Sections ── */
.section { padding: 88px 0; position: relative; }
.section-header { margin-bottom: 12px; }
.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-light);
  margin-top: 10px;
  margin-bottom: 52px;
  max-width: 600px;
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 250, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--card-border);
  padding: 16px 0;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(124, 92, 191, 0.13); }

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-medium);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 10px 24px; font-size: 0.88rem; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-dark);
  margin-left: auto;
  line-height: 1;
}

/* ── Hero ── */
.hero { padding: 96px 0 80px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  background: rgba(139, 94, 196, 0.12);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 { margin-bottom: 20px; }
.hero-lead { font-size: 1.12rem; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero mockup */
.hero-mockup { display: flex; justify-content: center; }
.mockup-book {
  width: 280px;
  background: white;
  border-radius: 6px 18px 18px 6px;
  box-shadow:
    -10px 10px 0 rgba(180,140,220,0.2),
    0 24px 64px rgba(124,92,191,0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px 28px;
  position: relative;
  border: 1px solid rgba(200,170,235,0.35);
}
.mockup-book::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 14px;
  height: 100%;
  background: linear-gradient(180deg, #c4a6e8, #9070c8);
  border-radius: 6px 0 0 6px;
}
.mockup-wave {
  width: 90%;
  height: 36px;
  background: linear-gradient(135deg, rgba(196,166,232,0.5), rgba(144,112,200,0.35));
  border-radius: 30px;
  margin-bottom: 14px;
}
.mockup-author { font-size: 0.78rem; color: var(--text-light); margin-bottom: 6px; text-align: center; }
.mockup-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 4px;
}
.mockup-subtitle { font-size: 0.78rem; color: var(--text-light); text-align: center; margin-bottom: 20px; }
.mockup-week {
  width: 100%;
  background: rgba(139,94,196,0.07);
  border: 1px solid rgba(139,94,196,0.18);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mockup-week:last-child { margin-bottom: 0; }
.mockup-week-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #9b6ed4, var(--btn-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
}
.mockup-week-text { font-size: 0.72rem; color: var(--text-medium); line-height: 1.4; }
.mockup-week-text strong { display: block; color: var(--text-dark); font-size: 0.76rem; margin-bottom: 1px; }

/* ── Fragment programu ── */
.fragment-section { padding: 80px 0; background: rgba(139,94,196,0.03); }
.fragment-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.fragment-book-stack { position: relative; width: 240px; height: 320px; margin: 0 auto; }
.fragment-book-back {
  position: absolute;
  top: 18px; left: 18px;
  width: 210px; height: 290px;
  background: linear-gradient(145deg, #e0d0f5, #c8b0e4);
  border-radius: 6px 14px 14px 6px;
  box-shadow: 0 8px 28px rgba(124,92,191,0.14);
}
.fragment-book-front {
  position: absolute;
  top: 0; left: 0;
  width: 210px; height: 290px;
  background: white;
  border-radius: 6px 14px 14px 6px;
  box-shadow: 0 14px 44px rgba(124,92,191,0.20);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fragment-book-header {
  background: linear-gradient(135deg, #c4a6e8, #9070c8);
  height: 44px;
  border-radius: 6px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fragment-book-header-text {
  font-family: 'Cormorant Garamond', serif;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
}
.fragment-line { height: 5px; background: rgba(139,94,196,0.09); border-radius: 3px; }
.fragment-line.short { width: 65%; }
.fragment-week-card {
  background: rgba(139,94,196,0.06);
  border: 1px solid rgba(139,94,196,0.14);
  border-radius: 7px;
  padding: 8px 10px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fragment-week-icon {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #9b6ed4, #6a4aad);
  border-radius: 50%;
  flex-shrink: 0;
}
.fragment-week-lines { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.fragment-week-line { height: 4px; background: rgba(139,94,196,0.18); border-radius: 2px; }
.fragment-week-line.short { width: 55%; }
.pdf-badge {
  position: absolute;
  bottom: 12px; right: -10px;
  background: white;
  border-radius: 10px;
  padding: 8px 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pdf-badge-box {
  background: #e53e3e;
  color: white;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 4px 6px;
  border-radius: 4px;
}
.pdf-badge-arrow { font-size: 1rem; color: #e53e3e; font-weight: 700; }
.fragment-content h2 { margin-bottom: 16px; }
.fragment-content > p { margin-bottom: 28px; }
.fragment-note { margin-top: 12px; font-size: 0.82rem; color: var(--text-light); }

/* ── Program 8 tygodni ── */
.program-section { padding: 88px 0; }
.weeks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
  gap: 18px;
  margin-top: 52px;
}
.week-card { padding: 24px 22px; display: flex; gap: 16px; align-items: flex-start; }
.week-number {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #9b6ed4, var(--btn-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}
.week-content h4 { margin-bottom: 6px; font-size: 1rem; }
.week-content p { font-size: 0.87rem; line-height: 1.6; }

/* ── O mnie ── */
.o-mnie-section { padding: 88px 0; }
.o-mnie-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  align-items: start;
}
.o-mnie-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #e8ddf5, #c4a6e8);
  box-shadow: 0 24px 64px rgba(124,92,191,0.22);
  position: relative;
}
.o-mnie-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.o-mnie-photo-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  color: rgba(93,60,140,0.5);
  font-size: 0.82rem; text-align: center; padding: 20px;
}
.o-mnie-photo-placeholder svg { opacity: 0.4; }
.o-mnie-content h2 { margin-bottom: 16px; }
.o-mnie-content > p { margin-bottom: 24px; font-size: 1.04rem; }
.o-mnie-jak {
  margin: 28px 0;
  padding: 24px 26px;
  background: rgba(139,94,196,0.06);
  border-left: 3px solid var(--primary);
  border-radius: 0 12px 12px 0;
}
.o-mnie-jak h3 { margin-bottom: 14px; font-size: 1.45rem; }
.o-mnie-jak p { margin-bottom: 14px; }
.o-mnie-jak p:last-child { margin-bottom: 0; }
.o-mnie-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 24px 0; color: var(--text-light); font-size: 1.1rem;
}
.o-mnie-divider::before, .o-mnie-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--card-border);
}
.jak-pracuje-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.jak-pracuje-card { padding: 20px 18px; }
.jak-pracuje-card h4 { margin-bottom: 10px; color: var(--text-dark); font-size: 0.95rem; }
.jak-pracuje-card > p { font-size: 0.82rem; margin-bottom: 8px; color: var(--text-light); }
.check-list { list-style: none; }
.check-list li {
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 6px; font-size: 0.87rem; line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  color: var(--primary); font-weight: 800;
  margin-top: 1px; flex-shrink: 0;
}
.o-mnie-cta { text-align: center; margin-top: 28px; }
.o-mnie-cta p { font-style: italic; font-size: 1rem; margin-bottom: 16px; }

/* ── Oferta ── */
.oferta-section { padding: 88px 0; background: rgba(139,94,196,0.025); }
.oferta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.oferta-card { padding: 26px 24px; display: flex; gap: 18px; align-items: flex-start; }
.oferta-icon {
  width: 52px; height: 52px;
  background: rgba(139,94,196,0.10);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 22px;
}
.oferta-content h4 { margin-bottom: 8px; font-size: 1.05rem; }
.oferta-content p { font-size: 0.86rem; line-height: 1.65; }
.oferta-footer { text-align: center; margin-top: 52px; }
.oferta-footer p { font-style: italic; font-size: 1.04rem; margin-bottom: 18px; }

/* ── eBooki ── */
.ebooki-section { padding: 64px 0; }
.ebooki-cta-block {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, rgba(139,94,196,0.08), rgba(180,140,220,0.14));
  border: 1.5px solid rgba(139,94,196,0.20);
  border-radius: 24px;
  padding: 40px 48px;
}
.ebooki-cta-icon { font-size: 3rem; flex-shrink: 0; }
.ebooki-cta-text { flex: 1; }
.ebooki-cta-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 8px;
}
.ebooki-cta-text p {
  color: var(--text-medium);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .ebooki-cta-block {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}
.ebook-card { padding: 32px 28px; text-align: center; }
.ebook-tablet {
  width: 180px; height: 240px;
  background: #1c1a2e;
  border-radius: 16px;
  margin: 0 auto 22px;
  padding: 10px;
  box-shadow: 0 20px 56px rgba(0,0,0,0.32);
  position: relative;
}
.ebook-tablet::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 4px;
  background: #333; border-radius: 2px;
}
.ebook-screen {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #fff 0%, #f5f0fa 100%);
  border-radius: 8px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.ebook-screen-header {
  background: linear-gradient(135deg, #c4a6e8, #8b5ec4);
  padding: 8px 6px;
  text-align: center;
  font-size: 0.58rem;
  color: white;
  font-weight: 700;
  line-height: 1.5;
}
.ebook-screen-img {
  flex: 1;
  background: linear-gradient(160deg, #f0e8ff, #e0d0f8);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
}
.ebook-screen-cta {
  background: rgba(139,94,196,0.14);
  padding: 5px 4px;
  font-size: 0.56rem;
  color: var(--primary);
  font-weight: 700;
  text-align: center;
}
.ebook-card h4 { color: var(--text-dark); margin-bottom: 8px; font-size: 1.05rem; }
.ebook-card p { font-size: 0.87rem; margin-bottom: 18px; }
.promo-banner {
  margin-top: 44px;
  padding: 24px 32px;
  background: rgba(139,94,196,0.07);
  border: 1px solid rgba(139,94,196,0.18);
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.promo-icon { font-size: 2.2rem; }
.promo-text { flex: 1; }
.promo-text strong { display: block; font-size: 1.08rem; color: var(--text-dark); margin-bottom: 2px; }
.promo-text span { font-size: 0.88rem; }

/* ── Cennik ── */
.cennik-section { padding: 88px 0; text-align: center; background: rgba(139,94,196,0.03); }
.cennik-section .section-subtitle { margin: 10px auto 0; }
.cennik-card {
  max-width: 520px;
  margin: 52px auto 0;
  padding: 44px 40px;
  text-align: left;
}
.cennik-tag {
  display: inline-block;
  background: rgba(139,94,196,0.10);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cennik-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem; font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin: 12px 0 6px;
}
.cennik-price sup { font-size: 1.6rem; vertical-align: top; margin-top: 10px; display: inline-block; }
.cennik-price-note { font-size: 0.83rem; color: var(--text-light); margin-bottom: 26px; }
.cennik-divider { height: 1px; background: var(--card-border); margin: 24px 0; }
.cennik-includes { list-style: none; margin-bottom: 32px; }
.cennik-includes li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 9px 0; font-size: 0.93rem;
  border-bottom: 1px solid rgba(180,140,220,0.09);
  line-height: 1.5;
}
.cennik-includes li:last-child { border-bottom: none; }
.cennik-check { color: var(--primary); font-weight: 800; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.cennik-cta { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }
.cennik-guarantee { text-align: center; margin-top: 14px; font-size: 0.8rem; color: var(--text-light); }

/* ── Kontakt ── */
.kontakt-section { padding: 88px 0; }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.kontakt-info h2 { margin-bottom: 16px; }
.kontakt-info > p { margin-bottom: 36px; font-size: 1.04rem; }
.kontakt-details { display: flex; flex-direction: column; gap: 14px; }
.kontakt-detail { display: flex; align-items: center; gap: 14px; }
.kontakt-detail-icon {
  width: 42px; height: 42px;
  background: rgba(139,94,196,0.10);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.kontakt-detail span { font-size: 0.95rem; }
.form-card { padding: 38px 36px; }
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; color: var(--text-dark);
  text-align: center; margin-bottom: 26px;
}
.form-group { margin-bottom: 14px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.94rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,94,196,0.10);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-success {
  display: none;
  text-align: center;
  padding: 20px 0 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

/* ── Footer ── */
.footer {
  background: rgba(61,34,96,0.055);
  border-top: 1px solid var(--card-border);
  padding: 48px 0 24px;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 8px;
}
.footer-brand p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; }
.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-medium);
  margin-bottom: 14px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.87rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-light);
  flex-wrap: wrap; gap: 8px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .oferta-grid { grid-template-columns: 1fr; }
  .jak-pracuje-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-container { flex-wrap: wrap; position: relative; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(245,240,250,0.97);
    padding: 20px 28px;
    gap: 14px;
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 8px 24px rgba(124,92,191,0.10);
    z-index: 200;
  }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-mockup { order: -1; }
  .fragment-grid { grid-template-columns: 1fr; text-align: center; }
  .fragment-book-stack { margin: 0 auto 32px; }
  .fragment-content .btn { display: inline-flex; }
  .o-mnie-grid { grid-template-columns: 1fr; gap: 36px; }
  .o-mnie-photo { max-width: 340px; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ebooki-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .promo-banner { flex-direction: column; text-align: center; }
  .cennik-card { padding: 30px 22px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section { padding: 60px 0; }
  .hero { padding: 64px 0 48px; }
  .mockup-book { width: 240px; }
  .weeks-grid { grid-template-columns: 1fr; }
  h2 { font-size: 1.75rem; }
}

/* ══════════════════════════════════════════
   SEKCJA BÓL / EMPATIA
══════════════════════════════════════════ */
.pain-section {
  padding: 80px 0 64px;
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.pain-left h2 { margin-bottom: 32px; }
.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pain-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pain-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 1;
}
.pain-list p { font-size: 1rem; line-height: 1.7; }

.pain-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.pain-brand-card {
  background: linear-gradient(135deg, rgba(139,94,196,0.12) 0%, rgba(180,140,220,0.18) 100%);
  border: 1px solid rgba(139,94,196,0.25);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
}
.pain-brand-logo {
  font-size: 3.5rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 16px rgba(124,92,191,0.3));
}
.pain-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.pain-brand-tagline {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.5;
}
.pain-relief {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px 28px;
  backdrop-filter: blur(10px);
}
.pain-relief h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
  color: var(--primary);
}
.pain-relief p {
  color: var(--text-medium);
  margin-bottom: 20px;
  font-size: 0.97rem;
}

/* ══════════════════════════════════════════
   SEKCJA DLACZEGO
══════════════════════════════════════════ */
.why-section { background: rgba(139,94,196,0.04); }
.why-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.why-header h2 { margin-bottom: 16px; }

.program-highlight {
  background: linear-gradient(135deg, rgba(139,94,196,0.10) 0%, rgba(200,165,240,0.14) 100%);
  border: 1.5px solid rgba(139,94,196,0.22);
  border-radius: 20px;
  padding: 32px 40px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 44px;
}
.program-highlight p {
  font-size: 1.12rem;
  color: var(--text-dark);
  line-height: 1.75;
}

.features-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.feature-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 24px 28px;
  text-align: center;
  min-width: 180px;
  flex: 1;
  max-width: 220px;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.feature-icon { font-size: 2rem; margin-bottom: 10px; }
.feature-name { font-weight: 700; color: var(--text-dark); font-size: 0.95rem; margin-bottom: 4px; }
.feature-desc { font-size: 0.82rem; color: var(--text-light); }
.why-cta { text-align: center; margin-top: 40px; }

/* ══════════════════════════════════════════
   SEKCJA PROGRAM – TIMELINE
══════════════════════════════════════════ */
.section-tag {
  display: inline-block;
  background: rgba(139,94,196,0.10);
  color: var(--primary);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.program-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.program-text h2 { margin-bottom: 14px; }
.program-text .section-subtitle { margin-bottom: 40px; }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, rgba(139,94,196,0.3), rgba(139,94,196,0.05));
}
.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px 0;
  position: relative;
}
.timeline-num {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #9b6ed4, #6a4aad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.88rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(124,92,191,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.timeline-item:hover .timeline-num {
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(124,92,191,0.38);
}
.timeline-content {
  padding-top: 8px;
  flex: 1;
}
.timeline-content h4 {
  font-size: 0.95rem;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  color: var(--primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.timeline-content p {
  font-size: 0.91rem;
  color: var(--text-medium);
  line-height: 1.65;
}
.timeline-cta { margin-top: 40px; }

.program-aside {
  position: sticky;
  top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.program-compass {
  width: 100%;
  aspect-ratio: 1;
  max-width: 280px;
}
.compass-circle {
  width: 100%;
  aspect-ratio: 1;
  background: radial-gradient(circle at 40% 35%, rgba(200,165,240,0.35) 0%, rgba(139,94,196,0.15) 60%, transparent 100%);
  border: 1.5px solid rgba(139,94,196,0.20);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 40px rgba(124,92,191,0.15);
}
.compass-inner { font-size: 5rem; line-height: 1; }
.compass-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

/* ══════════════════════════════════════════
   SEKCJA CO ZMIENIA
══════════════════════════════════════════ */
.transforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.transform-card {
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
}
.transform-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.transform-icon { font-size: 2.4rem; margin-bottom: 16px; }
.transform-card h4 { margin-bottom: 10px; font-size: 1.12rem; }
.transform-card p { font-size: 0.92rem; color: var(--text-medium); line-height: 1.7; }
.transforms-cta { text-align: center; margin-top: 40px; }

/* ── Responsive nowe sekcje ── */
@media (max-width: 900px) {
  .pain-grid { grid-template-columns: 1fr; gap: 36px; }
  .program-layout { grid-template-columns: 1fr; }
  .program-aside { display: none; }
  .transforms-grid { grid-template-columns: 1fr; }
  .features-row { gap: 16px; }
  .feature-item { max-width: 100%; }
  .program-highlight { padding: 24px 20px; }
}
@media (max-width: 600px) {
  .pain-section { padding: 52px 0 44px; }
  .pain-brand-card { padding: 24px 20px; }
  .pain-relief { padding: 24px 20px; }
  .timeline::before { left: 18px; }
  .timeline-num { width: 38px; height: 38px; font-size: 0.82rem; }
}
