/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f5f0eb;
    color: #333333;
    font-family: 'FilsonProRegular', 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* === TOP HEADER BAR === */
.top-header-bar {
    background: #f5f0eb;
    font-size: 12px;
    color: #666;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.top-header-bar__wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.top-header-bar a {
    color: #333;
    font-size: 12px;
}

.top-header-bar a:hover {
    color: #d4982a;
}

/* === HEADER === */
.header {
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255,255,255,0.95);
}

.region-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
}

.branding__logo-svg {
    width: 48px;
    height: 48px;
}

.branding__name {
    font-family: 'FilsonPro-Heavy', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-left: 10px;
}

.branding__link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* navigation */
.header-navigation__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.header-navigation__item {
    margin: 0 12px;
    position: relative;
}

.header-navigation__item a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: 'FilsonProRegular', sans-serif;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.header-navigation__item a:hover {
    color: #d4982a;
}

.header-navigation__item.active a {
    color: #d4982a;
}

/* burger menu */
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu-icon {
    width: 48px;
    height: 48px;
}

.burger-menu-icon__line {
    fill: none;
    stroke: #333;
    stroke-width: 5;
    stroke-linecap: round;
    -webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 99;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav__item {
    border-bottom: 1px solid #f0ebe4;
}

.mobile-nav__item a {
    display: block;
    padding: 14px 0;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.mobile-nav__item a:hover {
    color: #d4982a;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: 'FilsonProRegular', sans-serif;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn--bg-yellow {
    background: #d4982a;
    color: #fff;
}

.btn--bg-yellow:hover {
    background: #c08a22;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212,152,42,0.35);
}

.btn--bg-transparent {
    background: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
}

.btn--bg-transparent:hover {
    background: #1a1a1a;
    color: #fff;
}

.btn--smaller {
    padding: 8px 16px;
    font-size: 13px;
}

.link--yellow {
    color: #d4982a;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 2px solid #d4982a;
    padding-bottom: 2px;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.link--yellow:hover {
    color: #c08a22;
    border-color: #c08a22;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url('../gallery/hero-bg.webp');
}

.hero-section__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.72) 0%, rgba(26,26,26,0.35) 60%, rgba(212,152,42,0.2) 100%);
}

.hero-section__content {
    position: relative;
    z-index: 2;
    padding: 160px 40px 80px;
    max-width: 680px;
}

.hero-section__label {
    display: inline-block;
    background: #d4982a;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.hero-section__title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 24px;
    font-family: 'FilsonPro-Heavy', sans-serif;
}

.hero-section__desc {
    font-size: 18px;
    color: rgba(255,255,255,0.88);
    line-height: 1.6;
    margin: 0 0 36px;
    max-width: 520px;
}

.hero-section__ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-section__stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.hero-stat__num {
    font-size: 32px;
    font-weight: 800;
    color: #d4982a;
    font-family: 'FilsonPro-Heavy', sans-serif;
    line-height: 1;
}

.hero-stat__label {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
}

/* === REVIEWS SLIDER === */
.reviews-section {
    background: #fff;
    padding: 50px 0;
}

.reviews-section__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-section__header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-section__header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'FilsonPro-Heavy', sans-serif;
}

.reviews-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.review-card {
    flex: 1 1 280px;
    background: #f5f0eb;
    border-radius: 12px;
    padding: 28px 24px;
}

.review-card__stars {
    color: #d4982a;
    font-size: 16px;
    margin-bottom: 14px;
}

.review-card__text {
    font-size: 15px;
    font-style: italic;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #d4982a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.review-card__name {
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
}

.review-card__role {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

/* === COURSES (BENEFITS) SECTION === */
.courses-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.courses-section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
}

.courses-section__title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    font-family: 'FilsonPro-Heavy', sans-serif;
}

.courses-section__desc {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    max-width: 480px;
}

.courses-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.course-card {
    flex: 1 1 280px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.course-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.course-card__body {
    padding: 24px;
}

.course-card__tag {
    font-size: 12px;
    color: #d4982a;
    font-weight: 600;
    margin-bottom: 8px;
}

.course-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.course-card__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
}

