/* ── 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); }

/* ── BRANDDRIFT COSMETIC PATCH START ── */

.audience-layout {
  display: grid;
  gap: var(--sp-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .audience-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  }
}

.audience-side {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--pale-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.audience-side-label {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-dk);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.audience-side strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.audience-tags,
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.audience-tags span,
.profile-tags span {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.audience-tags span {
  background: var(--gold-bg);
  color: var(--gold-dk);
}

.automation-grid {
  display: grid;
  gap: 14px;
  margin-top: var(--sp-lg);
}

@media (min-width: 768px) {
  .automation-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.automation-card {
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid var(--pale-dark);
  border-radius: var(--radius-lg);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.automation-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200,169,110,.4);
  box-shadow: var(--shadow-sm);
}

.automation-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-dk);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

.automation-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.automation-card p {
  color: var(--steel);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.profile-layout {
  display: grid;
  gap: var(--sp-lg);
  align-items: start;
  margin-top: var(--sp-lg);
}

@media (min-width: 768px) {
  .profile-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }
}

.profile-photo-placeholder {
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(200,169,110,.36);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.06),
      rgba(255,255,255,.015)
    );
}

.profile-photo-placeholder span {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 74px;
  font-style: italic;
  line-height: 1;
}

.profile-photo-placeholder small {
  color: rgba(255,255,255,.42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.profile-copy > p:not(.section-lead) {
  max-width: 760px;
  margin-bottom: 14px;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

.profile-tags {
  margin: 22px 0 26px;
}

.profile-tags span {
  border: 1px solid rgba(200,169,110,.24);
  background: rgba(200,169,110,.08);
  color: rgba(255,255,255,.72);
}

/* ── BRANDDRIFT COSMETIC PATCH END ── */

/* ── KNOWLEDGE / WIEDZA ── */
.knowledge-head {
  display: grid;
  gap: var(--sp-md);
  align-items: end;
  margin-bottom: var(--sp-lg);
}
@media (min-width: 900px) {
  .knowledge-head { grid-template-columns: minmax(0, 1fr) auto; }
}
.knowledge-grid { display: grid; gap: 14px; }
@media (min-width: 768px) {
  .knowledge-grid { grid-template-columns: repeat(3, 1fr); }
}
.knowledge-card {
  padding: 26px 24px;
  border: 1px solid var(--pale-dark);
  border-radius: var(--radius-lg);
  background: var(--off-white);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.knowledge-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200,169,110,.45);
  box-shadow: var(--shadow-sm);
}
.knowledge-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -.02em;
}
.knowledge-card h3 a { color: inherit; text-decoration: none; }
.knowledge-card > p:not(.post-meta) {
  color: var(--steel);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}
.knowledge-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-dk);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

/* ── BRANDDRIFT V6: DIAGNOZA / LINKI ── */
.diag-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: var(--sp-lg) 0;
}
.diag-meta-card {
  background: var(--white);
  border: 1px solid var(--pale-dark);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 20px 18px;
}
.diag-meta-card span {
  display: block;
  color: var(--gold-dk);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 9px;
}
.diag-meta-card strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
  margin-bottom: 7px;
}
.diag-meta-card p {
  color: var(--mid);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
}
.problem-link {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
  text-decoration: none;
}
.problem-link:hover { color: var(--white); }
.knowledge-more { margin-top: var(--sp-md); }
.knowledge-more a { color: var(--navy); font-weight: 600; text-decoration: underline; }
@media (max-width: 960px) { .diag-meta-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .diag-meta-grid { grid-template-columns: 1fr; } }

/* branddrift-theme-v6 | assets/css/home.css */

/* === BRANDDRIFT HERO DIAGNOSTIC PANEL V1 START === */

/* Panel diagnostyczny w hero */
.hero-diagram {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
  backdrop-filter: blur(12px);
  box-shadow:
    0 24px 70px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-diagram::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 92% 5%, rgba(200,169,110,0.15), transparent 34%);
}

.hero-diagram-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(118px, 1fr) minmax(150px, 205px);
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
  overflow: hidden;
  transition:
    opacity 0.5s ease,
    transform 0.38s ease,
    background 0.38s ease,
    border-color 0.38s ease,
    box-shadow 0.38s ease;
}

.hero-diagram-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 2px;
  border-radius: 2px;
  background: var(--gold);
  opacity: 0;
  transform: scaleY(0.4);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.hero-diagram.js-ready .hero-diagram-item {
  opacity: 0;
  transform: translateY(16px);
}

.hero-diagram.js-ready .hero-diagram-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-diagram-item:hover,
.hero-diagram-item.is-active,
.hero-diagram.js-ready .hero-diagram-item.is-visible:hover,
.hero-diagram.js-ready .hero-diagram-item.is-visible.is-active {
  transform: translateY(-3px);
  border-color: rgba(200,169,110,0.34);
  background: rgba(255,255,255,0.065);
  box-shadow: 0 14px 32px rgba(0,0,0,0.16);
}

.hero-diagram-item:hover::after,
.hero-diagram-item.is-active::after {
  opacity: 1;
  transform: scaleY(1);
}

