@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
 background: linear-gradient(180deg, #0d3816 0%, #1f4e22 35%, #29592a 100%);

  color: #000;
}


.header-bugs2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 14px 26px;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);

  
}

.header-bugs2__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-bugs2__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.header-bugs2__logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  padding: 3px;
  box-shadow: 0 0 12px rgba(255,255,255,0.3);
}

.header-bugs2__nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
}

.header-bugs2__nav a {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  color: #000;
  font-size: 16px;
  transition: color .3s ease;
}

.header-bugs2__nav a::before {
  content: "•";
  position: absolute;
  left: -12px;
  top: 0;
  color: #9aff7c;
  opacity: 0;
  transition: opacity .3s ease;
}

.header-bugs2__nav a:hover::before,
.header-bugs2__nav a.active::before {
  opacity: 1;
}

.header-bugs2__nav a:hover {
  color: #d5ffb4;
}

.header-bugs2__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 100;
}

.header-bugs2__burger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

/* Mobile nav */
@media (max-width: 900px) {
  .header-bugs2__burger {
    display: flex;
  }

  .header-bugs2__nav {
    position: fixed;
    inset: 0;
    background: rgba(12, 40, 9, 0.96);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform .4s ease;
  }

  .header-bugs2__nav.active {
    transform: translateY(0);
  }

  .header-bugs2__nav ul {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .header-bugs2__nav a {
    font-size: 20px;
  }

  /* burger animation */
  .header-bugs2__burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .header-bugs2__burger.active span:nth-child(2) {
    opacity: 0;
  }
  .header-bugs2__burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
.hero-bugs2--new {
  position: relative;
  width: 100%;
  min-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #d6ffd8 0%, #c3f7c4 30%, #92e397 100%);
}

/* Мягкий фон с “солнечным” бликом и листьями */
.hero-bugs2__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bugs2__sun {
  position: absolute;
  top: -80px;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,200,0.7) 0%, transparent 70%);
  transform: translateX(-50%);
  filter: blur(60px);
  animation: sunMove 10s ease-in-out infinite alternate;
}

.hero-bugs2__leaves::before,
.hero-bugs2__leaves::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('/assets/img/leaves-overlay.webp');
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
  mix-blend-mode: multiply;
  animation: sway 9s ease-in-out infinite alternate;
}

/* Контент */
.hero-bugs2__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  padding: 100px 40px 60px;
  gap: 60px;
}

.hero-bugs2__text {
  flex: 1;
  color: #153e18;
}

.hero-bugs2__text h1 {
  font-size: 54px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-bugs2__text p {
  font-size: 20px;
  color: #1f5120;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-bugs2__btn {
  display: inline-block;
  background: linear-gradient(90deg, #63d471, #ffd86f);
  color: #1a1a1a;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 44px;
  border-radius: 50px;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: transform .3s ease, box-shadow .3s ease;
}

.hero-bugs2__btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

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

.hero-bugs2__visual img {
  max-width: 420px;
  width: 100%;
  height: auto;
  animation: floatBug 5s ease-in-out infinite alternate;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* Анимации */
@keyframes floatBug {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes sway {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-5px) rotate(-1deg); }
}

@keyframes sunMove {
  0% { transform: translateX(-50%) scale(1); }
  100% { transform: translateX(-45%) scale(1.05); }
}

/* Адаптив */
@media (max-width: 900px) {
  .hero-bugs2__inner {
    flex-direction: column;
    text-align: center;
    padding: 100px 20px 60px;
    gap: 40px;
  }

  .hero-bugs2__text h1 {
    font-size: 36px;
  }

  .hero-bugs2__text p {
    font-size: 17px;
  }

  .hero-bugs2__visual img {
    max-width: 320px;
  }
}
.world-bugs2 {
  padding: 120px 20px;
  background: linear-gradient(180deg, #f7fff7 0%, #eaffea 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.world-bugs2__inner {
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.world-bugs2 h2 {
  font-size: 40px;
  color: #1f4e22;
  margin-bottom: 16px;
}

.world-bugs2__intro {
  color: #325835;
  font-size: 18px;
  max-width: 750px;
  margin: 0 auto 70px;
  line-height: 1.6;
}

.world-bugs2__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.world-bugs2__card {
  background: var(--color);
  border-radius: 24px;
  padding: 40px 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform .3s ease, box-shadow .3s ease;
  color: #163b17;
}

.world-bugs2__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.1);
}

.world-bugs2__icon {
  font-size: 50px;
  margin-bottom: 14px;
}

.world-bugs2__card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #204e23;
}

.world-bugs2__card p {
  font-size: 16px;
  color: #2e512a;
  line-height: 1.5;
}

/* Анимация лёгких частиц на фоне */
.world-bugs2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 40%, rgba(255,255,255,0.3) 0%, transparent 60%),
              radial-gradient(circle at 80% 60%, rgba(255,255,255,0.2) 0%, transparent 70%);
  opacity: 0.4;
  animation: floatLight 10s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes floatLight {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-20px) scale(1.05); }
}

