/* === Переменные === */
:root {
  /* Фоны */
  --color-bg:                #F6F4F0;
  --color-bg-alt:            #ECEAE4;
  --color-hero-bg:           #F4F7F1;

  /* Текст */
  --color-text:              #2A2F2D;
  --color-muted:             #827D78;

  /* Акценты */
  --color-accent:            #8E7B9B;
  --color-accent-dark:       #7A6888;
  --color-accent-light:      #F0EDF4;
  --color-accent-secondary:  #4A7E72;

  /* Границы */
  --color-border:            #D6D1CA;
  --color-border-accent:     #9A8EAA;

  /* Кнопки */
  --color-btn-text:          #F6F4F0;

  /* Радиусы */
  --radius-btn:              8px;
  --radius-card:             12px;

  /* Служебные */
  --color-white:             #fff;
}

/* === Сброс === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* === Базовые стили === */
html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent-dark);
}

h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  line-height: 1.45;
  font-weight: 400;
  color: var(--color-text);
}

h2, h3 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

ul {
  list-style: none;
}

/* === Оверлей мобильного меню === */
#nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 99;
}

/* === Навигация === */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: var(--color-bg);
}

.nav-wrapper::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-border), transparent);
}

.nav-wrapper.scrolled {
  box-shadow: 0 1px 12px rgba(42, 47, 45, 0.08);
}

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

.nav-logo, .nav-logo:hover {
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  color: var(--color-text);
}

.nav-logo span, .nav-logo span:hover {
  color: var(--color-accent);
}


.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--color-accent);
}

.nav-cta {
  display: inline-block;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
  padding: 7px 18px;
  border-radius: 4px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--color-accent);
  color: var(--color-btn-text) !important;
  border-color: var(--color-accent);
}

/* === Секции === */
.section {
  max-width: 880px;
  margin: 0 auto;
  padding: 60px 28px;
}

.section-alt {
  background: var(--color-bg-alt);
  max-width: none;
}

.section-alt > * {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.section-alt > .section-title {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.section-accent {
  background: var(--color-accent);
  color: var(--color-btn-text);
  max-width: none;
  text-align: center;
}

.section-accent > * {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--color-accent);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.section-title::before,
.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.35;
}

.section-title-light {
  color: var(--color-btn-text);
}

.section-title-light::before,
.section-title-light::after {
  background: var(--color-btn-text);
}

/* === Кнопки === */
.btn {
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border: none;
  transition: background 0.2s;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-btn-text);
  padding: 13px 28px;
  border-radius: 8px;
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  color: var(--color-btn-text);
}

.btn-on-accent {
  background: var(--color-btn-text);
  color: var(--color-accent);
}

.btn-on-accent:hover {
  background: var(--color-bg-alt);
  color: var(--color-accent);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
}

.btn-outline:hover {
  background: var(--color-bg-alt);
  color: var(--color-accent);
}

/* === Hero === */
.hero {
  position: relative;
  width: 100%;
  background: var(--color-hero-bg);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 900px;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right,
    rgba(236,234,228,1) 0%,
    rgba(236,234,228,0) 20%,
    rgba(236,234,228,0) 80%,
    rgba(236,234,228,1) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}

.hero-content h1,
.hero-content p,
.hero-content .btn-hero {
  max-width: 500px;
}

.hero-content h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-text);
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--color-text);
}

.hero-content p:last-of-type {
  margin-bottom: 28px;
}

.btn-hero {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-btn-text);
  border: none;
  padding: 11px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease;
  width: fit-content;
}

.btn-hero:hover {
  background: var(--color-accent-dark);
  color: var(--color-btn-text);
}

/* === Узнаёшь себя? === */
.feelings {
  background: var(--color-hero-bg);
  max-width: none;
  padding: 48px 0;
}

.feelings-mobile-divider {
  display: none;
}

.feelings-body {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
}

.feelings-body > p {
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-text);
  padding: 0.6rem 0;
  border-bottom: 0.5px solid var(--color-border);
  margin: 0;
}