.diagram-num {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.diagram-label {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.diagram-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 999px;
  background: rgba(255,255,255,0.065);
  color: rgba(255,255,255,0.66);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.085em;
  text-align: center;
  text-transform: uppercase;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}

.hero-diagram-item:hover .diagram-note,
.hero-diagram-item.is-active .diagram-note {
  border-color: rgba(200,169,110,0.27);
  background: rgba(200,169,110,0.13);
  color: rgba(255,235,194,0.92);
}

@media (max-width: 1100px) {
  .hero-diagram-item {
    grid-template-columns: 38px minmax(105px, 1fr) minmax(135px, 180px);
    gap: 12px;
    padding: 15px;
  }

  .diagram-label {
    font-size: 17px;
  }

  .diagram-note {
    padding: 7px 10px;
    font-size: 9px;
  }
}

@media (max-width: 767px) {
  .hero-diagram {
    padding: 10px;
    border-radius: 18px;
  }

  .hero-diagram-item {
    grid-template-columns: 34px 1fr;
    gap: 8px 12px;
    min-height: 0;
    padding: 15px;
    border-radius: 13px;
  }

  .diagram-label {
    font-size: 17px;
    white-space: normal;
  }

  .diagram-note {
    grid-column: 2 / -1;
    justify-self: start;
    min-height: 0;
    max-width: 100%;
    padding: 6px 10px;
    font-size: 9px;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-diagram-item,
  .hero-diagram.js-ready .hero-diagram-item,
  .hero-diagram.js-ready .hero-diagram-item.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* === BRANDDRIFT HERO DIAGNOSTIC PANEL V1 END === */

/* === BRANDDRIFT HERO ALIGNMENT V1 START === */

/*
 * Panel diagnostyczny ma tworzyć jedną kompozycję z tekstem hero,
 * a nie wyglądać jak osobna karta doklejona po prawej stronie.
 */
@media (min-width: 992px) {
  .hero-diagram {
    width: min(100%, 470px);
    margin-left: -52px;
    margin-top: -22px;
    justify-self: start;
  }

  .hero-diagram::after {
    content: "";
    position: absolute;
    left: -68px;
    top: 50%;
    width: 68px;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(200,169,110,0),
      rgba(200,169,110,0.34)
    );
  }
}

@media (min-width: 1200px) {
  .hero-diagram {
    width: 490px;
    margin-left: -72px;
  }
}

@media (max-width: 991px) {
  .hero-diagram {
    width: 100%;
    margin-left: 0;
    margin-top: 26px;
    justify-self: stretch;
  }

  .hero-diagram::after {
    display: none;
  }
}

/* === BRANDDRIFT HERO ALIGNMENT V1 END === */

/* === BRANDDRIFT HERO TIMELINE V1 START === */

@media (min-width: 992px) {
  .hero-diagram {
    width: min(100%, 470px);
    margin-left: -24px;
    margin-top: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
  }

  .hero-diagram::before,
  .hero-diagram::after {
    display: none !important;
  }
}

.hero-diagram-title {
  margin-bottom: 22px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-diagram {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-diagram-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 0;
  padding: 16px 0 18px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition:
    opacity 0.45s ease,
    transform 0.38s ease;
}

.hero-diagram-item::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(200,169,110,0.24);
}

.hero-diagram-item:first-of-type::before {
  top: 18px;
}

.hero-diagram-item:last-of-type::before {
  bottom: calc(100% - 18px);
}

.hero-diagram-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(200,169,110,0.72);
  border-radius: 50%;
  background: #101522;
  opacity: 1;
  transform: none;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.hero-diagram-item:hover,
.hero-diagram-item.is-active,
.hero-diagram.js-ready .hero-diagram-item.is-visible:hover,
.hero-diagram.js-ready .hero-diagram-item.is-visible.is-active {
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(6px);
}

.hero-diagram-item:hover::after,
.hero-diagram-item.is-active::after {
  background: #c8a96e;
  box-shadow: 0 0 0 6px rgba(200,169,110,0.12);
  transform: scale(1.08);
}

.diagram-num {
  padding-top: 2px;
  color: #c8a96e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.10em;
}

.diagram-label {
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.diagram-note {
  grid-column: 2 / -1;
  display: block;
  margin-top: -8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255,255,255,0.60);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
}

.hero-diagram-item:hover .diagram-note,
.hero-diagram-item.is-active .diagram-note {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.84);
}

@media (max-width: 991px) {
  .hero-diagram {
    width: 100%;
    margin-top: 34px;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255,255,255,0.10);
    background: transparent;
  }

  .hero-diagram-title {
    margin-bottom: 14px;
  }

  .hero-diagram-item {
    grid-template-columns: 46px 1fr;
    padding: 14px 0 16px 22px;
  }

  .diagram-label {
    font-size: 19px;
  }

  .diagram-note {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-diagram-item,
  .hero-diagram.js-ready .hero-diagram-item,
  .hero-diagram.js-ready .hero-diagram-item.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* === BRANDDRIFT HERO TIMELINE V1 END === */

/* === BRANDDRIFT HERO TIMELINE TUNING V1 START === */

@media (min-width: 992px) {
  .hero-diagram {
    width: min(100%, 520px);
    margin-left: -18px;
    margin-top: 34px;
  }
}

.hero-diagram-title {
  margin-bottom: 24px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  letter-spacing: 0.15em;
}

.hero-diagram-item {
  padding-top: 17px;
  padding-bottom: 20px;
}

.diagram-label {
  font-size: 22px;
}

.diagram-note {
  color: rgba(255,255,255,0.70);
  font-size: 15px;
}

.hero-diagram-item:hover .diagram-label,
.hero-diagram-item.is-active .diagram-label {
  color: #fff4dc;
}

.hero-diagram-item:hover::after,
.hero-diagram-item.is-active::after {
  background: #d6b46e;
  box-shadow:
    0 0 0 6px rgba(200,169,110,0.13),
    0 0 24px rgba(200,169,110,0.20);
}

@media (max-width: 991px) {
  .hero-diagram {
    margin-top: 30px;
  }

  .hero-diagram-title {
    font-size: 12px;
  }

  .diagram-label {
    font-size: 19px;
  }

  .diagram-note {
    font-size: 14px;
  }
}

/* === BRANDDRIFT HERO TIMELINE TUNING V1 END === */

/* === BRANDDRIFT TIMELINE POSITION V1 START === */

@media (min-width: 992px) {
  .hero-diagram {
    margin-top: -46px;
  }
}

/* === BRANDDRIFT TIMELINE POSITION V1 END === */

/* === CASE STUDY === */
.cs-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--sp-xl);
  margin-top: var(--sp-lg);
  align-items: start;
}
@media (max-width: 900px) { .cs-layout { grid-template-columns: 1fr; } }

