/* ============================================
   Wantedly-style Decorative Elements
   ============================================ */

/* --- Hero Section: Large colored circles --- */
.p-impression {
  position: relative;
  overflow: hidden;
}

/* Big red/coral circle - top right */
.p-impression::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: clamp(200px, 25vw, 360px);
  height: clamp(200px, 25vw, 360px);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #e8524a 0%, #c0392b 100%);
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
}

/* Small green accent circle - bottom right */
.p-impression::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: clamp(60px, 8vw, 120px);
  height: clamp(60px, 8vw, 120px);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #8ed16e 0%, #6c8954 100%);
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

/* --- Who We Are section: decorative dot --- */
.p-front-who {
  position: relative;
}
.p-front-who::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 5%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e8524a;
  opacity: 0.15;
  pointer-events: none;
}

/* --- Service section: ring decoration --- */
.p-front-service {
  position: relative;
}
.p-front-service::before {
  content: '';
  position: absolute;
  top: 40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid rgba(108, 137, 84, 0.15);
  pointer-events: none;
  z-index: 0;
}
.p-front-service::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(232, 82, 74, 0.08);
  pointer-events: none;
  z-index: 0;
}

/* --- Section headers: colored dot before "en" text --- */
.l-section-header__en::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6c8954;
  margin-right: 10px;
  vertical-align: middle;
}

/* --- Achievements section: large faint ring --- */
.p-front-achievements {
  position: relative;
}
.p-front-achievements::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(232, 82, 74, 0.1);
  pointer-events: none;
  z-index: 0;
}

/* --- Number Counter: colored accents --- */
.p-number-counter {
  position: relative;
  overflow: hidden;
}
.p-number-counter::before {
  content: '';
  position: absolute;
  top: -30px;
  right: 10%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(232, 82, 74, 0.06);
  pointer-events: none;
}
.p-number-counter::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 15%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(108, 137, 84, 0.08);
  pointer-events: none;
}

/* --- FAQ section: subtle ring --- */
.p-front-faq {
  position: relative;
}
.p-front-faq::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(108, 137, 84, 0.08);
  pointer-events: none;
}

/* --- CTA Banner: floating accent dots --- */
.p-cta-banner {
  position: relative;
  overflow: hidden;
}
.p-cta-banner::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 8%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}
.p-cta-banner::after {
  content: '';
  position: absolute;
  bottom: 30px;
  right: 12%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

/* --- News item hover accent --- */
.p-news-item {
  position: relative;
}
.p-news-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: #6c8954;
  border-radius: 2px;
  transition: height 0.3s ease;
}
.p-news-item:hover::before {
  height: 60%;
}

/* --- Mobile adjustments --- */
@media (max-width: 767px) {
  .p-impression::before {
    top: -40px;
    right: -60px;
    width: 160px;
    height: 160px;
    opacity: 0.7;
  }
  .p-impression::after {
    bottom: 10%;
    right: 5%;
    width: 50px;
    height: 50px;
  }
  .p-front-service::before {
    display: none;
  }
  .p-front-achievements::before {
    width: 160px;
    height: 160px;
    top: -40px;
    left: -60px;
  }
}
