/* --- СБРОС СТИЛЕЙ И БАЗОВЫЕ НАСТРОЙКИ --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  color: #4A4A4A;
  background-color: #FAF9F6;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3 {
  font-family: "Rubik", sans-serif;
  font-weight: normal;
}
picture {
  width: 100%;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-padding {
  padding: 80px 0;
}
.section-title {
  font-size: 2rem;
  font-weight: 500;
  color: #2C3E50;
  text-align: center;
  margin-bottom: 12px;
}
.section-title.align-left {
  text-align: left;
}
.section-desc {
  text-align: center;
  color: #7F8C8D;
  max-width: 600px;
  margin: 0 auto 50px auto;
  font-size: 1.1rem;
}
/* --- КНОПКИ И ЗАГЛУШКИ ДЛЯ ФОТО --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary {
  background-color: #8E9AAF;
  color: #FFFFFF;
}
.btn-primary:hover {
  background-color: #7A8699;
}
.btn-secondary {
  background-color: #E2E7ED;
  color: #4A4A4A;
  margin-left: 12px;
}
.btn-secondary:hover {
  background-color: #D3D9E2;
}
.btn-outline {
  border: 1px solid #8E9AAF;
  color: #8E9AAF;
  background: transparent;
}
.btn-outline:hover {
  background-color: #8E9AAF;
  color: #FFFFFF;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}
.image-placeholder,
.doc-placeholder {
  background-color: #ECEAE4;
  color: #8C8A84;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 4px;
  font-size: 0.9rem;
  padding: 20px;
}
.image-frame {
  background-color: #ECEAE4;
  color: #8C8A84;
  border-radius: 4px;
  padding: 20px;
}
/* --- БЛОК 1: ШАПКА И ГЛАВНЫЙ ЭКРАН --- */
.header {
  background-color: rgba(250, 249, 246, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #EAE8E2;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.logo {
  font-size: 1.2rem;
  font-weight: 500;
  color: #2C3E50;
}
.nav {
  display: flex;
  gap: 30px;
}
.nav-link {
  color: #626262;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: #8E9AAF;
}
.hero-section {
  padding-top: 150px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #F3F1EC 0%, #FAF9F6 100%);
}
.hero-container {
  display: flex;
  align-items: center;
  gap: 50px;
}
.hero-content {
  flex: 1;
}
.hero-badge {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #A67C52;
  margin-bottom: 15px;
  font-weight: 500;
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
  color: #2C3E50;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: #626262;
  margin-bottom: 35px;
}
.hero-image-wrap {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.main-photo {
  width: 100%;
  max-width: 420px;
  height: 540px;
}
/* --- БЛОК 2: АКТУАЛЬНЫЕ ТРУДНОСТИ --- */
.problems-section {
  background-color: #FAF9F6;
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.problem-card {
  background-color: #FFFFFF;
  padding: 40px 30px;
  border-radius: 6px;
  border: 1px solid #EAE8E2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}
.problem-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}
.problem-card h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #2C3E50;
  margin-bottom: 15px;
}
.problem-card p {
  font-size: 0.95rem;
  color: #626262;
}
/* --- БЛОК 3: ОБО МНЕ И ПРИНЦИПЫ --- */
.about-section {
  background-color: #F6F4EE;
}
.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.about-image-wrap {
  flex: 1;
}
.profile-photo {
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  object-position: center top;
}
.profile-photo.profile-photo-hero {
  max-height: 700px;
}
.profile-photo.profile-photo-about {
  max-height: 600px;
}
.profile-photo.profile-photo-feedback {
  max-height: 440px;
  margin-bottom: 20px;
}
.about-content {
  flex: 1.2;
}
.about-text {
  font-size: 1.05rem;
  color: #4A4A4A;
  margin-bottom: 25px;
}
.about-quote {
  font-style: italic;
  font-size: 1.2rem;
  color: #2C3E50;
  border-left: 3px solid #8E9AAF;
  padding-left: 20px;
  margin-bottom: 35px;
}
.principles-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.principle-item {
  font-size: 0.95rem;
  color: #626262;
  position: relative;
  padding-left: 20px;
}
.principle-item::before {
  content: "•";
  color: #8E9AAF;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -4px;
}
/* --- БЛОК 4: МЕТОДЫ РАБОТЫ --- */
.methods-section {
  background-color: #FAF9F6;
}
.methods-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.method-box {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 4px;
  border: 1px solid #EAE8E2;
}
.method-box h4 {
  font-size: 1.15rem;
  font-weight: 500;
  color: #2C3E50;
  margin-bottom: 12px;
}
.method-box p {
  font-size: 0.95rem;
  color: #626262;
}
/* --- БЛОК 5: ОБРАЗОВАНИЕ И СЛАЙДЕР --- */
.education-section {
  background-color: #F6F4EE;
}
.education-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.education-info {
  flex: 1;
}
.edu-group {
  margin-bottom: 25px;
}
.edu-group h5 {
  font-size: 1rem;
  font-weight: 500;
  color: #A67C52;
  margin-bottom: 6px;
}
.edu-group p {
  font-size: 0.95rem;
  color: #4A4A4A;
}
.supervision-note {
  font-size: 0.9rem;
  color: #7F8C8D;
  border-top: 1px solid #E2E0D9;
  padding-top: 20px;
  margin-top: 30px;
}
.slider-container {
  flex: 1;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.slider-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
}
.slide {
  min-width: 100%;
  padding: 0 5px;
}
.doc-placeholder {
  height: 380px;
  cursor: pointer;
  background-color: #FFFFFF;
  border: 1px solid #EAE8E2;
}
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}
.slider-btn {
  background-color: #FFFFFF;
  border: 1px solid #EAE8E2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.slider-btn:hover {
  background-color: #8E9AAF;
  color: #FFFFFF;
  border-color: #8E9AAF;
}
/* --- БЛОК 6: СТОИМОСТЬ И ФОРМАТЫ --- */
.prices-section {
  background-color: #FAF9F6;
}
.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.price-card {
  background-color: #FFFFFF;
  border: 1px solid #EAE8E2;
  padding: 40px 30px;
  border-radius: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.price-card.popular {
  border-color: #8E9AAF;
  box-shadow: 0 4px 15px rgba(142, 154, 175, 0.08);
}
.price-card h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #2C3E50;
  margin-bottom: 8px;
}
.card-target {
  font-size: 0.9rem;
  color: #7F8C8D;
  margin-bottom: 25px;
}
.price-value {
  font-size: 1.8rem;
  font-weight: 500;
  color: #2C3E50;
  margin-bottom: 30px;
}
.location-info {
  max-width: 600px;
  margin: 0 auto;
  background-color: #F6F4EE;
  padding: 25px 30px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.location-info p {
  font-size: 0.95rem;
  color: #4A4A4A;
}
/* --- БЛОК 7: ВОПРОСЫ И ОТВЕТЫ --- */
.faq-section {
  background-color: #F6F4EE;
}
.faq-container {
  max-width: 800px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background-color: #FFFFFF;
  border: 1px solid #EAE8E2;
  border-radius: 4px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 25px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 500;
  color: #2C3E50;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question span {
  font-size: 1.3rem;
  color: #8E9AAF;
  transition: transform 0.2s ease;
}
.faq-item.active .faq-question span {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out;
}
.faq-answer p {
  padding: 0 25px 20px 25px;
  font-size: 0.95rem;
  color: #626262;
}
/* --- БЛОК 8: ФОРМА И ПОДВАЛ --- */
.contacts-section {
  background-color: #FAF9F6;
  border-bottom: 1px solid #EAE8E2;
}
.contacts-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.contacts-form-box {
  flex: 1.2;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 6px;
  border: 1px solid #EAE8E2;
}
.contacts-form-box h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #2C3E50;
  margin-bottom: 10px;
}
.contacts-form-box p {
  color: #7F8C8D;
  font-size: 0.95rem;
  margin-bottom: 30px;
}
.feedback-form .form-group {
  margin-bottom: 20px;
}
.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #D1CFC8;
  background-color: #FAFAFA;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #4A4A4A;
  outline: none;
}
.feedback-form input:focus,
.feedback-form textarea:focus {
  border-color: #8E9AAF;
}
.feedback-form textarea {
  height: 100px;
  resize: none;
}
.form-privacy {
  font-size: 0.8rem;
  color: #9E9C96;
  margin-top: 12px;
  text-align: center;
}
.contacts-info-box {
  flex: 1;
}
.contact-photo {
  width: 100%;
  height: 320px;
  margin-bottom: 30px;
}
.contact-methods h5 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2C3E50;
  margin-bottom: 15px;
}
.contact-methods p {
  font-size: 0.95rem;
  color: #626262;
  margin-bottom: 10px;
}
.footer {
  background-color: #FAF9F6;
  padding: 30px 0;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer p {
  font-size: 0.85rem;
  color: #9E9C96;
}
/* --- АДАПТИВНОСТЬ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ --- */
@media (max-width: 992px) {
  .hero-container,
  .about-container,
  .education-container,
  .contacts-container {
    flex-direction: column;
    gap: 40px;
  }
  .hero-image-wrap,
  .about-image-wrap,
  .slider-container,
  .contacts-info-box {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .hero-section {
    padding-bottom: 0;
  }
  .main-photo,
  .profile-photo,
  .contact-photo {
    max-width: 100%;
    height: 400px;
  }
  .problems-grid,
  .methods-tabs,
  .prices-grid {
    grid-template-columns: 1fr;
  }
  .header-container {
    padding: 0 20px;
  }
  .nav {
    display: none;
    /* Для полноценного продакшена тут обычно добавляют мобильное бургер-меню */
  }
  .profile-photo-feedback {
    width: 50%;
    margin-right: 20px;
  }
}
@media (max-width: 576px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero-section {
    padding-top: 100px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-actions a {
    margin: 5px 0;
    display: block;
  }
  .contacts-form-box {
    padding: 25px 20px;
  }
  .footer-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .profile-photo-feedback {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */