/* START OF SECTION: ROOT VARIABLES */
:root {
  --accent-pink: #ff2a7f;
  --accent-pink-2: #ff2a7f;
  --accent-blue: #0ea5ff;
  --accent-blue-2: #2b78ff;
  --card-bg: rgba(255,255,255,0.025);
  --glass-blur: 6px;
  --text-light: #e7eef6;
  --muted: #dfe6ea;
  --shadow-strong: rgba(2,6,23,0.6);
}
/* END OF SECTION: ROOT VARIABLES */

/* START OF SECTION: BANNER */
.page-banner {
  width: 100%;
  overflow: hidden; 
  position: relative; 
}
.page-banner-img {
  display: block;
  width: 100%;
  height: auto; 
  max-width: 100%;
  z-index: 1;
  position: relative;
}

/* Banner title overlay */
.banner-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-family: 'League Spartan', 'Exo 2', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2rem, 6.5vw, 5rem);
  letter-spacing: 2px;
  text-align: center;
  z-index: 5;
  pointer-events: none;

  background: linear-gradient(90deg, #ff2a7f 0%, #ff007f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}
.banner-title .blue {
 
  background: linear-gradient(90deg, #2b78ff 0%, #0ea5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Reduce size on small screens to avoid overlapping content */
@media (max-width: 480px) {
  .banner-title {
    font-size: clamp(1.4rem, 9vw, 2.4rem);
    letter-spacing: 1px;
  }
}


.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.35) 100%);
  z-index: 3; /* below title, above image */
  pointer-events: none;
}
.banner-title {
  z-index: 5; /* ensure on top of overlay */
  opacity: 0;
  transform: translate(-50%, -45%);
  animation: bannerIn 700ms cubic-bezier(.22,.9,.35,1) forwards;
}

@keyframes bannerIn {
  from {
    opacity: 0;
    transform: translate(-50%, -40%) translateY(8px) scale(0.995);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0) scale(1);
  }
}
/* END OF SECTION: BANNER */

