.aboutus-gallery-viewport,
.impact-gallery-viewport,
.aboutus-gallery-track,
.impact-gallery-track {
  touch-action: pan-x pan-y pinch-zoom;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-stop: always;
}



.aboutus-comparison-handle { touch-action: none; }


:root {
  --impact-maxw: 1440px;
  --impact-gutter: clamp(16px, 4vw, 40px);
  --impact-gap: clamp(16px, 2vw, 24px);
  --impact-hairline: rgba(255, 255, 255, 0.08);
  --impact-fg: #ffffff;
  --impact-bg: #000000;
  --impact-muted: rgba(255, 255, 255, 0.7);
  --impact-accent: #047857;
  --impact-accent-dark: #065f46;
  --impact-radius: 12px;
  --impact-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.impact-section *,
.impact-section *::before,
.impact-section *::after {
  box-sizing: border-box;
}

.impact-section {
  background: var(--impact-bg);
  color: var(--impact-fg);
  position: relative;
  width: 100%;
  overflow: hidden;
 /*  padding-block: clamp(40px, 6vw, 80px);*/
}

.impact-container {
  max-width: var(--impact-maxw);
  margin-inline: auto;
  padding-inline: var(--impact-gutter);
  width: 100%;
  min-width: 0;
}

.impact-header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 48px);
  max-width: 900px;
  margin-inline: auto;
}

.impact-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 clamp(16px, 3vw, 24px) 0;
  color: var(--impact-fg);
  letter-spacing: clamp(1px, 0.3vw, 3px);
  text-transform: uppercase;
}

.impact-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.6;
  color: var(--impact-muted);
  font-weight: 300;
  margin: 0;
  text-align: center;
}

.impact-gallery {
  margin-bottom: clamp(40px, 6vw, 64px);
  width: 100%;
  min-width: 0;
}

.impact-gallery-container {
  position: relative;
  width: 100%;
  min-width: 0;
}

.impact-gallery-viewport {
  position: relative;
  width: 100%;
  min-width: 0;
}

.impact-gallery-track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: var(--impact-gap);
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.impact-gallery-track::-webkit-scrollbar { display: none; }


.impact-gallery-item {
  flex: 0 0 var(--impact-slide-w, 100%);
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}



@media (min-width: 768px) {

  :root { --impact-slide-w: calc((100% - (2 * var(--impact-gap))) / 3); }
}


.impact-gallery-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}

.impact-gallery-square {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #0b0b0b;
  border: 1px solid var(--impact-hairline);
  border-radius: var(--impact-radius);
  overflow: hidden;
  background-clip: padding-box;
}

.impact-gallery-square img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.impact-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.impact-gallery-nav:active:not(:disabled) {
  transform: translateY(-50%) scale(0.95);
}

.impact-gallery-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.impact-gallery-nav:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

.impact-gallery-prev {
  left: 10px;
}

.impact-gallery-next {
  right: 10px;
}

.impact-gallery-nav svg {
  width: 24px;
  height: 24px;
  color: #000;
}

.impact-gallery-dots {
  display: none;
}

.impact-gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
}

.impact-gallery-dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.impact-gallery-dot.active {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.3);
}

.impact-caption {
  font-size: clamp(0.875rem, 1.8vw, 0.95rem);
  color: var(--impact-muted);
  margin-top: clamp(12px, 2vw, 16px);
  line-height: 1.5;
  text-align: center;
  font-weight: 300;
}

.impact-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 32px);
  margin-bottom: clamp(40px, 6vw, 64px);
  width: 100%;
}

.impact-kpi-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--impact-radius);
  padding: clamp(24px, 4vw, 40px) clamp(16px, 3vw, 32px);
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.impact-kpi-icon {
  width: clamp(72px, 11vw, 90px);
  height: clamp(72px, 11vw, 90px);
  margin: 0 auto clamp(10px, 1.8vw, 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--impact-accent);
}

.impact-kpi-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.impact-kpi-value {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: clamp(4px, 0.8vw, 6px);
  color: var(--impact-accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.impact-kpi-label {
  font-size: clamp(0.8rem, 1.8vw, 0.92rem);
  color: #404040;
  font-weight: 400;
  line-height: 1.3;
}

.impact-values-section {
  margin-bottom: clamp(40px, 6vw, 64px);
  width: 100%;
}

.impact-values-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(9px, 0.5vw, 1px);
  width: 100%;
}

.impact-value-badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 2.8vw, 22px) clamp(20px, 3vw, 28px);
  background: var(--impact-bg);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: clamp(0.8rem, 1.6vw, 1.1rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}

