@import url("../../subsites/shared/css/design-tokens.css");

/* ============================================
   Welwitschia Group — Main Stylesheet (IMPROVED v2)
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #0a1628;
  --primary-light: #132744;
  --navy: #0f2341;
  --gold: #6dcafd;
  --gold-light: #4da8e0;
  --gold-glow: rgba(109,202,253,0.25);
  --gold-warm: #f0c040;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #adb5bd;
  --gray-500: #6c757d;
  --gray-600: #495057;
  --gray-700: #343a40;
  --gray-800: #212529;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 30px rgba(109,202,253,0.15);
  --transition: var(--wg-transition-smooth);
  --radius: var(--wg-radius-md);
  --radius-lg: var(--wg-radius-xl);
  --radius-xl: var(--wg-radius-full);
  --font-size-h1: var(--wg-font-size-4xl);
  --font-size-h2: var(--wg-font-size-3xl);
  --font-size-body: var(--wg-font-size-md);
  --font-size-h3: var(--wg-font-size-xl);
  --font-size-h3-tight: var(--wg-font-size-lg);
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--wg-font-body);
  color: var(--gray-700);
  background: var(--white);
  font-size: var(--font-size-body);
  line-height: 1.7;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wg-font-heading);
  color: var(--gray-800);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
p { font-size: var(--font-size-body); }

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: var(--wg-container-max); margin: 0 auto; padding: 0 var(--wg-container-padding); }

.hero,
.wg-about-intro-section,
.wg-why-section,
.ecosystem-section,
.wg-impact-section,
.cta-banner,
.footer {
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6, p, a, span {
  overflow-wrap: break-word;
}

.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.grid-5 > *,
.footer-grid > *,
.stats-bar > * {
  min-width: 0;
}

/* --- Utility --- */
.section { padding: var(--wg-space-5xl) 0; }
.section-sm { padding: var(--wg-space-3xl) 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-light { background: var(--gray-50); }
.bg-primary { background: var(--primary); }
.bg-navy { background: var(--navy); }

/* Textured background sections */
.bg-textured {
  background: linear-gradient(135deg, var(--gray-50) 0%, rgba(109,202,253,0.03) 50%, var(--gray-50) 100%);
  position: relative;
}
.bg-textured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236dcafd' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.bg-dark-gradient {
  background: linear-gradient(135deg, #0a1628 0%, #0f2341 50%, #132744 100%);
  position: relative;
  overflow: hidden;
}
.bg-dark-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(109,202,253,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(109,202,253,0.04) 0%, transparent 50%);
  pointer-events: none;
  animation: bgShift 20s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-5%, -3%); }
}

.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}
.gold-line-center { margin: 0 auto 24px; }

.section-header { max-width: 700px; margin: 0 auto 50px; text-align: center; }
.section-header h2 { font-size: var(--font-size-h2); margin-bottom: 16px; }
.section-header p { color: var(--gray-500); font-size: var(--font-size-body); }

/* --- Floating Decorative Elements --- */
.floating-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: floatShape 15s ease-in-out infinite;
}
.floating-shapes .shape:nth-child(1) {
  width: 300px; height: 300px;
  background: var(--gold);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.floating-shapes .shape:nth-child(2) {
  width: 200px; height: 200px;
  background: var(--gold);
  bottom: -50px; left: -80px;
  animation-delay: -5s;
}
.floating-shapes .shape:nth-child(3) {
  width: 150px; height: 150px;
  background: var(--gold-light);
  top: 40%; left: 60%;
  animation-delay: -10s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.05); }
  50% { transform: translate(-10px, 20px) scale(0.95); }
  75% { transform: translate(15px, 10px) scale(1.02); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); text-transform: uppercase; letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn:hover::before {
  width: 300px;
  height: 300px;
}
.btn-primary {
  background: var(--gold); color: var(--primary);
  border-color: var(--gold); box-shadow: 0 2px 12px rgba(109,202,253,0.3);
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(109,202,253,0.45);
}
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1); border-color: var(--white);
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--primary); color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--primary-light); transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 12px 0;
  transition: transform 0.32s ease, background-color 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, padding 0.32s ease;
  background: #ffffff;
  color: var(--navy);
  border-bottom: 1px solid rgba(15, 35, 65, 0.08);
  box-shadow: 0 10px 28px rgba(15, 35, 65, 0.08);
}

.navbar.nav-hidden {
  transform: translateY(-100%);
}

.navbar::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(100% - 48px, 1280px);
  height: 1px;
  transform: translateX(-50%);
  background: transparent;
  pointer-events: none;
  transition: opacity 0.32s ease;
  opacity: 0;
}

.navbar.scrolled {
  background: #ffffff;
  padding: 9px 0;
  box-shadow: 0 12px 30px rgba(15, 35, 65, 0.12);
  border-bottom: 1px solid rgba(15, 35, 65, 0.08);
}

.navbar.scrolled::after {
  opacity: 0;
}

.navbar .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: auto;
  max-width: 290px;
  padding: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  isolation: isolate;
}

.navbar-logo img {
  height: 42px;
  width: auto;
  max-width: 100%;
  max-height: none;
  transition: all 0.3s ease;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(7, 11, 24, 0.22));
}


.navbar.scrolled .navbar-logo {
  padding: 0;
}

.navbar.scrolled .navbar-logo img {
  height: 40px;
}

@media (max-width: 768px) {
  .navbar-logo {
    max-width: 200px;
  }
  .navbar-logo img {
    height: 36px;
    max-height: none;
  }
  .navbar.scrolled .navbar-logo img {
    height: 34px;
  }
}

.nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-left: auto;
  flex: 0 1 auto;
  justify-content: flex-end;
  max-width: 980px;
}

