/*
Theme Name: Главная тема
Theme URI: https://seovv.ru/glav
Author: Ваше имя
Author URI: https://seovv.ru
Description: Описание вашей темы
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: seovv.ru
*/

.top-header {
    background-color: #f8f9fa;
    color: #495057;
    padding: 12px 0;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    border-bottom: 1px solid #e9ecef;
}

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

.top-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.top-header-contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    color: #6c757d;
    font-size: 14px;
    min-width: 16px;
    text-align: center;
}

.contact-item a, .contact-item span {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #0d6efd;
}

.city-dropdown {
    background: transparent;
    color: #495057;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 5px 25px 5px 8px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236c757d'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    transition: all 0.3s;
}

.city-dropdown:hover {
    border-color: #adb5bd;
}

.city-dropdown:focus {
    outline: none;
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.city-dropdown option {
    background-color: #fff;
    color: #212529;
}

/* Стили для CTA кнопки */
.cta-button {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: white !important;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.2);
    display: inline-block;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    background: linear-gradient(135deg, #0b5ed7, #0a58ca);
}

.desktop-cta {
    margin-left: 25px;
}

/* Мобильные стили */
.mobile-top-header {
    display: none;
    align-items: center;
    gap: 15px;
    width: 100%;
    justify-content: space-between;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-phone i {
    color: #6c757d;
}

/* Основные стили */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

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

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Стили логотипа */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-container {
    margin-bottom: 5px;
    line-height: 1; /* Убираем лишние отступы у изображения */
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    max-width: 100%;
}

/* Стили для изображения логотипа */
.custom-logo {
    max-height: 60px; /* Максимальная высота логотипа */
    width: auto; /* Сохраняем пропорции */
    transition: opacity 0.3s ease;
}

.custom-logo:hover {
    opacity: 0.9;
}

/* Стили для текстового логотипа */
.site-title {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    text-decoration: none;
    display: inline-block;
}

.site-description {
    font-size: 13px;
    color: #666666;
    margin: 0;
    line-height: 1.4;
    max-width: 300px;
}

/* Стили основного меню */
.main-navigation {
    display: block;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu > li {
    position: relative;
    margin-left: 25px;
}

.primary-menu > li > a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.primary-menu > li > a:hover {
    color: #0d6efd;
}

/* Стили подменю */
.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    list-style: none;
    margin: 0;
}

.primary-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
}

.primary-menu .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #555555;
    font-size: 14px;
    transition: all 0.3s;
}

.primary-menu .sub-menu li a:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

/* Стили мобильного меню */
.mobile-menu-toggle {
    display: none;
}

.hamburger {
    padding: 10px;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    background: transparent;
    border: 0;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
    width: 30px;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.hamburger--collapse.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.1s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.1s ease;
}

.hamburger--collapse.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mobile-menu-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 99;
}

.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 10px;
}

.mobile-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

.mobile-menu li a:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.mobile-menu .sub-menu {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
    display: none;
}

.mobile-menu .menu-item-has-children > a::after {
    content: "+";
    float: right;
    transition: transform 0.3s;
}

.mobile-menu .menu-item-has-children.active > a::after {
    content: "-";
}

/* Адаптивные стили */
@media (max-width: 992px) {
    .primary-menu > li {
        margin-left: 15px;
    }
}

@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo-link img {
        max-height: 40px;
    }

    .site-title {
        font-size: 20px;
    }

    .site-description {
        font-size: 12px;
        max-width: 200px;
    }
}

.mobile-phone a {
    color: #495057;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .top-header-contacts {
        gap: 15px;
    }
    
    .contact-item:nth-child(n+3) {
        display: none;
    }
    
    .cta-button {
        padding: 8px 18px;
    }
}

@media (max-width: 768px) {
    .top-header {
        padding: 10px 0;
    }
    
    .top-header-contacts, .desktop-cta {
        display: none;
    }
    
    .mobile-top-header {
        display: flex;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (min-width: 769px) {
    .mobile-top-header {
        display: none;
    }
}







/* Основные стили для Hero-блока */
.hero-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #212529;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #495057;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: #0d6efd;
    color: white;
    border: 2px solid #0d6efd;
}

.primary-btn:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
}

.secondary-btn {
    background-color: transparent;
    color: #0d6efd;
    border: 2px solid #0d6efd;
}

.secondary-btn:hover {
    background-color: rgba(13, 110, 253, 0.1);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Адаптация для планшетов */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image {
        justify-content: center;
    }
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        text-align: center;
    }
}

/* Анимации для плавного появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-image {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

/* Уникальные стили с префиксом .seo-about- */
.seo-about-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.seo-about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.seo-about-text {
  flex: 1 1 300px;
  max-width: 600px;
}

.seo-about-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.seo-about-description {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.seo-about-stats {
  display: flex;
  gap: 30px;
}

.seo-about-stat {
  text-align: center;
}

.seo-about-number {
  font-size: 36px;
  font-weight: bold;
  color: #2e8b57;
}

.seo-about-label {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  color: #666;
}

.seo-about-photo {
  flex: 1 1 250px;
  max-width: 400px;
  text-align: center;
}

.seo-about-img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Адаптивность */
@media (max-width: 768px) {
  .seo-about-container {
    flex-direction: column;
    text-align: center;
  }

  .seo-about-text, .seo-about-photo {
    max-width: 100%;
  }

  .seo-about-title {
    font-size: 26px;
  }

  .seo-about-number {
    font-size: 30px;
  }
}

/* Уникальные стили для блока услуг */
.seo-services-section {
  background: #ffffff;
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.seo-services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.seo-services-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #2c3e50;
}

.seo-services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.seo-service-item {
  background-color: #f8f8f8;
  border-radius: 16px;
  padding: 25px 20px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.seo-service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.seo-service-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #2e8b57;
}

.seo-service-title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  margin-bottom: 10px;
}