/* START OF SECTION: ABOUT HERO */
.about-hero {

  background: radial-gradient(1200px 200px at 10% 20%, rgba(40,30,80,0.06), transparent 8%),
              radial-gradient(800px 160px at 85% 60%, rgba(10,70,120,0.03), transparent 10%),
              linear-gradient(90deg, rgba(7,13,25,0.6), rgba(10,16,28,0.6));
  padding: 4.5rem 1rem;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4.25rem; 
  background: rgba(255,255,255,0.025);
  border-radius: 14px;
  padding: 2.2rem 2.4rem;
  box-shadow: 0 12px 30px rgba(2,6,23,0.6), 0 2px 6px rgba(0,0,0,0.35) inset;
  backdrop-filter: blur(6px);
}
.about-logo {
  flex: 0 0 180px; 
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo img {
  width: 180px;
  height: auto;
  display: block;
  will-change: transform, opacity;
  opacity: 0; /* start hidden for entrance animation */
  transform: translateY(10px) scale(0.985);
  animation: fadeUp 650ms cubic-bezier(.22,.9,.35,1) forwards 180ms;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(5,8,20,0.6), 0 2px 6px rgba(0,0,0,0.25) inset;
}
.about-text {
  flex: 1 1 auto;
}
.about-text p {
  color: #dfe6ea;
  font-size: 1.06rem; 
  font-weight: 300; 
  line-height: 1.9;
  max-width: 820px; 
  margin: 0;

  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  will-change: transform, opacity;
  opacity: 0; 
  transform: translateY(12px);
  animation: fadeUp 720ms cubic-bezier(.22,.9,.35,1) forwards 360ms;
  position: relative;
  padding-left: 1.2rem; 
}


.about-text p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: calc(100% - 16px);
  border-radius: 3px;
  background: linear-gradient(180deg, #ff2a7f, #2b78ff);
  box-shadow: 0 4px 12px rgba(40, 20, 80, 0.25);
}

/* Responsive: stack vertically on narrow screens */
@media (max-width: 768px) {
  .about-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .about-logo {
    flex: 0 0 auto;
  }
  .about-logo img {
    width: 120px;
    animation-delay: 120ms;
  }
  .about-text p {
    max-width: 100%;
    font-size: 1rem;
    animation-delay: 260ms;
    padding-left: 0;
    text-align: center;
  }


  .about-text p::before {
    display: none;
  }
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.995);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* END OF SECTION: ABOUT HERO */

/* START OF SECTION: TIMELINE */
.timeline {
  padding: 3.5rem 1rem 6rem;
}
.timeline-inner {

  max-width: 1400px;
  margin: 0 auto;
  position: relative; 
}
.timeline-header h2 {
  color: var(--text-light);

  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  margin: 0 0 0.35rem;
  font-family: 'League Spartan', 'Exo 2', sans-serif;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.timeline-header .timeline-lead {
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  max-width: 80ch;
}


.timeline-grid {
  position: relative;
  --timeline-left-col: 96px;
  --timeline-line-width: 2px;
  --timeline-dot-size: 16px;
}


.timeline-line {
  position: absolute;
  left: calc(var(--timeline-left-col) / 2 - (var(--timeline-line-width) / 2));
  top: 0;
  bottom: 0;
  width: var(--timeline-line-width); 
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  border-radius: 2px;
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  z-index: 0;
  box-shadow: none;
}
.timeline-line.drawn {
  animation: drawLine 900ms cubic-bezier(.22,.9,.35,1) forwards;
}


.timeline-items {
  position: relative;
}


.timeline-item {
  display: grid;
  grid-template-columns: var(--timeline-left-col) 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 2.8rem;
  opacity: 0;
  transform: translateY(12px);
}
.timeline-item.in-view {
  animation: fadeUp .6s cubic-bezier(.22,.9,.35,1) forwards;
}
.timeline-item.in-view:nth-child(1) {
  animation-delay: 0.04s;
}
.timeline-item.in-view:nth-child(2) {
  animation-delay: 0.12s;
}
.timeline-item.in-view:nth-child(3) {
  animation-delay: 0.2s;
}
.timeline-item.in-view:nth-child(4) {
  animation-delay: 0.28s;
}
.timeline-item.in-view:nth-child(5) {
  animation-delay: 0.36s;
}

.timeline-dot {
  grid-column: 1 / 2;
  justify-self: center;
  align-self: start;
  width: var(--timeline-dot-size);
  height: var(--timeline-dot-size);
  background: linear-gradient(180deg, var(--accent-pink), var(--accent-blue));
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(43,120,255,0.09);
  margin-top: 8px;
  z-index: 3;
}

.timeline-card {
  grid-column: 2 / -1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 26px rgba(2,6,23,0.38);
}
.timeline-year {
  margin: 0 0 0.6rem;
  font-size: 1.12rem;
  color: var(--text-light);
  font-weight: 800;
}
.timeline-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.02rem;
}

.timeline-thumb {
  display: none !important;
}
.timeline-card-content {
  display: block !important;
}

@media (max-width: 880px) {
  .timeline-item {
    grid-template-columns: var(--timeline-left-col) 1fr;
    gap: 0.75rem;
  }

  .timeline-grid {
    --timeline-left-col: 36px;
    --timeline-dot-size: 12px;
  }
  .timeline-line {
    display: block;
    top: 20px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
    border-radius: 2px;
    transform-origin: top;
    transform: scaleY(1);
    opacity: 0.7;
    box-shadow: none;
    z-index: 0;
  }
  .timeline-card {
    margin-left: 0;
    padding: 1rem 1.1rem;
  }
  .timeline-thumb {
    display: none !important;
  }
}


@media (max-width: 480px) {
  .timeline-grid {
    --timeline-left-col: 28px;
    --timeline-dot-size: 10px;
  }
  .timeline-line {
    display: block;
    top: 12px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    opacity: 0.65;
    border-radius: 2px;
    box-shadow: none;
    z-index: 0;
    transform: scaleY(1);
  }
  .timeline-dot {
    justify-self: center;
  }
  .timeline-card {
    padding: 0.9rem 1rem;
  }
}


@keyframes drawLine {
  from {
    transform: scaleY(0);
    opacity: 0.0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}
/* END OF SECTION: TIMELINE */

/* START OF SECTION: VALUES */
.values-section {
  padding: 3.5rem 1rem 5rem;
  background: radial-gradient(800px 220px at 10% 10%, rgba(43,120,255,0.06), transparent 8%),
              radial-gradient(700px 160px at 90% 80%, rgba(255,42,127,0.03), transparent 10%),
              linear-gradient(180deg, rgba(6,12,24,0.6), rgba(6,12,24,0.86));
  border-top: 1px solid rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.02);
  backdrop-filter: blur(4px);
}
.values-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.values-header h2 {
  color: var(--text-light);
  font-size: 2.1rem;
  text-align: center;
  margin: 0 0 0.8rem;
  font-family: 'League Spartan', 'Exo 2', sans-serif;
  font-weight: 900;
}
.values-grid {
  display: grid;
  --values-gap: 1.75rem;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--values-gap);
  margin-top: 1.25rem;
  align-items: start;
}
.value-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.017), rgba(255,255,255,0.01));
  border-radius: 14px;
  padding: 1.25rem 1.3rem 1.6rem;
  text-align: left;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 12px 30px rgba(2,6,23,0.45), inset 0 1px 0 rgba(255,255,255,0.02);
  transition: transform .22s cubic-bezier(.22,.9,.35,1), box-shadow .22s ease, border-color .22s ease;
}
.value-card::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: calc(14px + 8px);
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  filter: blur(6px);
  opacity: 0.06;
  pointer-events: none;
}
.value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.03);
  pointer-events: none;
}
.value-thumb img {
  width: 100%;
  height: 200px; 
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  display: block;
  margin-bottom: 0.8rem;
}


