/* ═══════════════════════════════════════════════════
   PRO AGE EDU — Warm Editorial Design System
   ═══════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #F4EFE6;
  color: #1A1209;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}
@media (pointer: coarse) { body { cursor: auto; } }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: none; }
@media (pointer: coarse) { button { cursor: pointer; } }

/* ── Variables ── */
:root {
  --cream:      #F4EFE6;
  --cream-lt:   #FAF8F4;
  --cream-dk:   #EAE3D7;
  --charcoal:   #1A1209;
  --brown:      #4A3728;
  --muted:      #7A6A5C;
  --accent:     #C07248;
  --accent-dk:  #A55C35;
  --white:      #FFFFFF;
  --border:     rgba(26,18,9,0.1);
  --border-s:   rgba(26,18,9,0.06);

  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std:   cubic-bezier(0.4, 0, 0.2, 1);
  --t:          0.25s;
  --t-slow:     0.4s;
}

/* ── Grain texture ── */
.grain {
  position: fixed;
  inset: -100%;
  width: 300%;
  height: 300%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-anim 0.4s steps(1) infinite;
}
@keyframes grain-anim {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-4%, -8%); }
  40%  { transform: translate(2%, -12%); }
  60%  { transform: translate(10%, 7%); }
  80%  { transform: translate(7%, 3%); }
  100% { transform: translate(-1%, 6%); }
}

/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
}
.cursor__ring {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1.5px solid white;
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.35s var(--ease), height 0.35s var(--ease),
              background 0.35s ease;
}
.cursor__dot {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor.hovering .cursor__ring {
  width: 56px;
  height: 56px;
  background: white;
}
.cursor.clicking .cursor__ring {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.6);
}

/* ── Layout ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.section { padding: 108px 0; }
.section-cream { background: var(--cream); }
.section-dark  { background: var(--charcoal); }

/* ── Typography ── */
.sec-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.sec-title em { font-style: italic; color: var(--accent); }
.sec-title-warm { color: var(--cream-lt); }
.sec-title-warm em { color: var(--accent); }

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.sec-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.sec-label-ghost { color: rgba(244,239,230,0.4); }
.sec-label-ghost::before { background: rgba(244,239,230,0.3); }

.sec-sub {
  font-size: 1.0625rem;
  color: var(--brown);
  line-height: 1.72;
}

/* Section header */
.sec-hdr {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 72px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn svg { transition: transform 0.3s var(--ease); flex-shrink: 0; }

.btn-dark {
  background: var(--charcoal);
  color: var(--cream-lt);
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,114,72,0.3);
}
.btn-dark:hover svg { transform: translateX(4px); }

.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: rgba(26,18,9,0.04);
}

.btn-cream {
  background: var(--cream-lt);
  color: var(--charcoal);
  border-color: var(--cream-lt);
}
.btn-cream:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,239,230,0.2);
}

.btn-full { width: 100%; }

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: all var(--t-slow) ease;
}
.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 48px;
  transition: padding var(--t-slow) ease, background var(--t-slow) ease, box-shadow var(--t-slow) ease;
}
.header.scrolled {
  background: rgba(244,239,230,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(26,18,9,0.07);
}
.header.scrolled .hdr-inner {
  padding: 16px 48px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
  text-decoration: none;
}
.logo__eyebrow {
  font-size: 0.475rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--t-slow) ease;
}
.logo__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.025em;
  line-height: 1.05;
  transition: color var(--t-slow) ease;
}
.logo--footer .logo__eyebrow { color: #5A4E44; }
.logo--footer .logo__name    { color: var(--cream-lt); }

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brown);
  border-radius: 6px;
  transition: all var(--t) ease;
}
.nav__link:hover { color: var(--charcoal); background: rgba(26,18,9,0.05); }
.nav__cta {
  margin-left: 8px;
  padding: 9px 20px;
  background: var(--charcoal);
  color: var(--cream-lt);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid var(--charcoal);
  transition: all 0.3s var(--ease);
}
.nav__cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(192,114,72,0.3);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile nav */
.mob-nav {
  position: fixed;
  inset: 0;
  background: var(--cream-dk);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mob-nav.open { opacity: 1; pointer-events: all; }
.mob-nav__close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  font-size: 1.375rem;
  color: var(--muted);
  padding: 8px;
  transition: color var(--t) ease;
}
.mob-nav__close:hover { color: var(--charcoal); }
.mob-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.mob-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.025em;
  padding: 12px 32px;
  transition: color 0.2s ease;
}
.mob-nav a:hover { color: var(--accent); }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  background: var(--cream);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Decorative warm circle */
.hero::before {
  content: '';
  position: absolute;
  right: -12%;
  top: -20%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,114,72,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 130px 56px 90px;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: center;
}

