/* ── PRIVATE STYLES FOR O-NAS ── */
:root {
  --radius: 20px;
}

.about-page body {
  background-color: var(--white);
}

/* ── HERO O NAS (Ciemny) ── */
.about-page .hero {
  position: relative;
  background: var(--brand);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 10rem 0 6rem;
}

.about-page .hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 3;
}

.hero h1 .gt {
  display: inline-block;
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-bright) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

.about-page .hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 8vw, 4.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -.04em;
}

.about-page .hero p.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  max-width: 820px;
  line-height: 1.8;
}

.about-page .hero strong {
  color: var(--white);
}

.quote-box {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: 0 16px 16px 0;
  font-weight: 500;
  color: var(--white);
  margin-top: 2rem;
  font-style: italic;
  display: inline-block;
  backdrop-filter: blur(10px);
}

/* ── MISJA & ZAŁOŻENIA ── */
.mission-section {
  text-align: center;
  background: var(--white);
}

.mission-section .section-header {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.mission-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.mission-section p {
  font-size: 1.15rem;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.value-card {
  background: var(--slate-50);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid var(--slate-200);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.vc-icon {
  width: 60px;
  height: 60px;
  background: #e0e7ff;
  color: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.vc-icon svg {
  width: 30px;
  height: 30px;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.value-card p {
  font-size: .95rem;
  color: var(--slate-600);
  margin: 0;
}

/* ── ZESPÓŁ (Z index.html) ── */
.team-section {
  background: var(--slate-50);
  position: relative;
}

.team-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.team-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Expert card and team-photo styles are now shared in style.css */

/* ── TARGET AUDIENCE ── */
.audience-section {
  background: var(--white);
}

.audience-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.profile-card {
  border: 2px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color .3s;
  background: var(--white);
}

.profile-card:hover {
  border-color: #3b82f6;
}

.profile-card h3 {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

.profile-card .p-desc {
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}

.p-pain,
.p-need {
  text-align: left;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: .9rem;
}

.p-pain {
  background: #fef2f2;
  color: #991b1b;
}

.p-pain strong {
  color: #7f1d1d;
  display: block;
  margin-bottom: .25rem;
}

.p-need {
  background: #f0fdf4;
  color: #166534;
  margin-bottom: 0;
}

.p-need strong {
  color: #14532d;
  display: block;
  margin-bottom: .25rem;
}

/* ── DOŚWIADCZENIE / STATYSTYKI ── */
.stats-section {
  background: var(--white);
  padding-top: 0;
}

.stats-box {
  background: var(--brand);
  background-image: radial-gradient(circle at top right, rgba(100, 255, 218, 0.1), transparent 50%), radial-gradient(circle at bottom left, rgba(0, 180, 216, 0.1), transparent 50%);
  border-radius: 30px;
  padding: 4rem 3rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-box h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item .num {
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: .5rem;
  display: block;
}

.stat-item .lbl {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: .9rem;
}

.skills-list {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
}

.skills-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
}

.skills-list li svg {
  width: 20px;
  height: 20px;
  color: #64FFDA;
  flex-shrink: 0;
}

/* ── DLACZEGO LOKALNIE ── */
.local-section {
  background: var(--slate-50);
}

.local-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.local-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.local-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.local-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--slate-200);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.local-icon {
  width: 48px;
  height: 48px;
  background: #e0e7ff;
  color: #3b82f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.local-icon svg {
  width: 24px;
  height: 24px;
}

.local-card h3 {
  font-size: 1.25rem;
  margin-bottom: .5rem;
}

.local-card p {
  color: var(--slate-600);
  font-size: .95rem;
  margin: 0;
}

/* footer styles moved to style.css */

/* reveal move to style.css */

/* ── RESPONSIVE ── */
@media(max-width: 900px) {
  .expert-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .skills-list {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 768px) {

  .nav-links,
  .btn-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-hero {
    padding-top: 8rem;
  }

  .stats-box {
    padding: 3rem 1.5rem;
  }

  .local-card {
    flex-direction: column;
  }
}

@media(max-width: 500px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}