body {
  background: ;
  margin: 0;
}

html,
body {
  scroll-behavior: smooth;
}

/* ----------------------------------------- */
/* 100% WIDTH */
/* ----------------------------------------- */

.navbar>.navbar-header,
.navbar>.navbar-collapse {
  margin: 0 !important;
}

.container {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* .navbar.container {
  max-width: 100%;
} */

.row {
  margin: 0;
}

.banner01,
.banner02,
.banner03,
.banner04,
.banner05,
.banner06,
.banner07,
.banner08,
.banner09,
.banner10 {
  padding: 0;
}

:root {
  /* Brand foundation */
  --theme: #173964;
  --theme-2: #0b1f3a;
  --theme-hi: #3f6fb5;

  --accent: #c81f4d;

  --text: #0e1a2b;
  --muted: #4a5568;

  --line: rgba(11, 18, 32, 0.12);
  --shadow: 0 12px 36px rgba(11, 18, 32, 0.12);
  --radius: 18px;

  --section-container: 1200px;

  --grad-hero:
    radial-gradient(1200px 420px at 15% 0%,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0) 55%),
    radial-gradient(1000px 420px at 90% 10%,
      rgba(200, 31, 77, 0.14) 0%,
      rgba(200, 31, 77, 0) 60%),
    linear-gradient(180deg,
      var(--theme-hi) 0%,
      var(--theme) 55%,
      var(--theme-2) 100%);

  --grad-top:
    radial-gradient(1200px 140px at 20% 0%,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0) 60%),
    radial-gradient(900px 160px at 85% 10%,
      rgba(255, 199, 44, 0.18) 0%,
      rgba(255, 199, 44, 0) 55%),
    linear-gradient(90deg,
      var(--theme-2) 0%,
      var(--theme) 50%,
      var(--theme-2) 100%);

  --grad-soft:
    radial-gradient(900px 240px at 20% 0%,
      rgba(23, 57, 100, 0.1) 0%,
      rgba(23, 57, 100, 0) 62%),
    radial-gradient(700px 220px at 85% 20%,
      rgba(255, 199, 44, 0.14) 0%,
      rgba(255, 199, 44, 0) 58%),
    linear-gradient(180deg,
      rgba(23, 57, 100, 0.06) 0%,
      rgba(23, 57, 100, 0.02) 100%);

  --ff-body:
    "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --ff-head:
    "Sora", "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;

  --menu-size: 12px;
  --menu-track: 0.14em;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: #fff;
  line-height: 1.4;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

h1,
h2,
h3,
h4,
.brand-name b,
.section-title h2,
.whatwedo-title,
.mg-left h2,
.partners-head h2,
.presence-head h2,
.glance-left h2 {
  font-family: var(--ff-head);
}

/*Level 1: NEWS ticker */
/* .newsbar {
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, .28);
  background:
    radial-gradient(1200px 140px at 20% 0%, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(900px 160px at 85% 10%, rgba(255, 199, 44, .18) 0%, rgba(255, 199, 44, 0) 55%),
    linear-gradient(90deg,
      rgba(11, 31, 58, .92) 0%,
      rgba(23, 57, 100, .92) 50%,
      rgba(11, 31, 58, .92) 100%);
}

.newsbar .container {
  max-width: none;
  padding-left: 18px;
  padding-right: 18px;
}

.newsbar .row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  width: 100%;
}

.news-label {
  font-weight: 900;
  letter-spacing: .14em;
  font-size: 12px;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, 0)), var(--accent);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .35);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
  text-transform: uppercase;
}

.ticker {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .10);
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  min-width: 180px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06);
  backdrop-filter: blur(3px);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
  will-change: transform;
  animation: scroll 22s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.news-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.sep {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, .18);
}

.badge-new {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  padding: 4px 8px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0)),
    var(--accent);
  color: #fff;
  border: 1px solid rgba(0, 0, 0, .12);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
  text-transform: uppercase;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.top-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .10);
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
  backdrop-filter: blur(3px);
}

.top-pill a {
  color: #fff;
}

.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .28));
}

.socials {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 10px;
  border-left: 2px solid rgba(255, 255, 255, .34);
  margin-left: 2px;
}

.soc-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .10);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
  transition: transform .15s ease, background .15s ease;
  backdrop-filter: blur(3px);
}

.soc-btn:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-1px);
} */

