/* ============================================
   SIEDLISKO KIDS – style.css
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #fff;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- KOLORY ---------- */
:root {
  --teal:       #1d919a;
  --teal-dark:  #167a82;
  --teal-light: #d0f0f2;
  --coral:      #2a7abf;
  --coral-light:#d0e8f7;
  --navy:       #27324A;
  --navy-light: #D5D8DF;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-400:   #9ca3af;
  --gray-600:   #4b5563;
  --gray-900:   #111827;
}

/* ---------- TYPOGRAFIA ---------- */
h1 { font-size: clamp(28px, 5vw, 42px); font-weight: 600; line-height: 1.15; }
h2 { font-size: clamp(22px, 3.5vw, 30px); font-weight: 600; line-height: 1.25; }
h3 { font-size: 18px; font-weight: 600; line-height: 1.3; }
p  { color: var(--gray-600); }

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.section-title--left {
  text-align: left;
  margin-bottom: 20px;
}

.btn--mt {
  margin-top: 24px;
}

.package-desc {
  color: var(--gray-600);
  margin-bottom: 24px;
  font-size: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 520px;
}

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ---------- PRZYCISKI ---------- */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

/* ---------- FORM FEEDBACK ---------- */
.form-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  color: #166534;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.form-error {
  font-size: 13px;
  color: #dc2626;
  margin-bottom: 8px;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal-light); }

.btn-white {
  background: #fff;
  color: var(--teal);
  border-color: #fff;
}
.btn-white:hover { background: var(--teal-light); border-color: var(--teal-light); }

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-secondary:hover { background: var(--teal); color: #fff; }

/* ---------- NAWIGACJA ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
}

.navbar-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.navbar-logo .logo-mark {
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-logo .logo-mark svg { width: 22px; height: 22px; }
.navbar-logo span { color: var(--coral); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.15s;
}
.navbar-links a:hover { color: var(--teal); }

.navbar-links .dropdown {
  position: relative;
}

.navbar-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 8px 8px;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  margin-top: 0;
}

.navbar-links .dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.navbar-links .dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--gray-600) !important;
}
.dropdown-menu a:hover { background: var(--gray-50); color: var(--teal) !important; }

.navbar-cta { margin-left: 8px; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 20px 24px;
  border-top: 1px solid var(--gray-100);
  gap: 0;
  background: #fff;
}
.mobile-menu.open { display: flex; }

.mobile-menu > a {
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.15s;
}
.mobile-menu > a:hover,
.mobile-menu > a.active { color: var(--teal); }

.mobile-menu-home {
  font-weight: 600 !important;
  color: var(--gray-900) !important;
}

/* Sekcja kursów */
.mobile-menu-group {
  padding: 6px 0 2px;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu-group-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  padding: 6px 0 6px;
}
.mobile-menu a.mobile-menu-sub {
  padding: 10px 0 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.15s;
}
.mobile-menu a.mobile-menu-sub:hover,
.mobile-menu a.mobile-menu-sub.active { color: var(--teal); }
.mobile-menu-age {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-light);
  padding: 2px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}

/* CTA przycisk */
.mobile-menu a.mobile-menu-cta {
  margin-top: 16px;
  padding: 14px 20px;
  background: var(--teal);
  color: #fff !important;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  justify-content: center;
  border-bottom: none;
  text-decoration: none;
  transition: background 0.15s;
}
.mobile-menu a.mobile-menu-cta:hover { background: #0a7c74; }

/* ---------- HERO ---------- */
.hero {
  display: flex;
  min-height: 640px;
  overflow: hidden;
  position: relative;
}

.hero-left {
  flex: 0 0 48%;
  background: var(--teal);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

/* Animowane bloby w tle hero */
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(12px,-18px) scale(1.06); }
  66%      { transform: translate(-10px,10px) scale(0.95); }
}
@keyframes blobFloatB {
  0%,100% { transform: translate(0,0) scale(1); }
  40%      { transform: translate(-14px,20px) scale(1.08); }
  70%      { transform: translate(16px,-8px) scale(0.94); }
}
@keyframes blobFloatC {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(10px,14px) scale(1.05); }
}

