/* ============================================
   БАЗОВЫЕ СТИЛИ И ПЕРЕМЕННЫЕ
   ============================================ */
:root {
    --primary: #6b7455;
    --primary-dark: #5a6147;
    --primary-light: #8a9472;
    --bg-light: #f5f5ed;
    --bg-secondary: #e8e8d8;
    --bg-white: #ffffff;
    --bg-cream: #fafaf5;
    --text-dark: #2d3319;
    --text-primary: #4a5239;
    --text-secondary: #6b7455;
    --accent-soft: rgba(107, 116, 85, 0.1);
    --accent-medium: rgba(107, 116, 85, 0.2);
    --shadow-sm: 0 2px 8px rgba(107, 116, 85, 0.1);
    --shadow-md: 0 4px 16px rgba(107, 116, 85, 0.15);
    --shadow-lg: 0 8px 32px rgba(107, 116, 85, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container--narrow {
    max-width: 800px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 16px rgba(107, 116, 85, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav__logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.nav__links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav__links a {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__links a:hover {
    color: var(--primary);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('photos/full_hero.jpg') center 10% / cover no-repeat;
    color: white;
    overflow: hidden;
    padding-top: 80px;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 650px;
    padding: 60px 0;
    margin-right: 500px;
}

.hero__label {
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 16px;
    padding: 8px 20px;
    background: var(--bg-light);
    border-radius: 20px;
}

.hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -1px;
}

.hero__tagline {
    font-size: 1.5rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero__features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid var(--accent-soft);
}

.hero__feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--bg-cream);
}

.hero__feature-icon {
    font-size: 1.25rem;
}

.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   КНОПКИ
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: inherit;
    background: none;
    line-height: 1;
    white-space: nowrap;
}

.btn--primary {
    background: var(--primary);
    color: white !important;
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(107, 116, 85, 0.3);
}

.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 6px 24px rgba(107, 116, 85, 0.4);
    transform: translateY(-2px);
    color: white !important;
}

.btn--outline {
    background: transparent !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
}

.btn--outline:hover {
    background: var(--primary) !important;
    color: white !important;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    background: var(--primary);
    color: white !important;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn--full:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    color: white !important;
}

.card a.btn {
    margin-top: 16px;
    min-width: 140px;
}

.card a.btn--outline {
    background: transparent !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
}

.card a.btn--outline:hover {
    background: var(--primary) !important;
    color: white !important;
}

.card a.btn--primary, .card--featured a.btn {
    background: var(--primary) !important;
    color: white !important;
    border: 2px solid var(--primary);
}

.card a.btn--primary:hover, .card--featured a.btn:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark);
    color: white !important;
}

.coaching-cta a.btn, .coaching-cta a.btn--primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px 32px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    background: white !important;
    color: var(--primary) !important;
    border: 2px solid white !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
}

.coaching-cta a.btn:hover, .coaching-cta a.btn--primary:hover {
    background: var(--bg-cream) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3) !important;
    color: var(--primary) !important;
}

/* ============================================
   СЕКЦИИ
   ============================================ */
.section {
    padding: 50px 0;
    position: relative;
}

.section--alt {
    background: var(--bg-white);
}

.section__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section__label.center {
    display: block;
    text-align: center;
}

.section__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section__title.center {
    text-align: center;
}

.section__intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* ============================================
   О СЕБЕ
   ============================================ */
#about {
    background-color: white;
}

.section__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section__image img {
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 150px;
    box-shadow: var(--shadow-lg);
}

.section__text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section__text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-primary);
}

/* ============================================
   TELEGRAM ЧАТ
   ============================================ */
.telegram-chat {
    max-width: 700px;
    margin: 48px auto 0;
    background: #f5f5ed;
    border-radius: 20px;
    padding: 32px 20px;
    box-shadow: var(--shadow-lg);
}

.message {
    display: flex;
    margin-bottom: 20px;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message--contact {
    justify-content: flex-start;
    gap: 12px;
}

.message--user {
    justify-content: flex-end;
}

.message__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--primary-light);
}

.message__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.message__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 70%;
}

.message__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-left: 12px;
}