/* Hero badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(26,18,9,0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
}
.badge-dot {
  width: 7px; height: 7px;
  background: #6DBF67;
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

/* Hero title */
.hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 6.5vw, 5.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.hero__title em { font-style: italic; color: var(--accent); }

.h-line { display: block; overflow: hidden; }
.h-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
}

/* Hero sub */
.hero__sub {
  font-size: 1.0625rem;
  color: var(--brown);
  max-width: 480px;
  line-height: 1.72;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(16px);
}
.hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(16px);
}

/* Stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  opacity: 0;
}
.h-stat {
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.h-stat:first-child { padding-left: 0; }
.h-stat strong {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.h-stat span {
  font-size: 0.775rem;
  color: var(--muted);
}
.h-stat--div {
  width: 1px;
  height: 32px;
  background: var(--border);
  padding: 0;
  flex-shrink: 0;
}

/* Hero right: trainer grid */
.hero__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero__trainers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.h-trainer {
  border-radius: 16px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--border-s);
  display: block;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease),
              box-shadow 0.4s ease;
}
.h-trainer[data-index="1"],
.h-trainer[data-index="3"] {
  margin-top: 22px;
}
.h-trainer.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.h-trainer[data-index="1"].show,
.h-trainer[data-index="3"].show {
  transform: translateY(22px) scale(1);
}
.h-trainer:hover {
  box-shadow: 0 12px 40px rgba(26,18,9,0.12);
}
.h-trainer:hover .h-trainer__img img { transform: scale(1.05); }
.h-trainer__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-dk);
}
.h-trainer__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease);
}
.h-trainer__init {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream-dk);
  background: var(--cream-dk);
}
.h-trainer__info {
  padding: 12px 14px 14px;
  background: white;
}
.h-trainer__info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.h-trainer__info span {
  display: block;
  font-size: 0.725rem;
  color: var(--muted);
  margin-top: 2px;
}

.hero__team-hint {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero__team-hint.show { opacity: 1; }

/* ══════════════════════════════════════
   TRAINERS SECTION (full)
   ══════════════════════════════════════ */
.trainers-sec { background: var(--cream-lt); }

.trainers-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trainer {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--border-s);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
  position: relative;
  cursor: pointer;
}
.trainer:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(26,18,9,0.1);
}

.trainer__photo {
  position: relative;
  background: var(--cream-dk);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  flex-shrink: 0;
}
.trainer__photo-inner {
  position: absolute;
  inset: 0;
}
.trainer__photo-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease);
}
.trainer:hover .trainer__photo-inner img { transform: scale(1.05); }
.trainer__initials {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 600;
  color: var(--brown);
  opacity: 0.3;
  letter-spacing: -0.04em;
}

.trainer__body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.trainer__since {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.trainer__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
}
.trainer__role {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
}
.trainer__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tr-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(192,114,72,0.08);
  border: 1px solid rgba(192,114,72,0.18);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.trainer__courses { flex: 1; }
.courses-lbl {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 10px;
}
.trainer__courses ul { display: flex; flex-direction: column; gap: 6px; }
.trainer__courses li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--brown);
  line-height: 1.4;
}
.trainer__courses li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.more-tr { color: var(--muted); font-style: italic; padding-left: 20px; font-size: 0.8rem; }

.trainer__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-s);
}
.trainer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.25s ease, gap 0.25s var(--ease);
  /* Overlay cały card — klik gdziekolwiek = przejście do profilu */
  position: static;
}
.trainer__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}
.trainer:hover .trainer__cta { color: var(--accent); gap: 12px; }
.trainer__ask {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
  z-index: 1; /* Ponad overlay — działa niezależnie */
}
.trainer__ask:hover { color: var(--accent); }