.phrase-last {
  border-bottom: none !important;
}

.feelings-accent {
  color: var(--color-accent);
}

.feelings-closing {
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
  color: var(--color-accent);
  line-height: 1.5;
  margin-top: 2rem;
  text-align: center;
  border: none;
  padding: 0;
}

.mobile-break {
  display: none;
}

/* === Обо мне === */
.about {
  background: var(--color-bg);
  max-width: 880px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  align-items: stretch;
}

.about-photo {
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-text {
  padding: 1.25rem 1.25rem 0.6rem;
  background: var(--color-bg);
}

.about-heading {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 14px;
}

.credentials-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: var(--color-bg-alt);
  border-top: 0.5px solid var(--color-border);
}

.credentials-group {
  padding: 20px 20px;
  border-right: 0.5px solid var(--color-border);
}

.credentials-group:first-child {
  padding-left: 20px;
}

.credentials-group:last-child {
  border-right: none;
}

.credentials-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent-secondary);
  margin-bottom: 3px;
}

.credentials-value {
  display: block;
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.5;
}

/* === Как начать? === */
.start {
  display: flex;
  width: 100%;
  max-width: 880px;
  margin: 48px auto 0;
  overflow: hidden;
}

.start-left {
  background: var(--color-accent);
  flex: 1;
  padding: 32px 44px 0;
  display: flex;
  flex-direction: column;
}

.start-right {
  background: var(--color-accent-light);
  flex: 1;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.start-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.start-quote {
  font-family: Georgia, serif;
  font-size: 19px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.65;
  margin: 0 0 14px;
  padding: 0;
  border: none;
}

.start-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.start-sub-accent {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.start-steps-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-secondary);
  margin-bottom: 18px;
}

.start-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  counter-reset: start-step;
}

.start-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  counter-increment: start-step;
}

.start-steps li::before {
  content: counter(start-step);
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--color-accent-secondary);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.start-step-main {
  display: block;
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.4;
}

.start-step-sub {
  display: block;
  font-size: 11px;
  color: var(--color-muted);
  margin-top: 2px;
}

.start-btn {
  display: inline-block;
  padding: 5px 32px;
  background: transparent;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 400;
  border-radius: var(--radius-btn);
  text-align: center;
  border: 1px solid var(--color-border-accent);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.start-btn:hover {
  border: 1px solid var(--color-accent);
}

/* === Как мы работаем === */
#how-we-work {
  background: var(--color-bg);
  padding: 72px 0;
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.how-title-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.how-title-line {
  flex: 1;
  height: 0.5px;
  background: var(--color-border);
}

.how-title {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: normal;
  color: var(--color-accent);
  white-space: nowrap;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 56px;
  margin-bottom: 40px;
}

.how-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-secondary);
  margin-bottom: 8px;
}

.how-h {
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: normal;
  color: var(--color-text);
  margin-bottom: 8px;
}

.how-p {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.65;
}

.how-sep {
  height: 0.5px;
  background: var(--color-border);
  margin-bottom: 32px;
}

.how-pr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.how-pr-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 6px;
}

.how-pr-text {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
}

/* === FAQ === */
#faq {
  background: var(--color-bg-alt);
  padding: 72px 0;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-title-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.faq-title-line {
  flex: 1;
  height: 0.5px;
  background: var(--color-border);
}

.faq-title {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: normal;
  color: var(--color-accent);
  white-space: nowrap;
}

.faq-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--color-border);
  align-items: start;
}

.faq-item:first-of-type {
  padding-top: 0;
}
.faq-item:last-child {
  border: 0;
  padding-bottom: 0;
}

.faq-q {
  font-family: Georgia, serif;
  font-size: 15px;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.55;
}

.faq-a {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.7;
}

/* === Образование === */
#education {
  background: var(--color-bg);
  padding: 72px 0 42px;
}

.edu-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.edu-title-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.edu-title-line {
  flex: 1;
  height: 0.5px;
  background: var(--color-border);
}