/*Level 2: header */
/* .header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  max-width: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 280px;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background:
    radial-gradient(18px 18px at 30% 25%, rgba(255, 255, 255, .20) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, #0F4C5C 0%, var(--theme) 55%, var(--theme-2) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  letter-spacing: .02em;
  user-select: none;
  box-shadow: 0 12px 26px rgba(11, 18, 32, .16);
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name b {
  font-size: 16px;
}

.brand-name span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  min-width: 0;
}

.nav a {
  padding: 10px 12px;
  border-radius: 12px;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: var(--menu-size);
  letter-spacing: var(--menu-track);
  text-transform: uppercase;
  color: var(--text);
  flex: 0 0 auto;
  transition: background .15s ease, transform .15s ease;
}

.nav a:hover {
  background: rgba(2, 41, 105, .08);
  transform: translateY(-1px);
}

.right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
} */

/* Work With Us */
.work {
  position: relative;
}

.work>button {
  position: relative;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(900px 120px at 20% 0%,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0) 55%),
    radial-gradient(18px 18px at 30% 25%,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0) 60%),
    linear-gradient(90deg,
      var(--theme) 0%,
      var(--theme-hi) 50%,
      var(--theme) 100%);
  color: #fff;

  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 10px;

  box-shadow:
    0 14px 34px rgba(11, 18, 32, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);

  transform: translateZ(0);
  transition:
    transform 0.18s ease,
    filter 0.18s ease,
    box-shadow 0.18s ease;
}

/* shine sweep */
.work>button::before {
  content: "";
  position: absolute;
  inset: -40% -30%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 35%,
      rgba(255, 255, 255, 0.28) 50%,
      rgba(255, 255, 255, 0) 65%);
  transform: translateX(-60%) rotate(8deg);
  opacity: 0.75;
  pointer-events: none;
}

