/* =========================================
   SEELE & STILLE — Components
   Nav · Hero · Cards · Schedule · Stats
   About · Teachers · Testimonials
   Pricing · Accordion · Contact · Footer
   ========================================= */

/* --- NAV --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  border-color: rgba(26, 26, 24, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  transition: color var(--transition);
}
.nav__logo:hover { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav__link {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--text); font-weight: 500; }
.nav__link[aria-current="page"]::after { width: 100%; }

.nav__mobile-link[aria-current="page"] { color: var(--accent); font-weight: 500; }

.nav__cta {
  margin-left: 8px;
  font-size: 15px;
  padding: 10px 24px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px var(--container-padding) 24px;
  background: var(--white);
  border-top: 1px solid rgba(26, 26, 24, 0.08);
  gap: 4px;
}
.nav__mobile.open { display: flex; }

.nav__mobile-link {
  padding: 12px 0;
  font-size: 18px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(26, 26, 24, 0.06);
  transition: color var(--transition);
}
.nav__mobile-link:hover { color: var(--accent); }
.nav__mobile-cta { margin-top: 16px; text-align: center; }

/* --- HERO --- */
.hero {
  background: var(--white);
  padding: clamp(80px, 12vw, 140px) 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__headline {
  margin-bottom: 20px;
  margin-top: 8px;
}

.hero__sub {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 42ch;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  opacity: 0.85;
}

/* --- COURSE CARDS --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 26, 24, 0.06);
  display: flex;
  flex-direction: column;
}

.card__icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 20px;
}
.card__icon svg { width: 100%; height: 100%; }

.card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  width: fit-content;
}
.card__badge--green  { background: rgba(124, 154, 126, 0.12); color: var(--accent-dark); }
.card__badge--terra  { background: rgba(196, 149, 106, 0.12); color: #a87040; }
.card__badge--neutral { background: var(--surface); color: var(--text-muted); }

.card h3 { margin-bottom: 12px; }

.card p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.card__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.card__link:hover { color: var(--accent-dark); }

/* --- SECTION CTA (Teaser-Buttons) --- */
.section__cta {
  text-align: center;
  margin-top: clamp(32px, 5vw, 56px);
}

/* --- SCHEDULE TEASER (index.html Hinweis-Block) --- */
.schedule-teaser {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.schedule-teaser__text {
  color: var(--text-muted);
  margin: 20px auto 32px;
}

/* --- SCHEDULE --- */
.schedule-wrap { overflow: hidden; }

.schedule-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
}

.schedule {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.schedule thead th {
  background: var(--text);
  color: var(--white);
  padding: 14px 12px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: left;
}
.schedule thead th:first-child { width: 80px; }

.schedule tbody tr:not(:last-child) td { border-bottom: 1px solid rgba(26, 26, 24, 0.06); }

.schedule tbody td { padding: 10px 8px; vertical-align: top; }

.schedule__time {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 13px;
  padding-top: 14px !important;
  white-space: nowrap;
}

.schedule__class {
  display: block;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}
.schedule__class small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 2px;
}

.schedule__class--hatha     { background: rgba(124, 154, 126, 0.15); color: #4a7a4c; }
.schedule__class--vinyasa   { background: rgba(196, 149, 106, 0.15); color: #9a6a30; }
.schedule__class--yin       { background: rgba(232, 227, 220, 0.8);  color: #6b5a4a; }
.schedule__class--meditation { background: rgba(139, 112, 180, 0.12); color: #6d4f9a; }

.schedule-legend {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.schedule-legend .schedule__class { display: inline-block; }

/* Schedule cells as buttons */
button.schedule__class {
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}
button.schedule__class:hover { box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08) inset; }
button.schedule__class:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.schedule tbody button.schedule__class {
  text-align: left;
  width: 100%;
}

.schedule__class.is-dimmed {
  opacity: 0.25;
  transform: scale(0.94);
}

/* Filter badges */
.filter-badge {
  cursor: pointer;
  border: 2px solid transparent;
  font: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
}
.filter-badge:hover { transform: translateY(-1px); }
.filter-badge:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.filter-badge[aria-pressed="true"] {
  box-shadow: 0 0 0 2px currentColor;
  font-weight: 700;
}
.filter-badge[aria-pressed="true"]::after {
  content: '\2713';
  margin-left: 6px;
}

/* --- MODAL --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 24, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
}
.modal-overlay[hidden] { display: none; }

body.modal-open { overflow: hidden; }

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 40px 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modal-in 0.25s ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}
.modal__close:hover,
.modal__close:focus-visible { background: var(--surface); color: var(--text); }

.modal__body h3 { margin: 8px 0 4px; }
.modal__teacher { color: var(--accent); font-weight: 500; font-size: 15px; margin-bottom: 4px; }
.modal__time { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.modal__desc { color: var(--text-muted); margin-bottom: 28px; }

/* --- STATS --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  text-align: center;
}

.stat { padding: 24px 16px; }

.stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.stat__unit {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-heading);
}

.stat__label {
  display: block;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  font-weight: 500;
}

/* --- ABOUT --- */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.about__image { display: flex; justify-content: center; }

.about__photo {
  width: clamp(220px, 30vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--surface2);
  border: 4px solid var(--accent2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about__initials {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  color: var(--accent2);
  letter-spacing: 0.05em;
}

.about__content h2 { margin-bottom: 20px; }

.about__content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 55ch;
}

.about__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.5;
}

.about__values {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
}
.about__value svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* --- TEACHERS --- */
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.teacher {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 26, 24, 0.06);
}

.teacher__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.teacher__photo--terra {
  background: rgba(196, 149, 106, 0.12);
  border-color: var(--accent2);
}
.teacher__photo span {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 500;
}
.teacher__photo--terra span { color: var(--accent2); }

.teacher h3 { font-size: 1.4rem; margin-bottom: 4px; }
.teacher__role { font-size: 14px; color: var(--accent); font-weight: 500; margin-bottom: 14px; }
.teacher__bio { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.teacher__badges { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

/* --- TESTIMONIALS --- */
.testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 64px);
}

.testimonial { position: relative; padding-top: 24px; }

.testimonial__quote-mark {
  display: block;
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
}

.testimonial p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial footer { display: flex; flex-direction: column; gap: 2px; }
.testimonial cite { font-style: normal; font-weight: 600; font-size: 15px; color: var(--text); }
.testimonial__since { font-size: 13px; color: var(--text-muted); }

/* --- PRICING --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: center;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 26, 24, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pricing-card--featured {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}

.pricing-card__badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent2);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card__label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pricing-card--featured .pricing-card__label { color: rgba(255,255,255,0.8); }

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
  justify-content: center;
}

.pricing-card__amount {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}
.pricing-card--featured .pricing-card__amount { color: var(--white); }

.pricing-card__currency { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.pricing-card--featured .pricing-card__currency { color: rgba(255,255,255,0.8); }

.pricing-card__desc { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.pricing-card--featured .pricing-card__desc { color: rgba(255,255,255,0.8); }

.pricing-card__features {
  text-align: left;
  width: 100%;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card__features li {
  font-size: 15px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card__features li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--accent-light);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12' fill='none' stroke='%237c9a7e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,0.9); }

.pricing-card--featured .pricing-card__features li::before {
  background-color: rgba(255,255,255,0.2);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pricing-card--featured .btn--primary {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}
.pricing-card--featured .btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--accent-dark);
}

/* --- ACCORDION --- */
.accordion { display: flex; flex-direction: column; gap: 2px; }

.accordion__item { border-bottom: 1px solid rgba(26, 26, 24, 0.1); }

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  gap: 16px;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
  min-height: 44px;
}
.accordion__trigger:hover { color: var(--accent); }
.accordion__trigger[aria-expanded="true"] { color: var(--accent); }

.accordion__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.accordion__trigger[aria-expanded="true"] .accordion__icon { transform: rotate(180deg); }

.accordion__content { padding-bottom: 20px; }
.accordion__content p { color: var(--text-muted); line-height: 1.8; }

/* --- CONTACT --- */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group__optional { font-weight: 400; color: var(--text-muted); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid rgba(26, 26, 24, 0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  min-height: 48px;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: 0.6; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 154, 126, 0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.form-group--checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-height: unset;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-group--checkbox label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
  cursor: pointer;
}
.form-link { color: var(--accent); text-decoration: underline; }

.contact__address h3,
.contact__hours h3 { font-size: 1.2rem; margin-bottom: 14px; color: var(--text); }

.contact__address address {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 32px;
}

.contact__link { color: var(--accent); transition: color var(--transition); }
.contact__link:hover { color: var(--accent-dark); }

.hours-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.hours-list dt { font-weight: 500; color: var(--text); }

.map-placeholder {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 180px;
  border: 1px solid rgba(26, 26, 24, 0.08);
  color: var(--text-muted);
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
}
.map-placeholder svg { width: 32px; height: 32px; color: var(--accent); }

/* --- FOOTER --- */
.footer {
  background: var(--text);
  color: var(--white);
  padding: clamp(48px, 8vw, 80px) 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(40px, 6vw, 60px);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.footer__slogan { color: rgba(255,255,255,0.5); font-size: 15px; margin-bottom: 24px; }

.footer__social { display: flex; gap: 12px; }

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition);
}
.footer__social-link svg { width: 18px; height: 18px; }
.footer__social-link:hover { background: var(--accent); color: var(--white); }

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  max-width: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__svg { max-width: 240px; }

  .cards-grid { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; }
  .about__image { order: -1; }
  .teachers-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}
