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

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600;700;800&display=swap');

/* ---------- 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;
  --blue:       #2a7abf;
  --blue-light: #d0e8f7;
  --navy:       #27324A;
  --navy-light: #D5D8DF;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-400:   #9ca3af;
  --gray-500:   #6b7280;
  --gray-600:   #4b5563;
  --gray-900:   #111827;
}

/* ---------- TYPOGRAFIA ---------- */
h1, h2, h3, h4, .section-title, .hero h1 {
  font-family: 'Nunito', 'Inter', 'Segoe UI', system-ui, sans-serif;
}
h1 { font-size: clamp(28px, 5vw, 42px); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(22px, 3.5vw, 30px); font-weight: 700; line-height: 1.25; }
h3 { font-size: 18px; font-weight: 700; 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: 800;
  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: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 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;
}

.field-invalid {
  border-color: #dc2626 !important;
  background-color: #fff8f8;
}

.field-error-msg {
  display: block;
  font-size: 12px;
  color: #dc2626;
  margin-top: 4px;
}

.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; }

/* ---------- PASEK OGŁOSZEŃ ---------- */
.announce-bar {
  display: none; /* visible only on tablet/mobile via media query */
  background: #fef3c7;
  color: #92400e;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 9px 48px;
  position: relative;
  z-index: 101;
  line-height: 1.4;
}

.announce-bar a {
  color: #92400e;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(146,64,14,0.4);
  text-underline-offset: 2px;
}

.announce-bar a:hover { text-decoration-color: #92400e; }

.announce-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(146,64,14,0.7);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}

.announce-close:hover { color: #92400e; background: rgba(146,64,14,0.08); }

.announce-bar.hidden { display: none; }

/* ---------- NAWIGACJA ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.2s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
}

.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(--blue); }

.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: 240px;
  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,
.navbar-links .dropdown:focus-within .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;
  background: var(--teal);
}

.hero-left {
  flex: 0 0 48%;
  background: transparent;
  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.22;
  background: #fff;
}

.hblob--a {
  width: 380px; height: 340px;
  top: -30px; left: -50px;
  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: 240px; height: 260px;
  bottom: -20px; left: 5%;
  border-radius: 55% 45% 60% 40% / 40% 55% 45% 60%;
  opacity: 0.16;
  animation: blobFloatC 15s ease-in-out infinite;
}

.hblob--d {
  width: 260px; height: 240px;
  top: 42%; left: 12%;
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  opacity: 0.18;
  animation: blobFloat 11s ease-in-out infinite reverse;
}

/* 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;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-right::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  top: -120px; right: -100px;
  pointer-events: none;
}

.hero-right::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  bottom: -50px; left: 12%;
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  position: relative;
  z-index: 1;
}

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

/* Pływająca plakietka Google */
.hero-badge {
  position: absolute;
  bottom: 36px;
  right: 36px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 15px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.11);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: heroBadge .5s ease .4s both;
}

@keyframes heroBadge {
  from { opacity:0; transform:translateY(12px); }
  to   { opacity:1; transform:translateY(0); }
}

.hero-badge-body { display:flex; flex-direction:column; gap:2px; }

.hero-badge-rating { display:flex; align-items:baseline; gap:5px; }

.hero-badge-score { font-size:16px; font-weight:800; color:#111827; line-height:1; }

.hero-badge-stars { color:#f59e0b; font-size:12px; letter-spacing:1px; line-height:1; }

.hero-badge-sub { font-size:10px; color:#6b7280; font-weight:500; }

.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);
  font-weight: 800;
  line-height: 1.1;
}

.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: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.25);
  flex-wrap: nowrap;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.hero-stats > div {
  flex: 0 0 auto;
  padding: 0;
  text-align: left;
}

.hero-stats > div:last-child { border-right: none; }

.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.85);
  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;
  cursor: pointer;
  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(--blue); }
