/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; align-items: center;
  padding: calc(var(--nav-height) + var(--sp-xl)) 0 var(--sp-xl);
  background:
    radial-gradient(ellipse at 75% 15%, rgba(200,169,110,0.18), transparent 35%),
    radial-gradient(ellipse at 20% 80%, rgba(42,53,80,0.5), transparent 40%),
    var(--navy);
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-container { display: grid; gap: var(--sp-xl); align-items: center; }
@media (min-width: 768px) { .hero-container { grid-template-columns: 56fr 44fr; } }

.hero-eyebrow { color: var(--gold); font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 20px; display: block; }

.hero-title {
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: var(--sp-md);
}
.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0;
}
.hero-lead {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: var(--sp-lg);
}
.hero-cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.hero-micro-proof { font-size: 12px; color: rgba(255,255,255,0.38); letter-spacing: 0.03em; }

/* DIAGRAM — wyraźniejszy */
.hero-diagram {
  display: grid; gap: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.hero-diagram-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px; align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.hero-diagram-item:last-child { border-bottom: none; }
.hero-diagram-item:hover {
  background: rgba(200,169,110,0.12);
  border-left-color: var(--gold);
}
.diagram-num  {
  color: var(--gold);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em;
}
.diagram-label {
  color: var(--white);
  font-size: 17px; font-weight: 600;
  letter-spacing: -0.01em;
}
.diagram-note {
  color: rgba(255,255,255,0.55);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  background: rgba(255,255,255,0.08);
  padding: 4px 10px; border-radius: 20px;
}

/* STATS BAR */
.hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; margin-top: var(--sp-lg);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); overflow: hidden;
}
@media (max-width: 767px) { .hero-stats { grid-template-columns: repeat(2,1fr); } }
.hero-stat { background: rgba(10,15,30,0.85); padding: 22px 20px; }
.hero-stat strong { display: block; color: var(--gold); font-size: 32px; font-weight: 700; line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; }
.hero-stat span   { color: rgba(255,255,255,0.52); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.4; }

/* ── PROBLEM ── */
.problem-list { display: grid; gap: 2px; margin-top: var(--sp-lg); }
.problem-row {
  display: grid; grid-template-columns: 64px 1fr;
  gap: var(--sp-md); padding: var(--sp-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: background var(--transition), border-color var(--transition);
}
.problem-row:hover { background: rgba(255,255,255,0.07); border-color: rgba(200,169,110,0.25); }
.problem-index { color: var(--gold); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; padding-top: 3px; }
.problem-title { color: var(--white); font-size: 20px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.problem-text  { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.75; font-weight: 300; }
.problem-quote {
  margin-top: 2px;
  background: rgba(200,169,110,0.07);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 36px;
}
.problem-quote p {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-style: italic; color: var(--white); line-height: 1.5;
}

/* ── FILOZOFIA ── */
.filozofia-grid {
  display: grid; gap: 1px;
  background: rgba(255,255,255,0.07);
  margin-top: var(--sp-lg);
  border-radius: var(--radius-md); overflow: hidden;
}
@media (min-width: 768px) { .filozofia-grid { grid-template-columns: repeat(4,1fr); } }
.filozofia-item { background: var(--navy-mid); padding: 32px 28px 36px; transition: background var(--transition); }
.filozofia-item:hover { background: rgba(255,255,255,0.04); }
.filozofia-step { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: rgba(200,169,110,0.45); margin-bottom: 14px; }
.filozofia-word { font-family: var(--font-serif); font-size: 28px; font-style: italic; color: var(--white); margin-bottom: 12px; }
.filozofia-desc { font-size: 15px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.72); }

/* ── OFERTA ── */
.sciezka-bar {
  display: flex; align-items: stretch;
  background: var(--white);
  border: 1px solid var(--pale-dark);
  border-radius: var(--radius-md);
  overflow: hidden; margin: var(--sp-lg) 0;
}
@media (max-width: 767px) { .sciezka-bar { display: none; } }
.sciezka-step {
  flex: 1; padding: 18px 20px;
  border-right: 1px solid var(--pale-dark);
  position: relative;
}
.sciezka-step:last-child { border-right: none; }
.sciezka-step::after {
  content: '→';
  position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold); font-size: 16px; z-index: 2;
  background: var(--white); padding: 0 2px;
}
.sciezka-step:last-child::after { display: none; }
.sciezka-step span   { display: block; color: var(--gold-dk); font-size: 12px; font-weight: 700; margin-bottom: 5px; letter-spacing: 0.05em; }
.sciezka-step strong { color: var(--navy); font-size: 15px; font-weight: 700; display: block; }
.sciezka-step small  { color: var(--muted); font-size: 11px; margin-top: 3px; display: block; }