.work>button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow:
    0 18px 44px rgba(11, 18, 32, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.work>button:hover::before {
  animation: workShine 0.9s ease forwards;
}

@keyframes workShine {
  from {
    transform: translateX(-60%) rotate(8deg);
  }

  to {
    transform: translateX(60%) rotate(8deg);
  }
}

/* keep highlighted when open */
.work.open>button {
  box-shadow:
    0 18px 44px rgba(11, 18, 32, 0.24),
    0 0 0 3px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

/* Dropdown (same functionality, nicer entrance) */
/* .dropdown {
  position: absolute;
  top: 54px;
  right: 0;
  width: min(640px, calc(100vw - 24px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  z-index: 60;

  transform: translateY(6px);
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
}

.work.open .dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dd-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
}

.dd-intro {
  border: 1px solid rgba(2, 41, 105, .18);
  background:
    radial-gradient(400px 180px at 20% 10%, rgba(200, 31, 77, .08) 0%, rgba(200, 31, 77, 0) 60%),
    linear-gradient(180deg, rgba(2, 41, 105, .10), rgba(2, 41, 105, .02));
  border-radius: 18px;
  padding: 14px;
}

.dd-intro h4 {
  margin: 0 0 8px;
  font-size: 16px;
}

.dd-intro p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0)),
    var(--theme);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 12px 26px rgba(11, 18, 32, .12);
}

.dd-col {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
}

.dd-col .title {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--ff-head);
}

.dd-col a {
  display: block;
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 700;
}

.dd-col a:hover {
  background: rgba(11, 18, 32, .05);
}

@media (prefers-reduced-motion: reduce) {

  .work>button,
  .dropdown {
    transition: none !important;
  }

  .work>button:hover::before {
    animation: none !important;
  }
}


.search-wrap {
  position: relative;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(11, 18, 32, .06);
  transition: transform .15s ease, background .15s ease;
}

.icon-btn:hover {
  background: rgba(11, 18, 32, .03);
  transform: translateY(-1px);
}

.search-panel {
  position: absolute;
  right: 0;
  top: 54px;
  width: min(460px, calc(100vw - 24px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px;
  display: none;
  z-index: 60;
}

.search-wrap.open .search-panel {
  display: block;
}

.search-form {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .88));
}

.search-form input {
  border: 0;
  outline: 0;
  width: 100%;
  font: inherit;
  background: transparent;
}

.go {
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0)),
    var(--theme);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(11, 18, 32, .12);
}

.go:hover {
  filter: brightness(.96);
} */

/* Level 3: Hero */
/* .hero {
  background: transparent;
  padding: 0;
  border-bottom: 0;
}

.hero .container {
  max-width: none;
  padding: 0;
}


.carousel {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 460px;
  border: 2px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .25);
  background: transparent;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-content {
  position: absolute;
  left: 24px;
  bottom: 22px;
  right: 24px;
  max-width: 820px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
  padding: 14px 16px;
  border-radius: 16px;
  background:
    radial-gradient(600px 220px at 15% 10%, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, 0) 60%),
    rgba(0, 0, 0, .38);
  backdrop-filter: blur(3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
  border: 1px solid rgba(255, 255, 255, .14);
}

.hero-title {
  margin: 0;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.02em;
  font-family: var(--ff-head);
}

.hero-desc {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid rgba(0, 0, 0, .10);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, 0)),
    var(--accent);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
  transition: transform .15s ease, filter .15s ease;
}

.hero-btn:hover {
  filter: brightness(.97);
  transform: translateY(-1px);
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .92);
  background:
    radial-gradient(18px 18px at 30% 25%, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, var(--theme) 0%, var(--theme-2) 100%);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 10;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
}

.nav-arrow:hover {
  filter: brightness(1.10);
}

.prev {
  left: 14px;
}

.next {
  right: 14px;
}

.dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  display: flex;
  gap: 8px;
  z-index: 12;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .28);
  cursor: pointer;
}

.dot.active {
  background: #fff;
} */

/* Level 4: Latest */
/* section {
  padding: 26px 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.section-title h2 {
  margin: 0;
  font-size: 22px;
}

.controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ctrl {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 2px solid var(--theme);
  background:
    radial-gradient(18px 18px at 30% 25%, rgba(255, 255, 255, .14) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, var(--theme) 0%, var(--theme-2) 100%);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(2, 41, 105, .22);
}

.ctrl:hover {
  filter: brightness(1.06);
}

.latest-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.latest-track {
  display: flex;
  gap: 14px;
  transition: transform .5s ease;
  will-change: transform;
}

.card {
  min-width: calc((100% - 28px) / 3);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(11, 18, 32, .06);
  flex: 0 0 auto;
  transition: transform .18s ease, box-shadow .18s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(11, 18, 32, .10);
}

.thumb {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tag {
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--ff-head);
}

.card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.22;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.link {
  margin-top: 4px;
  color: var(--accent);
  font-weight: 900;
  display: inline-flex;
  width: fit-content;
}

.link:hover {
  text-decoration: underline;
} */

/* Level 5: What We Do */
.whatwedo {
  padding: 34px 0;
  background: var(--grad-soft);
  border-top: 1px solid rgba(2, 41, 105, 0.14);
  border-bottom: 1px solid rgba(2, 41, 105, 0.14);
}

.whatwedo-head {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.whatwedo-title {
  margin: 0;
  margin: 0;
  font-size: 22px;
  color: var(--theme);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.whatwedo-desc {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.whatwedo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.wcard {
  border: 1px solid rgba(2, 41, 105, 0.16);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(11, 18, 32, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 340px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.wcard:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(11, 18, 32, 0.12);
}

.wthumb {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.wbody {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.wtag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(2, 41, 105, 0.1);
  border: 1px solid rgba(2, 41, 105, 0.18);
  color: var(--theme);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--ff-head);
}

.wbody h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.wlist {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  display: grid;
  gap: 6px;
}

.wcta {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.wbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background:
    radial-gradient(18px 18px at 30% 25%,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, var(--theme) 0%, var(--theme-2) 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(11, 18, 32, 0.1);
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}

.wbtn.secondary {
  background: #fff;
  color: var(--theme);
  border: 2px solid var(--theme);
  box-shadow: 0 10px 22px rgba(11, 18, 32, 0.06);
}

.wbtn:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
}

/*P4A at a Glance */
.glance {
  position: relative;
  overflow: hidden;
  padding: 58px 30px;
  color: #fff;
  background: var(--grad-hero);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.glance .container {
  max-width: none;
  padding: 0 18px;
}

.glance::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background:
    radial-gradient(circle at 20% 30%,
      rgba(255, 255, 255, 0.16) 0 2px,
      rgba(255, 255, 255, 0) 3px),
    radial-gradient(circle at 60% 70%,
      rgba(255, 255, 255, 0.14) 0 2px,
      rgba(255, 255, 255, 0) 3px),
    radial-gradient(circle at 80% 20%,
      rgba(255, 255, 255, 0.12) 0 2px,
      rgba(255, 255, 255, 0) 3px),
    radial-gradient(circle at 30% 80%,
      rgba(255, 255, 255, 0.1) 0 2px,
      rgba(255, 255, 255, 0) 3px),
    radial-gradient(circle at 50% 50%,
      rgba(255, 255, 255, 0.1) 0 2px,
      rgba(255, 255, 255, 0) 3px);
  background-size: 220px 220px;
  filter: blur(0.2px);
  opacity: 0.9;
  animation: glanceParticles 25s linear infinite;
  pointer-events: none;
}

.glance::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(900px 220px at 30% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 62%),
    radial-gradient(900px 220px at 70% 80%,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0) 62%);
  mix-blend-mode: screen;
  opacity: 0.8;
  animation: glanceWave 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glanceParticles {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  100% {
    transform: translate3d(-120px, 60px, 0) rotate(8deg);
  }
}

@keyframes glanceWave {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(40px, -30px, 0);
  }
}

.glance-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: center;
  min-height: 420px;
}

.glance-left {
  padding: 8px 8px;
  max-width: 720px;
}

.glance-left h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.glance-left p {
  margin: 12px 0 0;
  max-width: 640px;
  color: #eef3ff;
  opacity: 0.92;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.65;
}

.glance-left .mini {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.26);
  border: 2px solid rgba(255, 255, 255, 0.22);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(3px);
}

.glance-left .mini .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  border: 0;
  box-shadow: 0 0 0 4px rgba(255, 199, 44, 0.16);
}

.glance-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.glance-grid {
  width: min(640px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 6px;
}

.gcard {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  padding: 18px 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.gcard::before {
  content: "";
  position: absolute;
  inset: -40% -40%;
  background: radial-gradient(600px 140px at 20% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 60%);
  opacity: 0.9;
  pointer-events: none;
  transform: rotate(10deg);
}

.gicon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 199, 44, 0.18);
  border: 2px solid rgba(255, 199, 44, 0.3);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  flex: 0 0 auto;
  z-index: 1;
}

.gicon svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
}