.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(--blue-light); color: var(--blue); }
.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(--blue-light); color: var(--blue); }
.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: 860px;
  width: 100%;
  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-scroll-hint {
  display: none;
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 10px;
}

.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: 56px;
  height: 56px;
  border-radius: 16px;
  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: linear-gradient(135deg, #ccf2f4, #99e6ea); box-shadow: 0 4px 12px rgba(29,145,154,0.18); }
.why-icon--teal svg   { stroke: #0f7a82; }
.why-icon--orange { background: linear-gradient(135deg, #fde8c8, #fcd0a0); box-shadow: 0 4px 12px rgba(224,123,32,0.18); }
.why-icon--orange svg { stroke: #c4620a; }
.why-icon--purple { background: linear-gradient(135deg, #ead5f9, #d4a8f5); box-shadow: 0 4px 12px rgba(124,58,237,0.15); }
.why-icon--purple svg { stroke: #6d28d9; }
.why-icon--gold   { background: linear-gradient(135deg, #fef3b4, #fde68a); box-shadow: 0 4px 12px rgba(196,154,0,0.18); }
.why-icon--gold svg   { stroke: #a16207; }
.why-icon--rose   { background: linear-gradient(135deg, #fecdd3, #fda4af); box-shadow: 0 4px 12px rgba(219,39,119,0.15); }
.why-icon--rose svg   { stroke: #be185d; }
.why-icon--blue   { background: linear-gradient(135deg, #bfdbfe, #93c5fd); box-shadow: 0 4px 12px rgba(37,99,235,0.15); }
.why-icon--blue svg   { stroke: #1d4ed8; }

.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;
}

.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }

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

.review-stars {
  color: #f59e0b;
  font-size: 0; /* ukrywa ???? po utracie ★ przy encodingu */
  margin-bottom: 12px;
}
.review-stars::before {
  content: '\2605\2605\2605\2605\2605';
  font-size: 14px;
  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: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d9488, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* cykl gradientów dla kolejnych kart */
.review-card:nth-child(2) .review-avatar { background: linear-gradient(135deg, #7c3aed, #ec4899); }
.review-card:nth-child(3) .review-avatar { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.review-card:nth-child(4) .review-avatar { background: linear-gradient(135deg, #2563eb, #7c3aed); }
.review-card:nth-child(5) .review-avatar { background: linear-gradient(135deg, #10b981, #0d9488); }
.review-card:nth-child(6) .review-avatar { background: linear-gradient(135deg, #f43f5e, #f97316); }
.review-card:nth-child(7) .review-avatar { background: linear-gradient(135deg, #0d9488, #2563eb); }
.review-card:nth-child(8) .review-avatar { background: linear-gradient(135deg, #7c3aed, #ec4899); }
.review-card:nth-child(9) .review-avatar { background: linear-gradient(135deg, #f59e0b, #ef4444); }

.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: 0; /* ukrywa ???? po utracie ★ przy encodingu */
  color: #f59e0b;
  font-weight: 700;
  letter-spacing: 1px;
}
.google-stars::before {
  content: '\2605\2605\2605\2605\2605';
  font-size: 16px;
}

.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);
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, color 0.15s;
}
a.location-tag:hover {
  background: var(--teal);
  color: #fff;
}

/* ---------- LOCATION CARD CTA ---------- */
.location-card-cta {
  margin-top: 20px;
  font-size: 13px;
  padding: 10px 20px;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, #1d919a 0%, #167a82 40%, #27324A 100%);
  padding: 80px 0 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 32px, 100% 0, 100% 100%, 0 100%);
  margin-top: -32px;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

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

.cta-trust {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.cta-trust-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 1px;
}

.cta-trust-sep {
  opacity: 0.4;
}

/* ---------- 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-links {
  display: flex;
  gap: 16px;
}

.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: border-color 0.15s, color 0.15s, background-color 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; }
  .path-step .path-name { font-size: 11px; }
  .video-reviews-grid { grid-template-columns: repeat(2, minmax(0, 240px)); }
  .announce-bar:not(.hidden) { display: block; }
}

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

/* ── Baner pilności (tylko mobile) ─────────────────────────────── */
.urgency-bar {
  display: none;
  background: #fef3c7;
  color: #92400e;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 9px 44px 9px 16px;
  position: relative;
  line-height: 1.4;
}
.urgency-close {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  color: #92400e;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* ── Mobile lower ───────────────────────────────────────────────── */
.hero-mobile-lower { display: none; }

/* ── Tablet (901 – 1024px) ──────────────────────────────────────── */
@media (min-width: 901px) and (max-width: 1024px) {
  /* Nav – pełna, ale kompaktowa */
  .navbar-links { display: flex; gap: 18px; }
  .navbar-links a { font-size: 13px; }
  .hamburger { display: none; }
  .navbar-cta { font-size: 13px; padding: 9px 16px; margin-left: 6px; white-space: nowrap; }

  /* Hero – dwie kolumny */
  .hero { min-height: auto; overflow: hidden; }
  .hero-left { flex: 0 0 52%; min-height: 520px; }
  .hero-left-inner { padding: 48px 6% 48px 5vw; }
  .hero h1 { font-size: clamp(22px, 3vw, 34px); }
  .hero-sub { font-size: 14px; margin-bottom: 28px; }
  .hero-wave { left: calc(52% - 50px); }

  .hero-right {
    display: flex;
    background: transparent;
  }
  .hero-right::before { display: none; }
  .hero-right::after  { display: none; }
  .hero-photo {
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 -6px 18px rgba(0,0,0,0.08));
  }
  .hero-badge { bottom: 20px; right: 20px; padding: 8px 12px; gap: 8px; }
  .hero-badge-score { font-size: 14px; }

  /* Przyciski obok siebie, bez overflow */
  .hero-buttons { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .hero-buttons .btn { font-size: 13px; padding: 11px 18px; }

  /* Stats – tablet (mniejszy font, mniejszy margines) */
  .hero-stats { gap: 20px; margin-top: 24px; }
  .hero-stat-num { font-size: 26px; }
  .hero-stat-label { font-size: 9px; }

  .hero-mobile-lower { display: none; }
  .hero-desktop-only { display: flex; }
  .hero-scroll-arrow { display: none; }
}

/* ── Desktop (> 1024px) ─────────────────────────────────────────── */
@media (min-width: 1025px) {
  .hero-mobile-lower { display: none; }
  .hero-desktop-only { display: flex; }
}

/* ── Mobile (≤ 900px) ───────────────────────────────────────────── */
@media (max-width: 900px) {
  /* Nawigacja */
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .navbar-cta { display: none; }

  /* Urgency bar */
  .urgency-bar { display: block; }

  /* ── Hero ── */
  .hero { flex-direction: column; min-height: auto; background: var(--teal); overflow: hidden; }
  /* z-index: tytuł(3) > zdjęcie(2) > przyciski(1) > bloby(0) */
  .hero-left { flex: none; width: 100%; background: transparent; position: relative; z-index: 3; }
  .hero-left-inner { padding: 32px 20px 20px; }
  .hero h1 { font-size: clamp(24px, 6.5vw, 32px); margin-bottom: 8px; line-height: 1.2; }
  .hero-sub { font-size: 14px; color: rgba(255,255,255,0.88); margin-bottom: 0; line-height: 1.55; }
  .hero-desktop-only { display: none !important; }
  .hero-wave { display: none; }
  .hero-scroll-arrow { display: none; }
  .hero-deco { display: none; }

  /* Zdjęcie – dziewczynki siedzą na górnej krawędzi przycisku */
  .hero-right {
    flex: none; /* zapobiega rozciąganiu przez flex: 1 z base CSS */
    display: flex;
    width: 100%;
    height: 58vw;
    max-height: 280px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    position: relative;
    z-index: 2;
    margin-bottom: -20px; /* photo zachodzi 20px na przycisk – dziewczynki na krawędzi */
  }
  .hero-right::before { display: none; }
  .hero-right::after  { display: none; }
  .hero-photo {
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 -8px 20px rgba(0,0,0,0.08));
  }
  .hero-badge:not(.hero-badge--mobile) { display: none; }

  /* ── CTA block – z-index:1 pod photo, photo nakłada się góra ── */
  .hero-mobile-lower {
    display: flex;
    flex-direction: column;
    background: transparent;
    padding: 20px 20px 80px;
    gap: 0;
    position: relative;
    z-index: 1;
  }
  .hero-buttons--mobile { flex-direction: column; gap: 10px; }
  .btn-block {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    box-sizing: border-box;
  }
  /* Primary – biały bg, teal tekst */
  .hero-buttons--mobile .btn-white {
    background: #ffffff !important;
    color: #1d919a !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  /* Secondary – outline biały */
  .hero-buttons--mobile .btn-ghost-white {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid rgba(255,255,255,0.55) !important;
  }

  /* ── Statystyki – ciemny box tylko na mobile ── */
  /* 601–900px: plain stats bez boxa, z kreską (jak desktop) */
  .hero-stats--mobile {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.25);
    background: transparent;
    border-radius: 0;
    overflow: visible;
  }
  .hero-stats--mobile > div {
    flex: 0 0 auto;
    padding: 0;
    text-align: left;
    border-right: none;
  }
  .hero-stats--mobile > div:last-child { border-right: none; }
  .hero-stats--mobile .hero-stat-num {
    font-size: 32px; font-weight: 800; color: #fff; line-height: 1;
  }
  .hero-stats--mobile .hero-stat-label {
    font-size: 11px; color: rgba(255,255,255,0.65);
    letter-spacing: .08em; text-transform: uppercase; margin-top: 4px;
  }

  /* ── Google badge ── */
  .hero-badge--mobile {
    position: static;
    align-self: center;
    margin: 22px auto 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border-radius: 12px;
    animation: none;
  }

  /* Blobs skalowane do pełnej wysokości hero na mobile */
  .hblob--a { width: 80vw; height: 60vw; top: -8vw; left: -15vw; }
  .hblob--b { width: 60vw; height: 60vw; bottom: -8vw; right: -10vw; }
  .hblob--c { display: none; }
  .hblob--d { display: none; }

  /* Reszta strony */
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }
  .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; }
}

/* ── Narrow mobile (≤600px): dark box + wyśrodkowanie ──────────── */
@media (max-width: 600px) {
  .hero-stats--mobile {
    gap: 0;
    padding-top: 0;
    border-top: none;
    background: rgba(0,0,0,0.18);
    border-radius: 14px;
    overflow: hidden;
    justify-content: space-around;
  }
  .hero-stats--mobile > div {
    flex: 1;
    padding: 10px 4px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.12);
  }
  .hero-stats--mobile > div:last-child { border-right: none; }
  .hero-stats--mobile .hero-stat-num { font-size: 22px; text-align: center; display: block; }
  .hero-stats--mobile .hero-stat-label { font-size: 9px; text-align: center; display: block; }
}

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

  .path-image-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 20px 12px;
    text-align: left;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-200) transparent;
  }

  .path-image {
    width: 680px;
    max-width: none;
    display: block;
  }

  .path-scroll-hint { display: none; }

  .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: 600px) {
  .path-scroll-hint { display: block; }
}

@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;
  }
}

/* ---------- YOUTUBE FACADE ---------- */
.yt-facade {
  position: absolute;
  inset: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}

.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.yt-facade:hover img { opacity: 0.7; }

.yt-play-btn {
  position: absolute;
  width: 64px;
  height: 64px;
  background: rgba(0,0,0,0.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.yt-facade:hover .yt-play-btn {
  background: #ff0000;
  transform: scale(1.08);
}

.yt-play-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  margin-left: 4px;
}

/* ============================================
   ANIMACJE SCROLL & HERO ENTRANCE
   ============================================ */

@keyframes skFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes skFadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes skScaleIn {
  from { opacity: 0; transform: scale(0.86); }
  to   { opacity: 1; transform: scale(1); }
}

/* Hero entrance – stagger przy ładowaniu */

/* index.html – .hero */
.hero h1                           { animation: skFadeUp   0.65s         cubic-bezier(0.22,1,0.36,1) both; }
.hero .hero-sub                    { animation: skFadeUp   0.65s 0.12s   cubic-bezier(0.22,1,0.36,1) both; }
.hero .hero-buttons.hero-desktop-only { animation: skFadeUp 0.65s 0.22s  cubic-bezier(0.22,1,0.36,1) both; }
.hero .hero-stats.hero-desktop-only   { animation: skFadeUp 0.65s 0.34s  cubic-bezier(0.22,1,0.36,1) both; }
.hero-right                        { animation: skFadeRight 0.75s 0.15s  cubic-bezier(0.22,1,0.36,1) both; }
.hero-badge:not(.hero-badge--mobile) { animation: skScaleIn 0.5s  0.55s  cubic-bezier(0.34,1.56,0.64,1) both; }

/* page-hero – cennik, kontakt, oddzialy, zapisy, kursy */
.page-hero .section-label,
.page-hero .course-badge           { animation: skFadeUp   0.5s          cubic-bezier(0.22,1,0.36,1) both; }
.page-hero h1                      { animation: skFadeUp   0.65s 0.10s   cubic-bezier(0.22,1,0.36,1) both; }
.page-hero > .container > p,
.hero-split-text > p               { animation: skFadeUp   0.65s 0.20s   cubic-bezier(0.22,1,0.36,1) both; }
.hero-btns                         { animation: skFadeUp   0.65s 0.28s   cubic-bezier(0.22,1,0.36,1) both; }
.hero-split-logo                   { animation: skFadeRight 0.75s 0.20s  cubic-bezier(0.22,1,0.36,1) both; }

/* grupy.html – .grupy-hero */
.grupy-hero .section-label         { animation: skFadeUp   0.5s          cubic-bezier(0.22,1,0.36,1) both; }
.grupy-hero h1                     { animation: skFadeUp   0.65s 0.10s   cubic-bezier(0.22,1,0.36,1) both; }
.grupy-hero-sub                    { animation: skFadeUp   0.65s 0.20s   cubic-bezier(0.22,1,0.36,1) both; }

/* bezplatna-lekcja.html – .bl-hero */
.bl-hero-form                      { animation: skFadeUp   0.65s 0.08s   cubic-bezier(0.22,1,0.36,1) both; }
.bl-hero-video                     { animation: skFadeUp   0.65s 0.22s   cubic-bezier(0.22,1,0.36,1) both; }

/* lp-bezplatna.html – .lp-hero */
.lp-hero-headline                  { animation: skFadeUp   0.65s         cubic-bezier(0.22,1,0.36,1) both; }
.lp-hero-sub                       { animation: skFadeUp   0.65s 0.12s   cubic-bezier(0.22,1,0.36,1) both; }
.lp-hero-trust                     { animation: skFadeUp   0.65s 0.22s   cubic-bezier(0.22,1,0.36,1) both; }
.lp-hero-form-card                 { animation: skFadeRight 0.75s 0.15s  cubic-bezier(0.22,1,0.36,1) both; }

/* Scroll animation classes */
.sk-anim {
  transition:
    opacity  0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.sk-fade-up  { opacity: 0; transform: translateY(28px); }
.sk-scale-up { opacity: 0; transform: scale(0.94) translateY(16px); }
.sk-visible  { opacity: 1 !important; transform: none !important; }

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  .hblob { animation: none; }
  .hero-scroll-arrow { animation: none; }
  .stat-counter { transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