/* OFERTA KARTY — przeprojektowane */
.oferta-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .oferta-grid { grid-template-columns: repeat(2,1fr); } }

.oferta-card {
  background: var(--white);
  border: 1px solid var(--pale-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.oferta-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(200,169,110,0.3);
}

/* Dekoracyjny numer w tle — ciemniejszy */
.oferta-card::before {
  content: attr(data-num);
  position: absolute; bottom: -20px; right: 12px;
  font-size: 120px; font-weight: 700; line-height: 1;
  color: rgba(0,0,0,0.055);
  pointer-events: none; letter-spacing: -0.05em;
  font-family: var(--font-primary);
}

.oferta-card-head {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 6px;
}
.oferta-num {
  font-size: 13px; font-weight: 700;
  color: var(--gold); letter-spacing: 0.08em;
  display: block; margin-bottom: 6px;
}
.oferta-title {
  font-size: 28px; font-weight: 700;
  color: var(--navy); letter-spacing: -0.025em;
  line-height: 1.1;
}
.badge {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold-bg); color: var(--gold-dk);
  padding: 5px 12px; border-radius: 20px;
  white-space: nowrap; flex-shrink: 0;
}

/* Tagline kursywą — większy */
.oferta-desc {
  font-family: var(--font-serif);
  font-size: 16px; font-style: italic;
  color: var(--mid); line-height: 1.55;
  margin: 12px 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--pale-dark);
}

/* Lista bez nagłówka KLIENT DOSTAJE */
.client-gets { margin-top: 0; }
.client-gets > p { display: none; } /* ukryj nagłówek */
.client-gets ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.client-gets li {
  color: var(--steel); font-size: 15px;
  padding: 0 0 0 20px; position: relative;
  line-height: 1.5; font-weight: 400;
}
.client-gets li::before {
  content: "–"; color: var(--gold);
  position: absolute; left: 0;
  font-weight: 400;
}

.oferta-nota {
  margin-top: var(--sp-md);
  background: var(--gold-bg);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 24px;
}
.oferta-nota p { font-size: 14px; color: var(--mid); line-height: 1.65; }
.oferta-nota strong { color: var(--navy); font-weight: 600; }
.oferta-nota a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.oferta-nota a:hover { color: var(--gold-dk); }

