/* ============================================================
   Multi Tech Solutions — Design System v2
   (Poppins / DM Sans / IBM Plex Mono)
   ============================================================ */

:root {
  /* Brand palette */
  --bg-950: #05090f;
  --bg-900: #070e1a;
  --bg-850: #081226;
  --bg-800: #0a1730;
  --bg-panel: #0a1424;

  --blue-600: #1668e3;
  --cyan-500: #3ac8f5;
  --cyan-400: #38c6f4;
  --cyan-300: #5fe0ff;
  --cyan-200: #6bd8ff;

  --ink: #e8eef6;
  --ink-muted: rgba(232, 238, 246, 0.76);
  --ink-faint: rgba(232, 238, 246, 0.55);
  --ink-line: rgba(232, 238, 246, 0.12);

  --white: #ffffff;

  /* Light-section tokens */
  --light-bg: #f7f9fc;
  --light-ink: #0a1424;
  --light-ink-muted: rgba(10, 20, 36, 0.66);
  --light-line: rgba(10, 20, 36, 0.1);

  --brand-gradient: linear-gradient(95deg, var(--blue-600) 0%, var(--cyan-500) 100%);
  --brand-gradient-soft: linear-gradient(140deg, rgba(22, 104, 227, 0.16), rgba(5, 9, 15, 0));
  --text-gradient: linear-gradient(95deg, var(--cyan-500) 0%, var(--cyan-300) 100%);
  --logo-gradient: linear-gradient(100deg, #ffffff 40%, var(--cyan-400) 100%);

  /* Type */
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;

  /* Layout */
  --max-width: 1320px;
  --radius-sm: 11px;
  --radius-md: 18px;
  --radius-lg: 22px;
  --shadow-card: 0 20px 50px -20px rgba(0, 0, 0, 0.6);

  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-950);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--cyan-400);
  text-decoration: none;
}

a:hover {
  color: var(--cyan-300);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p {
  margin: 0 0 1em;
  color: var(--ink-muted);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

section {
  padding: clamp(64px, 8vw, 110px) 0;
}

/* ---------- Eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-400);
  margin-bottom: 18px;
}

.eyebrow.dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 14px var(--cyan-400);
  animation: mtsPulse 2.6s ease-in-out infinite;
  flex: none;
}

@keyframes mtsPulse {
  0%, 100% { opacity: .35; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}

.section-head {
  max-width: 700px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-gradient);
  color: var(--white);
  box-shadow: 0 18px 44px -16px rgba(58, 200, 245, 0.85);
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(232, 238, 246, 0.3);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--cyan-400);
  color: var(--white);
}

.btn-sm {
  padding: 12px 26px;
  font-size: 0.88rem;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: top 0.35s ease, max-width 0.35s ease, margin 0.35s ease,
    border-radius 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  border-bottom-color: rgba(56, 198, 244, 0.14);
}

/* Blur lives on a pseudo-element, not the header itself — putting
   backdrop-filter directly on .site-header would make it the
   containing block for its position:fixed mobile-nav descendant. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(5, 9, 15, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.site-header.scrolled::before {
  opacity: 1;
}

/* Desktop only: shrink into a floating pill once scrolled */
@media (min-width: 900px) {
  .site-header.scrolled {
    top: 16px;
    max-width: 1180px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
  }
}

.site-header .container {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  column-gap: 40px;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  min-width: max-content;
}

.brand img {
  height: clamp(22px, 6vw, 32px);
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  justify-self: center;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-muted);
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-color: var(--cyan-400);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 84px 0 0 0;
    justify-self: stretch;
    width: auto;
    background: var(--bg-950);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px clamp(20px, 4vw, 64px) 32px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border-top: 1px solid var(--ink-line);
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--ink-line);
  }

  .header-actions .btn-primary {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 560px;
  padding: clamp(40px, 7vh, 90px) 0 clamp(56px, 8vh, 100px);
  background-color: var(--bg-850);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(90deg, var(--bg-950) 6%, rgba(5, 10, 22, 0.86) 38%, rgba(5, 12, 30, 0.18) 66%, rgba(5, 12, 30, 0) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(rgba(56, 198, 244, 0.13) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
  justify-self: stretch;
  width: 100%;
}

.hero-content {
  max-width: 820px;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  letter-spacing: -0.005em;
  line-height: 1.25;
}

.hero-highlight {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  margin-top: 30px;
  max-width: 600px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  color: var(--ink-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid var(--ink-line);
}

.hero-tags span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.hero-tags span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-400);
  flex: none;
}

/* Interior page hero (legacy pages / redirect notice) */
.page-hero {
  min-height: 320px;
}

/* ============================================================
   About — bento grid
   ============================================================ */
#about {
  padding-top: clamp(100px, 12vw, 150px);
}