.nav-links a {
  color: rgba(15, 35, 65, 0.86);
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  z-index: 0;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-head {
  display: flex;
  align-items: center;
}

.nav-dropdown-link {
  color: rgba(15, 35, 65, 0.86);
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  z-index: 0;
}

.nav-dropdown-label {
  cursor: default;
}

.nav-dropdown-toggle {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -6px;
  border: none;
  background: transparent;
  color: rgba(15, 35, 65, 0.86);
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-dropdown-toggle::before {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-link,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-link,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown-link.active,
.nav-dropdown-label.active,
.nav-dropdown-link:hover,
.nav-dropdown-toggle:hover {
  color: var(--navy);
}

.nav-dropdown-link:hover,
.nav-dropdown-toggle:hover {
  transform: translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 280px;
  padding: 10px;
  display: grid;
  gap: 4px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 35, 65, 0.08);
  box-shadow: 0 18px 38px rgba(15, 35, 65, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 1200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown.is-open .nav-dropdown-toggle::before {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(15, 35, 65, 0.9);
}

.nav-dropdown-menu a::before,
.nav-dropdown-menu a::after,
.nav-dropdown-link::before,
.nav-dropdown-link::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(15, 35, 65, 0.05);
  color: var(--navy);
  transform: none;
}

.nav-dropdown-menu a.active {
  background: rgba(15, 35, 65, 0.08);
  color: var(--navy);
}

.nav-links a:hover {
  color: var(--navy);
  transform: translateY(-1px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 8px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
  border-radius: 999px;
}

.nav-links a:hover::after {
  width: calc(100% - 36px);
}

.nav-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: transparent;
  border: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.nav-links a.active {
  color: var(--navy);
}

.nav-links a.active::before {
  opacity: 0;
}

.nav-links a.active::after {
  width: calc(100% - 36px);
}

@media (min-width: 1121px) {
  .navbar {
    padding: 14px 0;
  }

  .navbar.scrolled {
    padding: 11px 0;
  }

  .navbar .container {
    min-height: 60px;
    justify-content: flex-end;
    padding: 0 36px;
  }

  .navbar-logo {
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 340px;
    margin: 0;
  }

  .navbar-logo img {
    height: 84px;
  }

  .navbar.scrolled .navbar-logo img {
    height: 76px;
  }

  .nav-links {
    margin-left: auto;
    margin-right: 0;
    justify-content: flex-end;
    gap: 18px;
    max-width: none;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.11em;
  }

  .nav-dropdown-link {
    padding: 8px 10px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.11em;
  }

  .nav-dropdown-toggle {
    width: 24px;
    height: 24px;
    margin-left: -2px;
  }

  .nav-links a::after {
    left: 10px;
    right: 10px;
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: calc(100% - 20px);
  }
}

@media (max-width: 1320px) {
  .navbar .container {
    gap: 22px;
    padding: 0 22px;
  }

  .nav-links {
    gap: 8px;
    max-width: 900px;
  }

  .nav-links a {
    padding: 7px 11px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .nav-dropdown-link {
    padding: 7px 11px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 1120px) {
  .navbar {
    padding: 10px 0;
  }

  .navbar .container {
    gap: 16px;
    padding: 0 18px;
  }

  .navbar-logo {
    max-width: 190px;
  }

  .navbar-logo img {
    height: 32px;
    max-height: 40px;
  }

  .navbar.scrolled .navbar-logo img {
    height: 30px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    max-width: none;
    background:
      linear-gradient(180deg, rgba(10, 14, 24, 0.985) 0%, rgba(12, 20, 34, 0.965) 100%),
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 35%);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: column;
    justify-content: flex-start;
    padding: 78px 24px 32px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    gap: 10px;
    z-index: 999;
    overflow-y: auto;
    box-shadow: -16px 0 42px rgba(0, 0, 0, 0.28);
  }

  .nav-links.open {
    right: 0;
    box-shadow: -18px 0 54px rgba(0, 0, 0, 0.34);
  }

  .nav-links a {
    width: 100%;
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    transform: translateX(18px);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease, color 0.25s ease;
  }

  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-dropdown-head {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-dropdown-link {
    flex: 1 1 auto;
    width: auto;
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    transform: translateX(18px);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease, color 0.25s ease;
  }

  .nav-dropdown-toggle {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: 0;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    transform: translateX(18px);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease, color 0.25s ease;
  }

  .nav-links.open .nav-dropdown-link,
  .nav-links.open .nav-dropdown-toggle {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-dropdown-link:hover,
  .nav-dropdown-toggle:hover,
  .nav-dropdown-link.active,
  .nav-dropdown-label.active,
  .nav-dropdown.is-open .nav-dropdown-link,
  .nav-dropdown.is-open .nav-dropdown-toggle {
    color: #fff;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
    max-height: 0;
    overflow: hidden;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    max-height: 420px;
  }

  .nav-dropdown-menu a {
    color: rgba(255, 255, 255, 0.88);
    border-radius: 12px;
    padding: 11px 12px;
  }

  .nav-dropdown-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-dropdown-menu a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
  }

  .nav-links.open a {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #fff;
    background: transparent;
  }

  .nav-links a::before {
    display: none;
  }

  .nav-links a::after {
    display: block;
    left: 16px;
    bottom: 6px;
    transform: none;
    height: 2px;
    background: rgba(255, 255, 255, 0.95);
    opacity: 1;
  }

  .nav-links a:hover::after {
    width: 56px;
  }

  .nav-links a.active::after {
    width: 72px;
  }

  .nav-toggle {
    display: flex;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: transparent;
}

.nav-toggle:hover {
  background: rgba(109, 202, 253, 0.08);
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  background: var(--gold);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: var(--gold);
}

/* --- Hero --- */

/* Page Hero (inner pages) */
.page-hero {
  position: relative; height: 420px; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.page-hero .hero-bg { background-attachment: scroll; animation: none; background-position: left center; }
.portfolio-page-hero .hero-bg {
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center 30%;
  background-color: #0f2341;
}
.page-hero .hero-content {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.page-hero .hero-content h1 {
  font-size: var(--font-size-h1);
  color: var(--white);
  text-shadow: 0 12px 28px rgba(4, 10, 20, 0.28);
}
.page-hero .hero-content p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 10px 24px rgba(4, 10, 20, 0.24);
}
.page-hero .hero-content .gold-line {
  background: linear-gradient(90deg, rgba(109, 202, 253, 0.95), rgba(109, 202, 253, 0.75));
}
.page-hero .hero-content [class*="kicker"],
.page-hero .hero-content [class*="subtitle"] {
  color: rgba(255, 255, 255, 0.84);
}

/* --- Cards --- */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--transition); border: 1px solid var(--gray-200);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-image { height: 220px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-image img { transform: scale(1.07); }
.card-body { padding: 28px; }
.card-body h3 { font-size: var(--font-size-h3); margin-bottom: 8px; }
.card-body .card-tag {
  display: inline-block; background: var(--gold); color: var(--primary);
  padding: 4px 12px; border-radius: 4px; font-size: 0.95rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 12px;
}
.card-body p { color: var(--gray-500); font-size: var(--font-size-body); margin-bottom: 16px; }

/* Company Cards */
.company-card {
  position: relative; height: 420px; border-radius: var(--radius-xl);
  overflow: hidden; cursor: pointer;
}
.company-card-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.company-card:hover .company-card-bg { transform: scale(1.08); }
.company-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.93) 0%, rgba(10,22,40,0.15) 60%, transparent 100%);
  transition: background var(--transition);
}
.company-card:hover .company-card-overlay {
  background: linear-gradient(to top, rgba(10,22,40,0.97) 0%, rgba(10,22,40,0.45) 60%, rgba(10,22,40,0.1) 100%);
}
.company-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 32px;
  transform: translateY(12px); transition: transform var(--transition);
}
.company-card:hover .company-card-content { transform: translateY(0); }
.company-card-content h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 4px; }
.company-card-content .subtitle {
  color: var(--gold); font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}
.company-card-content p {
  color: rgba(255,255,255,0.75); font-size: var(--font-size-body); margin-bottom: 20px;
  opacity: 0; transition: opacity var(--transition); line-height: 1.6;
}
.company-card:hover .company-card-content p { opacity: 1; }
.company-card-content .btn { opacity: 0; transition: opacity var(--transition) 0.1s; }
.company-card:hover .company-card-content .btn { opacity: 1; }

/* Company card icon badge */
.company-card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(109,202,253,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(109,202,253,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--transition);
}
.company-card:hover .company-card-icon {
  background: rgba(109,202,253,0.25);
  transform: scale(1.1) rotate(5deg);
}
.company-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Grid Layouts --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }

/* --- Stats --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, #081826, #0b2236);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(109,202,253,0.08);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109,202,253,0.3), transparent);
}

.stat-item {
  padding: 45px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.stat-item:hover {
  background: rgba(109,202,253,0.06);
  transform: translateY(-5px);
}

/* Stat icon */
.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(109,202,253,0.15), rgba(109,202,253,0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(109,202,253,0.12);
}
.stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #6dcafd;
  text-shadow: none;
}
.stat-label {
  margin-top: 12px;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 992px) {
  .hero {
    padding: 110px 20px 156px;
  }
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero-copy {
    max-width: none;
  }
  .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 9vw, 4.8rem);
  }
  .hero-visual {
    min-height: 360px;
  }
  .hero-visual::before {
    width: 332px;
    height: 332px;
  }
  .hero-logo-orbit {
    width: min(100%, 360px);
    height: 360px;
  }
  .hero-logo-center {
    width: 120px;
    height: 120px;
  }
  .hero-logo-item {
    --orbit-radius: 132px;
    width: 162px;
    height: 78px;
  }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 40px 15px; }
  .stat-item::after { display: none; }
  .hero-stats .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .hero {
    min-height: auto;
    padding: 104px 16px 156px;
  }
  .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
    max-width: 11ch;
  }
  .hero-copy p {
    font-size: 0.96rem;
    line-height: 1.7;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-visual {
    min-height: 290px;
  }
  .hero-logo-orbit {
    width: min(100%, 286px);
    height: 286px;
  }
  .hero-visual::before {
    width: 262px;
    height: 262px;
  }
  .hero-logo-center {
    width: 90px;
    height: 90px;
  }
  .hero-logo-item {
    --orbit-radius: 104px;
    width: 124px;
    height: 58px;
    padding: 10px 12px;
    border-radius: 18px;
  }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-number { font-size: 2.5rem; }
  .hero-stats .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .stat-number { font-size: 1.15rem; }
  .hero-stats .stat-label { font-size: 0.65rem; }
  .hero-scroll-indicator { display: none; }
}

/* --- Feature Boxes --- */
.feature-box {
  display: flex; gap: 20px; padding: 28px; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); background: var(--white);
  transition: all var(--transition);
}
.feature-box:hover {
  box-shadow: var(--shadow-md); border-color: rgba(109,202,253,0.35);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px; height: 56px; min-width: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(109,202,253,0.14), rgba(109,202,253,0.05));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(109,202,253,0.18);
  transition: all var(--transition);
}
.feature-box:hover .feature-icon {
  background: linear-gradient(135deg, rgba(109,202,253,0.24), rgba(109,202,253,0.1));
  box-shadow: 0 4px 16px rgba(109,202,253,0.18);
}
.feature-icon svg {
  width: 24px; height: 24px;
  stroke: var(--gold); stroke-width: 1.8;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.feature-box h3 { font-size: var(--font-size-h3); margin-bottom: 8px; }
.feature-box p { color: var(--gray-500); font-size: var(--font-size-body); }

/* --- About Image with Accent --- */
.image-accent-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
}
.image-accent-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.image-accent-wrapper::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.3;
  transition: all var(--transition);
}
.image-accent-wrapper:hover::before {
  top: -8px;
  right: -8px;
  opacity: 0.5;
}
.image-accent-wrapper::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  opacity: 0.12;
  z-index: 0;
}

/* --- Main About Intro Refresh --- */
.wg-about-intro-section {
  position: relative;
}

.wg-about-intro-container {
  position: relative;
  z-index: 1;
  max-width: var(--wg-container-max);
  margin: 0 auto;
  padding: 0 var(--wg-container-padding);
}

.wg-about-intro-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.wg-about-intro-copy {
  max-width: 640px;
}

.wg-about-intro-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wg-about-intro-kicker::before {
  content: '';
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.wg-about-intro-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.wg-about-intro-copy p {
  margin: 0 0 18px;
  max-width: 60ch;
  color: #6f7f8f;
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 2.05;
}

.wg-about-intro-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 32px;
}

.wg-about-intro-point {
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(15,35,65,0.08);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.wg-about-intro-point strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gray-800);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 2.05;
}

.wg-about-intro-point span {
  display: block;
  color: #6f7f8f;
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 2.05;
}

.wg-about-intro-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wg-about-intro-visual {
  display: flex;
  justify-content: flex-end;
}

.wg-about-intro-media {
  position: relative;
  width: min(100%, 540px);
  min-height: 700px;
  overflow: hidden;
  border-radius: 38px;
  background: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 34px 80px rgba(15, 23, 42, 0.18);
}

.wg-about-intro-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,23,42,0.06) 0%, rgba(15,23,42,0.02) 34%, rgba(15,23,42,0.48) 100%),
    linear-gradient(135deg, rgba(255,255,255,0.12), transparent 34%);
  z-index: 1;
  pointer-events: none;
}

.wg-about-intro-media::after {
  content: '';
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 132px;
  height: 132px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.22);
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  z-index: 2;
  pointer-events: none;
}

.wg-about-intro-media > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
  transform: scale(1.04);
}

.wg-about-intro-card {
  position: absolute;
  left: -34px;
  bottom: 0;
  z-index: 2;
  width: min(100%, 320px);
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(10,22,40,0.94);
  border: 1px solid rgba(109,202,253,0.16);
  box-shadow: 0 22px 50px rgba(10, 22, 40, 0.3);
}

