.hero {
  position: relative;
  background: linear-gradient(to bottom, #145c37 0%, #198754 20%, #b2f7cc 50%, #eafcda 80%, #fff 100%);
  color: #fff;
  padding: 24px 0 10px;
  overflow: hidden;
  animation: heroFadeIn 1.2s cubic-bezier(.77,.2,.18,1) both;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 60% 40%, #b2f7cc33 0%, transparent 70%),
    linear-gradient(to bottom, transparent 70%, #fff 100%);
  z-index: 1;
  mask: 
    radial-gradient(circle at 50% 54%, transparent 200px, black 250px);
  -webkit-mask: 
    radial-gradient(circle at 50% 54%, transparent 200px, black 250px);
}

/* Декоративные белые кольца */
.hero-bg::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -180px;
  transform: translateX(-50%);
  width: 1200px;
  height: 1200px;
  pointer-events: none;
  background:
    repeating-radial-gradient(circle at 50% 60%,
      rgba(255,255,255,0.22) 0px,
      rgba(255,255,255,0.14) 1px,
      transparent 2px,
      transparent 120px),
    repeating-radial-gradient(circle at 50% 60%,
      rgba(255,255,255,0.13) 0px,
      rgba(255,255,255,0.07) 1px,
      transparent 2px,
      transparent 240px);
  border-radius: 50%;
  z-index: 2;
  opacity: 0.5;
  filter: blur(0.5px);
}

.hero-content {
  /* Блок над h1 */
  
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 0;
  margin-top: 40px;
}
.hero-topline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 5px 14px;
    background: rgba(255,255,255,0.10);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 1px 8px #19875422;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.01em;
    backdrop-filter: blur(1px);
    opacity: 0;
    animation: titleFadeIn 1.2s cubic-bezier(.77,.2,.18,1) 0.1s both;
  }
  .hero-topline img {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 1px 4px #19875444);
    margin-right: 4px;
  }
.hero-subtitle {
  text-align: center;
  font-size: 22px;
  color: #198754;
  margin-bottom: 24px;
}
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
}
.hero-image-block {
  position: relative;
  width: 820px;
  height: 600px;
  margin-bottom: 0;
  margin-top: -5px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 10;
  isolation: isolate;
  background: transparent;
}
.hero-image-block .image-card {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  z-index: 15;
  background: none;
  box-shadow: none;
  padding: 0;
}
.hero-image-block .image-card img {
  width: 600px;
  height: auto;
  display: block;
  opacity: 0;
  animation: imageFadeIn 1.4s cubic-bezier(.77,.2,.18,1) 0.5s both;
}

/* Блокируем градиенты в области изображения */
.hero-image-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: -1;
  pointer-events: none;
}

.hero-glow {
  position: relative;
}
.hero-glow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 520px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0px, transparent 80%);
  z-index: 1;
  filter: blur(24px);
  pointer-events: none;
}
.hero-info-block {
  position: absolute;
  width: 180px;
  min-height: 80px;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-radius: 18px;
  padding: 18px 16px;
  font-size: 16px;
  color: #198754;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: box-shadow 0.2s;
  animation: infoBlockFadeIn 1.1s cubic-bezier(.77,.2,.18,1) 0.3s both;

}
.hero-info-block img {
  width:28px;
  height:28px;
  margin-bottom:8px;
}

@media (max-width: 900px) {
  .hero-info-block img {
  width:20px;
  height:20px;
  margin-bottom:8px;
}
}
.hero-info-block:hover {
  box-shadow: 0 8px 32px #19875422;
  opacity: 1;
}

