    .blocks-container {
      width: 100%;
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      padding: 5rem 1.5rem;
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    }

    .block {
      max-width: 1280px;
      margin: 0 auto;
    }

    /* Заголовок */
    .services-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .services-header h2 {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800;
      background: linear-gradient(135deg, #0f172a, #1e293b);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
    }

    .services-header p {
      font-size: 1.1rem;
      color: #475569;
      max-width: 650px;
      margin: 0 auto;
      line-height: 1.5;
    }

    /* Сетка карточек */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.8rem;
      margin-top: 1rem;
    }

    /* Карточка услуги */
    .service-card {
      position: relative;
      background: white;
      border-radius: 1.5rem;
      padding: 1.8rem;
      transition: all 0.3s ease;
      border: 1px solid #eef2ff;
      box-shadow: 0 1px 3px rgba(0,0,0,0.03);
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
      border-color: #e0e7ff;
    }

    /* Иконка */
    .service-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #eef2ff, #e0e7ff);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin-bottom: 1.5rem;
      transition: transform 0.2s;
    }

    .service-card:hover .service-icon {
      transform: scale(1.05);
    }

    /* Название услуги */
    .service-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 0.75rem;
    }

    /* Описание */
    .service-card p {
      color: #475569;
      line-height: 1.55;
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
      min-height: 100px;
    }

    /* Кнопка "Подробнее" */
    .service-link {
      position: absolute;
      bottom: 20px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #2563eb;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: gap 0.2s ease;
    }

    .service-link:hover {
      gap: 12px;
    }

    .service-link span {
      font-size: 1.2rem;
      transition: transform 0.2s;
    }

      /* ========== БЛОК: КАК ПРОХОДИТ РАБОТА ========== */
  .process-section {
    width: 100%;
    padding: 5rem 1.5rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  }

  .process-container {
    max-width: 1280px;
    margin: 0 auto;
  }

  .process-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .process-header h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
  }

  .process-header p {
    font-size: 1.1rem;
    color: #475569;
    max-width: 550px;
    margin: 0 auto;
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
  }

  .process-card {
    background: #f8fafc;
    border-radius: 1.5rem;
    padding: 1.8rem;
    transition: all 0.3s ease;
    border: 1px solid #eef2ff;
  }

  .process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.1);
    background: white;
    border-color: #e0e7ff;
  }

  .process-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    line-height: 1;
  }

  .process-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
  }

  .process-card p {
    color: #475569;
    line-height: 1.55;
    font-size: 0.95rem;
  }

  /* ========== БЛОК: ПОЧЕМУ ВЫБИРАЮТ МЕНЯ ========== */
  .why-section {
    width: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 5rem 1.5rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  }

  .why-container {
    max-width: 1280px;
    margin: 0 auto;
  }

  .why-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .why-header h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
  }

  .why-header p {
    font-size: 1.1rem;
    color: #475569;
    max-width: 500px;
    margin: 0 auto;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
  }

  .why-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.8rem;
    transition: all 0.3s ease;
    border: 1px solid #eef2ff;
    text-align: center;
  }

  .why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
    border-color: #e0e7ff;
  }

  .why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
  }

  .why-card p {
    color: #475569;
    line-height: 1.55;
    font-size: 0.9rem;
  }

   /* ========== БЛОК: МОИ ПРОЕКТЫ ========== */

   /* Skeleton loading animation */
@keyframes skeletonPulse {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.4;
  }
}

.skeleton-line {
  height: 16px;
  background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: skeletonPulse 1.5s ease-in-out infinite;
  border-radius: 4px;
  margin-bottom: 8px;
}

.skeleton-line:last-child {
  width: 80%;
}

.skeleton-tag {
  display: inline-block;
  width: 60px;
  height: 28px;
  background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: skeletonPulse 1.5s ease-in-out infinite;
  border-radius: 20px;
  margin-right: 8px;
}

/* Оптимизация transition для модалки */
.modal {
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.modal.active .modal-content {
  transform: scale(1);
}

/* Ленивая загрузка изображений */
.project-image img {
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: opacity;
}

.project-image img.loaded {
  opacity: 1;
}


.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  /* Hardware acceleration */
  transform: translateZ(0);
}