.seo-service-title:hover {
  color: #2e8b57;
}

.seo-service-description {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Адаптивность */
@media (max-width: 768px) {
  .seo-services-grid {
    flex-direction: column;
    align-items: center;
  }

  .seo-service-item {
    width: 90%;
  }

  .seo-services-title {
    font-size: 26px;
  }
}

/* Изолированный стиль кейсов seo-caseblock- */

.seo-caseblock-section {
  background-color: #f8faff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.seo-caseblock-container {
  max-width: 1200px;
  margin: 0 auto;
}

.seo-caseblock-title {
  text-align: center;
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 50px;
}

.seo-caseblock-category {
  margin-bottom: 60px;
}

.seo-caseblock-category-title {
  font-size: 24px;
  margin-bottom: 25px;
  color: #2e8b57;
}

.seo-caseblock-row {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.seo-caseblock-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  flex: 1 1 calc(33.33% - 20px);
  max-width: calc(33.33% - 20px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.seo-caseblock-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.seo-caseblock-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  object-fit: cover;
}

.seo-caseblock-heading {
  display: block;
  font-size: 18px;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 8px;
  text-decoration: none;
}

.seo-caseblock-heading:hover {
  color: #2e8b57;
}

.seo-caseblock-region {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.seo-caseblock-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .seo-caseblock-card {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .seo-caseblock-row {
    flex-direction: column;
    align-items: center;
  }
}

/* Изолированный стиль seo-process- */

.seo-process-section {
  background: #ffffff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.seo-process-container {
  max-width: 1200px;
  margin: 0 auto;
}

.seo-process-title {
  font-size: 32px;
  text-align: center;
  color: #2c3e50;
  margin-bottom: 50px;
}

.seo-process-step {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 40px;
  border-left: 4px solid #2e8b57;
  padding-left: 20px;
}

.seo-process-number {
  flex-shrink: 0;
  font-size: 24px;
  font-weight: bold;
  color: #2e8b57;
  margin-top: 6px;
}

.seo-process-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.seo-process-desc {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 768px) {
  .seo-process-step {
    flex-direction: column;
    padding-left: 0;
    border-left: none;
    border-top: 2px solid #2e8b57;
    padding-top: 20px;
  }

  .seo-process-number {
    font-size: 20px;
  }

  .seo-process-heading {
    font-size: 18px;
  }

  .seo-process-desc {
    font-size: 15px;
  }
}

/* Изолированные стили seo-benefit- */

.seo-benefit-section {
  background-color: #f7f7f7;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.seo-benefit-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.seo-benefit-title {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 40px;
}

.seo-benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.seo-benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  max-width: 340px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
}

.seo-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.seo-benefit-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #2e8b57;
}

.seo-benefit-heading {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.seo-benefit-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 768px) {
  .seo-benefit-grid {
    flex-direction: column;
    align-items: center;
  }

  .seo-benefit-card {
    width: 90%;
  }

  .seo-benefit-title {
    font-size: 26px;
  }
}
/* Изолированные стили seo-whyme- */

.seo-whyme-section {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.seo-whyme-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.seo-whyme-title {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 50px;
}

.seo-whyme-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.seo-whyme-card {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 25px 20px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
}

.seo-whyme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.seo-whyme-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #2e8b57;
}

.seo-whyme-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.seo-whyme-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Адаптивность */
@media (max-width: 768px) {
  .seo-whyme-card {
    max-width: 100%;
  }

  .seo-whyme-title {
    font-size: 26px;
  }

  .seo-whyme-grid {
    flex-direction: column;
    align-items: center;
  }
}

.tariff-basic-wrapper {
  width: 100%;
  background: linear-gradient(to right, #f8faff, #eef1f7);
  padding: 40px 20px;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

.tariff-basic-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  padding: 40px;
}

.tariff-basic-title {
  font-size: 36px;
  font-weight: bold;
  color: #1f1f1f;
  margin-bottom: 20px;
  text-align: center;
}

.tariff-basic-price {
  font-size: 28px;
  color: #28a745;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.tariff-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.tariff-column {
  flex: 1;
  min-width: 300px;
}

.tariff-column h4 {
  margin-top: 30px;
  font-size: 22px;
  color: #333;
}

.tariff-column ul {
  padding-left: 20px;
  margin-top: 10px;
}

.tariff-column ul li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  list-style: disc;
}

/* Адаптивность */
@media screen and (max-width: 768px) {
  .tariff-basic-container {
    padding: 25px 20px;
  }

  .tariff-basic-title {
    font-size: 28px;
  }

  .tariff-basic-price {
    font-size: 24px;
  }

  .tariff-column h4 {
    font-size: 20px;
  }

  .tariff-column ul li {
    font-size: 15px;
  }
}

.tariff-advanced-wrapper {
  width: 100%;
  background: linear-gradient(to right, #f8faff, #e8effc);
  padding: 40px 20px;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

.tariff-advanced-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  padding: 40px;
}

.tariff-advanced-title {
  font-size: 36px;
  font-weight: bold;
  color: #1e1e1e;
  margin-bottom: 20px;
  text-align: center;
}

.tariff-advanced-price {
  font-size: 28px;
  color: #0070c9;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.tariff-advanced-description {
  font-size: 17px;
  text-align: center;
  color: #444;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.tariff-advanced-content h4 {
  margin-top: 30px;
  font-size: 22px;
  color: #333;
}

.tariff-advanced-content p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

.tariff-advanced-content ul {
  padding-left: 20px;
  margin-top: 10px;
}

.tariff-advanced-content ul li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  list-style: disc;
}

/* Адаптивность */
@media screen and (max-width: 768px) {
  .tariff-advanced-container {
    padding: 25px 20px;
  }

  .tariff-advanced-title {
    font-size: 28px;
  }

  .tariff-advanced-price {
    font-size: 24px;
  }

  .tariff-advanced-description {
    font-size: 15px;
  }

  .tariff-advanced-content h4 {
    font-size: 20px;
  }

  .tariff-advanced-content ul li {
    font-size: 15px;
  }
}

/* Custom FAQ Section Styles */
.custom-faq-section {
  width: 100%;
  padding: 80px 0;
  font-family: 'Roboto', Arial, sans-serif;
}

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

.custom-faq-main-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 50px;
  position: relative;
}