.wg-about-intro-card-label {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wg-about-intro-card-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wg-about-intro-stat {
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.wg-about-intro-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
}

.wg-about-intro-stat span {
  display: block;
  color: rgba(255,255,255,0.66);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- Why Choose Us Refresh --- */
.wg-why-section {
  position: relative;
}

.wg-why-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: start;
}

.wg-why-lead {
  padding: 34px 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.72));
  border: 1px solid rgba(15,35,65,0.08);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
}

.wg-why-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wg-why-kicker::before {
  content: '';
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.wg-why-lead h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.wg-why-lead p {
  margin: 0;
  color: var(--gray-500);
  line-height: 1.85;
}

.wg-why-summary {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.wg-why-feature {
  position: relative;
  grid-column: 1 / -1;
  height: clamp(220px, 28vw, 360px);
  margin: 4px 0 0;
  border-radius: 0;
  overflow: hidden;
  background: rgba(15,35,65,0.08);
}

.wg-why-feature img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-fit: cover;
  object-position: center 38%;
}

.wg-why-summary-item {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(15,35,65,0.04);
  border: 1px solid rgba(15,35,65,0.06);
}

.wg-why-summary-item strong {
  color: var(--gray-800);
  font-size: 1rem;
  line-height: 1.3;
}

.wg-why-summary-item span {
  color: var(--gray-500);
  font-size: 0.94rem;
  line-height: 1.6;
}

.wg-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.wg-why-card {
  position: relative;
  min-height: 100%;
  padding: 28px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(243,247,251,0.92));
  border: 1px solid rgba(15,35,65,0.08);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.wg-why-card::before {
  content: '';
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,202,253,0.14), transparent 68%);
  pointer-events: none;
}

.wg-why-card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(109,202,253,0.16), rgba(109,202,253,0.05));
  border: 1px solid rgba(109,202,253,0.18);
}

.wg-why-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--navy);
}

.wg-why-card-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gray-500);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wg-why-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.wg-why-card p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.97rem;
  line-height: 1.75;
}

/* --- Companies Section Refresh --- */
.ecosystem-section {
  position: relative;
  overflow: hidden;
  padding-block: 110px;
  background:
    linear-gradient(180deg, #eef6ff 0%, #d9eafd 26%, #b7d5f2 58%, #8eb9dd 100%);
}

.ecosystem-section::before,
.ecosystem-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.ecosystem-section::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(242,247,255,0.26), rgba(91,143,191,0.18)),
    url('../images/corporate/echo.webp') center/cover no-repeat;
  opacity: 0.62;
  filter: saturate(0.88) blur(1px);
  transform: scale(1.04);
  animation: ecosystemBackgroundDrift 28s ease-in-out infinite alternate;
}

.ecosystem-section::after {
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.18), transparent 22%),
    radial-gradient(circle at 78% 26%, rgba(194,224,255,0.14), transparent 24%),
    linear-gradient(180deg, rgba(12,33,57,0.44) 0%, rgba(18,49,82,0.52) 32%, rgba(13,38,66,0.68) 68%, rgba(8,24,44,0.78) 100%);
}

.ecosystem-container {
  position: relative;
  z-index: 2;
}

.ecosystem-container::before {
  content: '';
  position: absolute;
  inset: 110px 7% 64px;
  border-radius: 44px;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.24), rgba(255,255,255,0.04) 54%, transparent 74%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  mask: linear-gradient(180deg, transparent 0, rgba(0,0,0,0.95) 20%, rgba(0,0,0,0.95) 100%);
  opacity: 0.42;
  pointer-events: none;
}

.ecosystem-wave {
  position: absolute;
  left: -10%;
  right: -10%;
  height: 250px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.8;
  z-index: 1;
}

.ecosystem-wave-top {
  top: -148px;
  background:
    radial-gradient(circle at 50% 52%, rgba(255,255,255,0.9), rgba(255,255,255,0.2) 52%, transparent 66%);
  animation: ecosystemWaveDrift 20s ease-in-out infinite alternate;
}

.ecosystem-wave-bottom {
  bottom: -168px;
  background:
    radial-gradient(circle at 48% 36%, rgba(226,240,255,0.24), rgba(255,255,255,0.02) 48%, transparent 62%);
  animation: ecosystemWaveDriftReverse 24s ease-in-out infinite alternate;
}

.ecosystem-head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.ecosystem-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #2b5f91;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ecosystem-kicker::before,
.ecosystem-kicker::after {
  content: '';
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(71,165,236,0.35), rgba(71,165,236,0.95));
}

.ecosystem-head h1,
.ecosystem-head h2 {
  margin-bottom: 16px;
  color: #f7fbff;
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.ecosystem-head p {
  max-width: 62ch;
  margin: 0 auto;
  color: rgba(235,245,255,0.82);
  line-height: 1.85;
}

.ecosystem-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 auto 42px;
}

.ecosystem-tab {
  min-width: 86px;
  padding: 12px 18px;
  border: 1px solid rgba(232,243,255,0.42);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(241,247,255,0.88);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: none;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), background-color var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition), opacity var(--transition);
}

.ecosystem-tab:hover,
.ecosystem-tab.is-active {
  transform: translateY(-2px) scale(1.04);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  border-color: rgba(120,214,255,0.7);
  box-shadow: 0 0 0 1px rgba(120,214,255,0.16) inset;
}

.ecosystem-tab:not(.is-active) {
  opacity: 0.82;
}

.ecosystem-stage {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecosystem-stage::before {
  content: '';
  position: absolute;
  inset: 22% 18% 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(109,202,253,0.16) 0%, rgba(109,202,253,0.08) 34%, transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

@keyframes ecosystemFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(54px, -18px, 0) scale(1.08);
  }
}

@keyframes ecosystemFloatReverse {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-48px, 22px, 0) scale(1.06);
  }
}

@keyframes ecosystemWaveDrift {
  0% {
    transform: translateX(0) scaleX(1);
  }
  100% {
    transform: translateX(32px) scaleX(1.04);
  }
}

@keyframes ecosystemWaveDriftReverse {
  0% {
    transform: translateX(0) scaleX(1);
  }
  100% {
    transform: translateX(-28px) scaleX(1.03);
  }
}

@keyframes ecosystemBackgroundDrift {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.09) translate3d(0, -14px, 0);
  }
}

.ecosystem-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, 420px);
  min-height: 500px;
  padding: 18px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.32);
  box-shadow: 0 26px 70px rgba(23,53,86,0.18);
  backdrop-filter: blur(20px);
  transform: translate(-50%, -50%);
  transition: transform 0.65s ease, opacity 0.65s ease, filter 0.65s ease, box-shadow 0.65s ease;
}

.ecosystem-card-bg,
.ecosystem-card-overlay {
  position: absolute;
  inset: 0;
}

.ecosystem-card-bg {
  overflow: hidden;
}

.ecosystem-card-bg-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 0.8s ease;
}

.ecosystem-card-overlay {
  background:
    linear-gradient(180deg, rgba(7,19,34,0.32) 0%, rgba(9,24,43,0.5) 28%, rgba(10,26,47,0.72) 56%, rgba(7,18,33,0.94) 100%);
}

.ecosystem-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 464px;
  padding: 28px;
}

.ecosystem-card-logo {
  width: 168px;
  height: 92px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.ecosystem-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.28));
}

.ecosystem-card-logo img.is-white-logo {
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 10px 18px rgba(0,0,0,0.28));
}

.ecosystem-card-meta {
  margin-bottom: 10px;
  color: rgba(209,234,255,0.88);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ecosystem-card h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.6rem);
  letter-spacing: -0.05em;
}

.ecosystem-card p {
  margin-bottom: 24px;
  color: rgba(237,245,255,0.84);
  line-height: 1.78;
}

.ecosystem-card .btn {
  align-self: flex-start;
  padding: 13px 24px;
  border-radius: 0;
}

.ecosystem-card.is-active {
  z-index: 3;
  opacity: 1;
  filter: blur(0);
  box-shadow: 0 34px 84px rgba(23,53,86,0.24);
  transform: translate(-50%, -50%) scale(1);
}

.ecosystem-card.is-active .ecosystem-card-bg-media {
  transform: scale(1.01);
}

.ecosystem-card.is-prev,
.ecosystem-card.is-next {
  z-index: 2;
  opacity: 0.64;
  filter: blur(1.8px) saturate(0.88);
}

.ecosystem-card.is-prev {
  transform: translate(calc(-50% - 340px), calc(-50% + 18px)) scale(0.84);
}

.ecosystem-card.is-next {
  transform: translate(calc(-50% + 340px), calc(-50% + 18px)) scale(0.84);
}

.ecosystem-card.is-hidden {
  z-index: 1;
  opacity: 0;
  filter: blur(4px);
  pointer-events: none;
  transform: translate(-50%, calc(-50% + 46px)) scale(0.76);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-media,
  .ecosystem-card-bg-media {
    animation: none;
    transition: none;
    transform: none;
  }
}

.ecosystem-arrow {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232,243,255,0.3);
  border-radius: 0;
  background: rgba(255,255,255,0.04);
  box-shadow: none;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition), border-color var(--transition), opacity var(--transition);
  z-index: 4;
  opacity: 0.9;
}

.ecosystem-arrow:hover {
  transform: translateY(-50%) scale(1.04);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 1px rgba(120,214,255,0.14) inset;
  border-color: rgba(120,214,255,0.56);
}

.ecosystem-arrow-prev {
  left: max(0px, calc(50% - 290px));
}

.ecosystem-arrow-next {
  right: max(0px, calc(50% - 290px));
}

.ecosystem-arrow span {
  width: 10px;
  height: 10px;
  border-top: 1.5px solid rgba(245,249,255,0.92);
  border-right: 1.5px solid rgba(245,249,255,0.92);
}

