.key-highlights {
  position: relative;
  overflow: hidden;
  padding: 70px 24px;
  color: #ffffff;

  background:
    radial-gradient(
      circle at 15% 35%,
      rgba(0, 156, 222, 0.24),
      transparent 32%
    ),
    radial-gradient(
      circle at 86% 26%,
      rgba(118, 190, 0, 0.13),
      transparent 26%
    ),
    linear-gradient(
      135deg,
      #031631 0%,
      #062f67 52%,
      #041c3d 100%
    );
}


.key-highlights-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    );

  background-size: 52px 52px;
}

.key-highlights-grid::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(3, 22, 49, 0.25),
    transparent,
    rgba(3, 22, 49, 0.32)
  );
}


.key-highlight-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(22px);
}

.key-glow-left {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 15%;
  background: rgba(0, 156, 222, 0.2);
}

.key-glow-right {
  width: 280px;
  height: 280px;
  right: -110px;
  bottom: 5%;
  background: rgba(118, 185, 0, 0.13);
}


.key-highlights-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.key-highlights-header {
  max-width: 830px;
  margin: 0 auto 58px;
  text-align: center;
}

.key-highlights-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-bottom: 18px;
  padding: 9px 16px;

  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 100px;

  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);

  color: #dceeff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.key-highlights-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;

  background: #76b900;
  box-shadow: 0 0 14px rgba(118, 185, 0, 0.9);
}

.key-highlights-header h2 {
  margin: 0;
  color: #ffffff;

  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.08;
  letter-spacing: -2px;
}

.key-highlights-header h2 span {
  display: block;
  color: #76b900;
}

.key-highlights-header p {
  max-width: 710px;
  margin: 22px auto 0;

  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.8;
}

/* =========================================
   CARDS GRID
========================================= */

.key-highlights-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.key-highlight-card {
  position: relative;

  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 20px;

  min-height: 138px;
  padding: 28px 28px 28px 25px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.13),
      rgba(255, 255, 255, 0.045)
    );

  backdrop-filter: blur(18px);

  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.key-highlight-card::before {
  content: "";
  position: absolute;

  left: 0;
  top: 22px;
  bottom: 22px;

  width: 4px;
  border-radius: 0 20px 20px 0;

  background: linear-gradient(
    180deg,
    #009cde,
    #76b900
  );

  transform: scaleY(0.35);
  transform-origin: center;

  transition: transform 0.35s ease;
}

/* Decorative glow */

.key-highlight-card::after {
  content: "";
  position: absolute;

  width: 140px;
  height: 140px;

  right: -65px;
  top: -70px;

  border-radius: 50%;
  background: rgba(118, 185, 0, 0.08);

  transition: transform 0.4s ease;
}

.key-highlight-card:hover {
  transform: translateY(-8px);

  border-color: rgba(118, 185, 0, 0.4);

  box-shadow:
    0 32px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.key-highlight-card:hover::before {
  transform: scaleY(1);
}

.key-highlight-card:hover::after {
  transform: scale(1.3);
}


.key-card-number {
  position: absolute;
  right: 24px;
  top: 18px;

  color: rgba(255, 255, 255, 0.08);

  font-size: 46px;
  font-weight: 800;
  line-height: 1;
}


.key-card-icon {
  position: relative;
  z-index: 2;

  width: 64px;
  height: 64px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(118, 185, 0, 0.32);
  border-radius: 19px;

  background:
    linear-gradient(
      145deg,
      rgba(118, 185, 0, 0.19),
      rgba(0, 157, 222, 0.15)
    );

  color: #ffffff;
  font-size: 24px;

  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);

  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.key-highlight-card:hover .key-card-icon {
  transform: rotate(-5deg) scale(1.08);

  background:
    linear-gradient(
      145deg,
      #008ed6,
      #76b900
    );
}

/* =========================================
   CARD CONTENT
========================================= */

.key-card-content {
  position: relative;
  z-index: 2;
}

.key-card-content h3 {
  margin: 0 0 10px;

  color: #ffffff;
  font-size: 19px;
  line-height: 1.3;
}

.key-card-content p {
  margin: 0;

  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================
   CARD ARROW
========================================= */

.key-card-arrow {
  position: relative;
  z-index: 2;

  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);

  font-size: 13px;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.key-highlight-card:hover .key-card-arrow {
  transform: translate(4px, -4px);

  background: #76b900;
  color: #071f40;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {
  .key-highlights {
    padding: 80px 22px;
  }

  .key-highlights-header {
    margin-bottom: 48px;
  }

  .key-highlights-list {
    grid-template-columns: 1fr;
  }

  .key-highlight-card {
    min-height: 150px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {
  .key-highlights {
    padding: 68px 17px;
  }

  .key-highlights-header {
    margin-bottom: 42px;
  }

  .key-highlights-header h2 {
    font-size: 39px;
    letter-spacing: -1.3px;
  }

  .key-highlights-header p {
    font-size: 14px;
    line-height: 1.7;
  }

  .key-highlight-card {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;

    min-height: auto;
    padding: 24px 20px;

    border-radius: 20px;
  }

  .key-card-icon {
    width: 54px;
    height: 54px;

    border-radius: 16px;
    font-size: 21px;
  }

  .key-card-content h3 {
    padding-right: 34px;
    font-size: 17px;
  }

  .key-card-content p {
    font-size: 13px;
  }

  .key-card-number {
    right: 18px;
    top: 18px;

    font-size: 38px;
  }

  .key-card-arrow {
    display: none;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {
  .key-highlights {
    padding: 60px 15px;
  }

  .key-highlights-header h2 {
    font-size: 34px;
  }

  .key-highlights-label {
    font-size: 10px;
    letter-spacing: 1.3px;
  }

  .key-highlight-card {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .key-card-icon {
    margin-bottom: 2px;
  }

  .key-card-content h3 {
    padding-right: 42px;
  }
}

/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {
  .key-highlight-card,
  .key-highlight-card::before,
  .key-highlight-card::after,
  .key-card-icon,
  .key-card-arrow {
    transition: none;
  }
}