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

html {
  overflow-x: hidden;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--slate-950);
  background: #fff;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

/* ============ Layout ============ */
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.section { padding: 96px 0; }
.section-soft { background: var(--umes-soft); }
.section-dark {
  background: linear-gradient(135deg, var(--umes-blue), var(--umes-dark));
  color: #fff;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease, background .25s ease;
}
.btn-primary {
  background: var(--umes-blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--umes-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(7, 89, 135, .25);
}

/* ============ Labels & headings ============ */
.label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--umes-light);
  color: var(--umes-blue);
  font-size: 13px;
  font-weight: 900;
  padding: 8px 16px;
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.label.light {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}
.heading {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  margin: 0;
  font-weight: 900;
  letter-spacing: -1.4px;
}
.lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--slate-600);
}
.section-dark .lead { color: rgba(255, 255, 255, .82); }

/* ============================================================
   HERO MODERN
   ============================================================ */
.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7.5rem 0 4rem;
  background: #07111f;
  color: #fff;
  isolation: isolate;
}

/* Slideshow background */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.slideshow-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 120% at 92% 45%, rgba(4, 18, 30, .85) 0%, rgba(4, 18, 30, .55) 36%, rgba(4, 18, 30, .2) 55%, transparent 72%),
    radial-gradient(55% 60% at 36% 18%, rgba(7, 152, 213, .18) 0%, transparent 66%),
    linear-gradient(115deg, rgba(4, 18, 30, .15) 0%, transparent 45%);
  z-index: 1;
}
.slideshow-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(140% 100% at 50% 0%, transparent 62%, rgba(3, 12, 22, .45) 100%);
  z-index: 2;
}
.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateX(100%);
  filter: blur(14px) saturate(1.1);
  -webkit-filter: blur(14px) saturate(1.1);
  transition: transform 1.1s cubic-bezier(.6,.05,.25,1), opacity 1.1s ease, filter 1.1s ease;
  z-index: 0;
  will-change: transform, opacity, filter;
}
.hero-slideshow .slide.active {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0) saturate(1.1);
  -webkit-filter: blur(0) saturate(1.1);
  z-index: 1;
}
.hero-slideshow .slide.active.zoom {
  animation: none;
}
.hero-slideshow .slide.active.zoom.v2 { animation-name: none; }
.hero-slideshow .slide.active.zoom.v3 { animation-name: none; }

/* Animated gradient bg */
.hero-bg-animation {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 20% 50%, rgba(7,152,213,.18) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(79,224,164,.1) 0%, transparent 50%);
  animation: bgPulse 5s ease-in-out infinite;
}
@keyframes bgPulse {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}

/* Floating elements */
.floating-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.floating-floaty {
  position: absolute;
  color: rgba(255,255,255,.12);
  font-size: 1.7rem;
  filter: drop-shadow(0 0 12px rgba(159,226,255,.15));
  animation: float 18s infinite linear;
}
.floaty-1 { top: 10%; left: 5%; animation-duration: 12s; }
.floaty-2 { top: 60%; left: 85%; animation-duration: 10s; animation-delay: 1s; }
.floaty-3 { top: 80%; left: 15%; animation-duration: 14s; animation-delay: .5s; }
.floaty-4 { top: 30%; left: 90%; animation-duration: 11s; animation-delay: 2s; }
.floaty-5 { top: 50%; left: 10%; animation-duration: 13s; animation-delay: .2s; }