.course-card__price {
    font-size: 22px;
    font-weight: 800;
    color: #d4982a;
    font-family: 'FilsonPro-Heavy', sans-serif;
    margin-bottom: 16px;
}

/* === CTA BLOCK (BCP) === */
.cta-block {
    background: #d4982a;
    padding: 60px 40px;
    text-align: center;
    border-radius: 16px;
    margin: 0 20px;
    position: relative;
    overflow: hidden;
}

.cta-block__content {
    position: relative;
    z-index: 2;
}

.cta-block__title-thin {
    font-size: 26px;
    font-weight: 300;
    color: #fff;
    font-family: 'FilsonPro-Light', sans-serif;
    margin: 0;
}

.cta-block__title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    font-family: 'FilsonPro-Heavy', sans-serif;
}

.cta-block__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 28px;
}

.cta-block__deco {
    position: absolute;
    font-size: 120px;
    opacity: 0.08;
    color: #fff;
    line-height: 1;
}

.cta-block__deco--tl {
    top: -10px;
    left: 20px;
}

.cta-block__deco--tr {
    top: -10px;
    right: 20px;
}

/* === HOW IT WORKS === */
.how-it-works {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.how-it-works__title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 12px;
    font-family: 'FilsonPro-Heavy', sans-serif;
}

.how-it-works__subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

.steps-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1 1 200px;
    text-align: center;
    padding: 30px 24px;
    background: #fff;
    border-radius: 12px;
}

.step-item__num {
    width: 52px;
    height: 52px;
    background: #d4982a;
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-family: 'FilsonPro-Heavy', sans-serif;
}

.step-item__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.step-item__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* === INSPIRATION / ARTICLES === */
.articles-section {
    background: #d4982a;
    padding: 80px 0;
}

.articles-section__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.articles-section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
}

.articles-section__title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    font-family: 'FilsonPro-Heavy', sans-serif;
}

.articles-section__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    max-width: 400px;
    line-height: 1.6;
}

.articles-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.article-card {
    flex: 1 1 240px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    color: #333;
}

.article-card__img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.article-card__body {
    padding: 20px;
}

.article-card__tag {
    font-size: 12px;
    color: #d4982a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.article-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
}

.article-card__desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* === TESTIMONIALS (success stories) === */
.testimonials-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.testimonials-section__title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'FilsonPro-Heavy', sans-serif;
}

