/* ============================================================
   COMPONENTS.CSS — przyciski, badge, karty, sekcja-label
   Kompas / kolonie-dla-dzieci.pl
   ============================================================ */

/* ── SECTION LABEL (mały napis nad H2) ── */
.section-label {
  display: inline-block;
  color: var(--orange);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ── SECTION INTRO (lead pod H2) ── */
.section-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 48px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  letter-spacing: .02em;
  text-decoration: none;
  line-height: 1;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255,133,0,.35);
}
.btn--primary:hover {
  background: var(--orange-dk);
  box-shadow: 0 8px 24px rgba(255,133,0,.45);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn--secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--lg { font-size: 1.1rem; padding: 16px 40px; }
.btn--sm { font-size: .88rem; padding: 10px 22px; }

/* ── BADGE (trust/hero badge) ── */
.badge {
  display: inline-block;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.badge--orange {
  background: rgba(255,133,0,.18);
  border: 1px solid rgba(255,133,0,.4);
  color: var(--orange);
}

.badge--white {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
}

/* ── CARD ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card--navy {
  background: var(--navy);
  color: var(--white);
}

.card--glass {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.card--glass:hover {
  background: rgba(255,255,255,.11);
  border-color: var(--orange);
}

.card__header {
  background: linear-gradient(135deg, var(--navy-dk), var(--navy-lt));
  padding: 28px 24px 20px;
  text-align: center;
}

.card__body { padding: 20px 24px; }

/* ── PRICE BOX ── */
.price-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.price-box__label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 6px;
}
.price-box__range {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
}
.price-box__note {
  font-size: .88rem;
  opacity: .75;
  margin-top: 6px;
}

/* ── FEATURE LIST ── */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .98rem;
  color: var(--text);
}
.feature-list__icon {
  width: 26px;
  height: 26px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── AGE NOTE ── */
.age-note {
  background: var(--white);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin-top: 24px;
  font-size: .92rem;
  color: var(--navy);
  font-weight: 600;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--off-white);
  padding: 28px 5vw;
  border-top: 3px solid var(--orange);
}
.trust-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
}
.trust-item__icon {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── STAT ── */
.stat-item { text-align: center; }
.stat-item__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-item__label {
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── CTA BLOCK ── */
.cta-block {
  background: rgba(255,133,0,.12);
  border: 1px solid rgba(255,133,0,.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.cta-block h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-block p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