/* ══════════════════════════════════════
   TRAINING AREAS
   ══════════════════════════════════════ */
/* ══════════════════════════════════════
   TRAINING AREAS — Editorial row list
   ══════════════════════════════════════ */
.ta-list {
  border-top: 1px solid var(--border-s);
  margin-top: 16px;
}
.ta-row {
  display: grid;
  grid-template-columns: 72px 1fr 180px 212px;
  gap: 0 36px;
  align-items: center;
  padding: 28px 20px;
  margin: 0 -20px;
  border-bottom: 1px solid var(--border-s);
  text-decoration: none;
  border-radius: 14px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.ta-row:hover {
  background: white;
  box-shadow: 0 6px 36px rgba(26,18,9,0.07);
  border-bottom-color: transparent;
}
.ta-row:hover + .ta-row { border-top-color: transparent; }
.ta-row__num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 500;
  color: rgba(26,18,9,0.1);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
  user-select: none;
  text-align: center;
}
.ta-row:hover .ta-row__num { color: rgba(192,114,72,0.35); }
.ta-row__main { display: flex; flex-direction: column; gap: 4px; }
.ta-row__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5625rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
}
.ta-row__tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  line-height: 1.3;
}
.ta-row__hook {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ta-row__topics {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}
.ta-row__topics li {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--brown);
  background: rgba(26,18,9,0.05);
  border: 1px solid rgba(26,18,9,0.06);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.ta-row__more {
  font-size: 0.68rem !important;
  color: var(--muted) !important;
  background: transparent !important;
  border-color: transparent !important;
  padding: 3px 2px !important;
}
.ta-row__end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.ta-row__trainer {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}
.ta-row__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--charcoal);
  white-space: nowrap;
  transition: color 0.2s ease, gap 0.25s cubic-bezier(0.16,1,0.3,1);
}
.ta-row__cta svg { transition: transform 0.25s cubic-bezier(0.16,1,0.3,1); }
.ta-row:hover .ta-row__cta { color: var(--accent); gap: 11px; }
.ta-row:hover .ta-row__cta svg { transform: translateX(3px); }


/* ══════════════════════════════════════
   DARK SECTION
   ══════════════════════════════════════ */
.dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.dark-lead {
  font-size: 1.0625rem;
  color: rgba(244,239,230,0.6);
  line-height: 1.72;
  margin-bottom: 40px;
}
.dark-feats { display: flex; flex-direction: column; }
.df {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(244,239,230,0.07);
}
.df:first-child { padding-top: 0; }
.df:last-child { border-bottom: none; }
.df__arrow {
  font-size: 0.875rem;
  color: var(--accent);
  padding-top: 2px;
  flex-shrink: 0;
}
.df strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--cream-lt);
  margin-bottom: 6px;
}
.df p {
  font-size: 0.875rem;
  color: rgba(244,239,230,0.5);
  margin: 0;
  line-height: 1.6;
}

/* BUR box */
.bur-box {
  background: rgba(244,239,230,0.05);
  border: 1px solid rgba(244,239,230,0.09);
  border-radius: 20px;
  padding: 40px 36px;
}
.bur-box__big {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 16px 0 14px;
}
.bur-box__desc {
  font-size: 0.9375rem;
  color: rgba(244,239,230,0.55);
  line-height: 1.65;
  margin-bottom: 32px;
}
.bur-steps { display: flex; flex-direction: column; margin-bottom: 32px; }
.bur-step {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(244,239,230,0.07);
}
.bur-step:first-child { padding-top: 0; }
.bur-step:last-child  { border-bottom: none; }
.bur-step > span {
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(244,239,230,0.22);
  letter-spacing: 0.12em;
  padding-top: 2px;
  flex-shrink: 0;
}
.bur-step strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--cream-lt);
  margin-bottom: 4px;
}
.bur-step p {
  font-size: 0.84rem;
  color: rgba(244,239,230,0.47);
  margin: 0;
  line-height: 1.55;
}

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.contact-sec { background: var(--cream-lt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 88px;
  align-items: start;
}
.contact-left .sec-title { margin-bottom: 16px; }
.contact-lead {
  font-size: 1.0625rem;
  color: var(--brown);
  margin-bottom: 40px;
  line-height: 1.72;
}
.contact-info { display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }
.ci { display: flex; flex-direction: column; gap: 4px; }
.ci span:first-child {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.ci a, .ci span:last-child, .ci strong {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color var(--t) ease;
}
.ci a:hover { color: var(--accent); }
.contact-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.contact-badges span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brown);
  background: rgba(26,18,9,0.06);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}