.impact-value-badge:hover {
  border-color: rgba(4, 120, 87, 0.5);
  color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 30px rgba(4, 120, 87, 0.15),
              0 0 60px rgba(4, 120, 87, 0.08),
              inset 0 0 20px rgba(4, 120, 87, 0.05);
}

.impact-value-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--impact-accent);
  margin-right: clamp(10px, 2vw, 14px);
  box-shadow: 0 0 12px rgba(4, 120, 87, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.impact-value-badge:hover .impact-value-dot {
  transform: scale(1.3);
  box-shadow: 0 0 16px rgba(4, 120, 87, 0.8);
}


.impact-cta-wrapper {
  text-align: center;
}

.impact-cta {
  display: inline-flex;
  align-items: center;
  padding: clamp(12px, 2vw, 14px) clamp(28px, 4vw, 36px);
  border-radius: 999px;
  border: 1px solid var(--impact-hairline);
  text-decoration: none;
  color: var(--impact-fg);
  font-size: clamp(0.9rem, 1.8vw, 0.95rem);
  font-weight: 500;
  background: transparent;
  cursor: pointer;
}

.impact-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

@media (max-width: 767.98px) {
  .impact-title {
    font-size: 1.7rem;
    letter-spacing: 1px;
  }

  .impact-subtitle {
    text-align: center;
    hyphens: none;
    line-height: 1.65;
  }

  .impact-gallery-viewport {
    position: relative;
    overflow: hidden;
  }

  .impact-gallery-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    -ms-overflow-style: none;
  }

  .impact-gallery-track::-webkit-scrollbar {
    display: none;
  }

  .impact-gallery-item {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
  }

  .impact-gallery-nav {
    display: flex !important;
  }

  .impact-gallery-dots {
    display: flex !important;
    position: absolute;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    z-index: 15;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    backdrop-filter: blur(4px);
  }

  .impact-kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-values-container {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(10px, 2vw, 12px);
  }

  .impact-value-badge {
    font-size: 0.85rem;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
.impact-kpi-grid {
  align-items: stretch;
  container-type: inline-size;
}

.impact-kpi-card {
  font-size: clamp(13px, 3.9vw, 16px);
}

.impact-kpi-icon {
  width: 4.5em;
  height: 4.5em;
  margin: 0 auto 0.8em;
}

.impact-kpi-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.impact-kpi-value {
  font-size: 1.8em;
  line-height: 1.05;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.impact-kpi-label {
  font-size: 0.88em;
  line-height: 1.25;
}

.impact-kpi-icon,
.impact-kpi-value,
.impact-kpi-label {
  --_reset: initial;
}

}

@media (min-width: 768px) and (max-width: 949px) {
  .impact-kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-values-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-value-badge {
  font-size: 1.1em;
  padding: 0.9em 1.2em;
  border-radius: 9999px;
}
}

@media (max-width: 320px) {
  .impact-title {
    font-size: 1.2rem;
    letter-spacing: 0;
  }

  .impact-value-badge {
    font-size: 0.8rem;
    padding: 12px 16px;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .impact-title {
    font-size: 3.2rem;
    letter-spacing: 3px;
  }

  .impact-subtitle {
    text-align: center;
    hyphens: none;
    line-height: 1.68;
  }
}

@media (min-width: 1024px) {
  .impact-title {
    font-size: 3.2rem;
    letter-spacing: 3px;
  }

  .impact-subtitle {
    font-size: 1.08rem;
    line-height: 1.68;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .impact-section *,
  .impact-section *::before,
  .impact-section *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .impact-gallery-track {
    scroll-behavior: auto;
  }

  .impact-value-badge,
  .impact-value-badge::before,
  .impact-value-badge::after,
  .impact-value-dot {
    transition: none !important;
    animation: none !important;
  }
  
  .impact-value-badge:hover {
    transform: none;
  }
  
  .impact-value-badge:hover::before {
    animation-play-state: paused !important;
  }
}

@media print {
  .impact-gallery-nav,
  .impact-gallery-dots {
    display: none !important;
  }
}

@container (max-width: 360px) {
  .impact-kpi-card { font-size: 12px; }
}

@media (max-width: 320px) {
  .impact-kpi-card { font-size: 11.5px; }
}
.impact-kpi-grid {
  container-type: inline-size;
  --kpi-fs: clamp(14px, 1.6cqw, 18px);
}

.impact-kpi-card {
  font-size: var(--kpi-fs);
  min-width: 0;
}

.impact-kpi-icon {
  width: 4.7em;
  height: 4.7em;
  margin: 0 auto 0.8em;
}

.impact-kpi-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.impact-kpi-value {
  font-size: 1.9em;
  line-height: 1.05;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.impact-kpi-label {
  font-size: 0.88em;
  line-height: 1.25;
}