.testimonials-section__sub {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.testimonial-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.testimonial-card__img {
    width: 360px;
    height: 260px;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-card__content {
    padding: 32px 32px 32px 0;
}

.testimonial-card__name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.testimonial-card__role {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.testimonial-card__quote {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-card__result {
    margin-top: 16px;
    padding: 12px 16px;
    background: #f5f0eb;
    border-left: 4px solid #d4982a;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

/* === FORM SECTION === */
.form-section {
    padding: 80px 0;
    background: #fff;
}

.form-section__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-section__info {
    flex: 1;
}

.form-section__title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-family: 'FilsonPro-Heavy', sans-serif;
}

.form-section__desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.form-section__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #333;
}

.form-section__contact-item i {
    color: #d4982a;
    width: 20px;
    text-align: center;
}

.form-section__form {
    flex: 1;
}

.form__row {
    margin-bottom: 16px;
}

.form__label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
    font-weight: 500;
}

.form__input,
.form__textarea,
.form__select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'FilsonProRegular', sans-serif;
    -webkit-transition: border-color 0.2s;
    transition: border-color 0.2s;
    background: #fff;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    border-color: #d4982a;
    outline: none;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__required-note {
    font-size: 12px;
    color: #999;
    margin-bottom: 16px;
}

/* === FOOTER === */
.footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

.footer__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__top {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer__brand {
    flex: 0 0 240px;
}

.footer__brand-name {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    font-family: 'FilsonPro-Heavy', sans-serif;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__brand-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 14px;
}

.footer__social a {
    color: rgba(255,255,255,0.6);
    font-size: 20px;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.footer__social a:hover {
    color: #d4982a;
}

.footer__col {
    flex: 1 1 160px;
}

.footer__col-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__menu li {
    margin-bottom: 10px;
}

.footer__menu a {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.footer__menu a:hover {
    color: #d4982a;
}

.footer__contact-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}

.footer__contact-line i {
    color: #d4982a;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    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__legals {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__legals a {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.footer__legals a:hover {
    color: rgba(255,255,255,0.8);
}

/* === GDPR COOKIE ALERT === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

.cookie-banner.show {
    display: block;
}

.cookie-banner__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner__text {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    flex: 1;
}

.cookie-banner__text a {
    color: #d4982a;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 22px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.cookie-btn--accept {
    background: #d4982a;
    color: #fff;
}

.cookie-btn--accept:hover {
    background: #c08a22;
}

.cookie-btn--decline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.7);
}

.cookie-btn--decline:hover {
    border-color: #fff;
    color: #fff;
}

/* === PAGE INNER (служебные страницы) === */
.page-hero {
    background: #1a1a1a;
    padding: 140px 20px 60px;
    text-align: center;
}

.page-hero__title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    font-family: 'FilsonPro-Heavy', sans-serif;
    margin-bottom: 12px;
}

.page-hero__sub {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
}

.page-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 40px 0 14px;
    font-family: 'FilsonPro-Heavy', sans-serif;
}

.page-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 28px 0 10px;
}

.page-content p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}

.page-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.page-content ul li {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 8px;
}

.page-content a {
    color: #d4982a;
    text-decoration: underline;
}

/* === CONTACT PAGE === */
.contact-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 0 0 340px;
}

.contact-info__title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'FilsonPro-Heavy', sans-serif;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #333;
}

.contact-info__item i {
    color: #d4982a;
    font-size: 18px;
    margin-top: 2px;
    width: 22px;
    text-align: center;
}

.contact-form-wrap {
    flex: 1;
}

/* === ABOUT (COMPANY DETAILS) === */
.about-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.about-intro {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.about-intro__text {
    flex: 1;
}

.about-intro__text h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'FilsonPro-Heavy', sans-serif;
}

.about-intro__text p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-intro__img {
    flex: 0 0 380px;
    border-radius: 16px;
    overflow: hidden;
}

.about-intro__img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.values-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.value-card {
    flex: 1 1 200px;
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
}

.value-card__icon {
    font-size: 36px;
    color: #d4982a;
    margin-bottom: 14px;
}

.value-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.value-card__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.team-section {
    margin-top: 60px;
}

.team-section__title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: 'FilsonPro-Heavy', sans-serif;
}

/* === SECTION LABELS === */
.section-label {
    font-size: 12px;
    font-weight: 600;
    color: #d4982a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 10px;
}

/* === MEDIA QUERIES === */
@media (max-width: 959px) {
    .header-navigation {
        display: none;
    }
    .burger-menu {
        display: block;
    }
    .courses-section__header {
        flex-direction: column;
    }
    .articles-section__header {
        flex-direction: column;
    }
    .testimonial-card {
        flex-direction: column;
    }
    .testimonial-card__img {
        width: 100%;
        height: 250px;
    }
    .testimonial-card__content {
        padding: 24px;
    }
    .form-section__wrapper {
        flex-direction: column;
    }
    .about-intro {
        flex-direction: column;
    }
    .about-intro__img {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-section__title {
        font-size: 32px;
    }
    .hero-section__content {
        padding: 120px 20px 60px;
    }
    .courses-section__title {
        font-size: 28px;
    }
    .cta-block {
        margin: 0 10px;
        padding: 40px 20px;
    }
    .hero-section__stats {
        gap: 24px;
    }
    .footer__top {
        flex-direction: column;
        gap: 30px;
    }
    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-info {
        flex: 0 0 auto;
        width: 100%;
    }
}