/* Адаптив */
@media (max-width: 1000px) {
  .world-bugs2__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .world-bugs2__grid {
    grid-template-columns: 1fr;
  }

  .world-bugs2 h2 {
    font-size: 32px;
  }

  .world-bugs2__intro {
    font-size: 16px;
  }
}
.naturestory-bugs2 {
  padding: 140px 20px;
  background: radial-gradient(circle at 30% 20%, #c9f8c9, #eaffea 70%);
  position: relative;
  overflow: hidden;
}

.naturestory-bugs2__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  color: #1f401f;
  position: relative;
  z-index: 2;
}

.naturestory-bugs2 h2 {
  text-align: center;
  font-size: 42px;
  color: #153a17;
  margin-bottom: 60px;
}

.naturestory-bugs2__text p {
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 28px;
  color: #214e21;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}

.naturestory-bugs2__text b {
  color: #0f3a12;
}

.naturestory-bugs2__highlight {
  text-align: center;
  background: linear-gradient(90deg, #63d471, #ffd86f);
  border-radius: 60px;
  padding: 18px 30px;
  font-weight: 700;
  color: #163d17;
  font-size: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  margin-top: 60px;
  display: inline-block;
  width: 100%;
  text-shadow: none;
}

/* Движение света на фоне */
.naturestory-bugs2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 80%, rgba(255,255,255,0.4) 0%, transparent 60%),
              radial-gradient(circle at 90% 20%, rgba(255,255,255,0.3) 0%, transparent 70%);
  animation: natureLight 8s ease-in-out infinite alternate;
  z-index: 1;
  opacity: 0.6;
}

@keyframes natureLight {
  0% { transform: translateY(0); opacity: 0.5; }
  100% { transform: translateY(-20px); opacity: 0.8; }
}

@media (max-width: 900px) {
  .naturestory-bugs2 h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .naturestory-bugs2__text p {
    font-size: 17px;
  }
  .naturestory-bugs2__highlight {
    font-size: 18px;
    padding: 14px 20px;
  }
}
.reviews-bugs2 {
  padding: 130px 20px;
  background: linear-gradient(180deg, #f7fff7 0%, #eaffea 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reviews-bugs2__inner {
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.reviews-bugs2 h2 {
  font-size: 40px;
  color: #184b1a;
  margin-bottom: 18px;
}

.reviews-bugs2__intro {
  color: #2e512a;
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 70px;
  line-height: 1.6;
}

.reviews-bugs2__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.reviews-bugs2__card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  padding: 34px 26px;
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}

.reviews-bugs2__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 26px rgba(0,0,0,0.1);
}

.reviews-bugs2__user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.reviews-bugs2__avatar {
  font-size: 32px;
  background: #e6f8e6;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.reviews-bugs2__name {
  font-weight: 700;
  color: #1f401f;
  font-size: 17px;
}

.reviews-bugs2__text {
  color: #305730;
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
}

/* Светящиеся частицы фона */
.reviews-bugs2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.3), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(255,255,255,0.2), transparent 70%);
  animation: floatGlow 10s ease-in-out infinite alternate;
  opacity: 0.6;
  z-index: 1;
}

@keyframes floatGlow {
  0% { transform: translateY(0); opacity: 0.4; }
  100% { transform: translateY(-20px); opacity: 0.8; }
}