@keyframes float {
  0% { transform: translateY(100vh) rotate(0); opacity: 0; }
  10% { opacity: .3; }
  90% { opacity: .3; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Hero container */
.hero-modern-container {
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Hero content */
.hero-modern-content {
  position: relative;
  flex: 0 1 auto;
  color: white;
  max-width: 520px;
}
.hero-modern-content > * {
  position: relative;
  z-index: 1;
}
.hero-modern-content::before {
  content: "";
  position: absolute;
  inset: -2.5rem -3rem;
  z-index: 0;
  background: radial-gradient(120% 120% at 30% 40%, rgba(255, 255, 255, .72) 0%, rgba(234, 245, 251, .5) 45%, transparent 78%);
  filter: blur(8px);
  pointer-events: none;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(191, 233, 255, .55);
  border: 1px solid rgba(7, 152, 213, .35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 9px 20px;
  border-radius: 40px;
  font-size: .76rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  box-shadow: 0 8px 30px rgba(7, 89, 135, .18);
  color: #193c94;
}
@keyframes tagShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.tag-pulse {
  width: 8px;
  height: 8px;
  background: var(--umes-sky);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(7,152,213,.18), 0 0 12px rgba(7,152,213,.8);
  animation: tagPulse 1.8s infinite;
}
@keyframes tagPulse {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(3); }
}

.hero-modern-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.6rem;
  letter-spacing: -.5px;
  color: #193c94;
  text-shadow: 0 1px 2px rgba(255, 255, 255, .25);
  max-width: 520px;
}
.hero-modern-title .title-accent {
  display: inline;
  color: #0798d5;
  background: linear-gradient(115deg, #0798d5 0%, #193c94 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.gradient-text {
  background: linear-gradient(115deg, #cff2ff 0%, #5fd0f7 45%, #6bf0ae 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  --shadow-glow: 0 4px 30px rgba(78,200,240,.35);
  filter: drop-shadow(0 3px 26px rgba(78,200,240,.28));
  -webkit-text-stroke: .5px rgba(255,255,255,.55);
}
.hero-modern-verse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(191, 233, 255, .5);
  border: 1px solid rgba(7, 152, 213, .35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: .8rem;
  margin-bottom: 1.2rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: .03em;
  color: #193c94;
}
.hero-modern-verse i {
  color: #0798d5;
  font-size: .95rem;
  filter: drop-shadow(0 0 6px rgba(7,152,213,.45));
}

.hero-modern-text {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.2rem;
  opacity: 1;
  color: #193c94;
  text-shadow: 0 1px 2px rgba(255, 255, 255, .3);
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  margin-bottom: 2.5rem;
  justify-content: flex-start;
  align-items: center;
}
.btn-hero-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #35b6ee 0%, var(--umes-blue) 100%);
  color: #fff;
  padding: 16px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(7,152,213,.35), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(7,152,213,.5), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-hero-primary::after {
  content: "\2192";
  transition: transform .3s ease;
}
.btn-hero-primary:hover::after { transform: translateX(6px); }
.btn-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transition: left .35s ease;
}
.btn-hero-primary:hover .btn-overlay { left: 100%; }

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #bfe9ff 100%);
  border: 1.5px solid #0798d5;
  color: #193c94;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  transition: all .3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(7,152,213,.28), inset 0 1px 0 rgba(255,255,255,.6);
}
.btn-hero-secondary:hover {
  background: linear-gradient(135deg, #eaf5fb 0%, #9fd7f5 100%);
  border-color: var(--umes-blue);
  color: #193c94;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(7,152,213,.4), inset 0 1px 0 rgba(255,255,255,.6);
}

/* Social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  padding: 1.2rem 1.6rem;
  background: rgba(191, 233, 255, .45);
  border: 1px solid rgba(7, 152, 213, .3);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.proof-item { text-align: left; }
.proof-number {
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #193c94;
  line-height: 1;
  letter-spacing: -.5px;
}
.proof-label {
  display: block;
  margin-top: 6px;
  font-size: .72rem;
  font-family: 'Sora', sans-serif;
  opacity: 1;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #193c94;
}
.proof-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(7, 89, 135, .4), transparent);
}

/* Hero gallery */
.hero-modern-gallery {
  flex: 1.6;
  min-width: 0;
  position: relative;
  align-self: flex-start;
  margin-top: -1rem;
}
.balloon-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-balloon {
  position: absolute;
  top: -12%;
  background: rgba(240, 250, 255, .88);
  border-radius: 100px;
  opacity: 0;
  box-shadow: inset -12px -8px 20px rgba(7, 89, 135, .16), 0 6px 18px rgba(7, 89, 135, .12);
  will-change: transform, opacity;
}
.hero-balloon::before,
.hero-balloon::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
  box-shadow: inset -8px -6px 14px rgba(7, 89, 135, .1);
}
.hero-balloon::before { width: 56%; height: 190%; top: -95%; left: 15%; }
.hero-balloon::after  { width: 42%; height: 165%; top: -75%; right: 10%; }
.b1 { left: 4%; width: 108px; height: 44px; animation: balloonFall 15s linear infinite; animation-delay: 0s; background: rgba(240, 250, 255, .85); }
.b2 { left: 14%; width: 144px; height: 56px; animation: balloonFall 18s linear infinite; animation-delay: 2s; background: rgba(191, 233, 255, .8); }
.b3 { left: 26%; width: 45px; height: 57px; animation: balloonFall 12s linear infinite; animation-delay: 5s; background: rgba(210, 240, 255, .82); }
.b4 { left: 38%; width: 120px; height: 50px; animation: balloonFall 20s linear infinite; animation-delay: 1s; background: rgba(240, 250, 255, .78); }
.b5 { left: 52%; width: 54px; height: 69px; animation: balloonFall 15s linear infinite; animation-delay: 7s; background: rgba(235, 248, 255, .8); }
.b6 { left: 64%; width: 63px; height: 81px; animation: balloonFall 16s linear infinite; animation-delay: 10s; background: rgba(191, 233, 255, .75); }
.b7 { left: 76%; width: 96px; height: 39px; animation: balloonFall 14s linear infinite; animation-delay: 4s; background: rgba(210, 240, 255, .82); }
.b8 { left: 88%; width: 71px; height: 90px; animation: balloonFall 18s linear infinite; animation-delay: 8s; background: rgba(240, 250, 255, .8); }
.b9 { left: 22%; width: 135px; height: 54px; animation: balloonFall 22s linear infinite; animation-delay: 12s; background: rgba(235, 248, 255, .8); }
.b10 { left: 47%; width: 39px; height: 54px; animation: balloonFall 11s linear infinite; animation-delay: 3s; background: rgba(210, 240, 255, .8); }

@keyframes balloonFall {
  0%   { transform: translate3d(0, -10vh, 0) rotate(0deg); opacity: 0; }
  8%   { opacity: .9; }
  50%  { transform: translate3d(16px, 45vh, 0) rotate(7deg); opacity: .95; }
  100% { transform: translate3d(-12px, 112vh, 0) rotate(-5deg); opacity: 0; }
}
.gallery-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  opacity: 0;
  transform: translateY(18px) scale(.96);
  animation: galleryFade .6s cubic-bezier(.34,1.56,.64,1) forwards;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.1);
  cursor: pointer;
}
.gallery-item-1 {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}
.gallery-item-1 { animation-delay: .3s; }
.gallery-item-2 { animation-delay: .45s; }
.gallery-item-3 { animation-delay: .6s; }

@keyframes galleryFade {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22,.61,.36,1), filter .4s ease;
  filter: saturate(1.08) contrast(1.03) brightness(.95);
}
.gallery-item img.gallery-swap {
  animation: gallerySwap .8s cubic-bezier(.22,.61,.36,1) both;
}
.gallery-item-1 img.gallery-swap { animation-name: gallerySwapL; animation-delay: .05s; }
.gallery-item-2 img.gallery-swap { animation-delay: .18s; }
.gallery-item-3 img.gallery-swap { animation-delay: .31s; }
@keyframes gallerySwap {
  from { transform: translateX(70px) scale(1.06); opacity: 0; filter: blur(5px); }
  to   { transform: translateX(0) scale(1); opacity: 1; filter: blur(0); }
}
@keyframes gallerySwapL {
  from { transform: translateX(-70px) scale(1.06); opacity: 0; filter: blur(5px); }
  to   { transform: translateX(0) scale(1); opacity: 1; filter: blur(0); }
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.15) contrast(1.05) brightness(1);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,17,31,.45));
  pointer-events: none;
  transition: opacity .3s ease;
}
.gallery-item:hover::after {
  opacity: .6;
}