/* Form */
.c-form { display: flex; flex-direction: column; gap: 18px; }
.c-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.c-field { display: flex; flex-direction: column; gap: 7px; }
.c-field label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--brown);
}
.c-field label em { color: var(--accent); font-style: normal; }
.c-field input,
.c-field textarea,
.c-field select {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.c-field select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A6A5C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.c-field input:focus,
.c-field textarea:focus,
.c-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192,114,72,0.1);
}
.c-field input::placeholder,
.c-field textarea::placeholder { color: var(--cream-dk); }
.c-field textarea { resize: vertical; min-height: 120px; }
.c-note { font-size: 0.8rem; color: var(--muted); text-align: center; }
.c-success {
  background: #FDF6EF;
  border: 1px solid rgba(192,114,72,0.3);
  color: var(--accent-dk);
  padding: 18px 22px;
  border-radius: 8px;
  font-size: 0.9375rem;
  text-align: center;
  line-height: 1.5;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  color: #5A4E44;
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: #4A4036;
  margin-top: 16px;
  margin-bottom: 20px;
  line-height: 1.65;
}
.footer-certs { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-certs span {
  font-size: 0.7rem;
  font-weight: 600;
  color: #4A4036;
  background: rgba(244,239,230,0.05);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5A4E44;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col p {
  font-size: 0.875rem;
  color: #4A4036;
  line-height: 1.6;
  transition: color var(--t) ease;
}
.footer-col a:hover { color: var(--cream); }
.footer-col p { margin-bottom: 6px; }
.footer-group-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: #4A4036;
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-group-link:hover { color: var(--cream-lt); }
.footer-group-logo {
  height: 20px;
  width: auto;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.footer-group-link:hover .footer-group-logo { opacity: 1; }

.footer-btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(244,239,230,0.06);
  font-size: 0.8rem;
  color: #3A3028;
}
.footer-made {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3A3028;
  font-size: 0.75rem;
  transition: color 0.2s ease;
}
.footer-made:hover { color: #5A4E44; }
.footer-made-logo {
  height: 15px;
  width: auto;
  opacity: 0.35;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}
.footer-made:hover .footer-made-logo { opacity: 0.65; }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 20px;
  padding-top: 16px;
  text-align: center;
}
.footer-legal p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.22);
  line-height: 1.6;
  margin: 0;
}
.footer-legal p + p { margin-top: 2px; }

/* ══════════════════════════════════════
   NAV PHONE
   ══════════════════════════════════════ */
.nav__phone {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
  opacity: 0.55;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.nav__phone:hover { color: var(--accent); opacity: 1; }

/* ══════════════════════════════════════
   HERO FREE NOTE
   ══════════════════════════════════════ */
.hero__free-note {
  font-size: 0.8rem;
  color: rgba(244,239,230,0.38);
  margin-top: 18px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════
   DLACZEGO PRO AGE EDU
   ══════════════════════════════════════ */
.why-sec { background: var(--cream-lt); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 88px;
  align-items: start;
}

.why-lead {
  font-size: 1.0625rem;
  color: var(--brown);
  line-height: 1.72;
  margin-bottom: 40px;
}

.why-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
}

.why-stat {
  flex: 1;
  padding: 22px 0 22px 24px;
  border-right: 1px solid var(--border);
}
.why-stat:first-child { padding-left: 0; }
.why-stat:last-child  { border-right: none; }

.why-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 5px;
}
.why-stat span {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.35;
}

.why-feats { display: flex; flex-direction: column; }