.edu-title {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: normal;
  color: var(--color-accent);
  white-space: nowrap;
}

.edu-list {
  display: flex;
  flex-direction: column;
}

.edu-item {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--color-border);
}

.edu-item:first-child {
  padding-top: 0;
}
.edu-item:last-child {
  border: 0;
}

.edu-clickable {
  cursor: pointer;
}

.edu-clickable:hover .edu-thumb {
  opacity: 0.85;
}

.edu-thumb {
  width: 160px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  transition: opacity 0.2s;
}

.edu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.edu-progress-box {
  width: 100%;
  height: 100%;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--color-accent-light);
  border-radius: 8px;
}

.edu-progress-label {
  font-size: 10px;
  color: var(--color-accent);
  font-weight: 500;
  text-align: center;
  display: block;
  line-height: 1;
}

.edu-progress-track {
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  width: 100%;
}

.edu-progress-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: 2px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.edu-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  animation: edu-shimmer 2s ease-in-out infinite;
}

@keyframes edu-shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.edu-progress-pct {
  font-size: 11px;
  color: var(--color-muted);
  text-align: center;
  display: block;
}

.edu-text {
  flex: 1;
}

.edu-date {
  font-size: 11px;
  color: var(--color-accent-secondary);
  margin-bottom: 5px;
}

.edu-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 4px;
  line-height: 1.4;
}

.edu-org {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.5;
}

/* === Контакты === */
/* === Контакты === */
#contacts {
  background: var(--color-bg-alt);
  padding: 80px 40px;
}

.contacts-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contacts-title-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.contacts-title-line {
  flex: 1;
  height: 0.5px;
  background: var(--color-border);
}

.contacts-title {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: normal;
  font-style: italic;
  color: #8E7B9B;
  white-space: nowrap;
}

.contacts-text {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.6;
}

.contacts-sub {
  font-size: 15px;
  color: #827D78;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contacts-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.contacts-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 28px;
  border: 1px solid #9A8EAA;
  border-radius: 8px;
  background: #F6F4F0;
  color: var(--color-text);
  font-size: 15px;
  text-decoration: none;
}

.contacts-btn:hover {
  background: #F0EDF4;
}

.messenger-icon {
  width: 24px;
  height: 24px;
}

.contacts-note {
  font-size: 13px;
  color: #9E9890;
}

/* === Footer === */
.footer {
  background: #2A2F2D;
  padding: 24px 40px;
  text-align: center;
  font-size: 13px;
  color: #9B9E9C;
  line-height: 1.5;
}

.footer-name {
  color: #8E7B9B;
}

/* === Lightbox === */
.edu-lb {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(42, 47, 45, 0.93);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.edu-lb.active {
  display: flex;
}

.edu-lb img {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 6px;
  display: block;
}

.edu-lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  padding: 4px;
  line-height: 0;
}

.edu-lb-close:hover { opacity: 1; }

.edu-lb-prev {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.65;
  padding: 8px;
  line-height: 0;
}

.edu-lb-prev:hover { opacity: 1; }

.edu-lb-next {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.65;
  padding: 8px;
  line-height: 0;
}

.edu-lb-next:hover { opacity: 1; }

.edu-lb-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 80%;
}

.edu-lb-cap-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-bottom: 4px;
}

.edu-lb-cap-org {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* === Гамбургер-кнопка (скрыта на десктопе) === */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle-active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle-active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle-active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 741px) {
  .start-left {
    background-image: url('assets/images/start-watercolor.png');
    background-repeat: no-repeat;
    background-position: 40px 60px;
    background-size: 80% auto;
  }
}