/* Float card on gallery */
.hero-float-card {
  position: absolute;
  bottom: -48px;
  right: -14px;
  background: rgba(255,255,255,.97);
  border-radius: 14px;
  padding: .65rem 1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  box-shadow: 0 12px 32px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.9);
  animation: heroFloatCard 2.6s ease-in-out infinite;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@keyframes heroFloatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-float-card-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #35b6ee, var(--umes-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .8rem;
  box-shadow: 0 4px 12px rgba(7,89,135,.35);
  flex-shrink: 0;
}
.hero-float-card-info h4 {
  font-family: 'Sora', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: .05rem;
  line-height: 1.2;
}
.hero-float-card-info p {
  font-family: 'Sora', sans-serif;
  font-size: .62rem;
  font-weight: 500;
  color: var(--umes-blue);
  margin: 0;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Scroll indicator */
.scroll-indicator-modern {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #cfe2f0;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .7;
  z-index: 3;
  animation: fadeInUp .6s ease .8s forwards;
  opacity: 0;
}
.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 14px;
  margin: 8px auto 0;
  position: relative;
}
.scroll-wheel {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: linear-gradient(180deg, #fff, #4ec8f0);
  border-radius: 3px;
  animation: scrollWheel 1.6s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { opacity: 1; top: 7px; }
  70% { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 20px; }
}

/* Hero entry animations */
.hero-modern-content > * {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);
  -webkit-filter: blur(8px);
  animation: heroTextReveal .9s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero-tag { animation-delay: .15s; }
.hero-modern-title { animation-delay: .3s; animation-duration: 1.1s; }
.hero-modern-verse { animation-delay: .45s; }
.hero-modern-text { animation-delay: .6s; }
.hero-buttons { animation-delay: .8s; }
.hero-social-proof { animation-delay: 1s; }

.hero-modern > .scroll-indicator-modern { bottom: 64px; }

@keyframes heroTextReveal {
  from { opacity: 0; transform: translateY(26px); filter: blur(8px); -webkit-filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); -webkit-filter: blur(0); }
}

/* Continuous sheen sweeping across the gradient title */
.gradient-text {
  background-size: 200% auto;
  animation: gradientSheen 5s ease-in-out .5s infinite;
}
@keyframes gradientSheen {
  0%, 100% { background-position: 0% center; }
  50%      { background-position: 100% center; }
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero ticker – docked to top of hero-modern */
.hero-modern > .hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
  border-top: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(4,17,28,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(3,19,32,.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 42s linear infinite;
  will-change: transform;
}
.hero-ticker:hover .hero-ticker-track { animation-play-state: paused; }
.hero-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
  font-size: 13px;
  font-weight: 800;
  color: #dceef9;
  letter-spacing: .08em;
  white-space: nowrap;
}
.hero-ticker-item::after {
  content: "\271A";
  color: #4ec8f0;
  font-weight: 900;
  font-size: 12px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid { position: relative; }
.about-grid::before {
  content: "";
  position: absolute;
  top: -70px;
  left: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 176, 232, .18), transparent 70%);
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
}
.about-grid::after {
  content: "";
  position: absolute;
  bottom: -90px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 89, 135, .14), transparent 70%);
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
}
.about-grid > * { position: relative; z-index: 1; }
.photo-card {
  position: relative;
  border-radius: 32px;
  background: linear-gradient(160deg, #ffffff 0%, #dff0fa 100%);
  padding: 10px;
  border: 1px solid rgba(7, 152, 213, .16);
  box-shadow: 0 34px 70px rgba(7, 89, 135, .16);
  overflow: hidden;
}
.photo-card img {
  border-radius: 24px;
  height: 540px;
  width: 100%;
  object-fit: cover;
}
.photo-card::after {
  content: "\271A";
  position: absolute;
  top: 34px;
  right: 34px;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--umes-blue), var(--umes-sky));
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(7, 89, 135, .38);
  z-index: 2;
}
.photo-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .55);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
}
.photo-overlay h3 {
  margin: 0;
  color: var(--umes-blue);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}
.photo-overlay p {
  margin: 8px 0 0;
  color: var(--umes-blue);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}
.about-grid > div:last-child > p:not(.lead) {
  color: var(--slate-600);
  font-size: 15.5px;
  line-height: 1.8;
  margin: 16px 0 0;
}
.about-grid > div:last-child > p.lead { margin-top: 18px; }
.about-grid .btn { margin-top: 30px; }
.about-heading {
  letter-spacing: -2px;
  background: linear-gradient(115deg, #064b74 0%, #087fb5 62%, #25b0e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.about-heading::after {
  content: "";
  display: block;
  width: 88px;
  height: 6px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--umes-blue), var(--umes-sky));
  box-shadow: 0 8px 18px rgba(7, 152, 213, .28);
}

.about-section {
  position: relative;
  overflow: hidden;
}
.about-section .container { position: relative; z-index: 1; }
.balloon-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.balloon-bg i {
  position: absolute;
  top: -150px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, rgba(255, 255, 255, .6), rgba(37, 176, 232, .3) 42%, rgba(7, 152, 213, .12) 68%, transparent 76%);
  filter: blur(1px);
  will-change: transform, opacity;
}
.balloon-bg i:nth-child(1) { left: 5%;  width: 120px; height: 120px; animation: bubbleFall 24s linear infinite; }
.balloon-bg i:nth-child(2) { left: 18%; width: 64px;  height: 64px;  animation: bubbleFallAlt 17s linear 3s infinite; }
.balloon-bg i:nth-child(3) { left: 38%; width: 100px; height: 100px; animation: bubbleFall 28s linear 1s infinite; }
.balloon-bg i:nth-child(4) { left: 58%; width: 76px;  height: 76px;  animation: bubbleFallAlt 19s linear 5s infinite; }
.balloon-bg i:nth-child(5) { left: 76%; width: 140px; height: 140px; animation: bubbleFall 26s linear 2s infinite; }
.balloon-bg i:nth-child(6) { left: 92%; width: 56px;  height: 56px;  animation: bubbleFallAlt 15s linear 4s infinite; }

/* ============================================================
   CORE DIVISIONS CARDS
   ============================================================ */
.card {
  background: #fff;
  border: 1px solid #edf2f7;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(15,23,42,.05);
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.div-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(228,237,246,.9);
  border-radius: 16px;
  position: relative;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s ease;
}
.div-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px rgba(7,89,135,.16);
}
.div-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.div-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,17,31,.5) 0%, rgba(7,17,31,.08) 45%, transparent 100%);
  transition: opacity .3s ease;
}
.div-card:hover .div-card-img::after { opacity: .75; }
.div-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22,.61,.36,1), filter .4s ease;
}
.div-card:hover .div-card-img img {
  transform: scale(1.07);
  filter: saturate(1.15);
}