.custom-faq-main-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #3498db;
  margin: 15px auto 0;
}

.custom-faq-list {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.custom-faq-item {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.custom-faq-question {
  padding: 20px 25px;
  background: #fff;
}

.custom-faq-question-text {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  display: block;
}

.custom-faq-answer {
  padding: 0 25px 25px;
}

.custom-faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 15px;
}

.custom-faq-examples {
  margin-top: 20px;
  border-left: 3px solid #3498db;
  padding-left: 15px;
}

.custom-faq-example {
  margin-bottom: 15px;
  padding: 12px 15px;
  background-color: #f8fafc;
  border-radius: 6px;
}

.custom-faq-example strong {
  display: block;
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 5px;
}

.custom-faq-example div {
  font-size: 15px;
  color: #4a5568;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .custom-faq-section {
    padding: 60px 0;
  }
  
  .custom-faq-main-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .custom-faq-question {
    padding: 15px 20px;
  }
  
  .custom-faq-question-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .custom-faq-section {
    padding: 40px 0;
  }
  
  .custom-faq-main-title {
    font-size: 24px;
  }
  
  .custom-faq-question, 
  .custom-faq-answer {
    padding: 12px 15px;
  }
}

/* Custom Footer Styles */
.custom-footer {
  background: #2d3748;
  color: #e2e8f0;
  padding: 4rem 0 2rem;
  font-family: 'Inter', sans-serif;
}

.custom-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.custom-footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-footer-col {
  padding: 0 0.5rem;
}

.custom-footer-logo-img {
  max-width: 160px;
  height: auto;
  margin-bottom: 1.25rem;
}

.custom-footer-about p {
  color: #a0aec0;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.custom-footer-heading {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.custom-footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 2px;
  background: #4299e1;
}

.custom-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-footer-menu li {
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: #a0aec0;
}

.custom-footer-item-link {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.custom-footer-item-link:hover {
  color: #4299e1;
}

.custom-footer-socials {
  margin-top: 1rem;
}

.custom-footer-social-link {
  color: #4299e1;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.custom-footer-social-link:hover {
  opacity: 0.8;
}

.custom-footer-bottom {
  text-align: center;
}

.custom-footer-notice {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-size: 0.8125rem;
  color: #718096;
  line-height: 1.5;
}

.custom-footer-copy {
  font-size: 0.875rem;
  color: #718096;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .custom-footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .custom-footer {
    padding: 3rem 0 1.5rem;
  }
  
  .custom-footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .custom-footer-col {
    padding: 0;
  }
  
  .custom-footer-heading {
    font-size: 1rem;
  }
}

/* Custom Services Section */
.custom-services-section {
  padding: 80px 0;
  background-color: #f8faff;
  font-family: 'Inter', sans-serif;
}

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

.custom-services-main-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 50px;
  position: relative;
}

.custom-services-main-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #3498db;
  margin: 15px auto 0;
}

.custom-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.custom-service-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.custom-service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ebf5ff;
  border-radius: 50%;
}

.custom-service-icon svg {
  width: 30px;
  height: 30px;
}

.custom-service-title {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.custom-service-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-service-link:hover {
  color: #3498db;
}

.custom-service-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .custom-services-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .custom-services-section {
    padding: 60px 0;
  }
  
  .custom-services-main-title {
    font-size: 30px;
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .custom-services-main-title {
    font-size: 26px;
  }
  
  .custom-service-card {
    padding: 25px;
  }
  
  .custom-service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .custom-service-icon svg {
    width: 25px;
    height: 25px;
  }
  
  .custom-service-title {
    font-size: 18px;
  }
}

/* Reasons Block Styles */
.reasons-block {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
}

.reasons-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.reasons-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #4285f4;
    margin: 15px auto 0;
}

.reasons-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.reason-item {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.reason-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #4285f4;
}

.reason-icon svg {
    width: 24px;
    height: 24px;
}

.reason-heading {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.reason-text {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .reasons-container {
        grid-template-columns: 1fr;
    }
    
    .reasons-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .reason-item {
        padding: 20px;
    }
}

/* About SEO Specialist Section */
.seo-about-section {
    background: #f8faff;
    padding: 80px 20px;
    font-family: 'Roboto', Arial, sans-serif;
    color: #333;
    position: relative;
    overflow: hidden;
}

.seo-main-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
    font-weight: 700;
}