/* ── START ── */
.start-grid { display: grid; gap: var(--sp-xl); align-items: start; }
@media (min-width: 768px) { .start-grid { grid-template-columns: 1fr 1fr; } }
.start-card { padding: 32px; }
.start-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dk); background: var(--gold-bg); padding: 5px 12px; border-radius: 20px; margin-bottom: 16px; }
.start-price-main { font-size: 52px; font-weight: 700; color: var(--navy); letter-spacing: -0.03em; display: block; line-height: 1; }
.start-price-unit  { font-size: 15px; color: var(--mid); font-weight: 300; }
.start-min  { font-size: 12px; color: var(--muted); margin-top: 8px; margin-bottom: var(--sp-sm); }
.start-timeline { display: grid; gap: 0; margin: var(--sp-sm) 0; }
.start-step { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--pale-dark); font-size: 15px; }
.start-step:last-child { border-bottom: none; }
.start-period { color: var(--gold-dk); font-weight: 700; font-size: 12px; min-width: 70px; }
.start-step-name { color: var(--navy); font-weight: 600; }
.start-step-name small { color: var(--muted); font-weight: 300; margin-left: 4px; }
.start-note { font-size: 12px; color: var(--muted); line-height: 1.6; margin-top: var(--sp-sm); }
.coop-steps { display: grid; gap: 0; margin-top: var(--sp-md); }
.coop-step { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--pale-dark); }
.coop-step:last-child { border-bottom: none; }
.coop-num { color: var(--gold-dk); font-size: 14px; font-weight: 700; padding-top: 2px; }
.coop-step h3 { color: var(--navy); font-size: 17px; font-weight: 600; margin-bottom: 5px; }
.coop-step p  { color: var(--steel); font-size: 14px; line-height: 1.65; font-weight: 300; }

/* ── PROOF ── */
.proof-stats { display: grid; gap: var(--sp-md); margin: var(--sp-lg) 0; }
@media (min-width: 768px) { .proof-stats { grid-template-columns: repeat(3,1fr); } }
.proof-stat { padding: var(--sp-md) var(--sp-md) var(--sp-md) 0; border-right: 1px solid rgba(255,255,255,0.1); }
.proof-stat:last-child { border-right: none; }
.proof-num   { display: block; color: var(--gold); font-size: 64px; font-weight: 700; line-height: 1; margin-bottom: 12px; letter-spacing: -0.03em; }
.proof-label { color: rgba(255,255,255,0.62); font-size: 16px; font-weight: 300; line-height: 1.5; }
.testimonial-box  { border: 1px solid rgba(200,169,110,0.28); border-radius: var(--radius-lg); padding: var(--sp-md) var(--sp-lg); max-width: 780px; margin-top: var(--sp-lg); }
.testimonial-quote  { font-family: var(--font-serif); font-size: 22px; font-style: italic; color: var(--white); line-height: 1.6; margin-bottom: var(--sp-sm); }
.testimonial-author { color: rgba(255,255,255,0.45); font-style: normal; font-size: 14px; }

/* ── CTA FINAL ── */
.cta-final { text-align: center; }
.cta-final-container { display: grid; justify-items: center; max-width: 680px; margin: 0 auto; }
.cta-final .section-lead { text-align: center; margin: 0 auto var(--sp-lg); }
.cta-note { font-size: 13px; color: var(--mid); margin-top: var(--sp-sm); }