.gtext {
  z-index: 1;
}

.gnum {
  display: block;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 2px;
  font-family: var(--ff-head);
}

.glabel {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #eef3ff;
  opacity: 0.92;
  font-family: var(--ff-head);
}

.gsub {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #eef3ff;
  opacity: 0.85;
  line-height: 1.5;
}

/* Level 6: Quick Links */
.quicklinks {
  padding: 18px 30px;
  background: var(--grad-soft);
  border-top: 1px solid rgba(2, 41, 105, 0.12);
  border-bottom: 1px solid rgba(2, 41, 105, 0.12);
}

.ql-box {
  border-radius: 22px;
  border: 1px solid rgba(2, 41, 105, 0.18);
  background:
    radial-gradient(700px 220px at 20% 0%,
      rgba(23, 57, 100, 0.06) 0%,
      rgba(23, 57, 100, 0) 60%),
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.86) 100%);
  box-shadow: 0 10px 26px rgba(11, 18, 32, 0.08);
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ql-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.ql-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(18px 18px at 30% 25%,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, #0f4c5c 0%, var(--theme) 60%, var(--theme-2) 100%);
  box-shadow: 0 10px 22px rgba(2, 41, 105, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.ql-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ql-title b {
  font-size: 16px;
  letter-spacing: -0.01em;
}

.ql-title span {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.ql-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
}

.qbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(2, 41, 105, 0.18);
  background: #fff;
  color: var(--theme);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(11, 18, 32, 0.06);
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}

.qbtn:hover {
  background: rgba(2, 41, 105, 0.06);
  transform: translateY(-1px);
}

.qbtn svg {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.12));
  flex: 0 0 auto;
}