/* === Адаптивность === */
@media (max-width: 740px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    padding: 13px 20px;
    position: relative;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    gap: 1px;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 0;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 14px 20px;
    font-size: 16px;
    color: var(--color-text);
    text-decoration: none;
    position: relative;
    border: none;
    margin: 0;
  }

  .nav-links a::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 0.5px;
    background: rgba(214, 209, 202, 0.5);
  }

  .nav-links a:nth-last-child(2)::after {
    display: none;
  }

  .nav-cta {
    display: inline-block !important;
    margin: 12px 20px !important;
    padding: 9px 20px !important;
    width: auto !important;
    background: var(--color-accent);
    color: var(--color-btn-text) !important;
    border-radius: 6px;
    font-size: 15px;
    border: none;
    text-align: center;
  }

  .nav-cta::after {
    display: none !important;
  }

  .nav-cta:hover {
    background: var(--color-accent-dark);
    color: var(--color-btn-text);
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  h1 {
    font-size: 22px;
  }

  .section {
    padding: 40px 20px;
  }

  .section-alt,
  .section-accent {
    padding: 40px 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo img {
    width: 100%;
    height: clamp(300px, 80vw, 870px);
    object-fit: cover;
    object-position: center 10%;
    display: block;
  }

  .about-text {
    padding: 1.25rem 1.25rem 0;
  }

  .credentials-bar {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    background: var(--color-bg-alt);
  }

  .credentials-group {
    padding: 14px 0;
    border-right: none;
    border-bottom: 0.5px solid var(--color-border);
  }

  .credentials-group:last-child {
    border-bottom: none;
  }

  .credentials-group:first-child {
    padding-left: 0;
  }

  .start {
    flex-direction: column;
    margin-top: 50px;
  }

  .start-left {
    padding: 44px 24px 36px;
    background-image: none;
  }

  .start-eyebrow {
    display: none;
  }

  .start-right {
    padding: 32px 24px 32px;
  }

  .start-steps {
    margin-bottom: 24px;
  }

  .start-btn {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-btn);
  }

  #how-we-work {
    padding: 48px 0;
  }

  .how-inner {
    padding: 0 24px;
  }

  .how-title-wrap {
    margin-bottom: 24px;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 0;
    margin-bottom: 20px;
  }

  .how-item {
    padding: 20px 0;
    border-bottom: 0.5px solid var(--color-border);
  }

  .how-item:first-child {
    padding-top: 0;
  }

  .how-sep {
    display: none;
  }

  .how-principles {
    padding-top: 0;
  }

  .how-pr-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #education {
    padding: 48px 0;
  }

  .edu-inner {
    padding: 0 24px;
  }

  .edu-thumb {
    width: 88px;
    height: 60px;
    border-radius: 6px;
  }

  .edu-progress-box {
    padding: 8px;
    gap: 5px;
  }

  .edu-progress-label {
    font-size: 9px;
  }

  .edu-progress-pct {
    font-size: 9px;
  }

  .edu-progress-track {
    height: 3px;
  }

  .edu-name {
    font-size: 13px;
  }

  .edu-org {
    font-size: 12px;
  }

  .edu-lb img {
    max-width: 95vw;
    max-height: 70vh;
  }

  .edu-lb-prev {
    left: 8px;
  }

  .edu-lb-next {
    right: 8px;
  }

  #contacts {
    padding: 56px 24px;
  }

  .contacts-links {
    flex-direction: column;
    align-items: stretch;
  }

  .contacts-text br {
    display: none;
  }

  .contacts-phone-number {
    display: block;
  }

  .contacts-btn {
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
  }

  .hero {
    display: block;
    min-height: 420px;
    position: relative;
  }

  .hero-img {
    opacity: 0.35;
    max-width: 160vw;
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
  }

  .hero-content {
    position: relative;
    padding: 40px 20px;
  }

  .hero-content p {
    line-height: 1.35;
  }

  .feelings {
    padding-top: 2rem;
  }

  .feelings-mobile-divider {
    display: none;
  }

  .feelings-body {
    padding: 0 20px;
  }

  .feelings-closing {
    font-size: 17px;
    margin-top: 1.25rem;
  }

  .mobile-break {
    display: inline;
  }

  #faq {
    padding: 48px 0;
  }

  .faq-inner {
    padding: 0 24px;
  }

  .faq-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }

  .faq-q {
    font-size: 15px;
  }

  .faq-a {
    font-size: 14px;
  }
}