.about-bento-head {
  max-width: 960px;
  margin: 0 auto 28px;
  text-align: center;
}

.about-bento-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
}

.about-bento-head p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bento-card {
  border-radius: var(--radius-lg);
  padding: 30px;
}

.bento-feature {
  grid-column: span 2;
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3.5vw, 48px);
  background: #ffffff;
  border: 1px solid var(--light-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.bento-feature-shape {
  position: absolute;
  bottom: -64px;
  right: -64px;
  width: 380px;
  height: auto;
  fill: #eef1f6;
  transition: transform 2s ease-in;
  pointer-events: none;
}

.bento-feature:hover .bento-feature-shape {
  transform: rotate(180deg);
}

.bento-feature-top {
  position: relative;
  z-index: 1;
}

.bento-badge {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--cyan-500);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.bento-feature h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--light-ink);
  white-space: nowrap;
}

.bento-feature-text {
  position: relative;
  z-index: 1;
  margin-top: 0;
  max-width: 420px;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--light-ink-muted);
}

.bento-side {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr auto;
  gap: 20px;
}

.bento-side .bento-cta {
  grid-column: span 3;
}

.bento-stat {
  background: var(--cyan-500);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-stat-blue {
  background: var(--blue-600);
}

.bento-stat-gradient {
  background: var(--brand-gradient);
}

.bento-stat .bento-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

.bento-number {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  margin-top: 20px;
}

.bento-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--brand-gradient);
  text-decoration: none;
  transition: transform 0.25s ease;
}

.bento-cta:hover {
  transform: translateY(-3px);
}

.bento-cta h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}

.bento-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-size: 0.9rem;
}

.bento-cta-arrow {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  background: #fff;
  color: var(--blue-600);
  transition: transform 0.25s ease;
}

.bento-cta:hover .bento-cta-arrow {
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .bento-feature,
  .bento-side {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-side {
    grid-template-columns: 1fr;
  }

  .bento-side .bento-cta {
    grid-column: span 1;
  }
}

/* ============================================================
   Solutions
   ============================================================ */
.solutions-section {
  position: relative;
  background-color: var(--bg-950);
  background-image:
    linear-gradient(180deg, var(--bg-950) 0%, rgba(5, 10, 22, 0.72) 45%, rgba(4, 10, 20, 0.92) 100%),
    url("../assets/img/mts-bg-globe.jpg");
  background-size: auto, cover;
  background-position: center, 50% 70%;
  border-top: 1px solid rgba(56, 198, 244, 0.12);
}

.solutions-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
}

.solutions-head .section-head {
  margin-bottom: 0;
}

.solutions-head > a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
}

.grid {
  display: grid;
  gap: 20px;
}

/* Interactive image accordion (What We Build) */
.accordion {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-900);
  border: 1px solid var(--ink-line);
}

.accordion-panel {
  position: relative;
  flex: 1 1 0%;
  min-width: 64px;
  cursor: pointer;
  background-color: var(--bg-900);
  background-size: auto 120%;
  background-position: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateX(-40px);
  transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1), background-size 0.7s ease,
    opacity 0.6s ease, transform 0.6s ease;
}

.accordion-panel:last-child {
  border-right: none;
}

.accordion-panel.in {
  opacity: 1;
  transform: translateX(0);
}

.accordion-panel.active {
  flex: 7 1 0%;
  background-size: auto 100%;
}

.accordion-panel-shadow {
  position: absolute;
  inset: auto 0 0 0;
  height: 60%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.88) 100%);
  pointer-events: none;
}

.accordion-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}

.accordion-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 20, 36, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.accordion-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.accordion-info {
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
}