.ecosystem-arrow-prev span {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.ecosystem-arrow-next span {
  transform: rotate(45deg);
  margin-right: 4px;
}

.wg-companies-section {
  position: relative;
}

.wg-companies-container {
  position: relative;
  z-index: 1;
}

.wg-companies-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.wg-companies-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wg-companies-kicker::before {
  content: '';
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.wg-companies-head h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.wg-companies-head p {
  margin: 0 auto;
  max-width: 64ch;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
}

.wg-companies-grid {
  align-items: stretch;
}

.company-card-modern {
  height: 460px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 26px 56px rgba(0,0,0,0.22);
}

.company-card-modern .company-card-overlay {
  background:
    linear-gradient(180deg, rgba(10,22,40,0.18) 0%, rgba(10,22,40,0.42) 42%, rgba(10,22,40,0.96) 100%);
}

.company-card-modern:hover .company-card-overlay {
  background:
    linear-gradient(180deg, rgba(10,22,40,0.12) 0%, rgba(10,22,40,0.36) 38%, rgba(10,22,40,0.98) 100%);
}

.company-card-modern .company-card-content {
  transform: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.company-card-modern:hover .company-card-content {
  transform: none;
}

.company-card-modern .company-card-content h3 {
  margin-bottom: 0;
  font-size: 1.7rem;
  line-height: 1.1;
}

.company-card-modern .company-card-content .subtitle {
  margin-bottom: 0;
  color: rgba(109,202,253,0.95);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}

.company-card-modern .company-card-content p {
  margin-bottom: 0;
  opacity: 1;
  color: rgba(255,255,255,0.78);
  max-width: 30ch;
}

.company-card-modern .company-card-content .btn {
  opacity: 1;
  align-self: flex-start;
  margin-top: 4px;
  padding: 12px 22px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.company-card-modern .company-card-icon {
  top: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
}

.company-card-modern:hover .company-card-icon {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.company-card-modern .company-card-icon svg {
  stroke: #d7ecfb;
}

.company-cta-card-modern {
  min-height: 460px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(109,202,253,0.16), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 26px 56px rgba(0,0,0,0.18);
}

.company-cta-card-modern .company-cta-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px 32px;
}

.company-cta-card-modern .company-cta-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.company-cta-card-modern .company-cta-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.company-cta-card-modern h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.18;
}

.company-cta-card-modern p {
  margin-bottom: 22px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

.company-cta-card-modern .btn {
  align-self: flex-start;
}

/* --- Community Impact Refresh --- */
.wg-impact-section {
  position: relative;
}

.wg-impact-container {
  position: relative;
  z-index: 1;
}

.wg-impact-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.wg-impact-media {
  position: relative;
  max-width: 500px;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(243,247,251,0.92));
  border: 1px solid rgba(109,202,253,0.16);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

.wg-impact-media::before {
  content: '';
  position: absolute;
  right: -14px;
  top: 28px;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(109,202,253,0.16), rgba(109,202,253,0.04));
  z-index: 0;
}

.wg-impact-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.wg-impact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wg-impact-kicker::before {
  content: '';
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.wg-impact-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  max-width: 13ch;
}

.wg-impact-copy p {
  margin: 0 0 26px;
  max-width: 60ch;
  color: var(--gray-500);
  line-height: 1.85;
}

.wg-impact-list {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.wg-impact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15,35,65,0.08);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.wg-impact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(109,202,253,0.16), rgba(109,202,253,0.05));
  border: 1px solid rgba(109,202,253,0.18);
}

.wg-impact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
}

.wg-impact-item-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gray-800);
  font-size: 1rem;
  line-height: 1.3;
}

.wg-impact-item-copy span {
  display: block;
  color: var(--gray-500);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* --- About Page Refresh --- */
.wg-about-page-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(10,22,40,0.72), rgba(10,22,40,0.82));
}

.wg-about-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.78);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wg-about-page-kicker::before {
  content: '';
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.wg-about-page-main {
  position: relative;
  overflow: hidden;
}

.wg-about-page-container {
  position: relative;
  z-index: 1;
}

.wg-about-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wg-about-section-kicker::before {
  content: '';
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.wg-about-section-kicker-light {
  color: rgba(255,255,255,0.8);
}

.wg-about-story-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 46px;
  align-items: center;
  margin-bottom: 88px;
}

.wg-about-story-copy h2,
.wg-about-purpose-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.wg-about-story-copy h2 {
  max-width: 13ch;
}

.wg-about-story-copy p,
.wg-about-purpose-intro p {
  margin: 0 0 18px;
  color: var(--gray-500);
  line-height: 1.9;
}

.wg-about-story-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.wg-about-story-point {
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(15,35,65,0.08);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.wg-about-story-point strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gray-800);
  font-size: 1rem;
}

.wg-about-story-point span {
  display: block;
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
}

.wg-about-story-visual {
  display: flex;
  justify-content: flex-end;
}

.wg-about-story-media {
  position: relative;
  width: min(100%, 470px);
  padding: 18px 18px 82px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(243,247,251,0.92));
  border: 1px solid rgba(109,202,253,0.16);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14);
}

.wg-about-story-media::before {
  content: '';
  position: absolute;
  top: -12px;
  right: 26px;
  width: 116px;
  height: 116px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(109,202,253,0.18), rgba(109,202,253,0.04));
}

.wg-about-story-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.wg-about-story-card {
  position: absolute;
  left: -36px;
  bottom: 0;
  z-index: 2;
  width: min(100%, 430px);
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(10,22,40,0.95);
  border: 1px solid rgba(109,202,253,0.16);
  box-shadow: 0 22px 50px rgba(10, 22, 40, 0.3);
}

.wg-about-story-card-label {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wg-about-story-card-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wg-about-story-stat {
  min-width: 0;
  padding: 16px 14px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.wg-about-story-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.32rem;
}

.wg-about-story-stat span {
  display: block;
  color: rgba(255,255,255,0.66);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wg-about-purpose-shell {
  display: grid;
  gap: 24px;
  margin-bottom: 84px;
}

.wg-about-purpose-intro {
  max-width: 760px;
}

.wg-about-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.wg-about-purpose-card {
  padding: 34px;
}

.wg-about-purpose-card-kicker,
.wg-about-value-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gray-500);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wg-about-purpose-card h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  line-height: 1.22;
}

.wg-about-values-head {
  margin-bottom: 34px;
}

.wg-about-values-head p {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.wg-about-values-grid {
  align-items: stretch;
}

.wg-about-value-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 28px 24px;
  border-radius: 24px;
  gap: 0;
}

.wg-about-value-card .feature-icon {
  margin-bottom: 18px;
}

.wg-about-value-card h3 {
  margin-bottom: 10px;
}

.wg-about-value-card p {
  margin: 0;
}

.wg-about-framework-shell {
  margin-top: 56px;
}

.wg-about-framework-head {
  margin-bottom: 34px;
}

.wg-about-framework-head p {
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
}

.wg-about-framework-grid {
  align-items: stretch;
}

.wg-about-framework-card {
  height: 100%;
  border: 1px solid rgba(15, 35, 65, 0.08);
  box-shadow: 0 18px 42px rgba(15, 35, 65, 0.08);
}

.wg-about-framework-image {
  height: 320px;
}

.wg-about-framework-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wg-about-framework-body {
  padding: 28px;
}

.wg-about-framework-body .card-tag {
  margin-bottom: 16px;
}

.wg-about-framework-body h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.wg-about-framework-body p {
  margin: 0;
}

.wg-about-cta {
  background: linear-gradient(135deg, #0a1628 0%, #0f2341 50%, #132744 100%);
  text-align: center;
}

.wg-about-cta-simple {
  max-width: 860px;
  margin: 0 auto;
}

.wg-about-cta-simple .gold-line {
  margin-bottom: 24px;
}

.wg-about-cta-simple h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.wg-about-cta-simple p {
  max-width: 34ch;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

.wg-about-cta-simple .btn {
  box-shadow: 0 14px 28px rgba(109,202,253,0.22);
}

/* --- Newsfeed Refresh --- */
.wg-news-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(10,22,40,0.78), rgba(10,22,40,0.86));
}

.wg-news-kicker,
.wg-news-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wg-news-kicker {
  color: rgba(255,255,255,0.8);
}

.wg-news-section-kicker {
  color: var(--navy);
}

.wg-news-kicker::before,
.wg-news-section-kicker::before {
  content: '';
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.wg-news-section {
  background: #f6f8fb;
}

.wg-news-shell {
  display: grid;
  gap: 22px;
}

.wg-news-head {
  max-width: 820px;
  display: grid;
  gap: 0;
  padding-bottom: 6px;
}

.wg-news-head h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  max-width: 13ch;
}

.wg-news-head p {
  margin: 0;
  max-width: 58ch;
  color: var(--gray-500);
  line-height: 1.75;
}

.wg-news-meta-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(15,35,65,0.12);
  border-bottom: 1px solid rgba(15,35,65,0.12);
}

.wg-news-meta-bar span {
  color: var(--gray-500);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wg-news-meta-bar span:nth-child(2) {
  text-align: center;
}

.wg-news-meta-bar span:last-child {
  text-align: right;
}

.wg-news-feature {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  padding: 6px 0 24px;
  border-bottom: 1px solid rgba(15,35,65,0.12);
}

.wg-news-feature-media {
  position: relative;
}

.wg-news-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 20px;
}

.wg-news-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 6px 0;
}

.wg-news-date {
  display: inline-block;
  margin: 12px 0 10px;
  color: var(--gray-400);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.wg-news-feature-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--gray-800);
  max-width: 12ch;
}

.wg-news-feature-copy p {
  margin: 0 0 16px;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 52ch;
}

.wg-news-feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.wg-news-feature-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: var(--gray-600);
  font-size: 0.8rem;
  font-weight: 600;
}

.wg-news-feature-points span::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(109,202,253,0.12);
}

.wg-news-grid {
  align-items: stretch;
}

.wg-news-grid-news {
  gap: 16px 20px;
}

.wg-news-card {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(15,35,65,0.08);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
  background: rgba(255,255,255,0.92);
  overflow: hidden;
}

.wg-news-card::after {
  display: none;
}