.value-card.featured .value-thumb img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.value-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.06rem;
  font-weight: 800;
}
.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.97rem;
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(2,6,23,0.55);
  border-color: rgba(43,120,255,0.22);
}


.value-card.featured {
  
  grid-column: 1 / -1; 
  margin-top: 1.6rem;
  text-align: center;
  justify-self: center;

  width: calc((100% - (3 * var(--values-gap))) / 4);
  max-width: 360px; 
}


.value-card.featured .value-thumb img {

  height: 200px;
}

@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .value-card.featured {
    grid-column: 1 / -1;
    width: min(700px, 90%);
  }
}

@media (max-width: 680px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .values-header h2 {
    font-size: 1.6rem;
  }
  .value-thumb img {
    height: 220px;
  }
  .value-card {
    padding: 1rem;
  }

  .value-card.featured {
    width: 95%;
    max-width: none;
    justify-self: stretch;
    text-align: left;
  }
}
/* END OF SECTION: VALUES */

/* START OF SECTION: PARTNERS */


.partners-section {

  background: linear-gradient(180deg, rgba(8,18,34,0.92) 0%, rgba(6,12,24,0.86) 100%);
  padding: 3.5rem 1rem 4rem;
  border-top: 1px solid rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.02);
  backdrop-filter: blur(4px);
}
.partners-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.partners-header h2 {
  color: var(--text-light);
  font-size: 2.4rem;
  font-family: 'League Spartan', 'Exo 2', sans-serif;
  font-weight: 900;
  margin: 0 0 0.4rem;
}
.partners-header p {
  margin: 0;
  color: var(--muted);
  max-width: 80ch;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 0.6rem;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 2.25rem;
  align-items: center;
  margin-top: 1.5rem;
}
.partners-grid > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.partners-grid > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.partners-grid img {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: none;
}


.partners-grid > div {
  position: relative;
  overflow: visible;
  border-radius: 8px;
}
.partners-grid > div::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(400px 200px at var(--px, 50%) var(--py, 50%), rgba(255,255,255,0.18), rgba(255,255,255,0.06) 30%, transparent 50%);
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 220ms ease, background-position 120ms linear;
}
.partners-grid > div.is-hover::after {
  opacity: 1;
}
.partners-grid > div img {
  transition: transform 260ms cubic-bezier(.22,.9,.35,1), filter 260ms ease, box-shadow 260ms ease;
}
.partners-grid > div.is-hover img {
  transform: translateY(-6px) scale(1.03);
  filter: drop-shadow(0 18px 30px rgba(2,6,23,0.45));
}


@media (min-width: 1400px) {
  .partners-grid {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
  }
  .partners-grid img {
    max-width: 260px;
  }
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .partners-section {
    padding: 2.5rem 1rem;
  }
}
@media (max-width: 420px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .partners-header h2 {
    font-size: 1.75rem;
  }
  .partners-header p {
    font-size: 0.98rem;
  }
}
/* END OF SECTION: PARTNERS */

