:root {
      --bg:           #fafafa;
      --section-bg:   #ffffff;
      --card-bg:      #ffffff;
      --text:         #1a1a1a;
      --text-soft:    #666666;
      --accent:       #5a8da6;
      --accent-dark:  #3a6b85;
      --accent-light: #a8c6d8;
      --accent-warm:  #e67e7e;
      --accent-warm-dark: #c06a6a;
      --accent-green: #6bb39b;
      --accent-green-light: #8fd4b5;
      --accent-timeline: #8fd4b5;
      --shadow-sm:    0 2px 8px rgba(0,0,0,0.05);
      --shadow-md:    0 5px 15px rgba(0,0,0,0.08);
      --shadow-lg:    0 10px 25px rgba(0,0,0,0.12);
      --transition-fast: 0.2s ease;
      --transition-medium: 0.3s ease;
      --transition-slow: 0.5s ease;
    }

    * { 
      margin:0; 
      padding:0; 
      box-sizing:border-box; 
    }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      font-size: 1.05rem;
      overflow-x: hidden;
    }

    .container { 
      max-width: 1200px; 
      margin: 0 auto; 
      padding: 0 20px; 
    }

    /* 1. ДОВЕРИТЕЛЬНЫЕ ЭЛЕМЕНТЫ */
    .trust-badges {
      display: flex;
      justify-content: left;
      gap: 20px;
      flex-wrap: wrap;
      margin: 25px 0 30px;
    }

    .badge {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 20px;
      background: rgba(255,255,255,0.9);
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.07);
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--accent-dark);
      transition: all var(--transition-medium);
      border: 1px solid rgba(90,141,166,0.1);
    }

    .badge:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      background: white;
    }

    .badge i {
      color: var(--accent-green);
      font-size: 1.1rem;
    }

    /* Индикатор занятости - УБРАН */
    .availability-indicator {
      display: none;
    }

    /* 3. МИКРО-АНИМАЦИИ */
    @keyframes gentleAppear {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes subtlePulse {
      0%, 100% { box-shadow: 0 6px 20px rgba(107,179,155,0.3); }
      50% { box-shadow: 0 6px 20px rgba(107,179,155,0.5); }
    }

    .hero-cta {
      animation: subtlePulse 10s infinite;
    }

    /* 4. ПОРТРЕТ КЛИЕНТА */
    .fit-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin: 40px 0;
    }

    .fit-card {
      background: var(--card-bg);
      padding: 30px 25px;
      border-radius: 12px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: all var(--transition-medium);
      border: 2px solid transparent;
    }

    .fit-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: var(--accent-green-light);
    }

    .fit-card i {
      font-size: 2.5rem;
      color: var(--accent-green);
      margin-bottom: 20px;
      display: block;
    }

    .fit-card h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      color: var(--accent-dark);
    }

    /* 5. ФОРМАТЫ УСЛУГ */
    .therapy-formats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin: 40px 0;
    }

    .format-card {
      background: var(--card-bg);
      padding: 35px 30px;
      border-radius: 12px;
      box-shadow: var(--shadow-sm);
      transition: all var(--transition-medium);
      position: relative;
      border: 2px solid transparent;
    }

    .format-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .format-card.recommended {
      border-color: var(--accent-green);
      position: relative;
    }

    .recommended-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent-green);
      color: white;
      padding: 6px 20px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      white-space: nowrap;
    }

    .format-card h3 {
      font-size: 1.4rem;
      margin-bottom: 20px;
      color: var(--accent-dark);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .format-card h3 i {
      color: var(--accent);
    }

    .format-card ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 20px;
    }

    .format-card ul li {
      margin-bottom: 10px;
      padding-left: 25px;
      position: relative;
    }

    .format-card ul li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--accent-green);
      font-weight: bold;
    }

    /* 6. ИНТЕРАКТИВНЫЙ КАЛЬКУЛЯТОР ПРОГРЕССА */
    .progress-calculator {
      background: linear-gradient(135deg, #f8fafc, #f1f5f9);
      padding: 40px;
      border-radius: 16px;
      margin: 50px 0;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(90,141,166,0.1);
    }

    .progress-slider {
      margin: 30px 0;
      position: relative;
    }

    .progress-slider input[type="range"] {
      width: 100%;
      height: 10px;
      -webkit-appearance: none;
      background: linear-gradient(90deg, var(--accent-green), var(--accent));
      border-radius: 5px;
      outline: none;
    }

    .progress-slider input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 25px;
      height: 25px;
      background: white;
      border-radius: 50%;
      cursor: pointer;
      border: 3px solid var(--accent-green);
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .progress-labels {
      display: flex;
      justify-content: space-between;
      margin-top: 15px;
      font-size: 0.9rem;
      color: var(--text-soft);
    }

    .progress-result {
      background: white;
      padding: 25px;
      border-radius: 12px;
      margin-top: 25px;
      font-size: 1.1rem;
      line-height: 1.7;
      border-left: 4px solid var(--accent-green);
      box-shadow: var(--shadow-sm);
      min-height: 120px;
      display: flex;
      align-items: center;
      animation: gentleAppear 0.5s ease-out;
    }

    /* 6. УЛУЧШЕНИЕ МОБИЛЬНОЙ ВЕРСИИ */
    @media (max-width: 768px) {
      /* Увеличить тач-зоны */
      .nav-links a, .btn, .service, .format-card {
        min-height: 44px;
      }
      
      /* Упрощенные анимации на мобильных */
      .badge:hover, .fit-card:hover {
        animation: none;
        transform: none;
      }
      
      /* Крупнее текст */
      body {
        font-size: 1.1rem;
        line-height: 1.7;
      }
      
      h2 {
        font-size: 1.8rem;
      }
      
      /* Адаптация доверительных элементов */
      .trust-badges {
        gap: 10px;
      }
      
      .badge {
        padding: 10px 15px;
        font-size: 0.85rem;
      }
      
      /* Адаптация портрета клиента */
      .fit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      /* Адаптация форматов */
      .therapy-formats {
        grid-template-columns: 1fr;
      }
      
      .format-card.recommended {
        order: -1;
      }
      
      /* Адаптация калькулятора */
      .progress-calculator {
        padding: 25px 20px;
      }
      
      .progress-labels {
        flex-direction: column;
        gap: 5px;
      }
      
      .progress-labels span {
        font-size: 0.85rem;
      }
      
      /* Улучшение навигации на мобильных */
      .nav-links a {
        font-size: 1.1rem;
        padding: 12px 0;
      }
      
      /* Увеличение отступов для пальцев */
      .hero-cta, .nav-cta, .btn {
        padding: 16px 30px;
      }
    }

    @media (max-width: 480px) {
      .trust-badges {
        flex-direction: column;
        align-items: center;
      }
      
      .badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
      }
    }

    /* Остальной CSS остаётся без изменений... */
    /* Прогресс-бар */
    .reading-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 0%;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-green), var(--accent));
      z-index: 1001;
      transition: width 0.1s;
    }

    /* 1. ИСПРАВЛЕННАЯ НАВИГАЦИЯ */
    nav {
      position: fixed;
      top: 0; 
      left: 0; 
      right: 0;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(90,141,166,0.1);
      z-index: 1000;
      padding: 12px 0;
      transition: all var(--transition-medium);
    }

    nav.scrolled { 
      box-shadow: 0 2px 15px rgba(0,0,0,0.05); 
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .logo { 
      font-weight: 700; 
      font-size: 1.3rem; 
      color: var(--accent-dark);
      text-decoration: none;
      white-space: nowrap;
    }

    /* Главное меню */
    .nav-links {
      display: flex;
      gap: 22px;
      font-size: 0.9rem;
      font-weight: 500;
    }

    .nav-links a { 
      color: var(--text); 
      text-decoration: none; 
      transition: color var(--transition-fast);
      padding: 5px 0;
      position: relative;
      white-space: nowrap;
    }

    .nav-links a:hover { 
      color: var(--accent); 
    }

    .nav-links a.active {
      color: var(--accent);
      font-weight: 600;
    }

    .nav-links a.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--accent);
      border-radius: 1px;
    }

    .nav-cta {
      background: var(--accent-green);
      color: white;
      padding: 8px 18px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: all var(--transition-medium);
      white-space: nowrap;
    }

    .nav-cta:hover { 
      background: #5aa088;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(107,179,155,0.3);
    }

    /* Бургер-меню для мобильных */
    .burger-menu {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      z-index: 1002;
    }

    .burger-line {
      width: 24px;
      height: 2px;
      background: var(--accent-dark);
      transition: all var(--transition-medium);
      border-radius: 1px;
    }

    .burger-menu.active .burger-line:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .burger-menu.active .burger-line:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Мобильная навигация */
    @media (max-width: 900px) {
      .burger-menu {
        display: flex;
      }

      .nav-links {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 15px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-medium);
        z-index: 999;
        border-top: 1px solid rgba(90,141,166,0.1);
      }

      .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
      }

      .nav-links a {
        font-size: 1.1rem;
        padding: 10px 0;
        width: 100%;
        text-align: center;
      }

      .nav-links a.active::after {
        display: none;
      }

      .nav-links a.active {
        background: rgba(90,141,166,0.05);
        border-radius: 6px;
        padding: 10px 20px;
      }

      .nav-cta {
        font-size: 1rem;
        padding: 10px 20px;
      }
    }

    /* 1. УЛУЧШЕННАЯ HERO СЕКЦИЯ С ФОТОГРАФИЕЙ СЛЕВА */
    header {
      padding: 80px 0 0px;
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      position: relative;
      overflow: hidden;
    }

    header::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(90,141,166,0.08) 0%, rgba(90,141,166,0) 70%);
      border-radius: 50%;
      z-index: 0;
    }

    header::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(107,179,155,0.05) 0%, rgba(107,179,155,0) 70%);
      border-radius: 50%;
      z-index: 0;
    }

    header .container {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    /* БЛОК С ФОТОГРАФИЕЙ СЛЕВА - ОБНОВЛЕНО: БЕЗ ХОВЕРА И БЕЛОГО ФОНА */
    .hero-photo {
      position: relative;
    }

    .photo-wrapper {
      position: relative;
      width: 100%;
      max-width: 500px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 0px 0px rgba(0, 0, 0, 0.08);
      background: transparent; /* Убрали белый фон */
    }

    .avatar {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-radius: 20px;
    }

    /* БЛОК С ТЕКСТОМ СПРАВА */
    .hero-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    header h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      color: var(--accent-dark);
      line-height: 1.1;
      margin-bottom: 10px;
    }

    .title-wrapper {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 15px;
    }

    .main-title {
      font-size: 1.4rem;
      color: var(--accent);
      font-weight: 600;
    }

    .sub-title {
      font-size: 1.1rem;
      color: var(--accent-dark);
      font-weight: 500;
      opacity: 0.9;
    }

    .hero-cta {
      display: inline-block;
      background: linear-gradient(135deg, var(--accent-green), #5aa088);
      color: white;
      padding: 16px 35px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 1.1rem;
      text-decoration: none;
      box-shadow: 0 8px 25px rgba(107,179,155,0.3);
      transition: all var(--transition-medium);
      margin-top: 10px;
      position: relative;
      overflow: hidden;
      z-index: 1;
      align-self: flex-start;
    }

    .hero-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.7s ease;
      z-index: -1;
    }

    .hero-cta:hover::before {
      left: 100%;
    }

    .hero-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(107,179,155,0.4);
    }

    /* АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ */
    @media (max-width: 992px) {
      header .container {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .hero-photo {
        max-width: 400px;
        margin: 0 auto;
      }
      
      .hero-content {
        text-align: center;
        align-items: center;
      }
      
      .trust-badges {
        justify-content: center;
      }
      
      .hero-cta {
        align-self: center;
      }
    }

    @media (max-width: 768px) {
      header {
        padding: 120px 0 60px;
      }
      
      .photo-wrapper {
        max-width: 350px;
      }
      
      header h1 {
        font-size: 2.5rem;
      }
      
      .main-title {
        font-size: 1.2rem;
      }
      
      .sub-title {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .photo-wrapper {
        max-width: 280px;
      }
      
      header h1 {
        font-size: 2.2rem;
      }
      
      .trust-badges {
        flex-direction: column;
        align-items: center;
      }
      
      .badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
      }
    }

    /* Основные секции */
    section { 
      padding: 25px 0; 
      position: relative;
    }

    section:nth-child(even) {
      background: #f8fafc;
    }

    /* h2 теперь по левому краю */
    h2 {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 700;
      margin-bottom: 30px;
      color: var(--accent-dark);
      position: relative;
      text-align: left;
      width: 100%;
      padding-bottom: 15px;
    }

    h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 80px;
      height: 3px;
      background: var(--accent-green);
      border-radius: 2px;
    }

    .fade-in-up {
      opacity: 0; 
      transform: translateY(30px);
      transition: all 0.6s ease-out;
    }
    
    .fade-in-up.visible { 
      opacity: 1; 
      transform: translateY(0); 
    }

    .wide-content {
      max-width: 800px;
      margin: 0 auto 30px;
      color: var(--text-soft);
      line-height: 1.7;
    }
    
    .wide-content p { 
      margin-bottom: 20px; 
    }

    /* Услуги - ОБНОВЛЕНО: добавлена 5-я карточка */
    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-bottom: 30px;
    }

    .service {
      background: var(--card-bg);
      padding: 25px 20px;
      border-radius: 12px;
      box-shadow: var(--shadow-sm);
      transition: all var(--transition-medium);
      border: 1px solid rgba(90,141,166,0.08);
    }

    .service:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--accent-light);
    }

    .fa-icon {
      font-size: 2.5rem;
      margin: 0 auto 20px;
      display: block;
      color: var(--accent);
    }

    .service h3 {
      font-size: 1.4rem;
      text-align: center;
      margin-bottom: 15px;
      color: var(--accent-dark);
      font-weight: 600;
    }

    .service-category {
      display: inline-block;
      background: rgba(90,141,166,0.08);
      color: var(--accent);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 500;
      margin-bottom: 15px;
    }

    /* Принципы */
    .principles {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-bottom: 40px;
    }

    .principle {
      background: var(--card-bg);
      padding: 25px;
      border-radius: 12px;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(90,141,166,0.08);
      transition: all var(--transition-medium);
    }

    .principle:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .principle h4 {
      font-size: 1.3rem;
      text-align: center;
      margin-bottom: 15px;
      color: var(--accent-dark);
      font-weight: 600;
    }

    /* Предупреждающий блок */
    .warning-box {
      background: #fff9f9;
      border-left: 4px solid var(--accent-warm);
      padding: 25px;
      border-radius: 8px;
      margin: 30px 0;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .warning-box i {
      color: var(--accent-warm);
      margin-right: 10px;
      font-size: 1.2rem;
    }

    /* Сценарий терапии */
    .scenario-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }

    .scenario-step {
      background: var(--card-bg);
      padding: 25px 20px;
      border-radius: 12px;
      box-shadow: var(--shadow-sm);
      transition: all var(--transition-medium);
      position: relative;
      border-top: 4px solid var(--accent);
    }

    .scenario-step:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-top-color: var(--accent-green);
    }

    .step-number {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent-green);
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.2rem;
      box-shadow: 0 4px 10px rgba(107,179,155,0.3);
    }

    .scenario-step h4 {
      font-size: 1.3rem;
      margin: 15px 0 10px;
      color: var(--accent-dark);
      text-align: center;
    }

    .scenario-step p {
      color: var(--text-soft);
      line-height: 1.6;
    }

    /* Гарантии */
    .guarantees {
      background: #f8fafc;
      padding: 30px 25px;
      border-radius: 12px;
      margin: 30px 0;
      border: 1px solid rgba(90,141,166,0.1);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .guarantees-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .guarantee-item {
      text-align: center;
      padding: 15px;
    }

    .guarantee-item i {
      font-size: 2rem;
      color: var(--accent);
      margin-bottom: 10px;
      display: block;
    }

    .guarantee-item p {
      font-size: 1rem;
      font-weight: 500;
      color: var(--accent-dark);
    }

    /* Кнопки */
    .btn {
      display: inline-block;
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: white;
      padding: 14px 30px;
      font-size: 1.1rem;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(90,141,166,0.2);
      text-decoration: none;
      font-weight: 600;
      transition: all var(--transition-medium);
      border: none;
      cursor: pointer;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(90,141,166,0.3);
    }

    .btn.green {
      background: linear-gradient(135deg, var(--accent-green), #5aa088);
      box-shadow: 0 5px 15px rgba(107,179,155,0.2);
    }

    .btn.green:hover {
      box-shadow: 0 8px 20px rgba(107,179,155,0.3);
    }

    .section-cta { 
      text-align: center; 
      margin: 30px 0; 
    }

    /* FAQ */
    .faq-container {
      max-width: 800px;
      margin: 30px auto;
    }

    .faq-item {
      background: var(--card-bg);
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      transition: all var(--transition-medium);
    }

    .faq-question {
      padding: 20px 25px;
      font-weight: 600;
      color: var(--accent-dark);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all var(--transition-fast);
    }

    .faq-question:hover {
      background: rgba(90,141,166,0.03);
    }

    .faq-answer {
      padding: 0 25px;
      max-height: 0;
      overflow: hidden;
      transition: all var(--transition-medium);
      color: var(--text-soft);
      line-height: 1.6;
    }

    .faq-item.active .faq-answer {
      padding: 0 25px 25px;
      max-height: 500px;
    }

    .faq-toggle {
      transition: transform var(--transition-medium);
      color: var(--accent);
    }

    .faq-item.active .faq-toggle {
      transform: rotate(45deg);
    }

    /* КОНТАКТЫ */
    .contact-section {
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      padding: 60px 0;
      text-align: center;
      position: relative;
    }

    .contact-links {
      display: flex;
      justify-content: center;
      gap: 25px;
      flex-wrap: wrap;
      margin: 30px 0 40px;
    }

    .contact-link-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 20px;
      border-radius: 12px;
      background: white;
      box-shadow: var(--shadow-sm);
      transition: all var(--transition-medium);
      min-width: 180px;
    }

    .contact-link-wrapper:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .contact-link {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: var(--text);
    }

    .contact-link:hover {
      color: var(--accent);
    }

    .contact-link i {
      font-size: 2rem;
      color: var(--accent);
    }

    .contact-link span {
      font-weight: 600;
      font-size: 1rem;
    }

    .contact-detail-wrapper {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 8px;
    }

    .contact-detail {
      font-size: 0.9rem;
      color: var(--text-soft);
    }

    .copy-btn {
      background: none;
      border: none;
      color: var(--accent-light);
      cursor: pointer;
      font-size: 1rem;
      transition: color var(--transition-fast);
      padding: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .copy-btn:hover {
      color: var(--accent);
    }

    /* Плавающая кнопка */
    .floating-cta {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: linear-gradient(135deg, var(--accent-green), #5aa088);
      color: white;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 15px rgba(107,179,155,0.3);
      text-decoration: none;
      font-size: 1.3rem;
      z-index: 999;
      transition: all var(--transition-medium);
      opacity: 0;
      transform: translateY(100px);
    }

    .floating-cta.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .floating-cta:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 8px 20px rgba(107,179,155,0.4);
    }

    @media (max-width: 768px) {
      .floating-cta {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
      }
      
      /* На мобильных h2 центрируем */
      h2 {
        text-align: center;
      }
      
      h2::after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .contact-links {
        gap: 20px;
      }
      
      .contact-link-wrapper {
        min-width: 160px;
        padding: 20px;
      }
    }

    /* Футер */
    footer {
      background: linear-gradient(135deg, var(--accent-dark), var(--accent));
      color: white;
      text-align: center;
      padding: 40px 0 30px;
      font-size: 0.95rem;
    }

    footer p {
      margin-bottom: 15px;
      opacity: 0.9;
    }

    .footer-logos {
      display: inline-block;
      background: rgba(255,255,255,0.1);
      padding: 8px 20px;
      border-radius: 20px;
      font-weight: 500;
      margin-top: 15px;
    }

    /* Чеклист */
    .checklist {
      background: rgba(90,141,166,0.04);
      padding: 25px;
      border-radius: 10px;
      margin: 30px 0;
      border: 1px dashed rgba(90,141,166,0.2);
    }

    .checklist-item {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 12px;
      padding: 12px;
      background: white;
      border-radius: 8px;
      box-shadow: var(--shadow-sm);
      cursor: pointer;
      transition: all var(--transition-fast);
    }

    .checklist-item:hover {
      background: #f8fafc;
    }

    .checklist-item i {
      color: var(--accent);
      font-size: 1.2rem;
      min-width: 20px;
    }

    .checklist-item.checked {
      background: rgba(107,179,155,0.08);
      border-left: 3px solid var(--accent-green);
    }

    /* НОВЫЙ БЛОК ОБРАЗОВАНИЯ С ДИПЛОМАМИ */
    .diploma-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin: 40px 0;
    }

    .diploma-card {
      background: var(--card-bg);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all var(--transition-medium);
      border: 1px solid rgba(90,141,166,0.1);
    }

    .diploma-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .diploma-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      cursor: pointer;
      transition: transform var(--transition-medium);
      border-bottom: 1px solid rgba(90,141,166,0.1);
    }

    .diploma-image:hover {
      transform: scale(1.02);
    }

    .diploma-content {
      padding: 25px;
    }

    .diploma-date {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 1rem;
      font-weight: 600;
      color: var(--accent-green);
      margin-bottom: 10px;
    }

    .diploma-title {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--accent-dark);
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .diploma-org {
      font-size: 1rem;
      color: var(--accent);
      font-weight: 500;
      margin-bottom: 10px;
      display: block;
    }

    .diploma-desc {
      color: var(--text-soft);
      line-height: 1.5;
      font-size: 0.95rem;
    }

    /* МОДАЛЬНОЕ ОКНО ДЛЯ ДИПЛОМОВ */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      z-index: 2000;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: opacity var(--transition-medium);
    }

    .modal-overlay.active {
      display: flex;
      opacity: 1;
    }

    .modal-content {
      position: relative;
      background: white;
      border-radius: 12px;
      max-width: 90%;
      max-height: 90%;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
      animation: gentleAppear 0.3s ease-out;
    }

    .modal-close {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(0, 0, 0, 0.7);
      color: white;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 1.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: all var(--transition-fast);
    }

    .modal-close:hover {
      background: rgba(0, 0, 0, 0.9);
      transform: scale(1.1);
    }

    .modal-img {
      width: 100%;
      height: auto;
      display: block;
      max-height: 70vh;
      object-fit: contain;
    }

    .modal-caption {
      padding: 20px;
      background: white;
      color: var(--text);
      font-size: 1rem;
      text-align: center;
      border-top: 1px solid rgba(90,141,166,0.1);
    }

    @media (max-width: 768px) {
      .diploma-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }
      
      .diploma-image {
        height: 180px;
      }
      
      .modal-content {
        max-width: 95%;
        max-height: 85%;
      }
    }

h1, h2, h3, h4, .main-title {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 500; /* Средний вес - очень элегантно */
  letter-spacing: -0.2px;
}

header h1 {
  font-weight: 700; /* Чуть выделяем имя */
}

h2 {
  font-weight: 500; /* Такой же как остальные */
}

/* Для контраста можно оставить жирным только имя */
h1 {
  font-weight: 700;
}

h2, h3, h4 {
  font-weight: 500;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav-links a.active::after {
  width: 100%;
}

/* Гарантируем что только ОДНА ссылка активна */
.nav-links a.active ~ a.active::after {
  width: 0 !important;
}