.wg-news-card .card-image {
  height: 180px;
  border-radius: 0;
  overflow: hidden;
}

.wg-news-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 18px 18px 20px;
}

.wg-news-card .card-tag {
  margin-bottom: 0;
}

.wg-news-card .wg-news-date {
  color: var(--gray-400);
}

.wg-news-card h3 {
  margin-bottom: 8px;
  line-height: 1.22;
  font-size: 1.18rem;
}

.wg-news-card p {
  margin-bottom: 12px;
  line-height: 1.68;
}

.wg-news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wg-news-link::after {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.wg-news-link:hover::after {
  width: 28px;
}

.wg-news-card-wide {
  grid-column: span 1;
  display: block;
}

.wg-news-card-wide .card-image {
  height: 180px;
  min-height: 180px;
}

.wg-news-card-wide .card-body {
  justify-content: flex-start;
  padding: 18px 18px 20px;
}

.wg-news-card-wide h3 {
  font-size: 1.18rem;
}

.wg-news-cta {
  background: linear-gradient(135deg, #0a1628 0%, #11274a 100%);
  text-align: center;
}

.wg-news-cta-simple {
  max-width: 860px;
  margin: 0 auto;
}

.wg-news-cta-simple .gold-line {
  margin-bottom: 24px;
}

.wg-news-cta-simple h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.wg-news-cta-simple p {
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
  max-width: 34ch;
}

.wg-news-cta-simple .btn {
  box-shadow: 0 14px 28px rgba(109,202,253,0.22);
}

/* --- Why Choose Us / Icon Feature Grid --- */
.icon-feature {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.icon-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.icon-feature:hover::before {
  transform: scaleX(1);
}
.icon-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(109,202,253,0.2);
}
.icon-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(109,202,253,0.14), rgba(109,202,253,0.04));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(109,202,253,0.15);
  transition: all var(--transition);
}
.icon-feature:hover .icon-feature-icon {
  background: linear-gradient(135deg, rgba(109,202,253,0.25), rgba(109,202,253,0.1));
  box-shadow: 0 8px 24px rgba(109,202,253,0.2);
  transform: scale(1.1);
}
.icon-feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-feature h3 {
  font-size: 1.28rem;
  margin-bottom: 8px;
}
.icon-feature p {
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- Marquee / Trusted By --- */
.marquee-section {
  padding: 40px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray-400);
  margin-bottom: 24px;
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.marquee-track img {
  height: 40px;
  margin: 0 48px;
  filter: grayscale(1) opacity(0.5);
  transition: all var(--transition);
}
.marquee-track img:hover {
  filter: grayscale(0) opacity(1);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Team --- */
.team-card {
  text-align: left; background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(109,202,253,0.3); }
.team-card-header {
  height: 320px; background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.team-card-header::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10,22,40,0.32) 0%, rgba(10,22,40,0.02) 48%, transparent 74%),
    radial-gradient(circle at 50% 120%, rgba(109,202,253,0.12), transparent 65%);
}
.team-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
}
.team-avatar {
  display: none;
}
.team-card-body { padding: 24px 24px 26px; }
.team-card-body h3 { font-size: 1.18rem; margin-bottom: 6px; line-height: 1.2; }
.team-card-body .position {
  color: var(--navy); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 12px;
}
.team-card-body p { color: var(--gray-500); font-size: 0.96rem; line-height: 1.65; }

/* --- Contact Form --- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 600; margin-bottom: 6px;
  font-size: 1.05rem; color: var(--gray-700);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-300);
  border-radius: var(--radius); font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem; transition: all var(--transition);
  background: var(--white); color: var(--gray-800);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(109,202,253,0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* --- Footer --- */
.footer {
  background: var(--primary); color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
  border-top: 1px solid rgba(109,202,253,0.08);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109,202,253,0.3), transparent);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 18px; letter-spacing: 0.3px; }
.footer p { font-size: 1.05rem; line-height: 1.85; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,0.6); font-size: 1.05rem; transition: all var(--transition); }
.footer ul li a:hover { color: var(--gold); transform: translateX(4px); display: inline-block; }
.footer-logo img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-logo-container {
  display: inline-block;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  backdrop-filter: none;
}

.footer-logo-container:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item svg {
  width: 15px; height: 15px; stroke: var(--gold); fill: none;
  flex-shrink: 0; margin-top: 3px; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a[href^="mailto:"] { white-space: nowrap; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 22px;
  padding: 0 0 24px;
  margin-top: -10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-socials-title {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-socials-title::before {
  display: none;
}

.footer-socials-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 10px;
}

.footer-socials-links a,
.footer-bottom a {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-socials-links a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 82px;
  text-align: center;
}

.footer-socials-links a::before {
  content: '';
  width: 28px;
  height: 28px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
  transition: transform var(--transition), filter var(--transition);
}

.footer-socials-links a:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236dcafd'%3E%3Cpath d='M22 12a10 10 0 1 0-11.56 9.88v-6.99H7.9V12h2.54V9.8c0-2.5 1.5-3.88 3.78-3.88 1.09 0 2.23.2 2.23.2v2.46H15.2c-1.24 0-1.63.77-1.63 1.56V12h2.77l-.44 2.89h-2.33v6.99A10 10 0 0 0 22 12Z'/%3E%3C/svg%3E");
}

.footer-socials-links a:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236dcafd' stroke-width='1.8'%3E%3Crect x='3.5' y='3.5' width='17' height='17' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='%236dcafd' stroke='none'/%3E%3C/svg%3E");
}

.footer-socials-links a:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236dcafd'%3E%3Cpath d='M6.94 8.5H3.56V20h3.38V8.5ZM5.25 3A1.97 1.97 0 1 0 5.3 6.94 1.97 1.97 0 0 0 5.25 3ZM20.44 12.74c0-3.47-1.85-5.08-4.32-5.08-1.99 0-2.88 1.1-3.38 1.87V8.5H9.38c.04.68 0 11.5 0 11.5h3.36v-6.42c0-.34.02-.68.12-.92.27-.68.9-1.39 1.95-1.39 1.38 0 1.93 1.05 1.93 2.59V20h3.36v-7.26Z'/%3E%3C/svg%3E");
}

.footer-socials-links a:hover,
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-socials-links a:hover::before {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 18px rgba(109,202,253,0.18));
}

/* --- Contact Info Items (contact page) --- */
.contact-info-block { display: flex; flex-direction: column; gap: 0; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--gray-100);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(109,202,253,0.14), rgba(109,202,253,0.05));
  border: 1px solid rgba(109,202,253,0.18);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px; height: 20px; stroke: var(--gold); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.contact-info-item h4 { font-size: 1.10rem; margin-bottom: 3px; color: var(--gray-800); }
.contact-info-item p, .contact-info-item a {
  color: var(--gray-500); font-size: 1.05rem; line-height: 1.6;
}
.contact-info-item a:hover { color: var(--gold); }

/* --- Job meta items --- */
.job-meta-item {
  display: inline-flex; align-items: center; gap: 5px; color: var(--gray-500); font-size: 1.06rem;
}
.job-meta-item svg {
  width: 13px; height: 13px; stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* --- Mission / Vision Boxes --- */
.mission-box {
  padding: 40px; background: var(--gray-50); border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold); transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.mission-box::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: rgba(109,202,253,0.06);
  border-radius: 50%;
}
.mission-box:hover { box-shadow: var(--shadow-md); background: var(--white); }
.mission-box h3 { color: var(--gold); margin-bottom: 12px; font-size: var(--font-size-h3); }
.mission-box p { color: var(--gray-500); line-height: 1.8; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%);
  padding: 90px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(109,202,253,0.08), transparent 60%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(109,202,253,0.05), transparent 60%);
  animation: floatShape 20s ease-in-out infinite;
}
.cta-banner h2 { color: var(--white); font-size: var(--font-size-h2); margin-bottom: 16px; position: relative; }
.cta-banner p {
  color: rgba(255,255,255,0.75); font-size: var(--font-size-body); margin-bottom: 36px;
  max-width: 560px; margin-left: auto; margin-right: auto; position: relative;
}

/* --- Map --- */
.map-container { border-radius: var(--radius-xl); overflow: hidden; height: 400px; box-shadow: var(--shadow-lg); }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* --- Job Card --- */
.job-card {
  padding: 28px 32px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg);
  background: var(--white); transition: all var(--transition);
}
.job-card:hover {
  border-color: rgba(109,202,253,0.4); box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.job-card h3 { font-size: var(--font-size-h3); margin-bottom: 8px; }
.job-card .meta {
  display: flex; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; align-items: center;
}
.job-card p { color: var(--gray-500); font-size: var(--font-size-body); margin-bottom: 20px; }

/* --- Scroll Animations (enhanced) --- */
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* Slide from left */
.animate-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.animate-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Keyframes --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Glowing border for sections */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(109,202,253,0); }
  50% { box-shadow: 0 0 20px rgba(109,202,253,0.1); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .wg-about-intro-shell { grid-template-columns: 1fr; gap: 36px; }
  .wg-about-intro-copy { max-width: none; }
  .wg-about-intro-copy h2,
  .wg-about-intro-copy p { max-width: none; }
  .wg-about-intro-visual { justify-content: flex-start; }
  .wg-about-intro-media { width: min(100%, 520px); }
  .wg-about-intro-card { left: 22px; bottom: 20px; }
  .wg-why-shell { grid-template-columns: 1fr; }
  .wg-why-lead h2 { max-width: none; }
  .wg-why-feature { min-height: 160px; }
  .wg-companies-head h2 { max-width: 12ch; margin-left: auto; margin-right: auto; }
  .company-card-modern,
  .company-cta-card-modern { min-height: 420px; }
  .wg-impact-shell { grid-template-columns: 1fr; gap: 34px; }
  .wg-impact-copy h2,
  .wg-impact-copy p { max-width: none; }
  .wg-about-story-shell,
  .wg-about-purpose-grid { grid-template-columns: 1fr; }
  .wg-about-story-copy h2 { max-width: none; }
  .wg-about-story-visual { justify-content: flex-start; }
  .wg-about-story-media { width: min(100%, 520px); }
  .wg-about-story-card { left: 22px; bottom: 18px; }
  .wg-news-feature { grid-template-columns: 1fr; }
  .wg-news-head h2,
  .wg-news-feature-copy h3,
  .wg-news-head p,
  .wg-news-feature-copy p { max-width: none; }
  .wg-news-meta-bar { grid-template-columns: 1fr; gap: 8px; }
  .wg-news-meta-bar span,
  .wg-news-meta-bar span:nth-child(2),
  .wg-news-meta-bar span:last-child { text-align: left; }
  .wg-news-cta-simple p { max-width: none; }
}