/* START OF SECTION: MANAGEMENT */
.management-section {
  padding: 3.5rem 1rem 6rem;
  background: linear-gradient(180deg, rgba(8,18,34,0.92) 0%, rgba(6,12,24,0.86) 100%);
}
.management-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.management-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.management-header h2 {
  color: var(--text-light);
  font-size: 2.4rem;
  margin: 0 0 0.6rem;
  font-family: 'League Spartan', 'Exo 2', sans-serif;
  font-weight: 900;
}
.management-header h2 {
  color: var(--text-light);
  font-size: 2.4rem;
  margin: 0 0 0.6rem;
  font-family: 'League Spartan', 'Exo 2', sans-serif;
  font-weight: 900;
}
.management-header p {
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 80ch;
  line-height: 1.6;
}
.management-header p {
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 80ch;
  line-height: 1.6;
}
.management-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  margin-top: 1rem;
  align-items: stretch;
}
.manager-card {
  background: rgba(255,255,255,0.02);
  border: 2px solid transparent; 
  border-radius: 12px;
  padding: 1.3rem 1rem 1.6rem;
  text-align: center;
  color: var(--text-light);
  box-shadow: 0 12px 30px rgba(2,6,23,0.45), 0 0 12px rgba(252,3,105,0.04);
  transition: transform .22s cubic-bezier(.22,.9,.35,1), box-shadow .22s ease, border-color .22s ease;
  border-image: linear-gradient(90deg,#ff2a7f,#fc0369) 1;
  position: relative;
  box-sizing: border-box; 
  display: flex;
  flex-direction: column; 
  justify-content: flex-start;
  min-height: 220px;
}
.manager-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(2,6,23,0.55), 0 0 30px rgba(252,3,105,0.12);
}

.manager-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.manager-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}
.manager-role {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.45rem;
  font-weight: 700;
}
.manager-role {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.45rem;
  font-weight: 700;
}
.manager-name {
  font-weight: 800;
  margin: 0;
  font-size: 1rem;
}
.manager-name {
  font-weight: 800;
  margin: 0;
  font-size: 1rem;
}


.management-grid {
  justify-items: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  align-items: stretch;
}
.management-grid {
  justify-items: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  align-items: stretch;
}
.management-grid .manager-card {
  width: 100%;
}
.management-grid .manager-card {
  width: 100%;
}


.management-grid .leader-primary {
  grid-column: 1 / -1;
  justify-self: center;
  margin-bottom: 1rem;
}


.management-grid .manager-card {
  max-width: 360px;
  width: 100%;
}
.management-grid .manager-card {
  max-width: 360px;
  width: 100%;
}
.management-grid .manager-avatar {
  width: 140px;
  height: 140px;
}
.management-grid .manager-avatar {
  width: 140px;
  height: 140px;
}
.management-grid .manager-name {
  font-size: 1rem;
}
.management-grid .manager-name {
  font-size: 1rem;
}

@media (max-width: 1236px) {
  .management-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 760px) {
  .management-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .management-grid {
    grid-template-columns: 1fr;
  }
  .manager-avatar {
    width: 140px;
    height: 140px;
  }
}
/* END OF SECTION: MANAGEMENT */