.why-feat {
  display: flex;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.why-feat:first-child { padding-top: 0; }
.why-feat:last-child  { border-bottom: none; }

.why-feat__mark {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  padding-top: 5px;
  flex-shrink: 0;
  min-width: 20px;
  text-align: right;
}

.why-feat strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 7px;
}

.why-feat p {
  font-size: 0.875rem;
  color: var(--brown);
  margin: 0;
  line-height: 1.65;
}

/* ══════════════════════════════════════
   DOFINANSOWANIA + BUR
   ══════════════════════════════════════ */

/* Label + title modifiers for dark background */
.sec-label-ghost {
  color: rgba(244,239,230,0.38);
  border-color: rgba(244,239,230,0.12);
  background: rgba(244,239,230,0.05);
}
.sec-title-warm {
  color: var(--cream);
}
.sec-title-warm em {
  color: var(--accent);
}

.bur-sec-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 88px;
  align-items: start;
}

.bur-sec-lead {
  font-size: 1.0625rem;
  color: rgba(244,239,230,0.6);
  line-height: 1.72;
  margin-bottom: 36px;
}

.bur-sec-kto {
  margin-bottom: 24px;
}
.bur-sec-kto h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.38);
  margin-bottom: 16px;
}
.bur-sec-kto ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bur-sec-kto li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.9375rem;
  color: var(--cream-lt);
  line-height: 1.45;
  list-style: none;
}
.bur-sec-kto li svg {
  color: var(--accent);
  flex-shrink: 0;
}

.bur-sec-note {
  font-size: 0.875rem;
  color: rgba(244,239,230,0.4);
  line-height: 1.65;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(244,239,230,0.07);
}

/* Right column */
.bur-hero-block {
  background: rgba(244,239,230,0.04);
  border: 1px solid rgba(244,239,230,0.09);
  border-radius: 20px;
  padding: 40px 36px;
  margin-bottom: 28px;
}

.bur-hero-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.75rem, 6.5vw, 5.75rem);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.bur-hero-sub {
  font-size: 0.9375rem;
  color: rgba(244,239,230,0.5);
  line-height: 1.55;
  margin: 0 0 20px;
}

.bur-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(192,114,72,0.08);
  border: 1px solid rgba(192,114,72,0.22);
  padding: 7px 14px;
  border-radius: 100px;
}

/* BUR steps are reused from existing .bur-steps / .bur-step definitions */
.bur-sec .bur-steps { margin-bottom: 32px; }

/* ══════════════════════════════════════
   METHODOLOGY BADGES (why-sec)
   ══════════════════════════════════════ */
.why-method {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid var(--border-s);
}
.why-method span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(26,18,9,0.04);
  border: 1px solid var(--border-s);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.testi-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.testi-card:hover {
  box-shadow: 0 8px 40px rgba(26,18,9,0.07);
  border-color: rgba(192,114,72,0.22);
}

/* Featured card: dark, spans 2 columns */
.testi-card--featured {
  grid-column: span 2;
  background: var(--charcoal);
  border-color: transparent;
}
.testi-card--featured:hover {
  border-color: transparent;
  box-shadow: 0 12px 48px rgba(26,18,9,0.22);
}

.testi-stars {
  color: var(--accent);
  font-size: 0.9375rem;
  letter-spacing: 3px;
  line-height: 1;
}

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--brown);
  flex: 1;
  margin: 0;
}
.testi-quote::before { content: "\201E"; }
.testi-quote::after  { content: "\201D"; }

.testi-card--featured .testi-quote {
  font-size: 1.1875rem;
  color: rgba(244,239,230,0.82);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testi-author__init {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-card--featured .testi-author__init {
  background: rgba(244,239,230,0.12);
  color: var(--cream-lt);
}

.testi-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3px;
}
.testi-card--featured .testi-author strong { color: var(--cream-lt); }

.testi-author span {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.4;
}
.testi-card--featured .testi-author span { color: rgba(244,239,230,0.4); }

/* Footer bar below testimonials */
.testi-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.testi-rating {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-rating__stars {
  color: var(--accent);
  font-size: 0.875rem;
  letter-spacing: 3px;
  flex-shrink: 0;
}
.testi-rating__label {
  font-size: 0.875rem;
  color: var(--brown);
  line-height: 1.55;
}

/* ══════════════════════════════════════
   CONTACT TRUST STRIP
   ══════════════════════════════════════ */
.trust-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.875rem;
  color: var(--brown);
  line-height: 1.55;
}
.trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ══════════════════════════════════════
   GUARANTEE NOTE (below form)
   ══════════════════════════════════════ */
.guarantee-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: rgba(192,114,72,0.05);
  border: 1px solid rgba(192,114,72,0.14);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 4px;
}
.guarantee-note svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.guarantee-note span {
  font-size: 0.8125rem;
  color: var(--brown);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   JĘZYKI OBCE
   ══════════════════════════════════════ */
.lang-sec { background: var(--cream); }

/* ── Intro row: copy + brand cards ── */
.lang-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 64px;
}