@media (max-width: 768px) {
  .hero-bg, .page-hero .hero-bg { background-attachment: scroll; }

  .hero {
    min-height: auto;
    display: block;
    padding: 110px 0 36px;
  }

  .hero-content {
    width: 100%;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    max-width: 10ch;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 30ch;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: 320px;
    margin: 0;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.4;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 26px;
    padding: 0 20px;
    background: none;
  }

  .hero-stats .stats-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
    background: rgba(10,22,40,0.52);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 18px 14px;
    backdrop-filter: blur(8px);
  }

  .hero-stats .stat-number {
    font-size: 1.85rem;
  }

  .hero-stats .stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    line-height: 1.45;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .navbar {
    padding: 10px 0;
  }

  .navbar .container {
    gap: 16px;
    padding: 0 18px;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background:
      linear-gradient(180deg, rgba(10, 14, 24, 0.985) 0%, rgba(12, 20, 34, 0.965) 100%),
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 35%);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: column;
    padding: 78px 24px 32px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    gap: 10px;
    z-index: 999;
    overflow-y: auto;
    box-shadow: -16px 0 42px rgba(0, 0, 0, 0.28);
  }
  
  .nav-links.open {
    right: 0;
    box-shadow: -18px 0 54px rgba(0, 0, 0, 0.34);
  }
  
  .nav-links a {
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    transform: translateX(18px);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease, color 0.25s ease;
  }

  .nav-links.open a {
    transform: translateX(0);
    opacity: 1;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: #fff;
    background: transparent;
  }
  
  .nav-links a::before {
    display: none;
  }

  .nav-links a::after {
    display: block;
    left: 16px;
    bottom: 6px;
    transform: none;
    height: 2px;
    background: rgba(255, 255, 255, 0.95);
    opacity: 1;
  }

  .nav-links a:hover::after {
    width: 56px;
  }

  .nav-links a.active::after {
    width: 72px;
  }

  .wg-about-intro-points {
    grid-template-columns: 1fr;
  }

  .wg-why-grid {
    grid-template-columns: 1fr;
  }

  .wg-why-feature {
    min-height: 145px;
  }

  .wg-companies-head {
    margin-bottom: 32px;
  }

  .wg-companies-head h2 {
    max-width: none;
    font-size: clamp(1.95rem, 7vw, 2.7rem);
  }

  .company-card.company-card-modern,
  .company-cta-card.company-cta-card-modern {
    height: 380px;
    min-height: 380px;
  }

  .company-card-modern .company-card-content,
  .company-cta-card-modern .company-cta-inner {
    padding: 22px 20px;
  }

  .company-card-modern .company-card-content h3,
  .company-cta-card-modern h3 {
    font-size: 1.28rem;
  }

  .company-card-modern .company-card-content p,
  .company-cta-card-modern p {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .company-card-modern .company-card-content .btn,
  .company-cta-card-modern .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }

  .wg-impact-media {
    padding: 14px;
    border-radius: 24px;
  }

  .wg-impact-media img {
    min-height: 380px;
    border-radius: 20px;
  }

  .wg-impact-copy h2 {
    font-size: clamp(1.95rem, 7vw, 2.65rem);
  }

  .wg-impact-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .wg-news-feature {
    gap: 18px;
  }

  .wg-news-feature-media img {
    min-height: 240px;
    border-radius: 16px;
  }

  .wg-news-head h2,
  .wg-news-feature-copy h3 {
    font-size: clamp(1.65rem, 6.5vw, 2.2rem);
  }

  .wg-news-feature-copy {
    padding: 0;
  }

  .wg-news-feature-points {
    gap: 10px;
  }

  .wg-news-feature-points span {
    width: 100%;
  }

  .wg-news-card-wide .card-image,
  .wg-news-card-brief .card-image {
    height: 180px;
  }

  .wg-news-cta-simple h2 {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

  .company-card.company-card-modern,
  .company-cta-card.company-cta-card-modern {
    height: 360px;
    min-height: 360px;
  }

  .company-card-modern .company-card-icon,
  .company-cta-card-modern .company-cta-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .company-card-modern .company-card-content {
    padding: 20px;
    gap: 10px;
  }

  .company-card-modern .company-card-content h3 {
    font-size: 1.2rem;
  }

  .company-card-modern .company-card-content p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .wg-about-story-points {
    grid-template-columns: 1fr;
  }

  .wg-about-story-media {
    padding: 14px 14px 88px;
    border-radius: 24px;
  }

  .wg-about-story-media img {
    min-height: 380px;
    border-radius: 20px;
  }

  .wg-about-story-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: -42px;
  }

  .wg-about-story-card-stats {
    grid-template-columns: 1fr;
  }

  .wg-about-purpose-card {
    padding: 24px;
    border-radius: 22px;
  }

  .wg-about-story-copy h2,
  .wg-about-purpose-intro h2,
  .wg-about-cta-simple h2 {
    font-size: clamp(1.95rem, 7vw, 2.7rem);
  }

  .wg-about-value-card {
    padding: 24px;
  }

  .wg-about-cta-simple p {
    max-width: none;
  }

  .company-card-modern {
    height: 400px;
  }

  .company-card-modern .company-card-content,
  .company-cta-card-modern .company-cta-inner {
    padding: 24px;
  }

  .company-card-modern .company-card-content p {
    max-width: none;
  }

  .company-card-modern .company-card-content .btn,
  .company-cta-card-modern .btn {
    width: auto;
  }

  .wg-why-lead,
  .wg-why-card {
    padding: 24px;
    border-radius: 22px;
  }

  .wg-why-feature {
    min-height: 130px;
  }

  .wg-about-intro-copy h2 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .wg-why-lead h2 {
    font-size: clamp(1.9rem, 7vw, 2.55rem);
  }

  .wg-about-intro-media {
    padding: 14px 14px 88px;
    border-radius: 28px;
  }

  .wg-about-intro-media img {
    min-height: 400px;
    border-radius: 22px;
  }

  .wg-about-intro-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: -44px;
  }

  .wg-about-intro-card-stats {
    grid-template-columns: 1fr;
  }
  
  .nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(109, 202, 253, 0.15);
    border: 1px solid rgba(109, 202, 253, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
  }
  
  .nav-close:hover {
    background: rgba(109, 202, 253, 0.25);
    border-color: var(--gold);
  }
  
  .nav-close::before,
  .nav-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transition: all 0.3s ease;
  }
  
  .nav-close::before {
    transform: rotate(45deg);
  }
  
  .nav-close::after {
    transform: rotate(-45deg);
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: var(--font-size-h2);
  }
  
  .section {
    padding: 60px 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-logo-container {
    padding: 16px 20px;
    margin-bottom: 18px;
  }
  
  .footer-logo img {
    height: 40px;
  }
  
  .footer-socials {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .page-hero { height: 340px; }
  .page-hero .hero-content h1 { font-size: var(--font-size-h1); }
  .navbar-logo img { height: 54px; }
  .navbar.scrolled .navbar-logo img { height: 46px; }
  .card-body h3 { font-size: var(--font-size-h3); }
  .card-body p { font-size: var(--font-size-body); }
  .feature-box h3 { font-size: var(--font-size-h3); }
  .feature-box p { font-size: var(--font-size-body); }
  .icon-feature h3 { font-size: var(--font-size-h3-tight); }
  .icon-feature p { font-size: var(--font-size-body); }
  .team-card-body h3 { font-size: var(--font-size-h3-tight); }
  .team-card-body p { font-size: var(--font-size-body); }
}

@media (max-width: 480px) {
  .hero {
    padding: 102px 0 28px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 11vw, 2.45rem);
    max-width: 9ch;
  }
  .hero-content p {
    font-size: 0.98rem;
    max-width: 26ch;
  }
  .btn {
    padding: 12px 18px;
    font-size: 0.82rem;
    gap: 6px;
  }
  .hero-stats .stats-bar {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .company-card { height: 350px; }
  .card-body h3 { font-size: var(--font-size-h3); }
  .card-body p { font-size: var(--font-size-body); }
  .feature-box h3 { font-size: var(--font-size-h3-tight); }
  .team-card-body h3 { font-size: var(--font-size-h3-tight); }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stats-bar,
  .hero-stats .stats-bar {
    grid-template-columns: 1fr;
  }

  .page-hero {
    height: 340px;
  }

  .hero-company-card,
  .hero-feature-card {
    height: auto;
    min-height: 0;
  }

  .company-card.company-card-modern,
  .company-cta-card.company-cta-card-modern {
    height: 360px;
    min-height: 360px;
  }

  .card-image,
  .wg-news-card .card-image,
  .wg-news-feature-media img,
  .wg-impact-media img,
  .wg-about-story-media img,
  .wg-about-intro-media img {
    min-height: 0;
  }

  .cta-banner {
    padding: 64px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
/* --- Animated gradient border on cards --- */
.card, .feature-box, .icon-feature, .team-card, .job-card, .mission-box {
  position: relative;
}
.card::after, .icon-feature::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  animation: shimmerLine 3s ease-in-out infinite;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover::after, .icon-feature:hover::after {
  opacity: 1;
}

@keyframes shimmerLine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* --- Glow pulse on stat icons --- */
.stat-icon {
  animation: iconPulse 3s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(109,202,253,0); }
  50% { box-shadow: 0 0 20px 4px rgba(109,202,253,0.2); }
}

/* --- Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(109,202,253,0.4);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 30px rgba(109,202,253,0.55);
}
.back-to-top svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Richer section backgrounds --- */
.bg-gradient-subtle {
  background: linear-gradient(180deg, var(--gray-50) 0%, #e8f4fd 50%, var(--gray-50) 100%);
}

.bg-dark-section {
  background: linear-gradient(135deg, #0a1628 0%, #0f2341 60%, #132744 100%);
  color: rgba(255,255,255,0.85);
  position: relative;
  overflow: hidden;
}
.bg-dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(109,202,253,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.bg-dark-section h2, .bg-dark-section h3 { color: var(--white); }
.bg-dark-section p { color: rgba(255,255,255,0.7); }
.bg-dark-section .gold-line { margin-bottom: 20px; }

/* --- Marquee improvements --- */
.marquee-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: none;
  padding: 50px 0;
}
.marquee-label {
  color: rgba(255,255,255,0.5);
}
.marquee-track img {
  filter: brightness(0) invert(1) opacity(0.4);
}
.marquee-track img:hover {
  filter: brightness(0) invert(1) opacity(1);
}

/* --- CTA Banner Improvements --- */
.cta-banner {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #0a1628 0%, #132744 50%, #0f2341 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(109,202,253,0.1) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); font-size: var(--font-size-h2); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: var(--font-size-body); margin-bottom: 32px; position: relative; z-index: 1; }
.cta-banner .btn { position: relative; z-index: 1; }

/* --- Animated decorative dots --- */
.deco-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(109,202,253,0.2) 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* --- Enhanced page hero with particles canvas --- */
.page-hero { height: 480px; }
.page-hero .hero-content h1 { font-size: var(--font-size-h1); }

/* --- Glassmorphism CTA cards --- */
.glass-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(109,202,253,0.15);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  transition: all var(--transition);
}
.glass-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(109,202,253,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.glass-card h3 { color: var(--white); margin-bottom: 12px; }
.glass-card p { color: rgba(255,255,255,0.65); font-size: var(--font-size-body); }

/* --- Staggered fade animation on scroll --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

.animate-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.animate-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Mission box enhancements --- */
.mission-box {
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.mission-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.mission-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(109,202,253,0.3);
}
.mission-box h3 { margin-bottom: 16px; font-size: var(--font-size-h3); }
.mission-box p { color: var(--gray-500); line-height: 1.8; }

/* --- Animated number highlight --- */
.highlight-number {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1em;
}

/* --- Footer enhancements --- */
.footer {
  padding: 100px 0 0;
}
.footer::after {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(109,202,253,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Hero video overlay shimmer --- */
.hero-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(109,202,253,0.04) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: heroShimmer 8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes heroShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- News card enhancements --- */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(109,202,253,0.25);
}
.card-image { overflow: hidden; height: 200px; }
.card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-image img { transform: scale(1.08); }
.card-body { padding: 24px; }
.card-body h3 { font-size: var(--font-size-h3); margin-bottom: 8px; }
.card-body p { color: var(--gray-500); font-size: var(--font-size-body); }
.card-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(109,202,253,0.14), rgba(109,202,253,0.06));
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(109,202,253,0.15);
}

/* --- Job card enhancements --- */
.job-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.job-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
}
.job-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(109,202,253,0.3);
}
.job-card h3 { font-size: var(--font-size-h3); margin-bottom: 12px; }
.job-card .meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.job-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-500);
}
.job-meta-item svg {
  width: 14px; height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.job-card p { color: var(--gray-500); font-size: var(--font-size-body); margin-bottom: 16px; }

/* --- Map container --- */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gray-200);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .navbar-logo {
    max-width: 240px;
  }
  .navbar-logo img { height: 62px !important; }
  .navbar.scrolled .navbar-logo img { height: 56px !important; }
  .footer-logo img { height: 55px !important; }
  .page-hero { height: 380px; }
  .page-hero .hero-content h1 { font-size: var(--font-size-h1); }
  .hero-content h1 { font-size: var(--font-size-h1) !important; }
  .section-header h2 { font-size: var(--font-size-h2); }
  .cta-banner h2 { font-size: var(--font-size-h2); }

}