/*Level 7: Media Gallery */
.mediagallery {
  padding: 34px 0;
  background:
    radial-gradient(900px 240px at 80% 0%,
      rgba(2, 41, 105, 0.1) 0%,
      rgba(2, 41, 105, 0) 60%),
    linear-gradient(180deg,
      rgba(2, 41, 105, 0.03) 0%,
      rgba(2, 41, 105, 0.06) 100%);
  border-top: 1px solid rgba(2, 41, 105, 0.12);
  border-bottom: 1px solid rgba(2, 41, 105, 0.12);
}

.mediagallery .container {
  max-width: none;
  padding: 0 18px;
}

.mg-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 18px;
  align-items: stretch;
}

.mg-left {
  background: #fff;
  border: 1px solid rgba(2, 41, 105, 0.14);
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(11, 18, 32, 0.07);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mg-left h2 {
  margin: 0;
  font-size: 22px;
  color: var(--theme);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.mg-left p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.mg-meta {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px dashed rgba(2, 41, 105, 0.22);
  background:
    radial-gradient(520px 160px at 20% 0%,
      rgba(200, 31, 77, 0.06) 0%,
      rgba(200, 31, 77, 0) 60%),
    linear-gradient(180deg, rgba(2, 41, 105, 0.06), rgba(2, 41, 105, 0.02));
}

.mg-meta b {
  color: var(--theme);
  font-size: 15px;
  line-height: 1.25;
}

.mg-meta span {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.mg-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.mg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background:
    radial-gradient(18px 18px at 30% 25%,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, var(--theme) 0%, var(--theme-2) 100%);
  color: #fff;
  cursor: pointer;
  width: fit-content;
  box-shadow: 0 12px 26px rgba(11, 18, 32, 0.1);
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}

.mg-btn.secondary {
  background: #fff;
  color: var(--theme);
  border: 2px solid var(--theme);
  box-shadow: 0 10px 22px rgba(11, 18, 32, 0.06);
}

.mg-btn:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
}

.mg-right {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: none;
  box-shadow: 0 14px 40px rgba(11, 18, 32, 0.16);
  background: #fff;
  min-height: 560px;
}

.mg-hero {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.35s ease;
}

.mg-thumbs {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: min(520px, calc(100% - 28px));
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(3px);
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  padding: 10px 10px;
  z-index: 5;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.mg-thumbs-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.mg-thumbs-title {
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: var(--ff-head);
}

.mg-mini-controls {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 0 0 auto;
}

.mg-mini-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(18px 18px at 30% 25%,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, var(--theme) 0%, var(--theme-2) 100%);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  font-weight: 900;
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}

.mg-mini-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.mg-strip {
  display: flex;
  gap: 10px;
  overflow: hidden;
  will-change: transform;
}

.mg-strip-track {
  display: flex;
  gap: 10px;
  transition: transform 0.35s ease;
}

.mg-thumb {
  width: 86px;
  height: 60px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  flex: 0 0 auto;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  position: relative;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.mg-thumb.active {
  border-color: var(--accent);
  box-shadow:
    0 0 0 2px rgba(255, 199, 44, 0.35),
    0 12px 24px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

/* Social Presence: medium thumbs + icon badge (minimal add) */
.sp-link {
  display: block;
}

.sp-thumb {
  position: relative;
  height: 190px;
}

/* Social Presence: large centered platform icons */
.sp-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 18, 32, 0.1);
  display: grid;
  place-items: center;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.sp-icon svg {
  width: 38px;
  height: 38px;
}

/* Social Presence */
.sp-card:hover .sp-icon {
  transform: translate(-50%, -50%) scale(1.06);
}

/* Platform-specific glow */
.sp-card:nth-child(1):hover .sp-icon {
  box-shadow:
    0 0 0 6px rgba(255, 0, 0, 0.18),
    0 22px 48px rgba(0, 0, 0, 0.25);
}

.sp-card:nth-child(2):hover .sp-icon {
  box-shadow:
    0 0 0 6px rgba(0, 0, 0, 0.18),
    0 22px 48px rgba(0, 0, 0, 0.25);
}

.sp-card:nth-child(3):hover .sp-icon {
  box-shadow:
    0 0 0 6px rgba(24, 119, 242, 0.2),
    0 22px 48px rgba(0, 0, 0, 0.25);
}

.sp-card:nth-child(4):hover .sp-icon {
  box-shadow:
    0 0 0 6px rgba(225, 48, 108, 0.22),
    0 22px 48px rgba(0, 0, 0, 0.25);
}

.sp-card:nth-child(5):hover .sp-icon {
  box-shadow:
    0 0 0 6px rgba(0, 0, 0, 0.22),
    0 22px 48px rgba(0, 0, 0, 0.25);
}

.sp-card:nth-child(6):hover .sp-icon {
  box-shadow:
    0 0 0 6px rgba(10, 102, 194, 0.22),
    0 22px 48px rgba(0, 0, 0, 0.25);
}

.hero-actions .hero-btn:first-child {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    var(--accent);
  color: #fff;
}

.hero-actions .hero-btn:last-child {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 12px;
}

/* Level 8: Presence of P4A  */
.presence {
  padding: 36px 0;
  background: var(--grad-hero);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.presence .container {
  max-width: none;
  padding: 0 18px;
}

.presence-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.presence-head h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.presence-head p {
  margin: 0;
  max-width: 780px;
  opacity: 0.92;
  font-weight: 700;
  color: #eef3ff;
}

.presence-wrap {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 16px;
  align-items: stretch;
}

.map-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
}

.map-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(800px 120px at 20% 0%,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02));
}

