/* ===================================================
   TextProfi Akademie — smart-water-543.css
   =================================================== */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #454545;
  background: #ffffff;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: #121212; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  color: #121212;
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: #FFD600;
  color: #121212;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid #FFD600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.btn-primary:hover { background: #f0c800; border-color: #f0c800; color: #121212; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #121212;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid #121212;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.btn-secondary:hover { background: #121212; color: #ffffff; }

.btn-tertiary {
  display: inline-block;
  background: transparent;
  color: #121212;
  padding: 13px 0;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-tertiary:hover { color: #FFD600; text-decoration: none; }

.btn-white {
  display: inline-block;
  background: #ffffff;
  color: #121212;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.btn-white:hover { background: transparent; color: #ffffff; }

/* === PRE-HEADER === */
.pre-header {
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  padding: 10px 0;
}
.pre-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.pre-header__logo-img { width: 168px; height: auto; }
.pre-header__menu-list { display: flex; align-items: center; gap: 12px; }
.pre-header__menu-list .btn-secondary { padding: 8px 18px; font-size: 0.85rem; }
.pre-header__menu-list .btn-primary { padding: 8px 18px; font-size: 0.85rem; }

/* === MAIN NAVIGATION === */
.main-navigation {
  background: #121212;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
}
.nav-logo svg { display: block; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-menu__item { position: relative; }
.nav-menu__link {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 20px 16px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-menu__link:hover,
.nav-menu__link.active { color: #FFD600; }

.nav-cta { margin-left: 20px; }
.nav-cta .btn-primary { padding: 10px 22px; font-size: 0.88rem; }

/* Mobile burger */
.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger-bar {
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  display: block;
}
.burger-btn.open .burger-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger-btn.open .burger-bar:nth-child(2) { opacity: 0; }
.burger-btn.open .burger-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: #121212;
  padding: 10px 20px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu__link {
  display: block;
  color: #ffffff;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid #2a2a2a;
}
.mobile-menu__link:hover { color: #FFD600; }

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #121212;
}
.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 0;
}
.hero__label {
  display: inline-block;
  background: #FFD600;
  color: #121212;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.hero h1 { color: #ffffff; margin-bottom: 20px; }
.hero__sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider dots */
.hero-slider { position: relative; }
.slider-nav {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 5;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dot.active { background: #FFD600; }

/* === SECTION COMMONS === */
.section { padding: 70px 0; }
.section--dark { background: #121212; color: #ffffff; }
.section--dark h2, .section--dark h3 { color: #ffffff; }
.section--gray { background: #F5F5F5; }
.section--yellow { background: #FFD600; }

.section-header { margin-bottom: 48px; }
.section-header__label {
  display: inline-block;
  background: #FFD600;
  color: #121212;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header__sub { font-size: 1.05rem; color: #6D758F; max-width: 680px; }
.section-header--center { text-align: center; }
.section-header--center .section-header__sub { margin: 0 auto; }

/* === STATS BAR === */
.stats-bar { background: #FFD600; padding: 30px 0; }
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item__number { font-size: 2.4rem; font-weight: 900; color: #121212; line-height: 1; }
.stat-item__text { font-size: 0.9rem; font-weight: 600; color: #121212; margin-top: 4px; }

/* === COURSE CARDS === */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.course-card {
  background: #ffffff;
  border: 1px solid #E5E5E5;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.course-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); transform: translateY(-3px); }
.course-card--featured { border-color: #FFD600; border-width: 2px; }
.course-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: #FFD600;
  color: #121212;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.course-card__img { width: 100%; height: 200px; object-fit: cover; }
.course-card__body { padding: 24px; }
.course-card__level {
  font-size: 0.75rem;
  font-weight: 700;
  color: #6D758F;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.course-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.course-card__text { color: #6D758F; font-size: 0.92rem; margin-bottom: 18px; line-height: 1.55; }
.course-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 18px;
  font-size: 0.85rem;
  color: #6D758F;
}
.course-card__meta i { color: #FFD600; margin-right: 5px; }
.course-card__price { font-size: 1.6rem; font-weight: 900; color: #121212; margin-bottom: 16px; }
.course-card__price span { font-size: 0.9rem; font-weight: 400; color: #6D758F; }

/* === PRICING TABLE === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  border: 1px solid #E5E5E5;
  padding: 32px 24px;
  background: #ffffff;
  position: relative;
  transition: box-shadow 0.25s;
}
.pricing-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.pricing-card--popular {
  border-color: #FFD600;
  border-width: 2px;
  transform: scale(1.03);
}
.pricing-card__popular-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: #FFD600;
  color: #121212;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 16px;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-card__name { font-size: 1rem; font-weight: 700; color: #6D758F; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.pricing-card__price { font-size: 2.4rem; font-weight: 900; color: #121212; line-height: 1; margin-bottom: 6px; }
.pricing-card__price sub { font-size: 1rem; font-weight: 400; }
.pricing-card__period { font-size: 0.85rem; color: #6D758F; margin-bottom: 24px; }
.pricing-card__features { margin-bottom: 28px; }
.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}
.pricing-card__feature i { color: #FFD600; margin-top: 2px; flex-shrink: 0; }
.pricing-card .btn-primary,
.pricing-card .btn-secondary { width: 100%; text-align: center; }

/* === ANNOUNCEMENT BANNER === */
.ancmnt-banner { padding: 70px 0; }
.ancmnt-banner__wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}
.ancmnt-banner__wrap.image-right { flex-direction: row-reverse; }
.ancmnt-banner__image { flex: 0 0 45%; }
.ancmnt-banner__image img { width: 100%; height: 380px; object-fit: cover; }
.ancmnt-banner__content { flex: 1; }
.ancmnt-banner__label {
  display: inline-block;
  background: #FFD600;
  color: #121212;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.ancmnt-banner h2 { margin-bottom: 18px; }
.ancmnt-banner p { color: #6D758F; margin-bottom: 12px; }
.ancmnt-banner__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: #ffffff;
  border: 1px solid #E5E5E5;
  padding: 28px;
  position: relative;
}
.testimonial-card__stars { color: #FFD600; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card__text { font-style: italic; color: #454545; margin-bottom: 20px; line-height: 1.6; font-size: 0.95rem; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #F1F3F7;
  display: flex; align-items: center; justify-content: center;
  color: #6D758F; font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; font-size: 0.95rem; color: #121212; }
.testimonial-card__role { font-size: 0.82rem; color: #6D758F; }

/* === INFO BANNER (CTA section) === */
.info-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  text-align: center;
}
.info-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18,18,18,0.7);
}
.info-banner__box {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  color: #ffffff;
}
.info-banner h2 { color: #ffffff; margin-bottom: 16px; }
.info-banner p { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 1.05rem; }
.info-banner__ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* === FEATURES GRID === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-item { padding: 28px; background: #ffffff; border-left: 4px solid #FFD600; }
.feature-item__icon { font-size: 2rem; color: #FFD600; margin-bottom: 14px; }
.feature-item h3 { margin-bottom: 10px; font-size: 1.1rem; }
.feature-item p { color: #6D758F; font-size: 0.92rem; margin: 0; }

/* === BLOG / NEWS === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card { background: #ffffff; border: 1px solid #E5E5E5; transition: box-shadow 0.2s; }
.blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.blog-card__img { width: 100%; height: 180px; object-fit: cover; }
.blog-card__body { padding: 22px; }
.blog-card__date { font-size: 0.8rem; color: #6D758F; margin-bottom: 8px; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.blog-card p { font-size: 0.9rem; color: #6D758F; margin-bottom: 14px; }
.blog-card__link { font-size: 0.88rem; font-weight: 700; color: #121212; text-decoration: underline; text-underline-offset: 3px; }
.blog-card__link:hover { color: #FFD600; text-decoration: none; }

/* === INFO CARD === */
.info-card {
  background: #F5F5F5;
  padding: 36px;
  border-left: 5px solid #FFD600;
}
.info-card__status {
  display: inline-block;
  background: #FFD600;
  color: #121212;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  margin-bottom: 18px;
}
.info-card h3 { margin-bottom: 12px; }
.info-card p { color: #6D758F; margin-bottom: 0; }
.info-card__ctas { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

/* === CONTACT SECTION === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info__icon {
  width: 46px; height: 46px;
  background: #FFD600;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: #121212;
}
.contact-info__label { font-weight: 700; font-size: 0.9rem; color: #6D758F; margin-bottom: 4px; }
.contact-info__value { color: #121212; font-size: 0.95rem; }

/* === FORM === */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.88rem; font-weight: 600; color: #121212; margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #D0D0D0;
  font-size: 0.95rem;
  color: #121212;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.form-control:focus { border-color: #FFD600; }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* === MAP PLACEHOLDER === */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: #F1F3F7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6D758F;
  font-size: 0.9rem;
  border: 1px solid #E5E5E5;
  margin-top: 28px;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: #121212;
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 { color: #ffffff; margin-bottom: 12px; }
.page-hero__sub { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: #FFD600; }
.breadcrumb__sep { color: rgba(255,255,255,0.3); }

/* === CAREER SECTION === */
.career-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.career-card {
  background: #ffffff;
  border: 1px solid #E5E5E5;
  padding: 32px;
  transition: box-shadow 0.2s;
}
.career-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.career-card__type {
  display: inline-block;
  background: #F1F3F7;
  color: #6D758F;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.career-card__type--open { background: #FFD600; color: #121212; }
.career-card h3 { margin-bottom: 10px; }
.career-card p { color: #6D758F; font-size: 0.92rem; margin-bottom: 18px; }
.career-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #eee;
}
.career-card__location { font-size: 0.85rem; color: #6D758F; }
.career-card__location i { margin-right: 5px; }

/* === ABOUT PAGE === */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-card__img { width: 100%; height: 260px; object-fit: cover; margin-bottom: 16px; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card__role { font-size: 0.88rem; color: #6D758F; }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-split__img { width: 100%; height: 400px; object-fit: cover; }

/* === PRIVACY / LEGAL PAGES === */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { margin-top: 40px; margin-bottom: 16px; font-size: 1.3rem; }
.legal-content h3 { margin-top: 28px; margin-bottom: 12px; font-size: 1.1rem; }
.legal-content p { margin-bottom: 14px; color: #454545; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content ul li { list-style: disc; padding: 4px 0; color: #454545; }
.legal-content a { color: #121212; text-decoration: underline; }
.legal-content a:hover { color: #FFD600; }

/* === FOOTER === */
.footer { background: #121212; color: #ffffff; }
.footer__top { padding: 60px 0 40px; }
.footer__main { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer__logo { margin-bottom: 20px; }
.footer__address { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 14px; }
.footer__address strong { color: #ffffff; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.footer__social-link:hover { background: #FFD600; color: #121212; }

.footer__nav-title { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #ffffff; margin-bottom: 16px; }
.footer__nav-link {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer__nav-link:hover { color: #FFD600; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
}
.footer__bottom a { color: rgba(255,255,255,0.45); }
.footer__bottom a:hover { color: #FFD600; }
.footer__bottom-links { display: flex; gap: 20px; }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #121212;
  z-index: 9999;
  padding: 18px 0;
  border-top: 3px solid #FFD600;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text { color: rgba(255,255,255,0.8); font-size: 0.88rem; max-width: 640px; }
.cookie-banner__text a { color: #FFD600; text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__btns .btn-primary { padding: 10px 24px; font-size: 0.88rem; }
.cookie-banner__btns .btn-secondary { padding: 10px 24px; font-size: 0.88rem; border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); }
.cookie-banner__btns .btn-secondary:hover { border-color: #ffffff; color: #ffffff; background: transparent; }

/* === LOGO SVG === */
.logo-svg-text { font-family: 'Segoe UI', Arial, sans-serif; }

/* === UTILITY === */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-20 { margin-top: 20px; }
.mb-40 { margin-bottom: 40px; }
.visually-hidden { position: absolute; overflow: hidden; clip: rect(0 0 0 0); height: 1px; width: 1px; margin: -1px; padding: 0; border: 0; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .ancmnt-banner__wrap { gap: 36px; }
  .ancmnt-banner__image { flex: 0 0 42%; }
}
@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .burger-btn { display: flex; }
  .hero { min-height: 460px; }
  .hero__content { padding: 50px 0; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--popular { transform: none; }
  .features-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .career-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .ancmnt-banner__wrap,
  .ancmnt-banner__wrap.image-right { flex-direction: column; }
  .ancmnt-banner__image { flex: none; width: 100%; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer__bottom-links { flex-wrap: wrap; justify-content: center; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .pre-header { display: none; }
}
@media (max-width: 480px) {
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
}