.seo-main-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #4285f4;
    margin: 15px auto 0;
    border-radius: 2px;
}

.seo-about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.seo-about-content {
    flex: 1;
}

.seo-about-info {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.seo-about-text {
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 16px;
    color: #555;
}

.seo-contact-text {
    font-weight: 600;
    margin-bottom: 15px;
    color: #444;
}

.seo-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.seo-social-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.seo-social-btn svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    fill: white;
}

.seo-telegram {
    background: #0088cc;
    color: white;
}

.seo-vk {
    background: #4a76a8;
    color: white;
}

.seo-whatsapp {
    background: #25D366;
    color: white;
}

.seo-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.seo-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.seo-fact-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.seo-fact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.seo-fact-number {
    font-size: 28px;
    font-weight: 700;
    color: #4285f4;
    margin-bottom: 5px;
}

.seo-fact-label {
    color: #666;
    font-size: 14px;
}

.seo-about-photo {
    width: 40%;
    position: relative;
}

.seo-photo-frame {
    width: 100%;
    padding-bottom: 120%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 10px solid white;
}

.seo-photo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seo-about-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.seo-main-btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 220px;
}

.seo-audit-btn {
    background: #4285f4;
    color: white;
}

.seo-request-btn {
    background: white;
    color: #4285f4;
    border: 2px solid #4285f4;
}

.seo-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Адаптивность */
@media (max-width: 992px) {
    .seo-about-container {
        flex-direction: column;
    }
    
    .seo-about-photo {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .seo-photo-frame {
        padding-bottom: 100%;
    }
    
    .seo-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .seo-main-title {
        font-size: 28px;
    }
    
    .seo-about-info {
        padding: 20px;
    }
    
    .seo-social-links {
        flex-direction: column;
    }
    
    .seo-social-btn {
        justify-content: center;
    }
    
    .seo-facts-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-about-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .seo-main-btn {
        width: 100%;
    }
}

.content-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .page-title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
  }

  .page-content {
    font-size: 1rem;
    line-height: 1.6;
  }

  .page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
  }

  .page-content table th,
  .page-content table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
  }

  .page-content table th {
    background-color: #f5f5f5;
  }

  @media (max-width: 768px) {
    .content-container {
      padding: 20px 10px;
    }
  }

/* Контакты - общие стили */
.contacts-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Верхний блок с картой и контактами */
.contact-top-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-map,
.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
}

.contact-info h2 {
    margin-top: 0;
    color: #333;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    margin-bottom: 15px;
    font-size: 16px;
}

/* Социальные кнопки */
.social-buttons {
    text-align: center;
    margin: 40px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.telegram {
    background-color: #0088cc;
}

.vk {
    background-color: #4a76a8;
}

.whatsapp {
    background-color: #25D366;
}

/* Форма обратной связи */
.contact-form-section {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form-section h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 25px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .contact-top-section {
        flex-direction: column;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        text-align: center;
    }
}

/* Service Hero Block */
.service-hero {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.service-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.service-hero__content {
    max-width: 600px;
}

.service-hero__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-hero__description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-hero__cta-button {
    background-color: #FF6B6B;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.service-hero__cta-button:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,107,0.4);
}

/* Decorative elements */
.service-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.service-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: 100px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .service-hero {
        padding: 60px 0;
    }
    
    .service-hero__title {
        font-size: 36px;
    }
    
    .service-hero__description {
        font-size: 16px;
    }
    
    .service-hero__cta-button {
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 50px 0;
        text-align: center;
    }
    
    .service-hero__content {
        margin: 0 auto;
    }
    
    .service-hero__title {
        font-size: 28px;
    }
    
    .service-hero__description {
        font-size: 15px;
    }
}
/* Client Problems Section */
.client-problems-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

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

.client-problems-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.client-problems-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.client-problems-subtitle {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.6;
}

.client-problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.client-problem-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.client-problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e0;
}

.problem-card-icon {
    width: 60px;
    height: 60px;
    background: #4299e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.problem-card-icon svg {
    width: 45px;
    height: 45px;
}

.problem-card-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.problem-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.problem-card-content {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .client-problems-section {
        padding: 60px 0;
    }
    
    .client-problems-title {
        font-size: 30px;
    }
    
    .client-problems-subtitle {
        font-size: 16px;
    }
    
    .client-problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .client-problems-title {
        font-size: 26px;
    }
    
    .client-problem-card {
        padding: 20px;
    }
}

/* Service Stages Block */
.service-stages {
    padding: 80px 0;
    background-color: #f8fafc;
    position: relative;
}

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

.service-stages__header {
    text-align: center;
    margin-bottom: 60px;
}