.message__bubble {
    background: white;
    padding: 12px 16px;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.message--contact .message__bubble {
    border-bottom-left-radius: 4px;
}

.message--user .message__bubble {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 4px;
    max-width: 70%;
}

.message__bubble p {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0 0 8px 0;
    color: inherit;
}

.message__bubble p:last-of-type {
    margin-bottom: 0;
}

.message__time {
    display: block;
    font-size: 0.75rem;
    color: #8a9472;
    text-align: right;
    margin-top: 4px;
}

.message--user .message__time {
    color: rgba(255, 255, 255, 0.7);
}

.message__button {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.message__button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 116, 85, 0.3);
}

.message__avatar:not(:has(img)) {
    background: transparent;
}

/* ============================================
   КРУГЛОЕ ВИДЕО
   ============================================ */
.message__video-circle {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(107, 116, 85, 0.2);
    margin: 8px 0;
    cursor: pointer;
    background: transparent;
}

.video-circle__player {
    width: 105%;
    height: 105%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    left: -2%;
    top: -2%;
}

.video-circle__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(107, 116, 85, 0.9);
    border: none;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.video-circle__play:hover {
    background: var(--primary-dark);
    transform: translate(-50%, -50%) scale(1.1);
}

.message__video-circle.playing .video-circle__play {
    opacity: 0;
    pointer-events: none;
}

.message__video-circle:hover.playing .video-circle__play {
    opacity: 0.7;
    pointer-events: all;
}

.message__video-circle:hover .video-circle__sound, .message__video-circle.playing .video-circle__sound {
    opacity: 1;
}

.video-circle__sound:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.video-circle__sound.unmuted {
    background: var(--primary);
}

/* ============================================
   ОБРАЗОВАНИЕ
   ============================================ */
#education .section__content-wrapper {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 16px;
}

.education-main {
    text-align: center;
    padding: 14px 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    margin: 30px 0 20px;
    box-shadow: var(--shadow-md);
}

.education-main__icon {
    font-size: 3.2rem;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.education-main__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
    line-height: 1.25;
}

.education-main__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.education-highlights {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
}

.highlight {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 20px;
    background: var(--bg-white);
    border-radius: 10px;
    border-left: 3px solid var(--primary-light);
    transition: all 0.3s ease;
}

.highlight:hover {
    transform: translateX(3px);
    border-left-color: var(--primary);
    background: var(--bg-cream);
}

.highlight__bullet {
    font-size: 1.8rem;
    color: var(--primary);
    line-height: 1;
    flex-shrink: 0;
}

.highlight p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
}

.highlight strong {
    color: var(--primary);
    font-weight: 600;
}

.education-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 750px;
    margin: 0 auto;
}

.education-stat {
    text-align: center;
    padding: 24px 20px;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--accent-soft);
    transition: all 0.3s ease;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.education-stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.education-stat__number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.education-stat__label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   КАРТОЧКИ
   ============================================ */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 1px;
}

.card {
    background: var(--bg-white);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.card--featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
}

.card__badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card__icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    flex-shrink: 0;
    line-height: 1.2;
}

.card__desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.4;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.card__price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    flex-shrink: 0;
    line-height: 1.2;
}

.card__duration {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    flex-shrink: 0;
    line-height: 1.2;
}

.note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ============================================
   СФЕРЫ КОУЧИНГА
   ============================================ */
.coaching-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.coaching-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--accent-soft);
}

.coaching-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.coaching-card__content {
    margin-top: 24px;
    padding: 0 32px 32px;
}

.coaching-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    text-align: center;
}

.coaching-card__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--accent-soft);
}

.coaching-card__cases {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.case {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.case:hover {
    background: var(--bg-cream);
    border-left-color: var(--primary);
    transform: translateX(4px);
}

.case__icon {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

.case__text {
    flex: 1;
}

.case__text strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.4;
}

.case__text p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
}

.coaching-cta {
    margin-top: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.coaching-cta__content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 16px;
}

.coaching-cta__content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 32px;
}

.coaching-cta .btn--primary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.coaching-cta .btn--primary:hover {
    background: var(--bg-cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

/* ============================================
   ОТЗЫВЫ
   ============================================ */
.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.review {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--accent-soft);
}

.review::before {
    position: absolute;
    top: 16px;
    left: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--accent-medium);
    line-height: 1;
}

.review__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.review__author {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   ФОРМА
   ============================================ */
.form {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__group {
    margin-bottom: 24px;
}

.form__group label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.form__group input, .form__group textarea, .form__group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--accent-soft);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-cream);
    color: var(--text-dark);
}

.form__group input:focus, .form__group textarea:focus, .form__group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-white);
}

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