/* ── AUDIENCE / FILOZOFIA STARA ── */
.audience-list { list-style: none; padding: 0; display: grid; gap: 0; margin: var(--sp-lg) 0; max-width: 640px; }
.audience-list li { color: var(--steel); font-size: 16px; font-weight: 300; padding: 14px 0 14px 28px; position: relative; border-bottom: 1px solid var(--pale-dark); }
.audience-list li::before { content: ""; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
.philosophy-grid { display: grid; gap: var(--sp-md); margin-top: var(--sp-lg); }
@media (min-width: 768px) { .philosophy-grid { grid-template-columns: repeat(3,1fr); } }
.philosophy-point { border-top: 2px solid var(--gold); padding-top: var(--sp-sm); }
.philosophy-point strong { display: block; color: var(--navy); font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.philosophy-point span { color: var(--steel); font-size: 15px; font-weight: 300; line-height: 1.7; }

/* ── SCROLL REVEAL ── */
.scroll-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.scroll-reveal.is-visible { opacity: 1; transform: translateY(0); }
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.24s; }

/* ── OFERTA STACK — nowy układ poziomy ── */
.oferta-grid { display: none; }
.oferta-stack { display: grid; gap: 3px; margin-top: 0; }
.etap-row { display: grid; grid-template-columns: 80px 1fr 260px 170px; align-items: stretch; background: var(--white); border: 1px solid var(--pale-dark); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition); }
.etap-row:hover { box-shadow: var(--shadow-md); transform: translateX(5px); border-color: rgba(200,169,110,0.35); }
.etap-num-col { background: var(--navy); display: flex; align-items: center; justify-content: center; min-height: 100px; flex-shrink: 0; }
.etap-num-col span { font-size: 14px; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; }
.etap-main { padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; }
.etap-name { font-size: 24px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 8px; line-height: 1.1; }
.etap-tag { font-family: var(--font-serif); font-size: 15px; font-style: italic; color: var(--muted); line-height: 1.5; }
.etap-items { padding: 28px 24px; border-left: 1px solid var(--pale-dark); display: flex; align-items: center; }
.etap-items ul { list-style: none; padding: 0; display: grid; gap: 9px; width: 100%; }
.etap-items li { font-size: 14px; font-weight: 400; color: var(--steel); padding-left: 18px; position: relative; line-height: 1.45; }
.etap-items li::before { content: "–"; color: var(--gold); position: absolute; left: 0; }
.etap-price-col { padding: 28px 24px; border-left: 1px solid var(--pale-dark); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; }
.etap-price { font-size: 16px; font-weight: 700; color: var(--navy); display: block; letter-spacing: -0.01em; }
.etap-cta { font-size: 13px; font-weight: 600; color: var(--gold-dk); text-decoration: none; transition: color var(--transition); }
.etap-cta:hover { color: var(--navy); }
@media (max-width: 900px) {
  .etap-row { grid-template-columns: 1fr; }
  .etap-num-col { min-height: 56px; flex-direction: row; gap: 12px; justify-content: flex-start; padding: 0 24px; }
  .etap-items { border-left: none; border-top: 1px solid var(--pale-dark); padding: 20px 24px; }
  .etap-price-col { border-left: none; border-top: 1px solid var(--pale-dark); padding: 20px 24px; flex-direction: row; align-items: center; gap: 16px; }
  .etap-row:hover { transform: none; }
}

/* etap-benefit — opis korzyści */
.etap-benefit {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
  margin-top: 10px;
  max-width: 340px;
}

/* ukryj sciezka-bar na home — duplikat */
#oferta .sciezka-bar { display: none; }

/* Fix: filozofia hover state */
.filozofia-item { transition: background 0.22s; }
.filozofia-item:hover { background: rgba(255,255,255,0.05) !important; }
.filozofia-item:not(:hover) { background: var(--navy-mid) !important; }

/* ZASADY GRID */
.zasady-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: var(--sp-lg);
}
@media (max-width: 768px) { .zasady-grid { grid-template-columns: 1fr; } }
.zasada {
  padding: 28px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}
.zasada:hover { border-color: rgba(200,169,110,0.3); }
.zasada-title {
  font-size: 17px; font-weight: 600;
  color: var(--white); margin-bottom: 10px;
}
.zasada-text {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.75;
}

/* START — nowy layout */
.start-intro { max-width: 640px; margin-bottom: var(--sp-lg); }
.start-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: start;
}
@media (max-width: 768px) { .start-two-col { grid-template-columns: 1fr; } }

.start-compare { padding: var(--sp-md) 0; }
.start-compare-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: var(--sp-md);
}
.start-compare-row {
  display: flex; align-items: center; gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
}
.start-compare-item { font-size: 15px; font-weight: 600; color: var(--navy); }
.start-compare-vs { font-size: 12px; color: var(--muted); }
.start-compare-table { display: grid; gap: 0; }
.sct-row {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--pale-dark);
  align-items: center;
}
.sct-label { font-size: 13px; color: var(--muted); font-weight: 400; }
.sct-a { font-size: 13px; font-weight: 600; color: var(--gold-dk); }
.sct-b { font-size: 13px; font-weight: 400; color: var(--steel); }
