/* ImproAkademie Frankfurt — Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&family=Lora:ital,wght@0,400;0,700;1,400&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    background: #f5f0eb;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TOP BAR ===== */
.top-bar {
    background: #f5f0eb;
    padding: 8px 0;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.top-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    align-items: center;
}
.top-bar a { color: #666; }
.top-bar a:hover { color: #d4982a; }

/* ===== HEADER ===== */
.header {
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.header.scrolled { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }

.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo SVG */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo__svg { width: 44px; height: 44px; flex-shrink: 0; }
.logo__text { font-size: 18px; font-weight: 800; color: #1a1a1a; line-height: 1.1; }
.logo__text span { color: #d4982a; display: block; font-size: 11px; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; }

/* Nav */
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__item a { font-size: 14px; font-weight: 600; color: #333; padding: 8px 14px; border-radius: 6px; transition: all 0.2s; }
.nav__item a:hover,
.nav__item a.active { color: #d4982a; }

.btn-nav {
    background: #d4982a;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 25px !important;
    margin-left: 8px;
    transition: background 0.2s, transform 0.2s !important;
}
.btn-nav:hover { background: #c08a22 !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(212,152,42,0.35); }

/* Burger */
.burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: #1a1a1a; margin: 5px 0; border-radius: 2px; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 999;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    flex-direction: column;
    gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { display: block; font-size: 15px; font-weight: 600; color: #333; padding: 12px 16px; border-radius: 8px; }
.mobile-nav a:hover { background: #f5f0eb; color: #d4982a; }
.mobile-nav .btn-mobile-cta { background: #d4982a; color: #fff; text-align: center; border-radius: 25px; margin-top: 8px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 25px;
    font-size: 14px; font-weight: 700; cursor: pointer;
    border: none; font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease; text-align: center;
}
.btn--gold { background: #d4982a; color: #fff; }
.btn--gold:hover { background: #c08a22; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(212,152,42,0.4); }
.btn--outline { background: transparent; border: 2px solid #fff; color: #fff; }
.btn--outline:hover { background: #fff; color: #1a1a1a; }
.btn--outline-dark { background: transparent; border: 2px solid #1a1a1a; color: #1a1a1a; }
.btn--outline-dark:hover { background: #1a1a1a; color: #fff; }
.btn--sm { padding: 9px 20px; font-size: 13px; }

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 70px;
}
.hero__bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    z-index: 0;
}
.hero__bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.72) 0%, rgba(26,26,26,0.3) 100%);
}
.hero__content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 80px 20px;
    max-width: 680px; padding-left: 60px;
}
.hero__tag {
    display: inline-block;
    background: #d4982a; color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; padding: 6px 16px; border-radius: 20px;
    margin-bottom: 24px;
}
.hero__title {
    font-size: 52px; font-weight: 800; color: #fff;
    line-height: 1.1; margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
}
.hero__title em { font-style: italic; color: #d4982a; font-family: 'Lora', serif; }
.hero__desc { font-size: 17px; color: rgba(255,255,255,0.88); line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats {
    display: flex; gap: 40px; margin-top: 60px;
    padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.2);
    flex-wrap: wrap;
}
.hero__stat-num { font-size: 36px; font-weight: 800; color: #d4982a; line-height: 1; }
.hero__stat-label { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ===== SECTION BASE ===== */
.section { padding: 80px 0; }
.section--beige { background: #f5f0eb; }
.section--white { background: #ffffff; }
.section--gold { background: #d4982a; }
.section--dark { background: #1a1a1a; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section__label {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: #d4982a; margin-bottom: 12px;
}
.section__title {
    font-size: 36px; font-weight: 800; color: #1a1a1a;
    line-height: 1.2; margin-bottom: 16px;
}
.section__title--white { color: #fff; }
.section__desc { font-size: 16px; color: #555; line-height: 1.7; max-width: 620px; }
.section__desc--white { color: rgba(255,255,255,0.88); }
.section__header { margin-bottom: 50px; }
.section__header--center { text-align: center; }
.section__header--center .section__desc { margin: 0 auto; }

/* ===== REVIEWS STRIP ===== */
.reviews-strip { padding: 40px 0; background: #fff; border-bottom: 1px solid #f0ebe4; }
.reviews-strip__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.reviews-strip__grid { display: flex; gap: 24px; overflow-x: auto; scrollbar-width: none; }
.reviews-strip__grid::-webkit-scrollbar { display: none; }
.review-card {
    flex: 0 0 calc(33.333% - 16px);
    background: #f9f6f1; border-radius: 12px;
    padding: 28px 24px; border: 1px solid #ede8e0;
}
.review-card__stars { color: #d4982a; font-size: 14px; margin-bottom: 12px; letter-spacing: 1px; }
.review-card__text { font-size: 14px; line-height: 1.7; color: #444; font-style: italic; margin-bottom: 16px; }
.review-card__author { display: flex; align-items: center; gap: 10px; }
.review-card__avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: #d4982a; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.review-card__name { font-size: 13px; font-weight: 700; color: #1a1a1a; }
.review-card__role { font-size: 12px; color: #888; }

/* ===== COURSES CARDS ===== */
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.course-card {
    background: #fff; border-radius: 14px; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #ede8e0;
}
.course-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.course-card__img { width: 100%; height: 220px; object-fit: cover; }
.course-card__body { padding: 24px; }
.course-card__tag {
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: #d4982a; margin-bottom: 10px;
}
.course-card__title { font-size: 20px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; line-height: 1.3; }
.course-card__desc { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 20px; }
.course-card__footer { display: flex; justify-content: space-between; align-items: center; }
.course-card__price { font-size: 22px; font-weight: 800; color: #1a1a1a; }
.course-card__price span { font-size: 13px; color: #888; font-weight: 400; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: #d4982a;
    border-radius: 20px;
    margin: 0 20px 60px;
    padding: 60px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-banner::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.cta-banner::after {
    content: '';
    position: absolute; bottom: -40px; left: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.cta-banner__content { position: relative; z-index: 2; }
.cta-banner__subtitle { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 8px; }
.cta-banner__title { font-size: 38px; font-weight: 800; color: #fff; margin-bottom: 24px; line-height: 1.2; }
.cta-banner__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== HOW IT WORKS (Steps) ===== */
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }
.step-item { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
    flex-shrink: 0; width: 52px; height: 52px;
    background: #d4982a; color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800;
}
.step-title { font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: #666; line-height: 1.65; }

/* About split layout */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-split__img-wrap { position: relative; }
.about-split__img { width: 100%; border-radius: 16px; object-fit: cover; height: 460px; }
.about-split__badge {
    position: absolute; bottom: -20px; right: -20px;
    background: #d4982a; border-radius: 12px;
    padding: 20px 24px; color: #fff; text-align: center;
    box-shadow: 0 8px 24px rgba(212,152,42,0.4);
}
.about-split__badge-num { font-size: 40px; font-weight: 800; line-height: 1; }
.about-split__badge-text { font-size: 12px; opacity: 0.9; margin-top: 4px; }
.about-split__content ul { list-style: none; }
.about-split__content li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; font-size: 15px; color: #444; }
.about-split__content li i { color: #d4982a; margin-top: 3px; flex-shrink: 0; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid #ede8e0; border-radius: 10px;
    margin-bottom: 12px; overflow: hidden; background: #fff;
}
.faq-q {
    width: 100%; padding: 20px 24px; text-align: left; background: none; border: none;
    font-size: 15px; font-weight: 600; color: #1a1a1a; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.2s;
}
.faq-q:hover { color: #d4982a; }
.faq-q i { font-size: 12px; color: #d4982a; transition: transform 0.3s; flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a__inner { padding: 0 24px 20px; font-size: 14px; color: #555; line-height: 1.7; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-item.open .faq-a { max-height: 400px; }

/* ===== CONTACT FORM ===== */
.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
.contact-info__title { font-size: 28px; font-weight: 800; color: #1a1a1a; margin-bottom: 16px; }
.contact-info__desc { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-detail__icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: #f5f0eb; display: flex; align-items: center; justify-content: center;
    color: #d4982a; font-size: 16px; flex-shrink: 0;
}
.contact-detail__label { font-size: 12px; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-detail__value { font-size: 15px; font-weight: 600; color: #1a1a1a; }
.contact-detail__value a { color: #d4982a; }

.form-box { background: #fff; border-radius: 16px; padding: 36px; border: 1px solid #ede8e0; }
.form-box__title { font-size: 22px; font-weight: 800; color: #1a1a1a; margin-bottom: 24px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; color: #444; margin-bottom: 6px; }
.form-row label span { color: #d4982a; }
.form-row input,
.form-row textarea,
.form-row select {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid #ddd; border-radius: 8px;
    font-size: 14px; font-family: 'Montserrat', sans-serif; color: #333;
    background: #fafafa; transition: border-color 0.2s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus { border-color: #d4982a; outline: none; background: #fff; }
.form-row textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 14px; background: #d4982a; color: #fff; border: none; border-radius: 25px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: 'Montserrat', sans-serif; transition: all 0.3s; }
.form-submit:hover { background: #c08a22; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(212,152,42,0.4); }

/* ===== FOOTER ===== */
.footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.8);
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: #d4982a;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
.footer__brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__brand-logo svg { width: 36px; height: 36px; }
.footer__brand-name { font-size: 16px; font-weight: 800; color: #fff; }
.footer__brand-name span { color: #d4982a; display: block; font-size: 10px; font-weight: 400; letter-spacing: 1px; }
.footer__desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; transition: all 0.2s;
}
.footer__social a:hover { background: #d4982a; color: #fff; }

.footer__col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer__links a:hover { color: #d4982a; }

.footer__contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.footer__contact-item i { color: #d4982a; margin-top: 2px; font-size: 13px; flex-shrink: 0; }
.footer__contact-item span,
.footer__contact-item a { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer__contact-item a:hover { color: #d4982a; }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 12px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer__legal a:hover { color: #d4982a; }
.footer__bottom-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 20px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
    width: calc(100% - 48px); max-width: 900px;
    background: #1a1a1a; color: #fff;
    border-radius: 14px; padding: 24px 28px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    z-index: 9999;
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
    transition: opacity 0.4s, transform 0.4s;
}
.cookie-banner.hidden { opacity: 0; transform: translateX(-50%) translateY(20px); pointer-events: none; }
.cookie-banner__text { flex: 1; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.8); }
.cookie-banner__text a { color: #d4982a; text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept { background: #d4982a; color: #fff; border: none; padding: 10px 22px; border-radius: 25px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: 'Montserrat', sans-serif; transition: background 0.2s; }
.cookie-btn-accept:hover { background: #c08a22; }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1.5px solid rgba(255,255,255,0.3); padding: 10px 22px; border-radius: 25px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: 'Montserrat', sans-serif; transition: all 0.2s; }
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 140px 20px 70px;
    text-align: center;
}
.page-hero__title { font-size: 42px; font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.page-hero__desc { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }

/* ===== PROSE (legal pages) ===== */
.prose { max-width: 860px; margin: 0 auto; }
.prose h2 { font-size: 24px; font-weight: 800; color: #1a1a1a; margin: 36px 0 14px; }
.prose h3 { font-size: 18px; font-weight: 700; color: #1a1a1a; margin: 28px 0 10px; }
.prose p { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 16px; }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose ul li { font-size: 15px; color: #444; line-height: 1.8; list-style: disc; margin-bottom: 8px; }
.prose a { color: #d4982a; text-decoration: underline; }
.prose strong { color: #1a1a1a; }

/* ===== 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: 280px; object-fit: cover; border-radius: 14px; margin-bottom: 16px; }
.team-card__name { font-size: 17px; font-weight: 700; color: #1a1a1a; }
.team-card__role { font-size: 13px; color: #d4982a; margin-top: 4px; }
.team-card__bio { font-size: 13px; color: #666; margin-top: 10px; line-height: 1.6; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-item {
    background: #fff; border-radius: 12px; padding: 28px 24px;
    display: flex; gap: 16px; align-items: flex-start;
    border: 1px solid #ede8e0;
    transition: box-shadow 0.3s;
}
.value-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.07); }
.value-icon {
    width: 48px; height: 48px; background: #f5f0eb; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #d4982a; font-size: 20px; flex-shrink: 0;
}
.value-title { font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.value-desc { font-size: 13px; color: #666; line-height: 1.6; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-gold { color: #d4982a; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

/* breadcrumb */
.breadcrumb { font-size: 13px; color: #888; margin-bottom: 20px; }
.breadcrumb a { color: #d4982a; }
.breadcrumb span { margin: 0 8px; }

/* success message */
.form-success { display: none; background: #e8f5e9; border: 1px solid #a5d6a7; border-radius: 10px; padding: 20px 24px; font-size: 15px; color: #2e7d32; margin-top: 20px; }
.form-success.show { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .courses-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .about-split { gap: 36px; }
}

@media (max-width: 959px) {
    .nav { display: none; }
    .burger { display: flex; flex-direction: column; justify-content: center; }
    .contact-section { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .about-split { grid-template-columns: 1fr; }
    .about-split__badge { right: 20px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-strip__grid { gap: 16px; }
    .review-card { flex: 0 0 280px; }
}

@media (max-width: 767px) {
    .hero__title { font-size: 34px; }
    .hero__content { padding-left: 20px; }
    .hero__stats { gap: 24px; }
    .section__title { font-size: 28px; }
    .courses-grid { grid-template-columns: 1fr; }
    .cta-banner { margin: 0 12px 40px; padding: 40px 24px; }
    .cta-banner__title { font-size: 26px; }
    .footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
    .team-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .cookie-banner { flex-direction: column; align-items: flex-start; }
    .page-hero__title { font-size: 30px; }
}