.lang-lead {
  font-size: 1.0625rem;
  color: var(--brown);
  line-height: 1.72;
  margin-top: 28px;
}
.lang-lead strong { color: var(--charcoal); font-weight: 600; }

.lang-brands {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.lang-brand-card {
  background: var(--cream-lt);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 30px;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.lang-brand-card:hover {
  border-color: rgba(192,114,72,0.3);
  box-shadow: 0 6px 32px rgba(26,18,9,0.06);
}

.lang-brand-card--alt {
  background: white;
}

.lang-brand-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.lang-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1;
}

.lang-brand-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(192,114,72,0.08);
  border: 1px solid rgba(192,114,72,0.18);
  padding: 5px 11px;
  border-radius: 100px;
  white-space: nowrap;
}

.lang-brand-card p {
  font-size: 0.9rem;
  color: var(--brown);
  line-height: 1.65;
  margin: 0;
}

/* ── 4-format grid ── */
.lang-formats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
}

.lang-fmt {
  background: var(--cream-lt);
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s ease;
}
.lang-fmt:hover { background: white; }

.lang-fmt__num {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  opacity: 0.7;
}

.lang-fmt__body strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}

.lang-fmt__body p {
  font-size: 0.875rem;
  color: var(--brown);
  line-height: 1.65;
  margin: 0;
}

/* ── Funding bar ── */
.lang-fund-bar {
  background: var(--charcoal);
  border-radius: 20px;
  padding: 0 48px;
  overflow: hidden;
}

.lang-fund-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0 44px;
  align-items: center;
  padding: 40px 0;
  border-bottom: none;
}

.lang-fund-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
  padding-right: 44px;
  border-right: 1px solid rgba(244,239,230,0.1);
}

.lang-fund-copy strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream-lt);
  margin-bottom: 8px;
  line-height: 1.4;
}
.lang-fund-copy p {
  font-size: 0.875rem;
  color: rgba(244,239,230,0.45);
  line-height: 1.65;
  margin: 0;
}