.project-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  /* Снижаем нагрузку на GPU */
  will-change: transform;
  /* Избегаем перерисовки */
  contain: layout style paint;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-image {
  overflow: hidden;
  border-radius: 12px;

  position: relative;
  background: #f5f5f5;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Плавное появление */
  transition: opacity 0.2s ease;
}

/* Упрощаем анимации оверлея */
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.project-card:hover .project-overlay {
  opacity: 1;
}




  .projects-section {
    width: 100%;
    padding: 5rem 1.5rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  }

  .projects-container {
    max-width: 1280px;
    margin: 0 auto;
  }

  .projects-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .projects-header h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
  }

  .projects-header p {
    font-size: 1.1rem;
    color: #475569;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.5;
  }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }

  .project-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eef2ff;
    cursor: pointer;
  }

  .project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
    border-color: #e0e7ff;
  }

  .project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
  }

  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .project-card:hover .project-image img {
    transform: scale(1.05);
  }

  .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .project-card:hover .project-overlay {
    opacity: 1;
  }

  .project-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    background: rgba(255,255,255,0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
  }

  .project-info {
    padding: 1.5rem;
  }

  .project-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
  }

  .project-info p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .project-tags span {
    background: #f1f5f9;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #2563eb;
  }

  /* ========== МОДАЛЬНОЕ ОКНО ========== */
  .project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  }

  .project-modal.active {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.25s ease, visibility 0s linear 0s;
  }

  .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
  }

  .modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-content {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    animation: modalSlideIn 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  }

  @keyframes modalSlideIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s;
  }

  .modal-close:hover {
    background: #f1f5f9;
    transform: scale(1.05);
  }

  .modal-body {
    display: flex;
    flex-wrap: wrap;
  }

  .modal-image {
    flex: 1;
    min-width: 280px;
  }

  .modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .modal-info {
    flex: 1;
    padding: 2rem;
  }

  .modal-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
  }

  .modal-info p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .modal-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
  }

  .modal-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
  }

  .modal-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
    font-size: 0.9rem;
  }

  .modal-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
  }

  .modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .modal-tags span {
    background: #f1f5f9;
    padding: 0.35rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #2563eb;
  }

  .modal-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .modal-btn-primary, .modal-btn-outline {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
  }

  .modal-btn-primary {
    background: #0f172a;
    color: white;
  }

  .modal-btn-primary:hover {
    background: #1e293b;
    transform: translateY(-2px);
  }

  .modal-btn-outline {
    border: 1px solid #e2e8f0;
    color: #334155;
  }

  .modal-btn-outline:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #f8fafc;
  }

   /* ========== БЛОК: СОЗДАНИЕ И ПРОДВИЖЕНИЕ САЙТОВ ========== */
  .hero-service-section {
    width: 100%;
    padding: 5rem 1.5rem;
    position: relative;
  }

  /* Декоративный фон */
  .hero-service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .hero-service-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .hero-service-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero-service-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.15);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.3);
  }

  .hero-service-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }

  .hero-service-title .gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }

  .hero-service-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .hero-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-bottom: 3rem;
  }

  .hero-service-card {
    background: rgba(255, 255, 255, 0.888);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 1.8rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.689);
  }

  .hero-service-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
  }

  .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero-service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }

  .hero-service-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 1rem;
  }

  .feature-list {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
  }

  .feature-list li {
    padding: 0.4rem 0;
    padding-left: 1.3rem;
    position: relative;
    font-size: 0.85rem;
  }

  .feature-list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
  }

  .hero-service-extra {
    background: rgba(37, 99, 235, 0.1);
    border-radius: 1.5rem;
    padding: 1.8rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
  }

  .extra-icon {
    font-size: 2.5rem;
  }

  .extra-content {
    flex: 1;
  }

  .extra-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }

  .extra-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
  }

  .extra-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px #2563eb;
  }


   /* ========== БЛОК: РЕЗЮМЕ ========== */
  .resume-section {
    width: 100%;
    padding: 4rem 1.5rem;
  }

  .resume-container {
    max-width: 1280px;
    margin: 0 auto;
  }

  /* Шапка */
  .resume-header {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid #eef2ff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  }

  .resume-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
  }

  .resume-tagline {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 0.75rem;
  }

  .resume-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .resume-badges .badge {
    background: #eef2ff;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #2563eb;
  }

  .resume-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .resume-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
  }

  .export-word {
    background: #0f172a;
    color: white;
  }

  .export-word:hover {
    background: #1e293b;
    transform: translateY(-2px);
  }

  .copy-contacts {
    background: white;
    color: #2563eb;
    border: 1px solid #e2e8f0;
  }

  .copy-contacts:hover {
    border-color: #2563eb;
    background: #f8fafc;
    transform: translateY(-2px);
  }

  /* Сетка */
  .resume-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 1.8rem;
  }

  /* Карточки */
  .resume-card {
    background: white;
    border-radius: 1.2rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #eef2ff;
    transition: all 0.2s;
  }

  .resume-card:hover {
    box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.1);
  }

  .resume-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eef2ff;
  }

  /* Контакты */
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
  }

  .contact-icon {
    font-size: 1.2rem;
  }

  .contact-item a {
    color: #2563eb;
    text-decoration: none;
  }

  .contact-item a:hover {
    text-decoration: underline;
  }

  /* Образование */
  .edu-place {
    font-weight: 600;
    color: #0f172a;
  }

  .edu-spec {
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 0.25rem;
  }

  /* Навыки */
  .skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .skill-tag {
    background: #f1f5f9;
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #2563eb;
  }

  /* Готовность */
  .availability {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .avail-badge {
    background: #eef2ff;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    color: #2563eb;
  }

  /* Дополнительно */
  .additional-info p {
    color: #475569;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  /* Коротко */
  .short-bio {
    color: #475569;
    line-height: 1.6;
  }

  /* Проекты */
  .projects-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .project-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
  }

  .project-item:last-child {
    border-bottom: none;
  }

  .project-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.2rem;
  }

  .project-info p {
    font-size: 0.8rem;
    color: #64748b;
  }

  .project-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
  }

  .project-link:hover {
    text-decoration: underline;
  }

  /* Достижения */
  .achievements-list {
    list-style: none;
    padding: 0;
  }

  .achievements-list li {
    padding: 0.5rem 0;
    padding-left: 1.3rem;
    position: relative;
    color: #475569;
    font-size: 0.9rem;
  }

  .achievements-list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #2563eb;
  }

  /* Подсказка печати */
  .print-note {
    background: #f1f5f9;
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .print-note span {
    font-size: 1.5rem;
  }

  .print-note p {
    color: #64748b;
    font-size: 0.8rem;
    margin: 0;
  }


    /* ========== БЛОК: ЧАСТО ЗАДАВАЕМЫЕ ВОПРОСЫ ========== */
  .faq-section {
    width: 100%;
    padding: 5rem 1.5rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  }

  .faq-container {
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .faq-header h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
  }

  .faq-header p {
    font-size: 1rem;
    color: #64748b;
  }

  .faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-item {
    background: white;
    border: 1px solid #eef2ff;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.2s ease;
  }

  .faq-item:hover {
    border-color: #e0e7ff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  }

  .faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
  }

  .faq-question:hover {
    background: #f8fafc;
  }

  .faq-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
  }

  .faq-question h3 {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
  }

  .faq-arrow {
    font-size: 0.8rem;
    color: #94a3b8;
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }

  .faq-item.active .faq-arrow {
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.2s ease;
    background: #fafcff;
    border-top: 1px solid transparent;
  }

  .faq-item.active .faq-answer {
    max-height: 300px;
    border-top-color: #eef2ff;
  }

  .faq-answer p {
    padding: 1.2rem 1.5rem;
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .faq-footer {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 1rem;
  }

  .faq-footer p {
    color: #475569;
    font-size: 0.95rem;
  }

  .faq-footer a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
  }

  .faq-footer a:hover {
    text-decoration: underline;
  }

  /* Адаптивность */
  @media (max-width: 768px) {
    .faq-section {
      padding: 3rem 1rem;
    }
    .faq-question {
      padding: 1rem;
      gap: 0.75rem;
    }
    .faq-question h3 {
      font-size: 0.9rem;
    }
    .faq-icon {
      font-size: 1.1rem;
    }
    .faq-answer p {
      padding: 1rem;
      font-size: 0.85rem;
    }
  }

  @media (max-width: 480px) {
    .faq-question {
      flex-wrap: wrap;
    }
    .faq-question h3 {
      width: calc(100% - 60px);
    }
  }

  /* Адаптивность */
  @media (max-width: 900px) {
    .resume-grid {
      grid-template-columns: 1fr;
      gap: 0;
    }
    .resume-left, .resume-right {
      width: 100%;
    }
    .resume-header {
      flex-direction: column;
      text-align: center;
    }
    .resume-badges {
      justify-content: center;
    }
    .resume-actions {
      justify-content: center;
    }
  }

  @media (max-width: 768px) {
    .resume-section {
      padding: 2rem 1rem;
    }
    .resume-header {
      padding: 1.5rem;
    }
    .resume-name {
      font-size: 1.8rem;
    }
    .project-item {
      flex-direction: column;
      align-items: flex-start;
    }
    .project-link {
      white-space: normal;
    }
  }

  @media print {
    .resume-actions, .print-note {
      display: none;
    }
    .resume-card {
      break-inside: avoid;
    }
  }

  /* Адаптивность */
  @media (max-width: 768px) {
    .hero-service-section {
      padding: 3rem 1.2rem;
    }
    .hero-service-grid {
      gap: 1rem;
    }
    .hero-service-card {
      padding: 1.4rem;
    }
    .hero-service-extra {
      flex-direction: column;
      text-align: center;
      padding: 1.5rem;
    }
    .extra-btn {
      margin-top: 0.5rem;
    }
  }

  @media (max-width: 480px) {
    .hero-service-section {
      padding: 2rem 1rem;
    }
    .hero-service-description {
      font-size: 0.95rem;
    }
    .hero-service-card h3 {
      font-size: 1.2rem;
    }
  }

  /* Адаптивность */
  @media (max-width: 768px) {
    .projects-section {
      padding: 3rem 1rem;
    }
    .projects-grid {
      gap: 1rem;
    }
    .modal-body {
      flex-direction: column;
    }
    .modal-image {
      min-width: auto;
      max-height: 250px;
    }
    .modal-info {
      padding: 1.5rem;
    }
    .modal-info h2 {
      font-size: 1.4rem;
    }
  }

  @media (max-width: 480px) {
    .projects-grid {
      grid-template-columns: 1fr;
    }
    .modal-buttons {
      flex-direction: column;
    }
    .modal-btn-primary, .modal-btn-outline {
      text-align: center;
    }
  }

  /* ========== АДАПТИВНОСТЬ ========== */
  @media (max-width: 768px) {
    .process-section, .why-section {
      padding: 3rem 1.2rem;
    }
    .process-grid, .why-grid {
      gap: 1rem;
    }
    .process-card, .why-card {
      padding: 1.4rem;
    }
    .process-number {
      font-size: 2rem;
    }
    .process-card h3, .why-card h3 {
      font-size: 1.2rem;
    }
  }

  @media (max-width: 480px) {
    .process-section, .why-section {
      padding: 2rem 1rem;
    }
    .process-header p, .why-header p {
      font-size: 0.9rem;
    }
  }

    /* Адаптивность */
    @media (max-width: 768px) {
      .services-section {
        padding: 3rem 1.2rem;
      }
      .services-grid {
        gap: 1.2rem;
      }
      .service-card {
        padding: 1.5rem;
      }
      .service-card h3 {
        font-size: 1.3rem;
      }
    }

    @media (max-width: 480px) {
      .services-section {
        padding: 2rem 1rem;
      }
      .services-header p {
        font-size: 0.95rem;
      }
      .service-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
      }
    }