

.scroll-reveal-section {
  position: relative;
  min-height: 100vh;
  padding: 8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  isolation: isolate;
}

.lazy-placeholder {
  min-height: 200px;
  background: rgba(15, 20, 42, 0.85);
  border-radius: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.fragment {
  position: relative;
  overflow: visible;
  width: 100%;
}

.benefit-card, 
.service-card {
  background: rgba(15, 23, 42, 0.92);
  border-radius: 0;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.benefit-card h3,
.service-card h3,
.service-card .title {
  color: var(--c-green-light);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.benefit-card p,
.service-card p {
  color: var(--c-text-muted);
  line-height: 1.8;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.benefit-card svg,
.service-card svg {
  transition: transform 0.3s ease;
}

.benefit-card:hover svg, 
.service-card:hover svg {
  transform: scale(1.1) rotate(5deg);
}

.benefit-card span.tag,
.service-card span {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1)) !important;
  color: var(--c-green-light) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 0;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  border: none !important;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.benefit-card span.tag:hover,
.service-card span:hover {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(34, 197, 94, 0.15)) !important;
  transform: translateY(-2px);
}

.section-title {
  color: var(--c-green-light) !important;
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
  font-weight: 700 !important;
  margin-bottom: 3rem !important;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(34, 197, 94, 0.2);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg,
    transparent,
    var(--c-green),
    transparent);
  border-radius: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .services-grid {
    gap: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-card,
  .service-card,
  .cta-button {
    transition: none !important;
    animation: none !important;
  }
  
  .benefit-card::before,
  .benefit-card::after,
  .service-card::before,
  .service-card::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .benefit-card,
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .section-title {
    font-size: clamp(2rem, 7vw, 2.5rem) !important;
    margin-bottom: 2rem !important;
  }
  
  .scroll-reveal-section {
    padding: 3rem 0;
  }
}

.fragment .container {
  position: relative;
  z-index: 3;
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .benefit-card,
    .service-card,
    .branch-card,
    .kmu-why-card,
    .stat-card {
      animation: revealFromBelow linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 20%;
    }
  }

  @keyframes revealFromBelow {
    from {
      opacity: 0;
      transform: translate3d(0, 24px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
}