/* Company CTA Card */
.company-cta-card {
  position: relative;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(109,202,253,0.08) 0%, rgba(212,175,55,0.12) 100%);
  border: 1px solid rgba(109,202,253,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.company-cta-card:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, rgba(109,202,253,0.12) 0%, rgba(212,175,55,0.18) 100%);
}
.company-cta-inner {
  text-align: center;
  padding: 40px 32px;
}
.company-cta-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: rgba(212,175,55,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.company-cta-card:hover .company-cta-icon {
  background: rgba(212,175,55,0.25);
  transform: scale(1.1) rotate(90deg);
}
.company-cta-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
}
.company-cta-inner h3 {
  color: var(--white);
  font-size: var(--font-size-h3);
  margin-bottom: 16px;
}
.company-cta-inner p {
  color: rgba(255,255,255,0.65);
  font-size: var(--font-size-body);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .company-cta-card { height: 350px; }
}

/* --- Main site radius reset --- */
:is(
  .btn,
  .navbar-logo,
  .nav-links a,
  .card,
  .card-tag,
  .company-card,
  .company-cta-card,
  .company-cta-card-modern,
  .feature-box,
  .image-accent-wrapper img,
  .image-accent-wrapper,
  .wg-about-intro-point,
  .wg-about-intro-media,
  .wg-about-intro-media img,
  .wg-about-intro-card,
  .wg-about-intro-stat,
  .wg-why-lead,
  .wg-why-summary-item,
  .wg-why-card,
  .wg-about-story-point,
  .wg-about-story-media,
  .wg-about-story-media img,
  .wg-about-story-card,
  .wg-about-story-stat,
  .wg-about-purpose-card,
  .wg-about-value-card,
  .wg-impact-media,
  .wg-impact-media img,
  .wg-impact-item,
  .wg-news-feature-media img,
  .wg-news-card,
  .wg-news-card-wide,
  .team-card,
  .mission-box,
  .map-container,
  .job-card,
  .glass-card,
  form[data-contact],
  .form-group input,
  .form-group textarea,
  .form-group select
) {
  border-radius: 0 !important;
}

.card::after {
  border-radius: 0 !important;
}

.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden; padding: 138px 24px 170px;
}

.ecosystem-hero {
  min-height: 100svh;
  padding-top: 118px;
  padding-bottom: 132px;
}

.ecosystem-hero::before {
  display: none;
}

.ecosystem-hero .hero-bg,
.ecosystem-hero .hero-overlay {
  z-index: 0;
}

.ecosystem-hero .ecosystem-head {
  margin-bottom: 22px;
}

.ecosystem-hero .ecosystem-tabs {
  margin-bottom: 28px;
}

.ecosystem-hero .ecosystem-stage {
  min-height: 500px;
}

.hero-secondary {
  min-height: auto;
  padding: 110px 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-bg-slider {
  isolation: isolate;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 1.2s ease;
  animation: heroZoom 16s ease-out infinite alternate;
}

.hero-bg-slide.is-active {
  opacity: 1;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.04); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 0, 0, 0.06), transparent 26%),
    linear-gradient(90deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.42) 42%, rgba(0,0,0,0.18) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-slide {
    animation: none;
    transition: none;
  }
}

.hero-content {
  position: relative; z-index: 2;
  width: min(1280px, 100%); padding: 0;
}
.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
}
.hero-copy {
  position: relative;
  max-width: 620px;
  z-index: 2;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-kicker-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(109,202,253,0.12);
}
.hero-copy h1 {
  font-size: clamp(3.4rem, 6vw, 5.8rem); color: var(--white); margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
  letter-spacing: -0.07em;
  line-height: 0.92;
  max-width: 12ch;
}
.hero-secondary .hero-copy h2 {
  font-size: clamp(3.4rem, 6vw, 5.8rem);
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
  letter-spacing: -0.07em;
  line-height: 0.92;
  max-width: 12ch;
}
.hero-copy h1 span { color: var(--gold); }
.hero-secondary .hero-copy h2 span { color: var(--gold); }
.hero-copy p {
  font-size: 1.05rem; color: rgba(255,255,255,0.78);
  margin-bottom: 34px; animation: fadeInUp 1s ease-out 0.2s both;
  max-width: 54ch; line-height: 1.75;
}
.hero-shell > h1,
.hero-shell > p,
.hero-shell > .hero-buttons {
  display: none;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}
.hero-buttons .btn {
  min-height: 54px;
  padding: 15px 28px;
  font-size: 0.86rem;
  border-radius: 14px;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: 412px;
  height: 412px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,0.08), rgba(255,255,255,0.025) 58%, transparent 74%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 0 0 1px rgba(109,202,253,0.08),
    0 0 42px rgba(109,202,253,0.08),
    inset 0 1px 0 rgba(255,255,255,0.14);
}
.hero-visual-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,202,253,0.16) 0%, rgba(109,202,253,0.06) 44%, transparent 76%);
  transform: translate(-50%, -50%);
  filter: blur(18px);
}
.hero-logo-orbit {
  position: relative;
  width: min(100%, 432px);
  height: 432px;
  overflow: visible;
  z-index: 1;
}
.hero-logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.hero-logo-center::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: none;
  filter: none;
}
.hero-logo-center::after {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 16px rgba(255,255,255,0.12);
}
.hero-logo-center img {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 12px rgba(255,255,255,0.18))
    drop-shadow(0 16px 30px rgba(0,0,0,0.22));
}
.hero-logo-track {
  position: relative;
  width: 100%;
  height: 100%;
  animation: heroOrbitSpin 18s linear infinite;
}
.hero-logo-item {
  --orbit-radius: 158px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 194px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 1;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(var(--orbit-radius) * -1));
  transform-origin: center center;
}
.hero-logo-item::before {
  content: '';
  position: absolute;
  width: 140px;
  height: 66px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(109,202,253,0.08) 0%, rgba(109,202,253,0.03) 44%, transparent 78%);
  filter: blur(10px);
  opacity: 0.35;
}
.hero-logo-item:nth-child(1) { --angle: 0deg; }
.hero-logo-item:nth-child(2) { --angle: 72deg; }
.hero-logo-item:nth-child(3) { --angle: 144deg; }
.hero-logo-item:nth-child(4) { --angle: 216deg; }
.hero-logo-item:nth-child(5) { --angle: 288deg; }
.hero-logo-item img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 10px rgba(255,255,255,0.18))
    drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.hero-logo-item:nth-child(2) img {
  filter:
    brightness(1.02)
    contrast(1.02)
    saturate(1.08)
    drop-shadow(0 0 10px rgba(255,255,255,0.12))
    drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}