.hero-blob-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hblob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
  opacity: 0.12;
  background: #fff;
}

.hblob--a {
  width: 320px; height: 280px;
  top: -60px; left: -80px;
  animation: blobFloat 9s ease-in-out infinite;
}

.hblob--b {
  width: 220px; height: 240px;
  bottom: -40px; right: 10%;
  border-radius: 40% 60% 45% 55% / 55% 40% 60% 45%;
  animation: blobFloatB 12s ease-in-out infinite;
}

.hblob--c {
  width: 160px; height: 180px;
  top: 50%; left: 55%;
  border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%;
  opacity: 0.08;
  animation: blobFloatC 15s ease-in-out infinite;
}

/* Fala SVG na granicy kolumn */
.hero-wave {
  position: absolute;
  left: calc(48% - 50px);
  top: 0;
  width: 170px;
  height: 100%;
  z-index: 2;
  display: block;
}

.hero-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Dekoracje */
.hero-deco {
  position: absolute;
  pointer-events: none;
}
.hero-deco--circle {
  width: 200px; height: 200px;
  bottom: 2%; left: -4%;
  opacity: 0.7;
}

.hero-left-inner {
  padding: 80px 10% 80px 5vw;
  position: relative;
  z-index: 3;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 22px;
  white-space: nowrap;
}

.hero h1 {
  color: #fff;
  margin: 0 0 16px;
  font-size: clamp(26px, 2.8vw, 46px);
  line-height: 1.12;
}

.hero h1 em {
  font-style: normal;
  color: #fcd34d;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: nowrap;
}

.hero-stat-num {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.62);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 5px;
}

/* ---------- SCROLL ARROW ---------- */
.hero-scroll-arrow {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
  animation: arrowBounce 2s ease-in-out infinite;
}
.hero-scroll-arrow:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.18);
  animation: none;
  transform: translateX(-50%) translateY(3px);
}
@keyframes arrowBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ---------- KURSY ---------- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.course-card {
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.course-card-accent {
  height: 5px;
}
.course-card-accent.teal  { background: var(--teal); }
.course-card-accent.coral { background: var(--coral); }
.course-card-accent.navy  { background: var(--navy); }

/* zdjęcie placeholder */
.course-img-placeholder {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.course-img-placeholder.teal  { background: var(--teal-light);  color: var(--teal); }
.course-img-placeholder.coral { background: var(--coral-light); color: var(--coral); }
.course-img-placeholder.navy  { background: var(--navy-light);  color: var(--navy); }

.course-card-body {
  padding: 22px;
}

.course-age-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
}
.course-age-badge.teal  { background: var(--teal-light);  color: var(--teal); }
.course-age-badge.coral { background: var(--coral-light); color: var(--coral); }
.course-age-badge.navy  { background: var(--navy-light);  color: var(--navy); }

.course-card h3 { margin-bottom: 8px; color: var(--gray-900); }
.course-card p  { font-size: 14px; margin-bottom: 18px; }

.course-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
}
.course-link:hover { gap: 8px; }

/* ---------- ŚCIEŻKA ---------- */
.path-image-wrap {
  text-align: center;
  margin-top: 40px;
}
.path-image {
  max-width: 80%;
  height: auto;
  display: inline-block;
}

.path-section {
  background: linear-gradient(160deg, #f0fdfa 0%, #f8fafc 50%, #f0f4ff 100%);
  padding: 80px 0;
}

.path-section .section-sub {
  max-width: 760px;
}

.path-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 48px;
}

.path-group {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.path-group-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 24px;
  border-radius: 0;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  border: none;
}