/* Адаптив */
@media (max-width: 900px) {
  .hero-title { font-size: 38px; }
  .hero-subtitle { font-size: 20px; }
  .hero-image-block { width: 440px; height: 440px; }
  .hero-image-block .image-card img { width: 340px; }
  .hero-info-block { width: 110px; font-size: 13px; padding: 10px 8px; }
  
  .hero-info-block1 { top: 5%;  }
  .hero-info-block2 { top: 20%; right: 5%; }
  .hero-info-block3 { bottom: 10%; right: 10%; }
  .hero-info-block4 { bottom: 10%; left: 10%; }
  .hero-info-block5 { top: 20%; left: 5%; }
}
@media (max-width: 600px) {
  .hero {
    padding: 40px 0 30px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero-image-block { width: 320px; height: 320px; }
  .image-card img {
    width: 280px;
  }
  .hero-info-block {
    width: 80px;
    min-height: 40px;
    font-size: 10px;
    padding: 6px 4px;
    border-radius: 10px;
  }
  .hero-info-block1 {
    width: 70px;
    min-height: 32px;
    font-size: 9px;
    padding: 4px 2px;
    border-radius: 8px;
    top: 2%; 
  }
  .hero-info-block2 { top: 15%; right: 2%; }
  .hero-info-block3 { bottom: 5%; right: 8%; }
  .hero-info-block4 { bottom: 5%; left: 8%; }
  .hero-info-block5 { top: 15%; left: 2%; }
}

.security-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  background-color: var(--third-color);
  color: var(--text-color);
  opacity: 0;
  transform: translateY(50px);
  animation: sectionFadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: cardFadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  color: #666; /* серый текст по умолчанию */
  line-height: 1.7;
  font-size: 16px;
}

.card:nth-child(1) {
  animation-delay: 0.6s;
}
.card:nth-child(2) {
  animation-delay: 0.8s;
}
.card:nth-child(3) {
  animation-delay: 1.0s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card h2 {
  color: var(--text-color); /* черный заголовок */
  margin-bottom: 14px;
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-semibold);
}

.card p {
  margin-bottom: 18px;
}


.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.features-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* ✨ Анимация появления */

