/* ================================================
   HOME REFRESH — uplift wizualny strony głównej
   Archivo 800 na nagłówkach, Inter na kartach,
   spójność z nowym design systemem (lp-*)
   Nie nadpisuje koloru ani struktury — tylko font
   i drobne detale.
   ================================================ */

/* === Nagłówki sekcji — Archivo 800 === */
.hero-section h1,
.features-section h2,
.problems-section h2,
.system-features-section h2,
.testimonials-section h2,
.how-it-works-section h2,
.about-section h2,
.faq-section h2,
.cta-section h3,
.whats-new-section h2,
.partners-section h2 {
  font-family: 'Archivo', system-ui, sans-serif;
  letter-spacing: -0.03em;
}

/* === Hero H1 — mocniejszy, bardziej display === */
.hero-section h1 {
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

/* === Nagłówki jasnych sekcji — lekko większe === */
.features-section h2,
.testimonials-section h2,
.faq-section h2,
.how-it-works-section h2 {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* === Nagłówki ciemnych sekcji === */
.problems-section h2,
.about-section h2,
.whats-new-section h2 {
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* === CTA heading === */
.cta-section h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* === Nagłówki kart (h5) — Archivo dla czytelności === */
.feature-box h5,
.feature-item h5,
.feature-item h6,
.how-step h5,
.problem-box h6,
.news-box h6 {
  font-family: 'Archivo', system-ui, sans-serif;
  letter-spacing: -0.02em;
}

/* === Nagłówki testimonials === */
.testimonial-box h6 {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

/* ================================================
   btn-feature-more — "Dowiedz się więcej" w kartach
   Klasa używana w features.blade.php i
   features_advanced.blade.php, ale wcześniej
   niezdefiniowana → fallback Bootstrap
   ================================================ */
.btn-feature-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  color: var(--brand-primary);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 0;
  border: none;
  text-decoration: none;
  transition: gap 0.15s ease, color 0.15s ease;
}
.btn-feature-more:hover {
  color: var(--brand-primary-hover, #0f5b28);
  gap: 8px;
  text-decoration: underline;
}

/* ================================================
   text-gradient — używane w system-features-section
   na tytule "Technologie, które wyróżniają Twój biznes"
   Wcześniej niezdefiniowane → brak efektu
   ================================================ */
.text-gradient {
  background: linear-gradient(135deg, var(--brand-dark) 10%, var(--brand-primary) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================
   FAQ — poprawka selektora po zmianie h6 → h3
   faq.css celuje w h6, więc trzeba powtórzyć reguły
   ================================================ */
.faq-box h3 {
  color: var(--brand-dark);
  font-size: 1rem;
  font-weight: 600;
}

/* ================================================
   Rating summary — subtelny akcent zielony
   ================================================ */
.rating-summary-box {
  border-color: rgba(17, 102, 45, 0.15);
}

/* ================================================
   About — cytat bardziej wyraźny
   ================================================ */
.about-section blockquote {
  font-family: 'Archivo', system-ui, sans-serif;
}