.teal-label  { background: #1d919a; color: #fff; }
.blue-label  { background: #4338ca; color: #fff; }
.coral-label { background: #2a7abf; color: #fff; }

.path-group-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  padding: 24px 16px 8px;
}

.path-group-steps::before { display: none; }

.path-step {
  text-align: center;
  position: relative;
  padding: 0 8px;
  z-index: 1;
}

.path-step:not(:last-child)::after {
  content: '›';
  position: absolute;
  right: -5px;
  top: 30px;
  color: #d1d5db;
  font-size: 18px;
  font-weight: 400;
  z-index: 2;
}

.path-bubble {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 10px;
}

.path-bubble:hover {
  transform: translateY(-5px);
}

.path-bubble img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Vibrant level colors with colored shadow */
.pb-start    { background: linear-gradient(145deg,#fef3c7,#fde68a); box-shadow: 0 4px 16px rgba(245,158,11,0.30); }
.pb-standard { background: linear-gradient(145deg,#d1fae5,#a7f3d0); box-shadow: 0 4px 16px rgba(34,197,94,0.28); }
.pb-abc      { background: linear-gradient(145deg,#dbeafe,#bfdbfe); box-shadow: 0 4px 16px rgba(59,130,246,0.28); }
.pb-superhero{ background: linear-gradient(145deg,#fce7f3,#fbcfe8); box-shadow: 0 4px 16px rgba(239,68,68,0.25); }
.pb-savvy    { background: linear-gradient(145deg,#e0e7ff,#c7d2fe); box-shadow: 0 4px 16px rgba(99,102,241,0.28); }
.pb-el       { background: linear-gradient(145deg,#fee2e2,#fecaca); box-shadow: 0 4px 16px rgba(220,38,38,0.25); }

.path-arrow-big {
  font-size: 32px;
  color: #d1d5db;
  margin: 0 16px;
  flex-shrink: 0;
  font-weight: 200;
  line-height: 1;
}

.path-name { font-size: 12px; font-weight: 700; color: #111827; margin-bottom: 2px; }
.path-age  { font-size: 11px; color: #9ca3af; font-weight: 500; }

.path-group-cta {
  padding: 10px 20px 16px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.path-group-link {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.path-group-link:hover { gap: 8px; }

.path-group:has(.teal-label)  .path-group-link { color: #1d919a; }
.path-group:has(.blue-label)  .path-group-link { color: #4338ca; }
.path-group:has(.coral-label) .path-group-link { color: #2a7abf; }

@media (max-width: 860px) {
  .path-track {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .path-arrow-big {
    transform: rotate(90deg);
    margin: 0;
  }
}

@media (max-width: 500px) {
  .path-bubble { width: 72px; height: 72px; border-radius: 16px; }
  .path-step { padding: 0 5px; }
  .path-group-label { font-size: 10px; padding: 10px 16px; }
}

/* ---------- DLACZEGO MY ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #e0f4f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.why-icon svg { width: 26px; height: 26px; stroke: #1d919a; }

.why-icon--teal   { background: #e0f4f5; }
.why-icon--teal svg   { stroke: #1d919a; }
.why-icon--orange { background: #fff0e0; }
.why-icon--orange svg { stroke: #e07b20; }
.why-icon--purple { background: #f0e8f8; }
.why-icon--purple svg { stroke: #7c3aed; }
.why-icon--gold   { background: #fef9e0; }
.why-icon--gold svg   { stroke: #c49a00; }
.why-icon--rose   { background: #fde8f0; }
.why-icon--rose svg   { stroke: #db2777; }
.why-icon--blue   { background: #e0eeff; }
.why-icon--blue svg   { stroke: #2563eb; }

.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); line-height: 1.3; }
.why-card p  { font-size: 14px; line-height: 1.65; color: var(--gray-500); }

/* ---------- OPINIE ---------- */
.reviews-section { background: var(--gray-50); }

/* Slider wrapper */
.reviews-slider-wrap {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.review-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 26px 24px;
  flex: 0 0 calc(33.333% - 14px);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}

.review-name { font-size: 14px; font-weight: 600; color: var(--gray-900); }
.review-role { font-size: 12px; color: var(--gray-400); }

/* Slider controls */
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.reviews-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray-600);
  transition: border-color 0.15s, color 0.15s;
  flex-shrink: 0;
}
.reviews-btn:hover { border-color: var(--teal); color: var(--teal); }

.reviews-dots {
  display: flex;
  gap: 6px;
}
.reviews-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.reviews-dot.active {
  background: var(--teal);
  transform: scale(1.3);
}

@media (max-width: 900px) {
  .review-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 600px) {
  .review-card { flex: 0 0 calc(100% - 0px); }
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.faq-group-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 12px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  line-height: 1.4;
}
.faq-q:hover { color: var(--teal); }

.faq-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-a > p {
  overflow: hidden;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  padding-bottom: 0;
  transition: padding-bottom 0.3s;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a > p { padding-bottom: 16px; }

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

/* ---------- ODDZIAŁY ---------- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ---------- GOOGLE REVIEWS FOOTER ---------- */
.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.google-stars {
  font-size: 16px;
  color: #f59e0b;
  font-weight: 700;
  letter-spacing: 1px;
}

.google-stars span {
  color: var(--gray-900);
  font-size: 15px;
}

.google-count {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}

.google-btn {
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- VIDEO OPINIE ---------- */
.video-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 280px);
  gap: 24px;
  justify-content: center;
}

.video-review-wrap {
  position: relative;
  padding-top: 177.78%; /* 9:16 */
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.video-review-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- LOCATION CARD ---------- */
.location-card {
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.location-card-header {
  background: var(--teal);
  padding: 28px;
  color: #fff;
}

.location-card-header h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
}

.location-card-header p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

.location-card-body {
  padding: 24px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--gray-600);
}

.location-detail svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--teal); }

.location-courses {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.location-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--teal-light);
  color: var(--teal);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--teal);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- STOPKA ---------- */
.footer {
  background: var(--gray-900);
  color: #fff;
  padding: 56px 0 0;
}

.footer-brand > img:first-child {
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.footer-banner {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}

.footer-banner img {
  width: 100%;
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  max-width: 260px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ---------- SOCIAL ICONS ---------- */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.15s;
}
.social-link:hover { border-color: rgba(255,255,255,0.4); color: #fff; background: rgba(255,255,255,0.05); }
.social-link svg { width: 16px; height: 16px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .courses-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .path-step .path-name { font-size: 11px; }
  .video-reviews-grid { grid-template-columns: repeat(2, minmax(0, 240px)); }
}

@media (max-width: 560px) {
  .video-reviews-grid { grid-template-columns: minmax(0, 300px); }
}

@media (max-width: 1080px) {
  .hero { flex-direction: column; min-height: auto; }
  .hero-left { flex: none; width: 100%; }
  .hero-wave { display: none; }
  .hero-left-inner { padding: 64px 6vw 72px; }
  .hero-eyebrow { white-space: normal; }
  .hero-right { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .hero-stats {
    flex-direction: column;
    gap: 0;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 0;
  }
  .hero-stats > div {
    width: 100%;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .hero-stats > div:last-child { border-bottom: none; }
  .hero-stat-num { font-size: 44px; }
  .hero-stat-label { margin-top: 4px; font-size: 12px; letter-spacing: 0.12em; }
  .hero-right { height: 260px; }
  .hero-deco { display: none; }
  .locations-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-bottom > div { display: flex; flex-direction: column; gap: 4px; }
}

/* ============================================
   ŚCIEŻKA ROZWOJU – MOBILE FIX
   ============================================ */
@media (max-width: 768px) {
  .path-section {
    overflow: hidden;
  }

  .path-track {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
  }

  .path-group {
    width: 100%;
    max-width: 420px;
  }

  .path-group-steps {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 8px;
    padding: 18px 12px 8px;
  }

  .path-step {
    width: calc(50% - 6px);
    padding: 0;
  }

  .path-step:not(:last-child)::after {
    display: none;
  }

  .path-bubble {
    width: 72px;
    height: 72px;
    margin: 0 auto 8px;
  }

  .path-name {
    font-size: 12px;
  }

  .path-age {
    font-size: 11px;
  }

  .path-arrow-big {
    transform: rotate(90deg);
    margin: 0;
    font-size: 24px;
  }

  .path-group-label {
    font-size: 10px;
    padding: 10px 12px;
  }

  .path-group-cta {
    padding: 8px 16px 14px;
  }
}

@media (max-width: 480px) {
  .path-group {
    max-width: 100%;
  }

  .path-group-steps {
    padding: 16px 10px 6px;
    gap: 10px 6px;
  }

  .path-step {
    width: calc(50% - 4px);
  }

  .path-bubble {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    padding: 8px;
  }

  .path-name {
    font-size: 11px;
  }

  .path-age {
    font-size: 10px;
  }
}