.div-card-num {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(7,89,135,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  border-radius: 8px;
  padding: 4px 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.div-card-num::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--umes-sky);
}
.div-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 20px 22px;
  position: relative;
}
.div-card-body::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--umes-light), transparent);
}
.div-card-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 7px;
  color: var(--slate-950);
  letter-spacing: -.2px;
}
.div-card-body p {
  flex: 1;
  margin: 0 0 14px;
  color: var(--slate-600);
  font-size: 13.5px;
  line-height: 1.62;
}
.div-card-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--umes-blue);
  transition: gap .25s ease, color .25s ease;
}
.div-card-body a .arr {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--umes-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.div-card-body a:hover { gap: 12px; color: var(--umes-dark); }
.div-card-body a:hover .arr {
  background: var(--umes-blue);
  color: #fff;
  transform: translateX(2px);
}

/* Section header */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.sec-head .head-copy { max-width: 560px; }
.sec-head .head-copy .heading { font-size: clamp(30px,3.4vw,46px); }
.sec-head .head-note {
  max-width: 400px;
  color: var(--slate-600);
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
  padding-top: 6px;
}
.sec-head .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--umes-blue);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sec-head .label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--umes-blue), var(--umes-sky));
  border-radius: 2px;
}

/* ============================================================
   WHY UMES (Dark Section)
   ============================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.stat {
  background: rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 20px;
  font-weight: 800;
  font-size: 14px;
  color: rgba(255,255,255,.9);
}
.stat b {
  font-size: 31px;
  display: block;
}
.dark-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
}
.dark-card p { color: rgba(255,255,255,.76); }

/* ============================================================
   COMMUNITY IMPACT — premium light-glass editorial
   ============================================================ */
.impact-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 520px at 88% -12%, rgba(7, 152, 213, .12), transparent 62%),
    radial-gradient(760px 420px at -8% 108%, rgba(7, 89, 135, .08), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f0f8fc 100%);
}
.impact-hero::before,
.impact-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .14;
  pointer-events: none;
}
.impact-hero::before {
  width: 560px;
  height: 560px;
  right: -200px;
  top: -160px;
  background: var(--umes-sky);
}
.impact-hero::after {
  width: 360px;
  height: 360px;
  left: -140px;
  bottom: -100px;
  background: var(--umes-blue);
}
.impact-hero .container { position: relative; z-index: 1; }

/* --- Premium intro header --- */
.impact-intro {
  position: relative;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}
.impact-intro::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -70px;
  width: 420px;
  height: 150px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(7, 152, 213, .18), transparent 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(2px);
}
.impact-label {
  position: relative;
  padding: 9px 20px 9px 14px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(7, 89, 135, .18);
  box-shadow: 0 12px 30px rgba(7, 89, 135, .10);
  color: var(--umes-blue);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.impact-label::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--umes-sky), var(--umes-blue));
  box-shadow: 0 0 0 0 rgba(7, 152, 213, .4);
  animation: impactPulse 2.4s ease-in-out infinite;
}
.impact-heading {
  margin-top: 26px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  color: var(--umes-dark);
  background: linear-gradient(115deg, #064b74 0%, #087fb5 68%, #25b0e8 108%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.1;
  letter-spacing: -2px;
}
.impact-heading::after {
  content: "";
  display: block;
  width: 108px;
  height: 6px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--umes-blue), var(--umes-sky), #7fd4f2, var(--umes-sky), var(--umes-blue));
  background-size: 200% 100%;
  animation: impactSheen 5s linear infinite;
  box-shadow: 0 8px 18px rgba(7, 152, 213, .28);
}
.impact-lead {
  margin: 24px auto 0;
  max-width: 720px;
  color: #51708a;
  font-size: 18.5px;
}
.impact-intro [data-reveal].revealed {
  animation: impactWaveIn .85s cubic-bezier(.22, .61, .36, 1) both;
}
.impact-intro [data-reveal].revealed.reveal-delay-1 { animation-delay: .12s; }