/* START OF SECTION: ACHIEVEMENTS */
.achievements-section {
  padding: 3.25rem 1rem 4rem;
  background: linear-gradient(180deg, rgba(6,12,24,0.88), rgba(7,13,25,0.92));
  border-top: 1px solid rgba(255,255,255,0.02);
}
.achievements-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.achievements-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.achievements-header h2 {
  color: var(--text-light);
  font-size: 2.2rem;
  margin: 0 0 0.5rem;
  font-family: 'League Spartan', 'Exo 2', sans-serif;
  font-weight: 900;
}
.achievements-header h2 {
  color: var(--text-light);
  font-size: 2.2rem;
  margin: 0 0 0.5rem;
  font-family: 'League Spartan', 'Exo 2', sans-serif;
  font-weight: 900;
}
.achievements-header p {
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 80ch;
}
.achievements-header p {
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 80ch;
}
.metrics-grid {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 1.6rem auto 0;
}
.metrics-grid {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 1.6rem auto 0;
}
.metric {
  text-align: center;
  flex: 1 1 0;
}
.metric {
  text-align: center;
  flex: 1 1 0;
}
.metric-number {
  font-family: 'League Spartan', 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  line-height: 1;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2.8px;
  -webkit-text-stroke-color: var(--accent-blue);
  text-shadow: 0 6px 12px rgba(2,6,23,0.6);
}
.metric-number.accent-pink {
  -webkit-text-stroke-color: var(--accent-pink);
}
.metric-number.accent-pink {
  -webkit-text-stroke-color: var(--accent-pink);
}
.metric-label {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Counter reveal animation: JS will add `.animated` when visible */
.stat-number {
  opacity: 0;
  transform: translateY(8px) scale(0.99);
}
.stat-number.animated {
  animation: statPop 700ms cubic-bezier(.22,.9,.35,1) forwards;
}
@keyframes statPop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.metric-label {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 1100px) {
  .metrics-grid {
    gap: 1.4rem;
  }
}
@media (max-width: 760px) {
  .metrics-grid {
    flex-direction: column;
    align-items: center;
  }
  .metric {
    width: 100%;
  }
  .metric-number {
    font-size: clamp(2.2rem, 12vw, 4.6rem);
    -webkit-text-stroke-width: 2.4px;
  }
}
/* END OF SECTION: ACHIEVEMENTS */

/* START OF SECTION: CONTACT */
.contact-section {
  padding: 3.25rem 1rem 4rem;
  background: linear-gradient(180deg, rgba(6,12,24,0.9), rgba(7,13,25,0.94));
  border-top: 1px solid rgba(255,255,255,0.02);
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-header h2 {
  color: var(--text-light);
  font-size: 2.2rem;
  margin: 0 0 0.35rem;
  font-family: 'League Spartan', 'Exo 2', sans-serif;
  font-weight: 900;
}
.contact-header p {
  color: var(--muted);
  margin: 0;
  max-width: 80ch;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.25rem;
}
.contact-info {
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-info .info-item strong {
  display: block;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.contact-info .info-item p {
  margin: 0;
  color: var(--muted);
}
.contact-info a {
  color: var(--accent-pink);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.012), rgba(255,255,255,0.008));
  border: 1px solid rgba(255,255,255,0.03);
  padding: 1.6rem 1.6rem 3.4rem; /* extra bottom padding to make room for the button */
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(2,6,23,0.55), inset 0 1px 0 rgba(255,255,255,0.01);
}
.contact-form::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}
.contact-form .form-row {
  margin-bottom: 0.9rem;
  display: block;
}
.contact-form .form-row input[type="text"],
.contact-form .form-row input[type="email"],
.contact-form .form-row textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.03);
  color: var(--text-light);
  border-radius: 10px;
  font-size: 0.95rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.01), 0 8px 20px rgba(2,6,23,0.45);
}
.contact-form .form-row input::placeholder,
.contact-form .form-row textarea::placeholder {
  color: rgba(223,230,234,0.6);
}
.contact-form .form-row textarea {
  resize: vertical;
}
.contact-form .form-row.form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0.25rem;
}

.contact-form .form-row.form-actions {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-blue));
  box-shadow: 0 10px 30px rgba(43,120,255,0.12), 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 160ms cubic-bezier(.22,.9,.35,1), box-shadow 160ms ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .form-row.form-actions {
    position: static;
    justify-content: center;
    margin-top: 1rem;
  }
}
/* END OF SECTION: CONTACT */

/* START OF SECTION: CTA */
.cta-section {
  padding: 3.5rem 1rem 5rem;
  /* match partners section background */
  background: linear-gradient(180deg, rgba(8,18,34,0.92) 0%, rgba(6,12,24,0.86) 100%);
  border-top: 1px solid rgba(255,255,255,0.02);
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cta-header h2 {
  color: var(--text-light);
  font-family: 'League Spartan', 'Exo 2', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  margin: 0 0 0.6rem;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.cta-header .cta-lead {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.cta-card {
  background: rgba(255,255,255,0.01);
  border-radius: 12px;
  padding: 1.6rem;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 14px 36px rgba(2,6,23,0.45);
  text-align: left;
}

.cta-card-title {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.cta-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.label {
  display: inline-block;
  padding: 0.18rem 0.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

.label-pink {
  background: linear-gradient(90deg, rgba(255,42,127,0.07), rgba(43,120,255,0.02));
  color: var(--accent-pink);
}

.label-purple {
  background: linear-gradient(90deg, rgba(122,60,200,0.04), rgba(255,42,127,0.02));
  color: #caa0ff;
}

.label-blue {
  background: linear-gradient(90deg, rgba(43,120,255,0.06), rgba(14,165,255,0.02));
  color: var(--accent-blue);
}

.cta-action {
  display: flex;
  justify-content: center;
}

.btn-cta {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 40px;
  font-weight: 900;
  color: #fff;

  background-color: rgba(255,255,255,0.06);
  box-shadow: 0 14px 36px rgba(255,255,255,0.06);
  text-decoration: none;
  transition: background-color 150ms ease, transform 120ms ease, box-shadow 120ms ease;
}

.btn-cta:hover {
  background-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(255,255,255,0.12);
}

.btn-cta .btn-arrow {
  margin-left: 0.6rem;
  opacity: 0.95;
}

@media (max-width: 1200px) {
  .cta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    text-align: center;
  }
}
/* END OF SECTION: CTA */
