/* ── About / O szkole styles ─────────────────────────────────── */

.ab-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
.ab-nav {
  background: var(--navy-dk);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.ab-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ab-nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 15px;
  line-height: 1.2;
}
.ab-nav__logo img { border-radius: 8px; width: 36px; height: 36px; }
.ab-nav__logo small { font-family: 'Inter', sans-serif; font-size: 11px; opacity: .7; }

/* BUTTONS */
.ab-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity .15s, transform .15s;
}
.ab-btn:hover { opacity: .88; transform: translateY(-1px); }
.ab-btn--cta  { background: var(--orange); color: #fff; }
.ab-btn--primary { background: var(--orange); color: #fff; }
.ab-btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.ab-btn--lg { font-size: 16px; padding: 14px 30px; }

/* BREADCRUMB */
.ab-breadcrumb { margin-bottom: 20px; }
.ab-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  opacity: .65;
}
.ab-breadcrumb li + li::before { content: '/'; margin-right: 6px; }
.ab-breadcrumb a { color: inherit; text-decoration: none; }
.ab-breadcrumb a:hover { text-decoration: underline; }

/* HERO */
.ab-hero {
  background: var(--navy-dk);
  color: #fff;
  padding: 60px 0 64px;
}
.ab-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.5vw, 46px);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 820px;
}
.ab-hero__lead {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  opacity: .88;
  max-width: 680px;
}

/* SECTIONS */
.ab-section { padding: 72px 0; background: var(--bg); }
.ab-section--alt { background: var(--bg-soft); }
.ab-section__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.5vw, 34px);
  color: var(--navy-dk);
  margin-bottom: 12px;
  text-align: center;
}
.ab-section__lead {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

/* FEATURES GRID */
.ab-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.ab-feature {
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.ab-feature__icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.ab-feature__body h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--navy-dk);
  margin-bottom: 8px;
}
.ab-feature__body p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

/* TIMELINE */
.ab-timeline {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ab-timeline__item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(42,61,99,.1);
}
.ab-timeline__item:last-child { border-bottom: none; }
.ab-timeline__time {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--orange-dk);
  min-width: 90px;
  flex-shrink: 0;
}
.ab-timeline__desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

/* PRICING */
.ab-pricing {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.ab-pricing__main h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--navy-dk);
  margin-bottom: 8px;
}
.ab-pricing__main > p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
}
.ab-check-list {
  list-style: none;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ab-check-list li {
  font-size: 15px;
  color: var(--text);
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}
.ab-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.ab-pricing__note {
  font-size: 14px;
  color: var(--muted);
  margin: 0 !important;
}
.ab-pricing__extra {
  background: var(--bg-soft);
  border-radius: 20px;
  padding: 28px 24px;
}
.ab-pricing__extra h3 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--navy-dk);
  margin-bottom: 14px;
}
.ab-pricing__extra ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ab-pricing__extra li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.ab-pricing__extra li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

/* CTA */
.ab-cta {
  background: var(--navy-dk);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.ab-cta__inner h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 14px;
}
.ab-cta__inner > p {
  font-size: 17px;
  opacity: .85;
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.ab-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}
.ab-cta__note { font-size: 13px; opacity: .5; margin: 0; }

/* FOOTER */
.ab-footer {
  background: #111927;
  color: rgba(255,255,255,.5);
  padding: 28px 0;
  font-size: 13px;
}
.ab-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.ab-footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.ab-footer a { color: rgba(255,255,255,.5); text-decoration: none; }
.ab-footer a:hover { color: #fff; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .ab-pricing { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .ab-features { grid-template-columns: 1fr; }
  .ab-hero { padding: 40px 0 48px; }
  .ab-section { padding: 52px 0; }
  .ab-cta { padding: 52px 0; }
}
@media (max-width: 480px) {
  .ab-timeline__time { min-width: 70px; font-size: 15px; }
}