.lang-fund-cta { flex-shrink: 0; white-space: nowrap; }

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--delay, 0s);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero__grid       { grid-template-columns: 1fr 360px; gap: 56px; }
  .dark-grid        { gap: 56px; }
  .why-grid         { gap: 56px; }
  .bur-sec-grid     { gap: 56px; grid-template-columns: 1fr 340px; }
  .lang-intro       { gap: 48px; }
  .contact-grid     { gap: 56px; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ── Tablet ── */
@media (max-width: 960px) {
  .nav, .nav__cta, .nav__phone { display: none; }
  .burger           { display: flex; }

  /* Hero */
  .hero__grid       { grid-template-columns: 1fr; padding: 110px 40px 72px; }
  .hero__right      { display: none; }
  .hero__sub        { max-width: 100%; font-size: 1rem; }
  .hero__stats      { flex-wrap: wrap; gap: 16px 0; }
  .h-stat           { padding: 0 20px; }

  /* Sections */
  .trainers-list    { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .ta-row           { grid-template-columns: 52px 1fr 160px; gap: 0 20px; margin: 0 -12px; padding: 22px 12px; }
  .ta-row__end      { display: none; }
  .dark-grid        { grid-template-columns: 1fr; gap: 48px; }
  .why-grid         { grid-template-columns: 1fr; gap: 48px; }
  .bur-sec-grid     { grid-template-columns: 1fr; gap: 48px; }
  .lang-intro       { grid-template-columns: 1fr; gap: 40px; }
  .lang-formats     { grid-template-columns: repeat(2, 1fr); }
  .lang-fund-inner  { grid-template-columns: auto 1fr; gap: 0 28px; }
  .lang-fund-cta    { grid-column: 1 / -1; margin-top: -8px; }
  .contact-grid     { grid-template-columns: 1fr; gap: 48px; }
  .testi-grid       { grid-template-columns: repeat(2, 1fr); }
  .testi-card--featured { grid-column: span 2; }
  .sec-hdr          { margin-bottom: 52px; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  /* Spacing */
  .section          { padding: 64px 0; }
  .container        { padding: 0 24px; }
  .hdr-inner        { padding: 18px 20px; }
  .header.scrolled .hdr-inner { padding: 13px 20px; }

  /* Typography */
  .sec-title        { font-size: clamp(1.875rem, 7vw, 2.5rem); }
  .sec-hdr          { margin-bottom: 40px; }
  .sec-sub          { font-size: 0.9375rem; }

  /* Hero */
  .hero__grid       { padding: 96px 24px 64px; }
  .hero__title      { font-size: clamp(2.5rem, 11vw, 4rem); }
  .hero__sub        { font-size: 0.9375rem; margin-bottom: 32px; }
  .hero__btns       { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 44px; }
  .hero__btns .btn  { width: 100%; justify-content: center; }
  .hero__stats      { flex-wrap: wrap; padding-top: 28px; gap: 12px 0; }
  .h-stat           { padding: 0 16px; }
  .h-stat:first-child { padding-left: 0; }
  .h-stat--div      { display: none; }

  /* Trainers */
  .trainers-list    { grid-template-columns: 1fr; gap: 16px; }
  .trainer__name    { font-size: 1.5rem; }

  /* Training areas */
  .ta-row           { grid-template-columns: 1fr auto; gap: 0 16px; margin: 0; padding: 20px 0; }
  .ta-row__num      { display: none; }
  .ta-row__topics   { display: none; }
  .ta-row__end      { display: flex; align-items: flex-end; }
  .ta-row__trainer  { display: none; }

  /* Testimonials */
  .testi-grid       { grid-template-columns: 1fr; }
  .testi-card--featured { grid-column: span 1; }
  .testi-foot       { flex-direction: column; align-items: flex-start; gap: 20px; }
  .testi-rating     { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Why + BUR sections */
  .why-stat         { padding: 18px 0 18px 16px; }
  .bur-hero-block   { padding: 28px 24px; }
  .bur-hero-num     { font-size: 3.5rem; }

  /* Lang section */
  .lang-formats     { grid-template-columns: 1fr 1fr; border-radius: 16px; }
  .lang-fund-bar    { padding: 0 28px; border-radius: 16px; }
  .lang-fund-inner  { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; }
  .lang-fund-num    { font-size: 3rem; padding-right: 0; border-right: none; padding-bottom: 20px; border-bottom: 1px solid rgba(244,239,230,0.1); }
  .lang-fund-cta    { grid-column: auto; margin-top: 0; }

  /* Dark section (legacy) */
  .bur-box          { padding: 28px 24px; }
  .bur-box__big     { font-size: 3.5rem; }

  /* Contact */
  .c-row            { grid-template-columns: 1fr; }
  .contact-lead     { font-size: 1rem; }

  /* Footer */
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-btm       { flex-direction: column; gap: 12px; text-align: center; align-items: center; }
}

/* ── Small mobile ── */
@media (max-width: 520px) {
  .trainers-list    { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 24px; }
  .hero__stats      { column-gap: 0; }
  .h-stat           { width: 50%; padding: 8px 0; border-right: 1px solid var(--border); }
  .h-stat:nth-child(even) { border-right: none; }
  .h-stat--div      { display: none; }
}

/* ── Extra small ── */
@media (max-width: 400px) {
  .container        { padding: 0 16px; }
  .hdr-inner        { padding: 16px; }
  .bur-box          { padding: 22px 18px; }
  .hero__grid       { padding: 90px 16px 56px; }
  .btn              { padding: 13px 20px; font-size: 0.875rem; }
}