/* Адаптив */
@media (max-width: 900px) {
  .reviews-bugs2__grid {
    grid-template-columns: 1fr;
  }

  .reviews-bugs2 h2 {
    font-size: 32px;
  }

  .reviews-bugs2__intro {
    font-size: 16px;
  }
}
.reviewsimage-bugs2 {
  background: linear-gradient(180deg, #eaffea 0%, #f7fff7 100%);
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.reviewsimage-bugs2__inner {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.reviewsimage-bugs2__content {
  flex: 1;
  min-width: 320px;
  color: #1f401f;
}

.reviewsimage-bugs2__content h2 {
  font-size: 40px;
  margin-bottom: 18px;
  color: #153a17;
}

.reviewsimage-bugs2__content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 36px;
  color: #295529;
}

.reviewsimage-bugs2__quotes {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.reviewsimage-bugs2__quotes blockquote {
  background: #fff;
  border-radius: 20px;
  padding: 22px 26px;
  font-style: italic;
  color: #234c23;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transition: transform .3s ease, box-shadow .3s ease;
}

.reviewsimage-bugs2__quotes blockquote:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}

.reviewsimage-bugs2__quotes span {
  display: block;
  margin-top: 8px;
  font-weight: 700;
  color: #1f401f;
  font-style: normal;
}

.reviewsimage-bugs2__btn {
  display: inline-block;
  background: linear-gradient(90deg, #63d471, #ffd86f);
  color: #1a1a1a;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 44px;
  border-radius: 50px;
  font-size: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
  transition: transform .3s ease, box-shadow .3s ease;
}

.reviewsimage-bugs2__btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}

/* Визуал */
.reviewsimage-bugs2__visual {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.reviewsimage-bugs2__visual img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  animation: floatVisual 6s ease-in-out infinite alternate;
}

@keyframes floatVisual {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* Адаптив */
@media (max-width: 950px) {
  .reviewsimage-bugs2__inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .reviewsimage-bugs2__content h2 {
    font-size: 32px;
  }

  .reviewsimage-bugs2__visual img {
    max-width: 360px;
    margin-bottom: 40px;
  }
}
.faq-bugs2 {
  background: linear-gradient(180deg, #f7fff7 0%, #eaffea 100%);
  padding: 130px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-bugs2__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-bugs2 h2 {
  font-size: 40px;
  color: #184b1a;
  margin-bottom: 16px;
}

.faq-bugs2__intro {
  color: #2e512a;
  font-size: 18px;
  margin-bottom: 60px;
  line-height: 1.6;
}

.faq-bugs2__list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-bugs2__item {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.faq-bugs2__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.faq-bugs2__question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 700;
  color: #184b1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .3s ease;
}

.faq-bugs2__question::after {
  content: "＋";
  font-size: 20px;
  color: #184b1a;
  transition: transform .3s ease;
}

.faq-bugs2__item.active .faq-bugs2__question::after {
  transform: rotate(45deg);
}

.faq-bugs2__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .4s ease;
  opacity: 0;
  padding: 0 24px;
}

.faq-bugs2__item.active .faq-bugs2__answer {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 20px;
}

.faq-bugs2__answer p {
  font-size: 16px;
  color: #295529;
  line-height: 1.6;
}

.faq-bugs2__answer a {
  color: #184b1a;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #63d471;
}

@media (max-width: 700px) {
  .faq-bugs2 h2 {
    font-size: 32px;
  }

  .faq-bugs2__intro {
    font-size: 16px;
  }

  .faq-bugs2__question {
    font-size: 17px;
  }
}
.footer-bugs2 {
  background: linear-gradient(90deg, #63d471, #ffd86f);
  color: #1f401f;
  padding: 80px 20px 30px;
  position: relative;
  overflow: hidden;
}

.footer-bugs2__inner {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-bugs2__brand {
  flex: 1;
  min-width: 260px;
}

.footer-bugs2__brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  margin-bottom: 10px;
}

.footer-bugs2__brand span {
  display: block;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 6px;
}

.footer-bugs2__brand p {
  font-size: 16px;
  color: #1f401f;
}

.footer-bugs2__nav ul,
.footer-bugs2__legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bugs2__nav a,
.footer-bugs2__legal a {
  text-decoration: none;
  color: #1f401f;
  font-weight: 600;
  font-size: 16px;
  transition: opacity .3s ease;
}

.footer-bugs2__nav a:hover,
.footer-bugs2__legal a:hover {
  opacity: 0.7;
}

.footer-bugs2__bottom {
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 24px;
  margin-top: 50px;
}

.footer-bugs2__bottom p {
  font-size: 15px;
  color: #214e21;
}


@keyframes bugsLight {
  0% { opacity: 0.4; transform: translateY(0); }
  100% { opacity: 0.8; transform: translateY(-10px); }
}

/* Адаптив */
@media (max-width: 900px) {
  .footer-bugs2__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 40px;
  }

  .footer-bugs2__nav ul,
  .footer-bugs2__legal ul {
    align-items: center;
  }
}
.worldtext-bugs2 {
  background: #f7fff7;
  color: #1f401f;
  font-size: 18px;
  line-height: 1.7;
}

.worldtext-bugs2__intro {
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.worldtext-bugs2__intro h1 {
  font-size: 48px;
  color: #153a17;
  margin-bottom: 20px;
}

.worldtext-bugs2__intro p {
  color: #295529;
}

.worldtext-bugs2__zone {
  padding: 100px 20px;
  background: var(--bg);
  transition: background 0.5s ease;
}

.worldtext-bugs2__zone h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
  color: #153a17;
}

.worldtext-bugs2__zone p {
  max-width: 800px;
  margin: 0 auto 16px;
  color: #1f401f;
  text-align: center;
}

/* Эффект "дышащего" фона */
.worldtext-bugs2__zone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 70%);
  animation: breathe 8s ease-in-out infinite alternate;
  opacity: 0.6;
}

@keyframes breathe {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 0.7; transform: scale(1.05); }
}

.worldtext-bugs2__outro {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(90deg, #63d471, #ffd86f);
  color: #153a17;
}

.worldtext-bugs2__outro h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.worldtext-bugs2__outro p {
  font-size: 18px;
  margin-bottom: 40px;
}

.worldtext-bugs2__btn {
  display: inline-block;
  background: #fff;
  color: #1a1a1a;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 44px;
  border-radius: 50px;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform .3s ease, box-shadow .3s ease;
}

.worldtext-bugs2__btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}

/* Адаптив */
@media (max-width: 900px) {
  .worldtext-bugs2__intro h1 {
    font-size: 36px;
  }

  .worldtext-bugs2__zone h2 {
    font-size: 28px;
  }

  .worldtext-bugs2__outro h2 {
    font-size: 32px;
  }
}
.speciespage-bugs2 {
  background: #f7fff7;
  color: #1f401f;
  font-size: 18px;
  line-height: 1.7;
}

.speciespage-bugs2__intro {
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.speciespage-bugs2__intro h1 {
  font-size: 48px;
  color: #153a17;
  margin-bottom: 20px;
}

.speciespage-bugs2__intro p {
  color: #295529;
}

/* Сетка карточек */
.speciespage-bugs2__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px 100px;
  max-width: 1100px;
  margin: 0 auto;
}

.speciespage-bugs2__card {
  background: var(--color);
  border-radius: 22px;
  padding: 40px 26px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.speciespage-bugs2__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}

.speciespage-bugs2__emoji {
  font-size: 46px;
  margin-bottom: 12px;
}

.speciespage-bugs2__card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #153a17;
}