/* --- Continuous ambient animation --- */
.impact-hero::before,
.impact-hero::after {
  animation: impactOrb 21s ease-in-out infinite alternate;
}
.impact-hero::after {
  animation-name: impactOrbAlt;
  animation-duration: 26s;
}
.impact-media {
  animation: impactFloat 10s ease-in-out infinite;
}
@keyframes impactPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(7, 152, 213, .4); }
  50%      { box-shadow: 0 0 0 9px rgba(7, 152, 213, 0); }
}
@keyframes impactSheen {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes impactOrb {
  from { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-46px, 34px, 0) scale(1.12); }
  to   { transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes impactOrbAlt {
  from { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(52px, -40px, 0) scale(1.18); }
  to   { transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes impactFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes impactWaveIn {
  0%   { opacity: 0; transform: translateY(44px) scale(.96); }
  60%  { opacity: 1; transform: translateY(-6px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.impact-body {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  margin-top: 64px;
}
.impact-head { max-width: 620px; }
.impact-head .label { color: var(--umes-blue); }
.impact-head .heading { color: var(--umes-dark); }
.impact-head .lead { color: #51708a; }

.impact-media {
  margin: 0;
  position: relative;
  height: 470px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(7, 89, 135, .12);
  box-shadow: 0 30px 60px rgba(7, 89, 135, .18);
}
.impact-media::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 22px;
  pointer-events: none;
}
.impact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(224, 236, 245, .9);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 20px 46px rgba(68, 120, 158, .12);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.impact-stat {
  background: linear-gradient(160deg, #ffffff, #f4fafd);
  border: 1px solid #e3edf4;
  border-radius: 16px;
  padding: 18px 16px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.impact-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 152, 213, .45);
  box-shadow: 0 12px 24px rgba(7, 89, 135, .14);
}
.impact-stat b {
  display: block;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(120deg, var(--umes-blue), var(--umes-sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.impact-stat span {
  display: block;
  margin-top: 4px;
  font-size: 13.5px;
  color: #5b7488;
  font-weight: 700;
}

/* Pillars */
.impact-pillars { margin-top: 48px; }
.pillar {
  position: relative;
  overflow: hidden;
  padding: 34px 30px 32px;
  background: #fff;
  border: 1px solid #e5eef5;
  border-radius: 26px;
  box-shadow: 0 10px 26px rgba(56, 110, 150, .06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--umes-blue), var(--umes-sky));
  opacity: 0;
  transition: opacity .3s ease;
}
.pillar:hover {
  transform: translateY(-7px);
  border-color: rgba(7, 152, 213, .35);
  box-shadow: 0 24px 50px rgba(7, 89, 135, .14);
}
.pillar:hover::before { opacity: 1; }
.pillar .pillar-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 62px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(7, 89, 135, .08);
  z-index: 0;
}
.pillar-icon {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--umes-blue), var(--umes-sky));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(7, 89, 135, .28), inset 0 0 0 1px rgba(255, 255, 255, .25);
}
.pillar-icon svg { width: 26px; height: 26px; fill: #fff; }
.pillar h3 { position: relative; z-index: 1; margin-top: 22px; color: var(--umes-dark); }
.pillar p { position: relative; z-index: 1; color: #5b7488; }

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-logo img {
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  display: block;
}
.quote-close { padding-bottom: 28px; }
.quote-heading {
  position: relative;
  color: var(--umes-dark);
  background: linear-gradient(115deg, #064b74 0%, #087fb5 62%, #25b0e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -2px;
}
.quote-heading::after {
  content: "";
  display: block;
  width: 88px;
  height: 6px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--umes-blue), var(--umes-sky));
  box-shadow: 0 8px 18px rgba(7, 152, 213, .28);
}

/* ============================================================
   QUOTE LINK LOADER (logo + circling ring)
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 250, 253, .92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}
.page-loader.show { opacity: 1; visibility: visible; }
.loader-wrap {
  position: relative;
  width: 152px;
  height: 152px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid rgba(7, 152, 213, .16);
  border-top-color: var(--umes-sky);
  border-right-color: var(--umes-blue);
  box-shadow: 0 0 26px rgba(7, 152, 213, .28);
  animation: loaderSpin 1s linear infinite;
}
.loader-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  padding: 10px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(7, 89, 135, .12);
  box-shadow: 0 14px 34px rgba(7, 89, 135, .28);
}
@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   PARTNERS MARQUEE
   ============================================================ */
.partners {
  background: linear-gradient(180deg, #ffffff 0%, #f5fafd 100%);
  padding-top: 36px;
  padding-bottom: 72px;
}
.partner-head {
  text-align: center;
  margin-bottom: 48px;
}
.partner-head .label { color: var(--umes-blue); }
.partner-head .heading {
  margin-top: 14px;
  font-size: clamp(26px, 3vw, 40px);
}
.partner-heading {
  letter-spacing: -2px;
  background: linear-gradient(115deg, #064b74 0%, #087fb5 62%, #25b0e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.partner-heading::after {
  content: "";
  display: block;
  width: 88px;
  height: 6px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--umes-blue), var(--umes-sky));
  box-shadow: 0 8px 18px rgba(7, 152, 213, .28);
}
.partner-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  padding: 12px 0;
}
.partner-track {
  display: flex;
  width: max-content;
  animation: partnerSlide 36s linear infinite;
}
.partner-set {
  display: flex;
  align-items: center;
  gap: 96px;
  padding-right: 96px;
}
.partner-viewport:hover .partner-track { animation-play-state: paused; }
.partner-set img {
  height: 96px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  transition: transform .35s ease;
}
.partner-set img:hover {
  transform: scale(1.08);
}
@keyframes partnerSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .partner-set { gap: 56px; padding-right: 56px; }
  .partner-set img { height: 64px; max-width: 200px; }
}

/* ============================================================
   WHATSAPP & SOCIAL FAB
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 75;
  background: #16a34a;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(22,163,74,.35);
  transition: transform .2s ease, background .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); background: #0f8a3d; }
.whatsapp-float .fab-main { width: 100%; height: 100%; }
.whatsapp-float .fab-icon { width: 28px; height: 28px; }
.whatsapp-float .fab-label { display: none; }

.social-fab-menu {
  position: fixed;
  right: 30px;
  bottom: 96px;
  z-index: 74;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.social-fab-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.social-fab-menu a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(7,17,31,.18);
  transition: transform .2s ease;
}
.social-fab-menu a:hover { transform: translateY(-3px) scale(1.06); }
.social-fab-menu a svg { width: 22px; height: 22px; fill: #fff; }
.social-fab-menu a:nth-child(1) { background: #16a34a; }
.social-fab-menu a:nth-child(2) { background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); }
.social-fab-menu a:nth-child(3) { background: #0a0a0a; }
.social-fab-menu a:nth-child(4) { background: #0a66c2; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
html.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  -webkit-filter: blur(8px);
  transition:
    opacity .75s cubic-bezier(.22,.61,.36,1),
    transform .75s cubic-bezier(.22,.61,.36,1),
    filter .75s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform, filter;
}
html.js-reveal [data-reveal="left"] { transform: translateX(-28px); }
html.js-reveal [data-reveal="right"] { transform: translateX(28px); }
html.js-reveal [data-reveal="zoom"] { transform: scale(.92); }
html.js-reveal [data-reveal].revealed {
  opacity: 1;
  transform: none;
  filter: blur(0);
  -webkit-filter: blur(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* Wave entrance for impact pillars */
@keyframes waveIn {
  0% { opacity: 0; transform: translateY(46px) scale(.94); }
  55% { opacity: 1; transform: translateY(-8px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.impact-pillars .pillar.revealed {
  animation: waveIn .7s cubic-bezier(.22,.61,.36,1) both;
}
.impact-pillars .pillar.reveal-delay-1 { animation-delay: .05s; }
.impact-pillars .pillar.reveal-delay-2 { animation-delay: .18s; }
.impact-pillars .pillar.reveal-delay-3 { animation-delay: .31s; }
.impact-pillars .pillar.reveal-delay-4 { animation-delay: .44s; }

/* Pillar icon wave */
@keyframes iconWave {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-4px); }
}
.impact-pillars .pillar-icon {
  animation: iconWave 2.6s ease-in-out infinite;
  will-change: transform;
}
.impact-pillars .pillar:nth-child(1) .pillar-icon { animation-delay: 0s; }
.impact-pillars .pillar:nth-child(2) .pillar-icon { animation-delay: .4s; }
.impact-pillars .pillar:nth-child(3) .pillar-icon { animation-delay: .8s; }
.impact-pillars .pillar:nth-child(4) .pillar-icon { animation-delay: 1.2s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .hero-modern-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .hero-modern-content {
    text-align: center;
    max-width: 600px;
  }
  .hero-modern-text { margin: 0 auto 2rem; }
  .hero-modern-gallery { max-width: 500px; margin: 0 auto; }
  .hero-buttons, .hero-social-proof { justify-content: center; }
}

@media (max-width: 980px) {
  .grid-2, .impact-body { grid-template-columns: 1fr; }
  .hero-modern { min-height: auto; padding: 5rem 0 3rem; }
  .hero-modern-gallery { display: none; }
  .hero-modern-container { gap: 0; }
  .hero-modern-content { padding: 1.4rem 1.5rem; max-width: 100%; }
  .floating-elements { display: none; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 30px; }
}

@media (max-width: 768px) {
  .hero-modern-title br { display: none; }
  .hero-tag {
    font-size: .75rem;
    padding: 6px 16px;
    margin-bottom: 1.2rem;
  }
  .hero-modern-title { font-size: 2.2rem; margin-bottom: 1rem; }
  .hero-modern-text {
    font-size: .85rem;
    margin-bottom: 1.5rem;
  }
  .hero-buttons { margin-bottom: 1.5rem; }
  .hero-social-proof { padding-top: .8rem; }
  .hero-float-card { display: none; }
  .scroll-indicator-modern { display: none; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 64px 0; }
  .quote-close { padding-bottom: 24px; }
  .partners { padding-top: 32px; padding-bottom: 56px; }

  /* Hero */
  .hero-modern { padding: 4rem 0 2.5rem; }
  .hero-modern-title { font-size: 1.8rem; }
  .hero-modern-content { padding: 1.1rem 1.2rem; max-width: 100%; }
  .hero-tag {
    font-size: .7rem;
    padding: 5px 14px;
    margin-bottom: 1rem;
  }
  .hero-modern-text {
    font-size: .8rem;
    margin-bottom: 1.2rem;
  }
  .hero-buttons {
    margin-bottom: 1rem;
    gap: .6rem;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
  }
  .btn-hero-primary, .btn-hero-secondary {
    padding: 11px 18px;
    font-size: .8rem;
    flex: 1 1 0;
    width: auto;
    white-space: nowrap;
  }
  .hero-social-proof {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .proof-divider { display: none; }
  .proof-number { font-size: 1rem; }
  .proof-label { font-size: .65rem; }

  /* Grids */
  .grid-3, .grid-4, .gallery-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 22px; }

  /* Dark section */
  .section-dark .stat {
    padding: 12px 6px;
    border-radius: 16px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
  }
  .section-dark .stat b { font-size: 21px; }
  .dark-card { padding: 20px 22px; border-radius: 22px; }
  .dark-card h3 { font-size: 19px; margin-top: 0; }

  /* Photo card */
  .photo-card img { height: 380px; }
  .photo-card::after {
    width: 48px;
    height: 48px;
    font-size: 20px;
    border-radius: 14px;
    top: 26px;
    right: 26px;
  }
  .photo-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 16px;
    border-radius: 14px;
  }
  .photo-overlay h3 { font-size: 15px; }
  .photo-overlay p { font-size: 13px; line-height: 1.5; }

  /* Div cards */
  .div-card-img { height: auto; }
  .div-card-img img { height: auto; width: 100%; display: block; }
  .div-card { border-radius: 10px; }
  .div-card-body { padding: 16px 16px 18px; }
  .div-card-body h3 { font-size: 18px; }
  .div-card-body a { font-size: 13px; }

  /* About */
  .about-grid { gap: 24px; }
  .about-grid .btn { width: 100%; padding: 16px 22px; }

  /* Impact */
  .impact-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px; border-radius: 20px; }
  .impact-stat { padding: 16px 10px; text-align: center; border-radius: 14px; }
  .impact-stat b { font-size: clamp(22px,6vw,30px); }
  .impact-stat span { font-size: 12px; margin-top: 3px; }
  .impact-body { margin-top: 56px; gap: 28px; }
  .impact-media { height: auto; border-radius: 24px; }
  .impact-media img { height: auto; width: 100%; display: block; border-radius: 24px; }
  .impact-pillars { margin-top: 32px; grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pillar { padding: 20px 18px; border-radius: 20px; }
  .pillar-icon { width: 48px; height: 48px; border-radius: 14px; }
  .pillar-icon svg { width: 22px; height: 22px; }
  .pillar h3 { font-size: 17px; margin-top: 16px; }
  .pillar p { font-size: 13px; }

  /* Quote */
  .quote-logo img { max-height: 480px; }

  /* WhatsApp */
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
  .whatsapp-float .fab-icon { width: 26px; height: 26px; }
  .social-fab-menu {
    right: 22px;
    bottom: 84px;
  }
  .social-fab-menu a { width: 44px; height: 44px; }
  .social-fab-menu a svg { width: 20px; height: 20px; }
}

@media (max-width: 480px) {
  .hero-modern { padding: 4rem 0 2.5rem; }
  .hero-modern-title { font-size: 1.8rem; }
}

@media (max-width: 400px) {
  .heading { font-size: 32px; }
  .lead { font-size: 16px; }
  .grid-3, .grid-4, .grid-2 { gap: 16px; }
  .div-card-body { padding: 20px 18px 22px; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-slideshow .slide {
    transition: none;
    opacity: 0;
    transform: none;
    filter: none;
    -webkit-filter: none;
  }
  .hero-slideshow .slide.active {
    opacity: 1;
  }
  .hero-slideshow .slide.active.zoom,
  .hero-bg-animation,
  .floating-floaty,
  .tag-pulse,
  .hero-float-card,
  .scroll-wheel,
  .hero-ticker-track,
  .gradient-text,
  .impact-pillars .pillar-icon,
  .impact-hero::before,
  .impact-hero::after,
  .impact-media,
  .impact-heading::after,
  .impact-label::before { animation: none; }
  .hero-balloon { display: none; }
  html.js-reveal [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    -webkit-filter: none;
    transition: none;
  }
  .hero-modern-content > * {
    opacity: 1;
    transform: none;
    filter: none;
    -webkit-filter: none;
    animation: none;
  }
  .impact-pillars .pillar.revealed { animation: none; }
}

/* ============================================================
   WHAT WE SUPPLY — editorial asymmetric grid (Core Divisions)
   ============================================================ */
.div-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: stretch;
}

.div-card { border-radius: 26px; border: 0; background: #fff; }
.div-cat {
  display: block;
  color: #9ce9ff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

/* Intro — small eyebrow, strong headline, supporting note; upper-left, two rows tall */
.sec-intro {
  grid-column: 1 / span 4;
  grid-row: 1 / span 2;
  align-self: center;
  padding-right: 16px;
}
.sec-intro .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--umes-blue);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sec-intro .label::before {
  content: "";
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--umes-blue), var(--umes-sky));
  border-radius: 2px;
}
.sec-intro .heading {
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.05;
}
.sec-intro .head-note {
  max-width: 340px;
  margin-top: 18px;
  padding-top: 0;
  font-size: 15px;
  line-height: 1.75;
}

/* Card placement across the 12-col grid */
.div-grid > :nth-child(2) { grid-column: 5 / span 8; grid-row: 1 / span 2; }
.div-grid > :nth-child(3) { grid-column: 1 / span 4; }
.div-grid > :nth-child(4) { grid-column: 5 / span 4; }
.div-grid > :nth-child(5) { grid-column: 9 / span 4; }
.div-grid > :nth-child(6) { grid-column: 1 / span 7; }
.div-grid > :nth-child(7) { grid-column: 8 / span 5; }

/* View range — premium pill link */
.div-card-body a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  padding: 8px 8px 8px 18px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.div-card-body a .arr {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.div-card-body a:hover {
  background: var(--umes-sky);
  border-color: var(--umes-sky);
  color: #06314f;
  gap: 8px;
}
.div-card-body a:hover .arr {
  background: #06314f;
  color: #fff;
  transform: translateX(2px);
}

/* Featured card — image-led with a full-height glass side panel */
.div-card--feat {
  min-height: 540px;
  position: relative;
}
.div-card--feat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 3;
  background: linear-gradient(90deg, var(--umes-sky), var(--umes-blue));
  border-radius: 26px 26px 0 0;
}
.div-card--feat .div-card-img {
  position: absolute;
  inset: 0;
  height: 100%;
}
.div-card--feat .div-card-img::after {
  background: linear-gradient(to top, rgba(7, 17, 31, .28), transparent 65%);
  opacity: 1;
}
.div-card--feat:hover .div-card-img::after { opacity: 1; }
.div-card--feat .div-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  z-index: 2;
  padding: 26px 28px 28px;
  background: linear-gradient(to top, rgba(4, 18, 32, .97) 0%, rgba(4, 18, 32, .88) 50%, rgba(4, 18, 32, .52) 78%, rgba(4, 18, 32, .14) 100%);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 -14px 30px rgba(2, 12, 22, .25);
}
.div-card--feat .div-card-body h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -.5px;
}
.div-card--feat .div-card-body p {
  color: rgba(255, 255, 255, .85);
  font-size: 14.5px;
  line-height: 1.75;
}
.div-card--feat .div-card-body a { margin-top: 8px; }

/* Tall — image fills the card, frosted glass caption below */
.div-card--tall { min-height: 480px; }
.div-card--tall .div-card-img {
  position: absolute;
  inset: 0;
  height: 100%;
}
.div-card--tall .div-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 22px 24px;
  background: linear-gradient(to top, rgba(4, 18, 32, .97) 0%, rgba(4, 18, 32, .88) 50%, rgba(4, 18, 32, .52) 78%, rgba(4, 18, 32, .14) 100%);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 -14px 30px rgba(2, 12, 22, .25);
}
.div-card--tall .div-card-body h3 { color: #fff; font-size: 22px; }
.div-card--tall .div-card-body p { color: rgba(255, 255, 255, .85); }

/* Short — larger image, frosted glass caption below */
.div-card--short { min-height: 430px; }
.div-card--short .div-card-img {
  position: absolute;
  inset: 0;
  height: 100%;
}
.div-card--short .div-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 22px 24px;
  background: linear-gradient(to top, rgba(4, 18, 32, .97) 0%, rgba(4, 18, 32, .88) 50%, rgba(4, 18, 32, .52) 78%, rgba(4, 18, 32, .14) 100%);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 -14px 30px rgba(2, 12, 22, .25);
}
.div-card--short .div-card-body h3 { color: #fff; font-size: 22px; }
.div-card--short .div-card-body p { color: rgba(255, 255, 255, .85); }

/* Split — full-bleed image, glass side panel */
.div-card--split { min-height: 400px; }
.div-card--split .div-card-img {
  position: absolute;
  inset: 0;
  height: 100%;
}
.div-card--split .div-card-body {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 18px;
  transform: none;
  width: 42%;
  height: 58%;
  z-index: 2;
  padding: 26px 24px;
  justify-content: center;
  background: linear-gradient(to right, rgba(4, 18, 32, .96) 0%, rgba(4, 18, 32, .82) 55%, rgba(4, 18, 32, .4) 100%);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  backdrop-filter: blur(24px) saturate(1.3);
  border-radius: 24px 0 0 24px;
  box-shadow: -12px 0 26px rgba(2, 12, 22, .2);
}
.div-card--split .div-card-body h3 { color: #fff; font-size: 22px; }
.div-card--split .div-card-body p { color: rgba(255, 255, 255, .85); }
.div-card--split .div-card-img::after {
  background: linear-gradient(to top, rgba(7, 17, 31, .20), transparent 60%);
  opacity: 1;
}
.div-card--split:hover .div-card-img::after { opacity: .45; }

.reveal-delay-6 { transition-delay: .6s; }

/* Tablet — 2-column poster stack: image on top, strong caption below */
@media (max-width: 1000px) {
  .div-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .div-grid > .sec-intro, .div-grid > .div-card { grid-column: auto; grid-row: auto; }
  .div-grid > :nth-child(1),
  .div-grid > :nth-child(2),
  .div-grid > :nth-child(5) { grid-column: 1 / -1; }
  .sec-intro { align-self: start; padding-right: 0; }
  .sec-intro .head-note { max-width: 460px; }
  .div-card--feat, .div-card--tall, .div-card--short, .div-card--split {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
  }
  .div-card--feat .div-card-img, .div-card--tall .div-card-img,
  .div-card--short .div-card-img, .div-card--split .div-card-img {
    position: relative;
    inset: 0 auto auto 0;
    width: 100%;
    height: 330px;
    flex: 0 0 auto;
  }
  .div-card--feat .div-card-img img, .div-card--tall .div-card-img img,
  .div-card--short .div-card-img img, .div-card--split .div-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .div-card--feat .div-card-img::after, .div-card--tall .div-card-img::after,
  .div-card--short .div-card-img::after, .div-card--split .div-card-img::after { opacity: 1; }
  .div-card--feat .div-card-body, .div-card--tall .div-card-body,
  .div-card--short .div-card-body, .div-card--split .div-card-body {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    width: auto;
    height: auto;
    transform: none;
    flex: 0 0 auto;
    justify-content: flex-start;
    padding: 24px 24px 26px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 0 0 26px 26px;
    background:
      linear-gradient(to top,
        rgba(4, 18, 32, .97) 0%,
        rgba(4, 18, 32, .88) 50%,
        rgba(4, 18, 32, .52) 78%,
        rgba(4, 18, 32, .14) 100%);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    backdrop-filter: blur(24px) saturate(1.3);
    box-shadow: 0 18px 34px rgba(2, 12, 22, .28);
  }
  .div-card--feat .div-card-body h3 { font-size: 26px; }
  .div-card--tall .div-card-body h3,
  .div-card--short .div-card-body h3,
  .div-card--split .div-card-body h3 { font-size: 21px; }
}

/* Mobile — 2x2 poster grid, compact cards */
@media (max-width: 700px) {
  .div-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .div-grid > .sec-intro, .div-grid > .div-card { grid-column: auto; grid-row: auto; }
  .div-grid > .sec-intro { grid-column: 1 / -1; }
  .div-card--feat .div-card-img, .div-card--tall .div-card-img,
  .div-card--short .div-card-img, .div-card--split .div-card-img {
    height: 150px;
  }
  .div-card--feat .div-card-body, .div-card--tall .div-card-body,
  .div-card--short .div-card-body, .div-card--split .div-card-body {
    padding: 14px 14px 16px;
    border-radius: 0 0 18px 18px;
  }
  .div-card--feat .div-card-body h3,
  .div-card--tall .div-card-body h3,
  .div-card--short .div-card-body h3,
  .div-card--split .div-card-body h3 { font-size: 15px; line-height: 1.3; }
  .div-section-dark .div-card-body .div-cat {
    font-size: 9px;
    letter-spacing: .08em;
    margin-bottom: 4px;
  }
  .div-section-dark .div-card-body p {
    font-size: 11.5px;
    line-height: 1.45;
    margin-bottom: 8px;
  }
  .div-section-dark .div-card-body a {
    width: 100%;
    justify-content: space-between;
    padding: 7px 7px 7px 14px;
    font-size: 11.5px;
  }
}

/* Dark editorial backdrop for the section — deeper navy, drifting glow balloons */
.div-section-dark {
  position: relative;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 85% -14%, rgba(49, 190, 242, .18), transparent 60%),
    radial-gradient(820px 460px at -6% 112%, rgba(7, 152, 213, .14), transparent 55%),
    linear-gradient(155deg, #03203a 0%, #07476e 52%, #0a6a94 130%);
}
.div-section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(720px 420px at 30% 0%, #000, transparent 70%);
  mask-image: radial-gradient(720px 420px at 30% 0%, #000, transparent 70%);
}
.div-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.div-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 14, 26, .3);
}
.div-bg i {
  position: absolute;
  top: -150px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, rgba(255, 255, 255, .45), rgba(90, 205, 255, .32) 42%, rgba(7, 152, 213, .12) 68%, transparent 76%);
  filter: blur(2px);
  will-change: transform, opacity;
}
.div-bg i:nth-child(1) { left: 5%;  width: 130px; height: 130px; animation: bubbleFall 24s linear infinite; }
.div-bg i:nth-child(2) { left: 18%; width: 70px;  height: 70px;  animation: bubbleFallAlt 17s linear 3s infinite; }
.div-bg i:nth-child(3) { left: 38%; width: 110px; height: 110px; animation: bubbleFall 28s linear 1s infinite; }
.div-bg i:nth-child(4) { left: 58%; width: 84px;  height: 84px;  animation: bubbleFallAlt 19s linear 5s infinite; }
.div-bg i:nth-child(5) { left: 76%; width: 150px; height: 150px; animation: bubbleFall 26s linear 2s infinite; }
.div-bg i:nth-child(6) { left: 92%; width: 64px;  height: 64px;  animation: bubbleFallAlt 15s linear 4s infinite; }

@keyframes bubbleFall {
  0%   { transform: translateY(0) translateX(0) scale(.9); opacity: 0; }
  8%   { opacity: 1; }
  80%  { opacity: .8; }
  100% { transform: translateY(1180px) translateX(60px) scale(1.05); opacity: 0; }
}
@keyframes bubbleFallAlt {
  0%   { transform: translateY(0) translateX(0) scale(1.05); opacity: 0; }
  8%   { opacity: .95; }
  80%  { opacity: .75; }
  100% { transform: translateY(1120px) translateX(-70px) scale(.9); opacity: 0; }
}

.div-section-dark .div-grid { position: relative; z-index: 1; }
.div-section-dark .sec-intro .label { color: var(--umes-sky); }
.div-section-dark .sec-intro .heading { color: #fff; }
.div-section-dark .sec-intro .head-note { color: rgba(255, 255, 255, .74); }
.div-section-dark .div-card {
  box-shadow: 0 24px 44px rgba(2, 12, 22, .32);
}
.div-section-dark .div-card--feat {
  box-shadow: 0 34px 70px rgba(2, 12, 22, .5);
}

@media (prefers-reduced-motion: reduce) {
  .div-bg i { animation: none; opacity: .6; transform: translateY(120%); }
  .balloon-bg i { animation: none; opacity: .35; transform: translateY(120%); }
  .page-loader .loader-ring { animation: none; border-top-color: var(--umes-sky); }
  .partner-track { animation: none; }
}

/* Mobile polish for the Core Divisions section */
@media (max-width: 640px) {
  .balloon-bg i { opacity: .8; width: 80px; height: 80px; }
  .balloon-bg i:nth-child(1),
  .balloon-bg i:nth-child(5) { width: 120px; height: 120px; }
  .div-section-dark .div-bg i { opacity: .85; width: 88px; height: 88px; }
  .div-section-dark .div-bg i:nth-child(1),
  .div-section-dark .div-bg i:nth-child(5) { width: 130px; height: 130px; }
  .div-section-dark .sec-intro {
    align-self: start;
    padding-right: 0;
  }
  .div-section-dark .sec-intro .heading {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.12;
  }
  .div-section-dark .sec-intro .head-note {
    max-width: 100%;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
  }
  .div-section-dark .div-grid { gap: 12px; }
  .div-section-dark .sec-intro .heading { font-size: clamp(24px, 7vw, 34px); }
  .div-section-dark .div-card--feat .div-card-body,
  .div-section-dark .div-card--tall .div-card-body,
  .div-section-dark .div-card--short .div-card-body,
  .div-section-dark .div-card--split .div-card-body {
    padding: 14px 14px 16px;
  }
  .div-section-dark .div-card-body h3 { font-size: 15px; line-height: 1.3; }
  .div-section-dark .div-card-body p { font-size: 11.5px; line-height: 1.45; }
  .div-section-dark .div-card-body a { font-size: 11.5px; }
}