.map-topbar .label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.95;
  white-space: nowrap;
  font-family: var(--ff-head);
}

.map-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.leg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 12px;
  opacity: 0.95;
  white-space: nowrap;
}

.sw {
  width: 14px;
  height: 14px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  display: inline-block;
}

.map-stage {
  position: relative;
  padding: 14px;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.p4a-map {
  width: min(760px, 100%);
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.22));
  user-select: none;
}

.district {
  fill: rgba(255, 255, 255, 0.14);
  stroke: rgba(255, 255, 255, 0.62);
  stroke-width: 2;
  cursor: pointer;
  transition:
    fill 0.16s ease,
    transform 0.16s ease,
    stroke 0.16s ease;
  transform-origin: center;
}

.district:hover,
.district.active {
  fill: rgba(255, 199, 44, 0.3);
  stroke: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.district-label {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.06em;
  fill: rgba(255, 255, 255, 0.92);
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  font-family: var(--ff-head);
}

.map-tip {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.22);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(3px);
}

.presence-info {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.info-head .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 199, 44, 0.22);
  border: 2px solid rgba(255, 199, 44, 0.35);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  white-space: nowrap;
  font-family: var(--ff-head);
}

.info-title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
  font-family: var(--ff-head);
}

.info-sub {
  margin: 0;
  color: #eef3ff;
  opacity: 0.92;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}

.info-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.metric {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.22);
  padding: 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.metric b {
  display: block;
  font-size: 20px;
  letter-spacing: -0.01em;
  font-family: var(--ff-head);
}

.metric span {
  display: block;
  margin-top: 4px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  font-family: var(--ff-head);
}

.info-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background:
    radial-gradient(18px 18px at 30% 25%,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, var(--theme) 0%, var(--theme-2) 100%);
  color: #fff;
  cursor: pointer;
  width: fit-content;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}

.info-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.info-btn:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
}

/* SECTION: Our Partners*/
.partners {
  padding: 34px 0;
  background: var(--grad-soft);
  border-top: 1px solid rgba(2, 41, 105, 0.12);
  border-bottom: 1px solid rgba(2, 41, 105, 0.12);
  overflow: hidden;
}

.partners .container {
  max-width: none;
  padding: 0;
}

.partners-head {
  max-width: var(--container);
  margin: 0 auto 14px;
  padding: 0 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.partners-head h2 {
  margin: 0;
  font-size: 22px;
  color: var(--theme);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.partners-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  max-width: 780px;
}

.partners-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(2, 41, 105, 0.12);
  border-bottom: 1px solid rgba(2, 41, 105, 0.12);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.partners-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  will-change: transform;
  animation: partnersScroll 120s linear infinite;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

/* continuous right-to-left scroll */
@keyframes partnersScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.partner-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(2, 41, 105, 0.18);
  background:
    radial-gradient(260px 120px at 20% 0%,
      rgba(23, 57, 100, 0.06) 0%,
      rgba(23, 57, 100, 0) 60%),
    #fff;
  color: var(--theme);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.08);
  white-space: nowrap;
  user-select: none;
}