.speciespage-bugs2__card p {
  color: #2a4f2a;
  font-size: 16px;
}

/* Финальный блок */
.speciespage-bugs2__outro {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(90deg, #63d471, #ffd86f);
  color: #153a17;
}

.speciespage-bugs2__outro h2 {
  font-size: 38px;
  margin-bottom: 18px;
}

.speciespage-bugs2__outro p {
  font-size: 18px;
  margin-bottom: 30px;
}

.speciespage-bugs2__btn {
  display: inline-block;
  background: #fff;
  color: #1a1a1a;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 44px;
  border-radius: 50px;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform .3s ease, box-shadow .3s ease;
}

.speciespage-bugs2__btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}

/* Эффект живого света */
.speciespage-bugs2__grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.3), transparent 70%);
  animation: floatLight 9s ease-in-out infinite alternate;
  opacity: 0.5;
  z-index: 0;
}

@keyframes floatLight {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 0.8; transform: scale(1.05); }
}

/* Адаптив */
@media (max-width: 900px) {
  .speciespage-bugs2__intro h1 {
    font-size: 36px;
  }

  .speciespage-bugs2__card h2 {
    font-size: 20px;
  }

  .speciespage-bugs2__outro h2 {
    font-size: 30px;
  }
}
.tips-bugs2 {
  background: #f7fff7;
  color: #1f401f;
  font-size: 18px;
  line-height: 1.7;
}

.tips-bugs2__intro {
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.tips-bugs2__intro h1 {
  font-size: 48px;
  color: #153a17;
  margin-bottom: 20px;
}

.tips-bugs2__intro p {
  color: #295529;
}

/* Список советов */
.tips-bugs2__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 100px;
}

.tips-bugs2__item {
  background: var(--bg);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}

.tips-bugs2__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.1);
}

.tips-bugs2__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 70%);
  animation: tipsGlow 8s ease-in-out infinite alternate;
  opacity: 0.4;
  pointer-events: none;
}

@keyframes tipsGlow {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.6; transform: scale(1.05); }
}

.tips-bugs2__item h2 {
  font-size: 24px;
  margin-bottom: 14px;
  color: #153a17;
}