.service-stages__title {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-stages__subtitle {
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-stages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-stage__card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    border: 1px solid #e2e8f0;
}

.service-stage__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-stage__icon {
    width: 64px;
    height: 64px;
    background: #4299e1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: white;
}

.service-stage__icon svg {
    width: 45px;
    height: 45px;
}

.service-stage__icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.service-stage__content {
    flex: 1;
}

.service-stage__title {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.service-stage__desc {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

/* Responsive */
@media (max-width: 768px) {
    .service-stages {
        padding: 60px 0;
    }
    
    .service-stages__title {
        font-size: 30px;
    }
    
    .service-stages__subtitle {
        font-size: 16px;
    }
    
    .service-stages__grid {
        grid-template-columns: 1fr;
    }
    
    .service-stage__card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .service-stage__card {
        flex-direction: column;
    }
    
    .service-stage__icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

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

.advantages-header {
    text-align: center;
    margin-bottom: 60px;
}

.advantages-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantages-subtitle {
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.advantage-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 64px;
    font-weight: 800;
    color: rgba(66, 153, 225, 0.1);
    line-height: 1;
    z-index: 1;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: #4299e1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    color: white;
}

.advantage-icon svg {
    width: 45px;
    height: 45px;
}

.advantage-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.advantage-content {
    position: relative;
    z-index: 2;
}

.advantage-title {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.advantage-description {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantages-title {
        font-size: 30px;
    }
    
    .advantages-subtitle {
        font-size: 16px;
    }
    
    .advantage-card {
        padding: 25px;
    }
    
    .advantage-number {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-title {
        font-size: 26px;
    }
}

/* Cases Section */
.cases-section {
    padding: 80px 0;
    background-color: #f8fafc;
    position: relative;
}

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

.cases-header {
    text-align: center;
    margin-bottom: 50px;
}

.cases-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cases-subtitle {
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.case-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.case-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-image {
    transform: scale(1.05);
}

.case-image-placeholder {
    width: 100%;
    height: 100%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
}

.case-niche {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(66, 153, 225, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-content {
    padding: 20px;
}

.case-title {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.case-region {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 15px;
}

.case-region svg {
    margin-right: 5px;
    width: 16px;
    height: 16px;
}

.case-description {
    font-size: 15px;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 0;
}

.cases-footer {
    text-align: center;
}

.cases-button {
    display: inline-block;
    background-color: #4299e1;
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
}

.cases-button:hover {
    background-color: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 153, 225, 0.4);
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cases-section {
        padding: 60px 0;
    }
    
    .cases-title {
        font-size: 30px;
    }
    
    .cases-subtitle {
        font-size: 16px;
    }
    
    .case-image-wrapper {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-title {
        font-size: 26px;
    }
    
    .cases-button {
        padding: 12px 25px;
        font-size: 15px;
    }
}

/* Work Steps Section */
.work-steps-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

.work-steps-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.work-steps-header {
    text-align: center;
    margin-bottom: 60px;
}

.work-steps-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.work-steps-subtitle {
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.work-steps-timeline {
    position: relative;
    padding-left: 50px;
}

.work-steps-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    height: 100%;
    width: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.work-step {
    position: relative;
    padding-bottom: 40px;
    display: flex;
}

.work-step:last-child {
    padding-bottom: 0;
}

.work-step-number {
    width: 50px;
    height: 50px;
    background: #4299e1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(66, 153, 225, 0.3);
}

.work-step-content {
    flex: 1;
    padding-top: 8px;
}

.work-step-title {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.work-step-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .work-steps-section {
        padding: 60px 0;
    }
    
    .work-steps-title {
        font-size: 30px;
    }
    
    .work-steps-subtitle {
        font-size: 16px;
    }
    
    .work-steps-timeline {
        padding-left: 40px;
    }
    
    .work-step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-right: 20px;
    }
}

@media (max-width: 480px) {
    .work-steps-timeline {
        padding-left: 30px;
    }
    
    .work-step {
        flex-direction: column;
    }
    
    .work-step-number {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .work-steps-timeline::before {
        left: 20px;
    }
}

/* Single Pricing Section */
.single-pricing-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

.single-pricing-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.single-pricing-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.single-pricing-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.single-pricing-subtitle {
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.single-pricing-price {
    font-size: 42px;
    font-weight: 800;
    color: #4299e1;
    margin-bottom: 5px;
}

.single-price-note {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #718096;
    margin-top: 10px;
}

.single-pricing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-group {
    background: #f8fafc;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #e2e8f0;
}

.feature-group-title {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.feature-group-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-group-item {
    padding: 10px 0;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    margin-right: 10px;
    color: #4299e1;
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.single-pricing-footer {
    text-align: center;
}

.single-pricing-button {
    display: inline-block;
    background-color: #4299e1;
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.single-pricing-button:hover {
    background-color: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .single-pricing-section {
        padding: 60px 0;
    }
    
    .single-pricing-title {
        font-size: 30px;
    }
    
    .single-pricing-subtitle {
        font-size: 16px;
    }
    
    .single-pricing-price {
        font-size: 36px;
    }
    
    .single-pricing-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .single-pricing-title {
        font-size: 26px;
    }
    
    .single-pricing-button {
        padding: 12px 30px;
        font-size: 16px;
        width: 100%;
    }
}

/* FAQ Section */
.service-faq-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.service-faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-faq-subtitle {
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.faq-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.faq-card-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.faq-icon {
    margin-right: 15px;
    color: #4299e1;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 24px;
    height: 24px;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    line-height: 1.4;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    padding-left: 39px;
}

.faq-answer p {
    margin: 0 0 15px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-cta {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.faq-cta-text {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.5;
}

.faq-cta-button {
    display: inline-block;
    background-color: #4299e1;
    color: white;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-cta-button:hover {
    background-color: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-faq-section {
        padding: 60px 0;
    }
    
    .service-faq-title {
        font-size: 30px;
    }
    
    .service-faq-subtitle {
        font-size: 16px;
    }
    
    .faq-card {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 18px;
    }
    
    .faq-answer {
        padding-left: 0;
        margin-top: 15px;
    }
    
    .faq-card-header {
        flex-direction: column;
    }
    
    .faq-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .service-faq-title {
        font-size: 26px;
    }
    
    .faq-cta {
        padding: 20px;
    }
    
    .faq-cta-text {
        font-size: 16px;
    }
}

/* Consultation Request Section */
.consultation-request-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
}

.consultation-request-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.consultation-request-header {
    text-align: center;
    margin-bottom: 40px;
}

.consultation-request-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.consultation-request-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
    font-size: 15px;
}

.social-link svg {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.telegram {
    background-color: #0088cc;
}

.telegram:hover {
    background-color: #0077b5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.vk {
    background-color: #4a76a8;
}

.vk:hover {
    background-color: #3f6894;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 118, 168, 0.3);
}

.whatsapp {
    background-color: #25D366;
}

.whatsapp:hover {
    background-color: #1eb955;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.consultation-request-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
}

.form-field input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-field input:focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
    outline: none;
}

.form-agreement {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.form-agreement input {
    margin-right: 10px;
}

.form-agreement label {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
}

.form-agreement a {
    color: #4299e1;
    text-decoration: none;
}

.form-agreement a:hover {
    text-decoration: underline;
}

.form-captcha {
    margin: 20px 0;
}

.submit-button {
    width: 100%;
    background-color: #4299e1;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

.form-message.error {
    background-color: #fff5f5;
    color: #e53e3e;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .consultation-request-section {
        padding: 60px 0;
    }
    
    .consultation-request-title {
        font-size: 30px;
    }
    
    .consultation-request-subtitle {
        font-size: 16px;
    }
    
    .consultation-request-form {
        padding: 30px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .consultation-request-title {
        font-size: 26px;
    }
    
    .consultation-request-form {
        padding: 20px;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.reviews-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.review-image {
    height: 200px;
    overflow: hidden;
}

.review-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.review-card:hover .review-img {
    transform: scale(1.05);
}

.review-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.review-project {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.review-description {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-date {
    font-size: 14px;
    color: #718096;
    margin-top: auto;
}

.no-reviews {
    text-align: center;
    grid-column: 1 / -1;
    font-size: 18px;
    color: #4a5568;
    padding: 40px 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .review-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-title {
        font-size: 26px;
    }
}


.custom-reviews-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

.custom-reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.custom-review-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.custom-review-item:hover {
  transform: translateY(-5px);
}

.custom-review-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.custom-review-title {
  font-size: 1.2rem;
  margin: 15px 0 10px;
  color: #333;
}

.custom-review-description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
}

.custom-review-date {
  font-size: 0.85rem;
  color: #999;
}

@media (max-width: 768px) {
  .custom-reviews-container {
    grid-template-columns: 1fr;
  }
}

.custom-cases-section {
  padding: 50px 20px;
  background-color: #f5f7fa;
  font-family: Arial, sans-serif;
}

.custom-cases-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.custom-case-item {
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.custom-case-item:hover {
  transform: translateY(-7px);
}

.custom-case-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.custom-case-title {
  font-size: 1.4rem;
  margin: 20px;
  color: #222;
}

.custom-case-description {
  font-size: 1rem;
  color: #555;
  margin: 0 20px 10px 20px;
}

.custom-case-niche {
  font-size: 0.95rem;
  color: #444;
  margin: 0 20px 15px 20px;
}

.custom-case-results {
  font-size: 0.95rem;
  color: #333;
  background-color: #eef1f5;
  margin: 0 20px 20px 20px;
  padding: 10px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .custom-cases-container {
    grid-template-columns: 1fr;
  }
}

/* Основные стили блока "Обо мне" */
.seo-about-sect {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.seo-about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

/* Левый блок (изображение) */
.seo-about-left {
    flex: 1 1 300px;
}

.seo-about-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.seo-about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.seo-about-img:hover {
    transform: scale(1.02);
}

/* Правый блок (ФИО + описание) */
.seo-about-right {
    flex: 2 1 400px;
}

.seo-about-name {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
    font-weight: 700;
}

.seo-about-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

/* Блок с фактами */
.seo-about-facts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.seo-fact-item {
    text-align: center;
    flex: 1 1 150px;
}

.seo-fact-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #2c7be5;
    margin-bottom: 5px;
}

.seo-fact-text {
    font-size: 16px;
    color: #666;
}

/* Дополнительный текст */
.seo-about-additional-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .seo-about-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .seo-about-name {
        font-size: 28px;
    }
    
    .seo-about-facts {
        flex-direction: column;
        gap: 25px;
    }
    
    .seo-fact-item {
        flex: 1 1 auto;
    }
}

.seo-about-wrapper {
    background-color: #f5f7fa;
    width: 100%;
    padding: 60px 0; /* Отступы сверху и снизу */
}

/* Блок отзывов */
.seo-testimonials-section {
    background-color: #f5f7fa;
    padding: 80px 0;
    font-family: 'Arial', sans-serif;
}

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

.seo-testimonials-title {
    text-align: center;
    font-size: 36px;
    color: #222;
    margin-bottom: 10px;
}

.seo-testimonials-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

/* Сетка отзывов */
.seo-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Карточка отзыва */
.seo-testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.seo-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.seo-testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #e6f0ff;
}

.seo-testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seo-testimonial-project {
    font-size: 20px;
    color: #2c7be5;
    text-align: center;
    margin-bottom: 15px;
}

.seo-testimonial-description {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.seo-testimonial-date {
    font-size: 14px;
    color: #888;
    text-align: right;
    font-style: italic;
}

/* Адаптив для планшетов и мобильных */
@media (max-width: 992px) {
    .seo-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .seo-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .seo-testimonials-title {
        font-size: 28px;
    }

    .seo-testimonial-card {
        padding: 20px;
    }
}

/* Блок кейсов */
.seo-cases-section {
    background-color: #fff;
    padding: 80px 0;
    font-family: 'Arial', sans-serif;
    color: #333;
}

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

.seo-cases-header {
    text-align: center;
    margin-bottom: 50px;
}

.seo-cases-title {
    font-size: 36px;
    color: #222;
    margin-bottom: 10px;
}

.seo-cases-subtitle {
    font-size: 16px;
    color: #666;
}

/* Сетка кейсов */
.seo-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Карточка кейса */
.seo-case-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.seo-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.seo-case-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.seo-case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.seo-case-card:hover .seo-case-image {
    transform: scale(1.03);
}

.seo-case-content {
    padding: 25px;
}

.seo-case-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c7be5;
}

.seo-case-description {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.seo-case-results h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}

.seo-case-results-list {
    padding-left: 20px;
    margin: 0;
}

.seo-case-results-list li {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
    position: relative;
}

.seo-case-results-list li:before {
    content: "•";
    color: #2c7be5;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Адаптивность */
@media (max-width: 768px) {
    .seo-cases-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .seo-cases-title {
        font-size: 28px;
    }
    
    .seo-case-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .seo-cases-section {
        padding: 60px 0;
    }
    
    .seo-case-content {
        padding: 20px;
    }
}


/* ==================== */
/* HEADER BASE STYLES */
/* ==================== */
.sv-header {
  font-family: 'Arial', sans-serif;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1000;
  background: #fff;
}

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

/* ==================== */
/* TOP HEADER STYLES */
/* ==================== */
.sv-header-top {
  background-color: #f8faff;
  padding: 12px 0;
  font-size: 14px;
  color: #fff;
}

.sv-header-top-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.sv-header-top-right {
  display: flex;
  align-items: center;
}

.sv-contact-info {
  display: flex;
  gap: 20px;
}

.sv-contact-phone, 
.sv-contact-email {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sv-contact-phone:hover, 
.sv-contact-email:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.sv-contact-phone::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M20 15.5c-1.2 0-2.5-.2-3.6-.6-.3-.1-.7 0-1 .2l-2.2 2.2c-2.8-1.4-5.1-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.4-.5-3.6 0-.6-.4-1-1-1H4c-.6 0-1 .4-1 1 0 9.4 7.6 17 17 17 .6 0 1-.4 1-1v-3.5c0-.6-.4-1-1-1z"/></svg>') no-repeat center;
}

.sv-contact-email::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z"/></svg>') no-repeat center;
}

.sv-social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.sv-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.sv-social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.sv-social-icon svg {
  width: 16px;
  height: 16px;
}

.sv-audit-button {
  background-color: #ce1917;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sv-audit-button:hover {
  background-color: #ce1917;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* ==================== */
/* BOTTOM HEADER STYLES */
/* ==================== */
.sv-header-bottom {
  padding: 15px 0;
  background-color: #fff;
  position: relative;
}

.sv-logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.sv-logo-section:hover {
  opacity: 0.9;
}

.sv-logo img {
  max-height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.sv-logo-section:hover .sv-logo img {
  transform: scale(1.05);
}

.sv-site-info {
  display: flex;
  flex-direction: column;
}

.sv-site-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
}

.sv-site-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sv-site-title a:hover {
  color: #2c7be5;
}

.sv-site-description {
  margin: 3px 0 0;
  font-size: 13px;
  color: #666;
  font-weight: 400;
}

/* ==================== */
/* NAVIGATION STYLES */
/* ==================== */
.sv-main-navigation {
  position: relative;
}

.sv-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

.sv-menu > li {
  position: relative;
  padding: 15px 0;
}

.sv-menu > li > a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.sv-menu > li > a:hover {
  color: #2c7be5;
}

/* Подменю стили */
.sv-menu .sub-menu {
  list-style: none; /* Убирает маркеры списка */
  padding-left: 0; /* Убирает стандартный отступ слева */
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  z-index: 1000;
  padding: 10px 0;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sv-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li {
  padding: 0;
  transition: all 0.2s ease;
}

.sub-menu li a {
  display: block;
  padding: 10px 25px;
  color: #555 !important;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.sub-menu li a::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #2c7be5;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.sub-menu li:hover a {
  color: #2c7be5 !important;
  background-color: #f8fafd;
  padding-left: 30px;
}

.sub-menu li:hover a::before {
  opacity: 1;
  left: 18px;
}

/* Стрелка для пунктов с подменю */
.sv-menu > li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  margin-left: 8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  border-color: #666 transparent transparent transparent;
  transition: all 0.3s ease;
}

.sv-menu > li:hover > a::after {
  transform: rotate(180deg);
  border-top-color: #2c7be5;
}

/* ==================== */
/* BURGER MENU STYLES */
/* ==================== */
.sv-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
}

.sv-burger-line {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #333;
  margin: 5px auto;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sv-menu-toggle.active .sv-burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.sv-menu-toggle.active .sv-burger-line:nth-child(2) {
  opacity: 0;
}

.sv-menu-toggle.active .sv-burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==================== */
/* MOBILE MENU STYLES */
/* ==================== */
@media (max-width: 992px) {
  .sv-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 25px 30px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .sv-menu.active {
    right: 0;
  }

  .sv-menu > li {
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .sv-menu > li > a {
    padding: 15px 0;
    font-size: 16px;
  }

  .sv-menu .sub-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0;
    background: #f9f9f9;
    border: none;
    border-radius: 0;
    width: 100%;
  }
  
  .sv-menu li.active .sub-menu {
    max-height: 1000px;
    padding: 5px 0 10px;
  }
  
  .sub-menu li a {
    padding: 10px 15px 10px 35px !important;
  }
  
  .sv-menu > li.menu-item-has-children > a::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }
  
  .sv-menu > li.active > a::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .sv-menu-toggle {
    display: block;
  }

  body.sv-menu-open {
    overflow: hidden;
  }
}

/* ==================== */
/* RESPONSIVE ADJUSTMENTS */
/* ==================== */
@media (max-width: 768px) {
  .sv-header-top {
    padding: 15px 0;
  }
  
  .sv-container {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .sv-header-top-left,
  .sv-header-top-right {
    width: 100%;
    justify-content: center;
  }
  
  .sv-contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
  }
  
  .sv-site-title {
    font-size: 18px;
  }
  
  .sv-audit-button {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .sv-logo-section {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .sv-site-info {
    text-align: center;
  }
  
  .sv-menu {
    width: 90%;
    padding: 70px 20px 25px;
  }
  
  .sv-contact-info {
    flex-direction: column;
    gap: 8px;
  }
}

/* Уникальные стили для архива блога с префиксом blog- */
.blog-archive-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.blog-archive-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-archive-title {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.blog-archive-description {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.blog-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-post-thumbnail {
    height: 0;
    padding-bottom: 56.25%; /* 16:9 соотношение */
    position: relative;
    overflow: hidden;
}

.blog-post-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image {
    transform: scale(1.03);
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-title {
    font-size: 1.4rem;
    margin: 0 0 1rem 0;
    color: #2c3e50;
    line-height: 1.3;
}

.blog-post-excerpt {
    color: #7f8c8d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-post-date {
    display: block;
    font-size: 0.9rem;
    color: #95a5a6;
}

.blog-pagination {
    text-align: center;
    margin-top: 2rem;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-pagination .page-numbers li {
    margin: 0 5px;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    color: #3498db;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.blog-pagination a:hover {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
}

.blog-pagination .current {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
}

.blog-no-posts {
    text-align: center;
    grid-column: 1 / -1;
    font-size: 1.2rem;
    color: #7f8c8d;
    padding: 2rem;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-archive-title {
        font-size: 1.8rem;
    }
    
    .blog-post-content {
        padding: 1.2rem;
    }
    
    .blog-post-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .blog-archive-wrapper {
        padding: 1.5rem 0.8rem;
    }
    
    .blog-archive-title {
        font-size: 1.6rem;
    }
    
    .blog-post-excerpt {
        font-size: 0.95rem;
    }
    
    .blog-pagination a,
    .blog-pagination span {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

/* Уникальные стили для страницы записи с префиксом blog-single- */
.blog-single-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.blog-single-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Хлебные крошки */
.blog-single-breadcrumbs {
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.blog-single-breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-single-breadcrumbs li {
    margin-right: 10px;
    display: flex;
    align-items: center;
    color: #666;
}

.blog-single-breadcrumbs li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: #999;
}

.blog-single-breadcrumbs a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-single-breadcrumbs a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Заголовок записи */
.blog-single-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.blog-single-title {
    font-size: 2.2rem;
    margin: 0 0 10px 0;
    color: #222;
    font-weight: 700;
    line-height: 1.3;
}

/* Мета-данные */
.blog-single-meta {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #777;
}

.blog-single-date::before {
    content: '\f073';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
    font-size: 0.9em;
}

/* Основное содержимое */
.blog-single-article {
    font-size: 1.1rem;
    color: #444;
}

.blog-single-article p {
    margin-bottom: 1.5em;
}

.blog-single-article h2 {
    font-size: 1.6rem;
    margin: 2em 0 1em;
    color
}



/* Основные стили блока */
.wk-portfolio-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

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

.wk-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.wk-section-description {
    text-align: center;
    font-size: 18px;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Сетка карточек */
.wk-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Стили карточки */
.wk-portfolio-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wk-portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.wk-portfolio-image {
    height: 260px;
    overflow: hidden;
}

.wk-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wk-portfolio-card:hover .wk-img {
    transform: scale(1.03);
}

.wk-portfolio-content {
    padding: 25px;
}

.wk-portfolio-name {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 15px;
}

.wk-meta-container {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.wk-meta-item {
    display: flex;
    flex-direction: column;
}

.wk-meta-label {
    font-size: 13px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.wk-meta-value {
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
}

.wk-results-block {
    margin-bottom: 20px;
}

.wk-results-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.wk-results-text {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.wk-description-block p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 992px) {
    .wk-portfolio-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .wk-portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .wk-section-title {
        font-size: 30px;
    }
    
    .wk-meta-container {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .wk-portfolio-section {
        padding: 60px 0;
    }
    
    .wk-section-title {
        font-size: 26px;
    }
    
    .wk-portfolio-image {
        height: 220px;
    }
}