.accordion-title {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.accordion-desc {
  display: block;
  margin-top: 2px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.5s ease 0.05s, transform 0.5s ease 0.05s;
}

.accordion-panel.active .accordion-title,
.accordion-panel.active .accordion-desc {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .accordion {
    flex-direction: column;
    min-height: auto;
  }

  .accordion-panel {
    min-width: auto;
    min-height: 56px;
    background-size: cover;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 1;
    transform: none;
  }

  .accordion-panel:last-child {
    border-bottom: none;
  }

  .accordion-panel.active {
    flex: 6 1 0%;
    background-size: cover;
  }
}

/* ============================================================
   Industries
   ============================================================ */
.industries-section {
  position: relative;
  background-color: var(--bg-800);
  background-image:
    linear-gradient(80deg, var(--bg-950) 4%, rgba(6, 12, 26, 0.92) 34%, rgba(8, 18, 40, 0.34) 70%, rgba(8, 18, 40, 0.12) 100%),
    url("../assets/img/mts-bg-riyadh.jpg");
  background-size: auto, cover;
  background-position: center, center;
  background-attachment: scroll, fixed;
}

.industries-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
  max-width: 900px;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--ink-line);
  background: rgba(5, 9, 15, 0.62);
  backdrop-filter: blur(8px);
  font-size: 0.97rem;
  color: var(--ink);
}

.industry-item .bullet {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: var(--cyan-400);
  flex: none;
}

/* ============================================================
   Contact
   ============================================================ */
.contact-section {
  position: relative;
  background-color: var(--bg-850);
  background-image:
    linear-gradient(100deg, var(--bg-950) 2%, rgba(6, 12, 26, 0.9) 30%, rgba(8, 20, 46, 0.42) 72%, rgba(8, 20, 46, 0.15) 100%),
    url("../assets/img/mts-bg-riyadh.jpg");
  background-size: auto, cover;
  background-position: center, center;
  background-attachment: scroll, fixed;
  border-top: 1px solid rgba(56, 198, 244, 0.14);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.contact-grid h2 {
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  line-height: 1.06;
}

.contact-grid > div:first-child p {
  max-width: 480px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-links {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
}

.contact-links .label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  color: var(--cyan-400);
}

.contact-links a {
  font-size: 1.05rem;
  color: var(--white);
}

.contact-links a:hover {
  color: var(--cyan-300);
}

.form-card {
  padding: clamp(26px, 3vw, 38px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 198, 244, 0.26);
  background: rgba(5, 9, 15, 0.8);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 16px;
}

.form-card input,
.form-card textarea {
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink-line);
  background: rgba(232, 238, 246, 0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s ease;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
  color: rgba(232, 238, 246, 0.45);
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: var(--cyan-400);
}

.form-card textarea {
  resize: vertical;
  min-height: 100px;
}

.form-card button {
  padding: 17px 24px;
  border: none;
  border-radius: 999px;
  background: var(--brand-gradient);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 16px 40px -18px rgba(58, 200, 245, 0.9);
  transition: transform 0.18s ease;
}

.form-card button:hover {
  transform: translateY(-2px);
}

.form-status {
  display: none;
  font-size: 0.85rem;
  color: var(--cyan-300);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding: clamp(40px, 5vw, 64px) 0 34px;
  background: #030609;
  border-top: 1px solid var(--ink-line);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  height: 26px;
  width: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  font-size: 0.92rem;
}

.footer-links a {
  color: rgba(232, 238, 246, 0.7);
}

.footer-copyright {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.07em;
  color: rgba(232, 238, 246, 0.4);
}

/* ============================================================
   Light section variant
   ============================================================ */
.bg-light {
  background: var(--light-bg);
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.bg-light h1, .bg-light h2, .bg-light h3, .bg-light h4 {
  color: var(--light-ink);
}

.bg-light .bento-cta h4 {
  color: #fff;
}

.bg-light p {
  color: var(--light-ink-muted);
}

.bg-light .bento-cta p {
  color: rgba(255, 255, 255, 0.75);
}

.bg-light .eyebrow {
  color: var(--blue-600);
}

.bg-light .eyebrow.dot::before {
  background: var(--blue-600);
  box-shadow: 0 0 14px rgba(22, 104, 227, 0.5);
}

.bg-light a:not(.btn) {
  color: var(--blue-600);
}

.bg-light a:not(.btn):hover {
  color: var(--cyan-500);
}

/* ============================================================
   Utility
   ============================================================ */
.text-center { text-align: center; }