@keyframes heroOrbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease-out 0.8s both;
}
.hero-scroll-indicator span {
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.4; }
  50% { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(4,10,20,0.82), transparent);
  padding: 24px;
}

.hero-stats .stats-bar {
  max-width: 1280px;
  margin: 0 auto;
  background: none;
  border: none;
  box-shadow: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.hero-stats .stats-bar::before {
  display: none;
}

.hero-stats .stat-item {
  padding: 24px 18px;
  border: none;
  transition: background-color var(--transition), transform var(--transition);
  text-align: center;
}

.hero-stats .stat-item:hover {
  background: rgba(109,202,253,0.04);
  transform: translateY(-2px);
}

.hero-stats .stat-item:not(:last-child)::after {
  display: block;
}

.hero-stats .stat-number {
  font-size: 1.45rem;
  color: var(--white);
  line-height: 1.15;
}

.hero-stats .stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.64);
  margin-top: 6px;
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    padding: 128px 20px 150px;
  }

  .hero-content {
    width: min(1080px, 100%);
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-copy h1 {
    max-width: 10.5ch;
    font-size: clamp(3rem, 8vw, 4.8rem);
  }

  .hero-copy p {
    max-width: 46ch;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual::before {
    width: 344px;
    height: 344px;
  }

  .hero-logo-orbit {
    width: min(100%, 360px);
    height: 360px;
  }

  .hero-logo-center {
    width: 122px;
    height: 122px;
  }

  .hero-logo-item {
    --orbit-radius: 132px;
    width: 158px;
    height: 76px;
  }
}

@media (max-width: 1100px) {
  .ecosystem-stage {
    min-height: 530px;
  }

  .ecosystem-card.is-prev {
    transform: translate(calc(-50% - 250px), calc(-50% + 18px)) scale(0.8);
  }

  .ecosystem-card.is-next {
    transform: translate(calc(-50% + 250px), calc(-50% + 18px)) scale(0.8);
  }

  .ecosystem-arrow-prev {
    left: max(0px, calc(50% - 250px));
  }

  .ecosystem-arrow-next {
    right: max(0px, calc(50% - 250px));
  }
}

@media (max-width: 900px) {
  .ecosystem-section,
  .ecosystem-hero {
    padding-block: 92px;
  }

  .ecosystem-hero {
    min-height: auto;
    padding-top: 108px;
    padding-bottom: 104px;
  }

  .ecosystem-tabs {
    gap: 10px;
    margin-bottom: 28px;
  }

  .ecosystem-tab {
    min-width: 78px;
    padding: 11px 16px;
    font-size: 0.77rem;
  }

  .ecosystem-stage {
    min-height: 480px;
  }

  .ecosystem-card {
    width: min(100%, 360px);
    min-height: 450px;
  }

  .ecosystem-card-inner {
    min-height: 414px;
    padding: 24px;
  }

  .ecosystem-card-logo {
    width: 142px;
    height: 78px;
  }

  .ecosystem-card.is-prev,
  .ecosystem-card.is-next {
    opacity: 0.3;
    filter: blur(3px) saturate(0.84);
  }

  .ecosystem-card.is-prev {
    transform: translate(calc(-50% - 150px), calc(-50% + 12px)) scale(0.72);
  }

  .ecosystem-card.is-next {
    transform: translate(calc(-50% + 150px), calc(-50% + 12px)) scale(0.72);
  }

  .ecosystem-arrow-prev {
    left: 8px;
  }

  .ecosystem-arrow-next {
    right: 8px;
  }
}

@media (max-width: 640px) {
  .ecosystem-section,
  .ecosystem-hero {
    padding-block: 78px;
  }

  .ecosystem-hero {
    padding-top: 96px;
    padding-bottom: 88px;
  }

  .ecosystem-head {
    margin-bottom: 24px;
  }

  .ecosystem-tabs {
    gap: 8px;
    margin-bottom: 24px;
    width: 100%;
    max-width: 100%;
  }

  .ecosystem-tab {
    min-width: 0;
    max-width: 100%;
    padding: 10px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .ecosystem-head h1,
  .ecosystem-head h2 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .ecosystem-head p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .ecosystem-stage {
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 26px;
  }

  .ecosystem-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    min-height: 420px;
    margin: 0 auto;
  }

  .ecosystem-card.is-active {
    transform: none;
  }

  .ecosystem-card.is-prev,
  .ecosystem-card.is-next,
  .ecosystem-card.is-hidden {
    display: none;
  }

  .ecosystem-card-inner {
    min-height: 384px;
    padding: 22px;
  }

  .ecosystem-card-logo {
    width: 128px;
    height: 68px;
    border-radius: 0;
  }

  .ecosystem-card p {
    margin-bottom: 20px;
  }

  .ecosystem-card .btn {
    width: 100%;
    justify-content: center;
  }

  .ecosystem-arrow {
    top: auto;
    bottom: -2px;
    width: 38px;
    height: 38px;
    transform: none;
  }

  .ecosystem-arrow:hover {
    transform: scale(1.05);
  }

  .ecosystem-arrow-prev {
    left: calc(50% - 54px);
  }

  .ecosystem-arrow-next {
    right: calc(50% - 54px);
  }
}

@media (max-width: 768px) {
  .hero {
    display: block;
    min-height: auto;
    padding: 110px 0 36px;
    overflow-x: clip;
  }

  .hero-content {
    width: 100%;
    padding: 0 20px;
    overflow-x: clip;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-kicker {
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .hero-copy .gold-line {
    width: 74px;
    margin-bottom: 18px !important;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 9.4vw, 3.5rem);
    line-height: 0.94;
    max-width: 8.8ch;
    margin-bottom: 14px;
    text-wrap: balance;
  }

  .hero-secondary .hero-copy h2 {
    font-size: clamp(2.55rem, 9.4vw, 3.5rem);
    line-height: 0.94;
    max-width: 8.8ch;
    margin-bottom: 14px;
    text-wrap: balance;
  }

  .hero-copy p {
    max-width: 35ch;
    margin-bottom: 24px;
    font-size: 0.98rem;
  }

  .hero-buttons {
    max-width: none;
    margin: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-buttons .btn {
    min-height: 50px;
    width: auto;
    min-width: 0;
    flex: 1 1 220px;
    justify-content: center;
    text-align: center;
  }

  .hero-visual {
    min-height: 332px;
    margin-top: 8px;
    margin-bottom: 12px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-visual::before {
    width: 308px;
    height: 308px;
  }

  .hero-visual-glow {
    width: 178px;
    height: 178px;
  }

  .hero-logo-orbit {
    width: min(100%, 288px);
    height: 288px;
    overflow: hidden;
  }

  .hero-logo-center {
    width: 96px;
    height: 96px;
  }

  .hero-logo-item {
    --orbit-radius: 92px;
    width: 104px;
    height: 52px;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    background: none;
    margin-top: 22px;
    padding: 0 20px;
  }

  .hero-stats .stats-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 14px;
    position: relative;
    z-index: 2;
  }

  .hero-stats .stat-item {
    padding: 16px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
  }

  .hero-stats .stat-item:not(:last-child)::after {
    display: none;
  }

  .hero-stats .stat-number {
    font-size: 1.5rem;
  }

  .hero-stats .stat-label {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .hero-secondary {
    padding: 88px 0 60px;
  }

}

@media (max-width: 480px) {
  .hero {
    padding: 102px 0 28px;
  }

  .hero-content {
    padding: 0 14px;
  }

  .hero-kicker {
    font-size: 0.68rem;
  }

  .hero-copy .gold-line {
    width: 64px;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 11vw, 2.75rem);
    max-width: 8.4ch;
  }

  .hero-secondary .hero-copy h2 {
    font-size: clamp(2.1rem, 11vw, 2.75rem);
    max-width: 8.4ch;
  }

  .hero-copy p {
    max-width: 28ch;
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
  }

  .hero-buttons .btn {
    width: 100%;
    flex: none;
    min-height: 54px;
    padding: 14px 18px;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .hero-visual {
    min-height: 208px;
    margin-top: 14px;
    margin-bottom: 10px;
    overflow: hidden;
  }

  .hero-visual::before {
    width: 188px;
    height: 188px;
  }

  .hero-visual-glow {
    width: 104px;
    height: 104px;
  }

  .hero-logo-orbit {
    width: min(100%, 176px);
    height: 176px;
  }

  .hero-logo-center {
    width: 58px;
    height: 58px;
  }

  .hero-logo-item {
    --orbit-radius: 58px;
    width: 56px;
    height: 24px;
  }

  .hero-stats {
    padding: 0 14px;
    margin-top: 6px;
  }

  .hero-stats .stats-bar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
    background: rgba(10,22,40,0.66);
  }

  .hero-stats .stat-item {
    padding: 14px 10px;
  }

  .hero-stats .stat-number {
    font-size: 1.2rem;
  }

  .hero-stats .stat-label {
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .hero-secondary {
    padding: 84px 0 52px;
  }

}