.form__check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.form__check input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form__check label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.form__success {
    display: none;
    padding: 20px;
    background: var(--accent-soft);
    color: var(--primary-dark);
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
}

.form__success.show {
    display: block;
}

/* ============================================
   КОНТАКТЫ
   ============================================ */
#contact {
    background: var(--bg-light);
}

.contacts {
    background: var(--bg-white);
}

.contacts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.contact-card {
    background: var(--bg-light);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    background: var(--bg-white);
}

.contact-card__icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-card__label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-card__value {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contacts__note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 40px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    color: var(--bg-secondary);
    font-size: 0.9375rem;
    margin: 0;
}

.footer__up {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__up:hover {
    color: var(--primary-light);
    transform: translateY(-2px);
}

/* ============================================
   УТИЛИТЫ
   ============================================ */
.center {
    text-align: center;
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   АДАПТИВНОСТЬ — 1024px
   ============================================ */

@media (max-width: 1024px) {
    .hero__title {
        font-size: 3rem;
    }
    .hero__image {
        width: 50%;
    }
    .section__split {
        gap: 60px;
    }
    .coaching-areas {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ============================================
   АДАПТИВНОСТЬ — 768px
   ============================================ */

@media (max-width: 768px) {

    /* Бургер */
    .nav__burger {
        display: flex;
    }
    .nav__links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 32px 20px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    .nav__links.active {
        left: 0;
    }
    .nav__links a {
        padding: 16px 0;
        font-size: 1.125rem;
        border-bottom: 1px solid var(--accent-soft);
        display: block;
    }

    /* Hero — вертикальное фото, текст по центру внизу */
    .hero {
        min-height: 100svh;
        padding-top: 60px;
        background: linear-gradient( to bottom, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.60) 72%, rgba(0, 0, 0, 0.85) 100% ), url('photos/hero_mobile.jpg') center 50px / cover no-repeat;
        display: flex;
        flex-wrap: wrap;
        align-content: flex-end;
        align-items: flex-end;
        justify-content: center;
        overflow: hidden;
    }
    .hero > .container {
        padding: 0 24px 15svh;
        width: 100%;
        max-width: 100%;
        margin: 0;
        display: flex;
        justify-content: center;
    }
    .hero__content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        margin-right: 0;
        padding: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    /* Все дочерние — по центру */
    .hero__content > * {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* Лейбл: display:table центрирует inline-block через margin:auto */
    .hero__label {
        display: table;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(4px);
        color: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 8px;
        font-size: 0.8125rem;
        padding: 6px 14px;
    }
    .hero__title {
        font-size: 2rem;
        color: white;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        margin-bottom: 6px;
        line-height: 1.15;
    }
    .hero__tagline {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.88);
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
        margin-bottom: 16px;
        line-height: 1.5;
    }
    .hero__features {
        justify-content: center;
        margin-bottom: 16px;
        gap: 8px;
    }
    .hero__feature {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(8px);
        color: white;
        border-color: rgba(255, 255, 255, 0.2);
        padding: 8px 14px;
        font-size: 0.875rem;
    }
    .hero__cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    .hero__cta .btn {
        width: 100%;
        max-width: 300px;
        padding: 13px 24px;
    }
    .hero__cta .btn--primary {
        background: var(--primary) !important;
        border-color: var(--primary) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        color: white !important;
    }
    .hero__cta .btn--outline {
        color: white !important;
        border-color: rgba(255, 255, 255, 0.6) !important;
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(8px);
    }

    /* Секции */
    .section {
        padding: 60px 0;
    }
    .section__title {
        font-size: 2rem;
    }
    .section__split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Telegram */
    .telegram-chat {
        padding: 24px 16px;
    }
    .message__content {
        max-width: 80%;
    }
    .message--user .message__bubble {
        max-width: 80%;
    }
    .message__video-circle {
        width: 240px;
        height: 240px;
    }
    .video-circle__play {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .video-circle__sound {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
        bottom: 12px;
        right: 12px;
    }

    /* Образование */
    .education-main {
        padding: 24px 16px;
        margin: 30px 0 20px;
    }
    .education-main__title {
        font-size: 1.375rem;
    }
    .education-main__subtitle {
        font-size: 1rem;
    }
    .education-highlights {
        gap: 12px;
        margin-bottom: 30px;
    }
    .highlight {
        padding: 14px 16px;
        gap: 10px;
    }
    .highlight__bullet {
        font-size: 1.6rem;
    }
    .highlight p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    .education-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
    }
    .education-stat {
        padding: 20px 16px;
        min-height: 120px;
    }
    .education-stat__number {
        font-size: 2rem;
    }
    .education-stat__label {
        font-size: 0.8125rem;
    }

    /* Карточки */
    .cards {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 16px;
    }
    .card {
        padding: 16px 20px;
        min-height: 380px;
    }
    .card__icon {
        font-size: 2.2rem;
    }
    .card h3 {
        font-size: 1.2rem;
    }
    .card__price {
        font-size: 1.8rem;
    }

    /* Коучинг */
    .coaching-card__content {
        padding: 0 24px 24px;
    }
    .coaching-card h3 {
        font-size: 1.5rem;
    }
    .coaching-card__desc {
        font-size: 0.9375rem;
    }
    .case {
        padding: 12px;
    }
    .case__text strong {
        font-size: 0.9375rem;
    }
    .case__text p {
        font-size: 0.875rem;
    }
    .coaching-cta {
        padding: 40px 24px;
        margin-top: 60px;
    }
    .coaching-cta__content h3 {
        font-size: 1.75rem;
    }
    .coaching-cta__content p {
        font-size: 1rem;
    }

    /* Прочее */
    .cards, .reviews, .contacts__grid {
        grid-template-columns: 1fr;
    }
    .form__row {
        grid-template-columns: 1fr;
    }
    .form {
        padding: 32px 20px;
    }
    .timeline::before {
        left: 60px;
    }
    .timeline__item {
        grid-template-columns: 100px 1fr;
        gap: 30px;
    }
}

/* ============================================
   АДАПТИВНОСТЬ — 480px
   ============================================ */

@media (max-width: 480px) {

    /* Hero */
    .hero__title {
        font-size: 1.75rem;
    }
    .hero__tagline {
        font-size: 0.9375rem;
        margin-bottom: 14px;
    }
    .hero > .container {
        padding-bottom: 10svh;
    }

    /* Секции */
    .section__title {
        font-size: 1.75rem;
    }

    /* Карточки */
    .cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .card {
        padding: 12px 16px;
        min-height: 340px;
        border-radius: 12px;
    }
    .card__icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    .card h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    .card__desc {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    .card__price {
        font-size: 1.6rem;
    }
    .card__duration {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    .card__badge {
        top: -8px;
        padding: 3px 10px;
        font-size: 0.65rem;
    }
    .card, .review {
        padding: 24px;
    }

    /* Telegram */
    .message__avatar {
        width: 35px;
        height: 35px;
    }
    .message__content {
        max-width: 85%;
    }
    .message__bubble {
        padding: 10px 14px;
    }
    .message__bubble p {
        font-size: 0.875rem;
    }
    .message__video-circle {
        width: 200px;
        height: 200px;
    }
    .video-circle__play {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    .video-circle__sound {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    /* Образование */
    #education .section__content-wrapper {
        padding: 0 12px;
    }
    .education-main {
        padding: 20px 16px;
        border-radius: 12px;
    }
    .education-main__icon {
        font-size: 2.8rem;
    }
    .education-main__title {
        font-size: 1.25rem;
    }
    .education-main__subtitle {
        font-size: 0.9375rem;
    }
    .highlight {
        padding: 12px 16px;
        gap: 8px;
    }
    .highlight__bullet {
        font-size: 1.4rem;
    }
    .highlight p {
        font-size: 0.8125rem;
    }
    .education-stat {
        min-height: 110px;
        padding: 18px 16px;
    }
    .education-stat__number {
        font-size: 1.8rem;
    }
    .education-stat__label {
        font-size: 0.75rem;
    }

    /* Коучинг */
    .coaching-areas {
        gap: 24px;
    }
    .coaching-card h3 {
        font-size: 1.25rem;
    }
    .case {
        flex-direction: column;
        gap: 8px;
    }
    .case__icon {
        font-size: 1rem;
    }
    .coaching-cta__content h3 {
        font-size: 1.5rem;
    }

    /* Прочее */
    .hero__features {
        flex-direction: column;
    }
    .hero__feature {
        width: 100%;
        justify-content: center;
    }
    .timeline__item {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .timeline__year {
        text-align: left;
    }
    .timeline::before {
        display: none;
    }
    .footer .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