.cs-meta { display: grid; gap: 10px; }
.cs-tag {
  font-size: 12px; font-weight: 600;
  color: var(--steel); background: var(--white);
  border: 1px solid var(--pale-dark);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 10px 14px; line-height: 1.4;
}

.cs-body { display: grid; gap: var(--sp-lg); }
.cs-block { display: grid; gap: 10px; }
.cs-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.cs-block p { color: var(--steel); font-size: 15px; line-height: 1.7; }
.cs-list {
  list-style: none; padding: 0;
  display: grid; gap: 10px;
}
.cs-list li {
  font-size: 14px; font-weight: 300;
  color: var(--steel); line-height: 1.6;
  padding-left: 20px; position: relative;
}
.cs-list li::before {
  content: "→"; color: var(--gold);
  position: absolute; left: 0; font-size: 12px; top: 2px;
}

.cs-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
}
@media (max-width: 600px) { .cs-results { grid-template-columns: 1fr; } }

.cs-result { display: grid; gap: 6px; }
.cs-result-num {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700; color: var(--gold);
  letter-spacing: -0.02em; line-height: 1;
}
.cs-result-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.5;
}

.cs-disclaimer {
  margin-top: var(--sp-md);
  font-size: 12px; color: var(--muted);
  font-style: italic;
}
/* === END CASE STUDY === */

/* === CTA ALT LINK === */
.cta-alt { margin-top: var(--sp-sm); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.cta-alt-sep { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.cta-alt-link { font-size: 14px; color: var(--steel); text-decoration: underline; text-underline-offset: 3px; }
.cta-alt-link:hover { color: var(--navy); }
/* === END CTA ALT LINK === */

/* === AUDIENCE QUIZ NUDGE === */
.audience-quiz-nudge { margin-top: var(--sp-lg); text-align: center; }
.audience-quiz-link {
  font-size: 14px; font-weight: 500;
  color: var(--steel); text-decoration: underline;
  text-underline-offset: 3px;
}
.audience-quiz-link:hover { color: var(--navy); }
/* === END AUDIENCE QUIZ NUDGE === */

/* === AUDIENCE QUIZ NUDGE OVERRIDE === */
.audience-quiz-nudge {
  margin-top: var(--sp-lg);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--pale-dark);
  text-align: center;
}
.audience-quiz-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border: 1px solid var(--pale-dark);
  border-radius: var(--radius-lg);
  padding: 12px 24px;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.audience-quiz-link:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
/* === END OVERRIDE === */

/* === CASE STUDY V2 === */
.cs-tag--active {
  border-left-color: #2a7a4b;
  color: #2a7a4b;
  font-weight: 700;
}
.cs-quote {
  border-left: 3px solid var(--gold);
  margin: 0;
  padding: var(--sp-md) var(--sp-lg);
  background: var(--white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.cs-quote p {
  font-size: 16px; font-style: italic;
  color: var(--steel); line-height: 1.7;
  margin-bottom: 10px;
}
.cs-quote cite {
  font-size: 13px; font-style: normal;
  color: var(--muted); font-weight: 600;
}
.cs-footer {
  margin-top: var(--sp-xl);
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--pale-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}
/* === END CASE STUDY V2 === */