.tips-bugs2__item p {
  font-size: 17px;
  color: #2a4f2a;
}

/* CTA */
.tips-bugs2__cta {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(90deg, #63d471, #ffd86f);
  color: #153a17;
}

.tips-bugs2__cta h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.tips-bugs2__cta p {
  font-size: 18px;
  margin-bottom: 30px;
}

.tips-bugs2__btn {
  display: inline-block;
  background: #fff;
  color: #1a1a1a;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 44px;
  border-radius: 50px;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform .3s ease, box-shadow .3s ease;
}

.tips-bugs2__btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}

/* Адаптив */
@media (max-width: 900px) {
  .tips-bugs2__intro h1 {
    font-size: 36px;
  }

  .tips-bugs2__item h2 {
    font-size: 20px;
  }

  .tips-bugs2__cta h2 {
    font-size: 30px;
  }
}
.download-bugs2 {
  background: linear-gradient(180deg, #f7fff7 0%, #eaffea 100%);
  color: #1f401f;
  font-size: 18px;
  line-height: 1.7;
  padding-bottom: 100px;
}

.download-bugs2__intro {
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.download-bugs2__intro h1 {
  font-size: 48px;
  color: #153a17;
  margin-bottom: 20px;
}

.download-bugs2__intro p {
  color: #295529;
}

/* Форма + инфо */
.download-bugs2__form-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.download-bugs2__form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.download-bugs2__form label {
  font-weight: 700;
  color: #153a17;
}

.download-bugs2__form input {
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid #c7ebc7;
  font-size: 16px;
  outline: none;
  transition: border-color .3s ease;
}

.download-bugs2__form input:focus {
  border-color: #63d471;
}

.download-bugs2__form button {
  background: linear-gradient(90deg, #63d471, #ffd86f);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 17px;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  cursor: pointer;
  align-self: flex-start;
  transition: transform .3s ease, box-shadow .3s ease;
}

.download-bugs2__form button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Info text */
.download-bugs2__info {
  flex: 1;
  min-width: 320px;
}

.download-bugs2__info h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #153a17;
}

.download-bugs2__info p {
  font-size: 17px;
  margin-bottom: 20px;
  color: #295529;
}

.download-bugs2__info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.download-bugs2__info li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #1f401f;
}

/* Pop-up */
.download-bugs2__popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.download-bugs2__popup.active {
  display: flex;
}

.download-bugs2__popup-content {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.2);
  animation: popupFade 0.4s ease;
}

@keyframes popupFade {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.download-bugs2__popup-content p {
  font-size: 18px;
  color: #1f401f;
  margin-bottom: 20px;
}

.download-bugs2__popup-content button {
  background: linear-gradient(90deg, #63d471, #ffd86f);
  border: none;
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .3s ease;
}

.download-bugs2__popup-content button:hover {
  transform: scale(1.05);
}

/* Адаптив */
@media (max-width: 900px) {
  .download-bugs2__intro h1 {
    font-size: 36px;
  }

  .download-bugs2__form-section {
    flex-direction: column;
    gap: 40px;
  }

  .download-bugs2__form button {
    align-self: center;
  }

  .download-bugs2__info h2 {
    text-align: center;
  }
}
.privacy-bugs2 {
  background: #f7fff7;
  color: #1f401f;
  font-size: 17px;
  line-height: 1.7;
  padding-bottom: 100px;
}

.privacy-bugs2__intro {
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-bugs2__intro h1 {
  font-size: 48px;
  color: #153a17;
  margin-bottom: 20px;
}

.privacy-bugs2__intro p {
  color: #295529;
}

.privacy-bugs2__content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-bugs2__content h2 {
  font-size: 26px;
  color: #153a17;
  margin-top: 50px;
  margin-bottom: 14px;
}

.privacy-bugs2__content p {
  color: #2a4f2a;
  margin-bottom: 14px;
}

.privacy-bugs2__content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy-bugs2__content li {
  background: #eaffea;
  padding: 10px 16px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.privacy-bugs2__content a {
  color: #184b1a;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #63d471;
}

.privacy-bugs2__update {
  margin-top: 40px;
  text-align: right;
  font-size: 15px;
  color: #2a4f2a;
  font-style: italic;
}

/* Адаптив */
@media (max-width: 900px) {
  .privacy-bugs2__intro h1 {
    font-size: 36px;
  }

  .privacy-bugs2__content h2 {
    font-size: 22px;
  }

  .privacy-bugs2__content li {
    font-size: 15px;
  }
}