.icon-box {
  width: 50px;
  height: 50px;
  background-color: var(--third-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-box img {
  width: 24px;
  height: 24px;
}


.stats-section {
  max-width: 1000px;
  margin: 60px auto;
  margin-top: 0;
  background-color: white;
  padding: 50px 30px;
  
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-size: 40px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #666; /* серый */
  font-weight: var(--font-weight-regular);
}

.greenbox {
    background-color: var(--third-color);
    padding-bottom: 30px;
}


.view-all-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: background-color var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.view-all-button:hover {
  background-color: #009e45; /* чуть темнее зелёного */
}
.consult-section {
  background-color: var(--third-color);
  padding: 50px 20px;
  margin-top: 60px;
  border-radius: 16px;
  text-align: center;
}

.consult-heading {
  font-size: 24px;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 16px;
  color: var(--text-color);
}

.consult-text {
  font-size: 16px;
  color: #555; /* серый */
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.consult-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: background-color var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  display: inline-block;
}

.consult-button:hover {
  background-color: #009e45;
  color: white;
  text-decoration: none;
}
.comparison-section {
  padding: 40px 20px;
  text-align: center;
  background: #fff;
margin-top: 40px;
}

.comparison-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.comparison-title span {
  color: var(--primary-color);
}

.comparison-subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 16px;
}

.table-scroll {
  overflow-x: auto;
  border-radius: 12px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #ddd;
  padding: 14px;
  font-size: 15px;
}

.comparison-table th {
  background-color: var(--third-color);
  font-weight: 600;
}

.comparison-table td {
  background: #fff;
}

.price {
  color: var(--primary-color);
  font-weight: 700;
}

.badge {
  display: inline-block;
  margin-top: 4px;
   background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 16px;
  display: flex;
  padding: 2px 8px;
  border-radius: 8px;
}

.buy-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.buy-btn:hover {
  background-color: #009e45;
}

.comparison-note {
  font-size: 13px;
  color: #888;
  margin-top: 20px;
  line-height: 1.5;
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .hero {
    background: linear-gradient(to bottom, #145c37 0%, #198754 20%, #b2f7cc 50%, #c5f2d1 80%, #e8f8ec 100%);
  }
  
  .comparison-table th,
  .comparison-table td {
    font-size: 14px;
    padding: 10px;
  }

  .comparison-title {
    font-size: 22px;
  }

  .comparison-subtitle {
    font-size: 14px;
  }
}
.comparison-table img {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}
.check-icon {
  filter: invert(55%) sepia(86%) saturate(489%) hue-rotate(92deg) brightness(95%) contrast(91%);
}

.cross-icon {
  filter: invert(32%) sepia(98%) saturate(7036%) hue-rotate(353deg) brightness(92%) contrast(97%);
}


.faq-section {
  padding: 60px 20px;
  background-color: #fff;
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.faq-title .highlight {
  color: var(--primary-color);
}

.faq-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
}

.faq-item {
  border-radius: 12px;
  background-color: #f9f9f9;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  padding: 20px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(0,0,0,0.02);
  border-radius: 0 0 12px 12px;
}

.faq-answer-inner {
  padding: 20px;
  color: #666;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  max-height: 1000px !important; /* Увеличил и добавил !important */
}


.faq-footer {
  background-color: var(--third-color);
  margin-top: 50px;
  padding: 40px 20px;
  text-align: center;
  border-radius: 16px;
}

.faq-footer h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-footer p {
  color: #555;
  margin-bottom: 20px;
}

.faq-buttons a {
  display: inline-block;
  padding: 12px 20px;
  margin: 8px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.faq-call {
  background-color: var(--primary-color);
  color: white;
}

.faq-whatsapp {
  border: 2px var(--primary-color) solid;
  color: var(--primary-color);
}


.consultation-section {
  background-color: var(--third-color);
  padding: 60px 20px;
}

.consultation-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.consultation-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.consultation-subtitle {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 20px;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.icon-box {
  background-color: var(--third-color);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box img {
  width: 24px;
  height: 24px;
}

.contact-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-text {
  color: #666;
  font-size: 15px;
}


.contact-text div {
  line-height: 1.4;
}


.footer-main-container {
            background: rgb(17 24 39);
            color: var(--secondary-color);
            padding: 50px 0 20px;
        }

        .footer-content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-grid-layout {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand-section {
            grid-column: 1 / 2;
        }

        .footer-brand-title {
            font-size: 28px;
            font-weight: var(--font-weight-bold);
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .footer-brand-description {
            font-size: var(--font-size-base);
            color: var(--light-text-color);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-social-links {
            display: flex;
            gap: 12px;
        }

        .footer-social-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition-fast);
        }

        .footer-social-icon:hover {
            background: #00a045;
            transform: translateY(-2px);
        }

        .footer-services-section {
            grid-column: 2 / 3;
        }

        .footer-section-title {
            font-size: var(--font-size-large);
            font-weight: var(--font-weight-semibold);
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .footer-services-list {
            list-style: none;
        }

        .footer-services-item {
            margin-bottom: 12px;
        }

        .footer-services-link {
            color: var(--light-text-color);
            text-decoration: none;
            font-size: var(--font-size-base);
            transition: var(--transition-fast);
        }

        .footer-services-link:hover {
            color: var(--primary-color);
        }

        .footer-products-section {
            grid-column: 3 / 4;
        }

        .footer-products-list {
            list-style: none;
        }

        .footer-products-item {
            margin-bottom: 12px;
        }

        .footer-products-link {
            color: var(--light-text-color);
            text-decoration: none;
            font-size: var(--font-size-base);
            transition: var(--transition-fast);
        }

        .footer-products-link:hover {
            color: var(--primary-color);
        }

        .footer-contact-section {
            grid-column: 4 / 5;
        }

        .footer-contact-list {
            list-style: none;
        }

        .footer-contact-item {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .footer-contact-icon {
            width: 20px;
            height: 20px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .footer-contact-content {
            flex: 1;
        }

        .footer-contact-primary {
            color: var(--secondary-color);
            font-weight: var(--font-weight-medium);
            margin-bottom: 4px;
        }

        .footer-contact-secondary {
            color: var(--light-text-color);
            font-size: var(--font-size-badge);
        }

        .footer-bottom-section {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright-text {
            color: var(--light-text-color);
            font-size: var(--font-size-badge);
        }

        .footer-legal-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-legal-link {
            color: var(--light-text-color);
            text-decoration: none;
            font-size: var(--font-size-badge);
            transition: var(--transition-fast);
        }

        .footer-legal-link:hover {
            color: var(--primary-color);
        }

        @media (max-width: 1024px) {
            .footer-grid-layout {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .footer-brand-section {
                grid-column: 1 / 2;
            }

            .footer-services-section {
                grid-column: 2 / 3;
            }

            .footer-products-section {
                grid-column: 1 / 2;
            }

            .footer-contact-section {
                grid-column: 2 / 3;
            }
        }

        @media (max-width: 768px) {
            .footer-grid-layout {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-brand-section,
            .footer-services-section,
            .footer-products-section,
            .footer-contact-section {
                grid-column: 1 / 2;
            }

            .footer-bottom-section {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal-links {
                justify-content: center;
            }
        }

.hero-image-block .image-card {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  z-index: 15;
  background: none;
  box-shadow: none;
  padding: 0;
}

.hero-glow {
  position: relative;
}
.hero-glow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 520px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0px, transparent 80%);
  z-index: 1;
  filter: blur(24px);
  pointer-events: none;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.1;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  animation: titleFadeIn 1.2s cubic-bezier(.77,.2,.18,1) 0.2s both;
}
.hero-subtitle {
  text-align: center;
  color: #b2f7cc;
  margin-bottom: 40px;
  opacity: 0;
  animation: titleFadeIn 1.2s cubic-bezier(.77,.2,.18,1) 0.4s both;
}
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 48px;
  opacity: 0;
  animation: titleFadeIn 1.2s cubic-bezier(.77,.2,.18,1) 0.6s both;
}
.cta {
  background: #fff;
  color: #198754;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 8px #19875433;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cta:hover {
  background: #198754;
  color: #fff;
  text-decoration: none;
}

.hero-info-block1 { 
  top: -3%;  transform: translate(-50%, -50%); 
  animation-delay: 0.8s;
}
.hero-info-block2 { 
  top: 25%; right: 8%; transform: translate(50%, -50%); 
  animation-delay: 1.0s;
}
.hero-info-block3 { 
  bottom: 15%; right: 15%; transform: translate(50%, 50%); 
  animation-delay: 1.2s;
}
.hero-info-block4 { 
  bottom: 15%; left: 15%; transform: translate(-50%, 50%); 
  animation-delay: 1.4s;
}
.hero-info-block5 { 
  top: 25%; left: 8%; transform: translate(-50%, -50%); 
  animation-delay: 1.6s;
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes titleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }
  60% {
    opacity: 0.9;
    transform: scale(1.05) translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes infoBlockFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.7) translateY(30px);
    filter: blur(8px);
  }
  60% {
    opacity: 1;
    transform: scale(1.05) translateY(-6px);
    filter: blur(0.5px);
  }
  100% {
    opacity: 0.95;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes sectionFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-8px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* SEO Content Section - Скрытый для пользователей */
.seo-content {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Компактный SEO footer */
.seo-content-footer {
  background: #f8f9fa;
  padding: 15px 0;
  font-size: 12px;
  color: #6c757d;
  text-align: center;
  border-top: 1px solid #e9ecef;
  margin-top: 40px;
}

.seo-content-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.seo-content-footer p {
  margin: 0;
  line-height: 1.4;
}

.seo-content-footer strong {
  color: #495057;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .seo-content-footer {
    padding: 12px 0;
    font-size: 11px;
  }
}

.seo-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: #495057;
}

.seo-text h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.seo-text h4 {
  color: #2c3e50;
  font-size: 1.2rem;
  margin: 30px 0 15px 0;
}

.seo-text p {
  margin-bottom: 20px;
  text-align: justify;
}

.seo-list {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.seo-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.seo-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.seo-keywords {
  margin-top: 40px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  border-left: 4px solid #007bff;
  text-align: center;
}

.seo-keywords small {
  color: #6c757d;
  line-height: 1.5;
}

/* Mobile responsiveness for SEO section */
@media (max-width: 768px) {
  .hero-glow::after {
  background: none;
}
  .seo-content {
    padding: 40px 0;
  }
  
  .seo-text {
    padding: 0 20px;
  }
  
  .seo-text h3 {
    font-size: 1.3rem;
  }
  
  .seo-text h4 {
    font-size: 1.1rem;
  }
  
  .seo-keywords {
    padding: 15px;
    margin-top: 30px;
  }
}