.partner-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  margin-right: 10px;
  border: 0;
  box-shadow: 0 0 0 3px rgba(255, 199, 44, 0.14);
}

.partner-group {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none !important;
    transform: none !important;
  }

  .ticker-track {
    animation: none !important;
    transform: none !important;
  }
}

/* Footer */
footer {
  margin-top: 18px;
  background: var(--grad-hero);
  color: #eef3ff;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-inner {
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  max-width: 360px;
}

.footer-brand .brandline {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-brand .logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.footer-col h4 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--ff-head);
}

.footer-col a {
  display: block;
  padding: 6px 0;
  color: #eef3ff;
  opacity: 0.92;
  font-weight: 600;
}

.footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-contact {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-socials {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px 0;
  color: #eef3ff;
  opacity: 0.9;
  font-size: 13px;
}

/* WCAG: If accent becomes red, make text white on accent backgrounds */
.news-label,
.badge-new,
.work>button,
.hero-btn,
.wbtn,
.mg-btn,
.info-btn {
  color: #fff;
}

/* Subtle brand signal on hover (premium) */
.wbtn:hover,
.mg-btn:hover,
.info-btn:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    var(--accent);
}

/* Responsive */
@media (max-width: 980px) {
  .brand {
    min-width: auto;
  }

  .nav {
    justify-content: flex-start;
    overflow: auto;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .carousel {
    height: 420px;
  }

  .hero-title {
    font-size: 32px;
  }

  .card {
    min-width: calc((100% - 14px) / 2);
  }

  .top-right {
    display: none;
  }

  .whatwedo-head {
    grid-template-columns: 1fr;
  }

  .whatwedo-grid {
    grid-template-columns: 1fr;
  }

  .glance-wrap {
    grid-template-columns: 1fr;
  }

  .glance-right {
    justify-content: flex-start;
  }

  .glance-left h2 {
    font-size: 30px;
  }

  .mg-grid {
    grid-template-columns: 1fr;
  }

  .mg-right {
    min-height: 560px;
  }

  .mg-thumbs {
    width: calc(100% - 28px);
  }

  .ql-box {
    padding: 14px;
  }

  .ql-btns {
    justify-content: flex-start;
  }

  .presence-wrap {
    grid-template-columns: 1fr;
  }

  .map-stage {
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  .carousel {
    height: 390px;
  }

  .hero-title {
    font-size: 28px;
  }

  .card {
    min-width: 100%;
  }

  .glance {
    padding: 46px 0;
  }

  .gnum {
    font-size: 30px;
  }

  .mg-thumb {
    width: 76px;
    height: 54px;
  }

  .mg-mini-btn {
    width: 36px;
    height: 36px;
  }

  .info-metrics {
    grid-template-columns: 1fr;
  }

  .partner-pill {
    font-size: 12px;
    padding: 9px 12px;
  }

  .partners-track {
    gap: 10px;
  }

  /* keep menu small on mobile too */
  .nav a {
    font-size: 12px;
  }
}

/* WhatsApp floating chat button + tooltip */
.whatsapp-chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 3000;

  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.28),
    0 0 0 0 rgba(37, 211, 102, 0.35);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

/* Icon */
.whatsapp-chat svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
}

/* Hover lift */
.whatsapp-chat:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.32),
    0 0 0 10px rgba(37, 211, 102, 0.18);
}

/* Tooltip */
.whatsapp-chat::before {
  content: "Chat with us";
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(11, 18, 32, 0.92);
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

/* Tooltip arrow */
.whatsapp-chat::after {
  content: "";
  position: absolute;
  right: 62px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(11, 18, 32, 0.92);
  opacity: 0;
  transition: opacity 0.18s ease;
}

/* Show tooltip on hover */
.whatsapp-chat:hover::before,
.whatsapp-chat:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Subtle pulse animation (idle attention) */
@keyframes waPulse {
  0% {
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.28),
      0 0 0 0 rgba(37, 211, 102, 0.35);
  }

  70% {
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.28),
      0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.28),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-chat {
  animation: waPulse 2.8s ease-out infinite;
}

/* Disable tooltip & pulse on touch devices */
@media (hover: none) {

  .whatsapp-chat::before,
  .whatsapp-chat::after {
    display: none;
  }

  .whatsapp-chat {
    animation: none;
  }
}