@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap");

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

:root {
  --dark-primary: #070e1a;
  --dark-secondary: #0a1628;
  --dark-card: #0d1b2a;
  --gold: #c9a84c;
  --accent: #e2ff54;
  --lime: #bee305;
  --white: #ffffff;
  --text-light: #e2e8f0;
  --text-muted: #cbd5e1;
  --text-secondary: #94a3b8;
  --text-dim: #64748b;
  --text-dark: #475569;
  --text-darker: #4a5565;
  --text-body: #0a1628;
  --border-gold-10: rgba(201, 168, 76, 0.1);
  --border-gold-15: rgba(201, 168, 76, 0.15);
  --border-gold-20: rgba(201, 168, 76, 0.2);
  --border-gold-25: rgba(201, 168, 76, 0.25);
  --border-gold-30: rgba(201, 168, 76, 0.3);
  --border-gold-40: rgba(201, 168, 76, 0.4);
  --bg-card-light: #f8f9fc;
  --teal: #003947;
  --max-width: 1151.2px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 0.52px;
  border: none;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.2s;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: var(--text-body);
  padding: 10px 20px;
  border-radius: 4px;
}

.header .btn--primary {
  background: #ffffff;
  color: #070e1a;
  opacity: 1;
}

.header .btn--primary:hover {
  background: #ffffff;
  opacity: 1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.btn--lg {
  padding: 16px 28px;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.56px;
}

.btn--lg.btn--primary {
  font-weight: 700;
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  padding: 16px 28px;
  border-radius: 4px;
  border: 0.8px solid var(--white);
}

.btn--outline-gold {
  background: transparent;
  color: var(--accent);
  padding: 16px 28px;
  border-radius: 4px;
  border: 0.8px solid var(--border-gold-40);
}

.btn--outline-accent {
  background: transparent;
  color: var(--accent);
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid var(--accent);
}

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

.btn--case-studies {
  width: 235px;
  height: 51px;
  padding: 0;
  justify-content: center;
  align-items: center;
  border-radius: 9px;
  background: #e2ff54;
  color: var(--text-body);
  font-size: 14px;
  box-sizing: border-box;
}

.text-accent {
  color: #ffffff;
}

.text-lime {
  color: var(--lime);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--dark-primary);
  border-bottom: 0.8px solid var(--border-gold-20);
  height: 72px;
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.logo__name {
  color: #10b981;
  font-size: 22px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.88px;
}

.logo__name--lg {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.96px;
}

.logo__sub {
  color: var(--text-secondary);
  font-size: 7px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 7px;
  letter-spacing: 2px;
}

.header .logo__sub {
  color: var(--white);
}

.logo--footer .logo__sub {
  color: #e5e4e2;
  line-height: 12px;
}

.nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: 0;
  gap: 2px;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 8.6px 10px;
  color: #f1f5f9;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.3px;
  border-radius: 4px;
  border-bottom: 0.8px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.nav__link:hover {
  color: #10b981;
}

.nav__link--active {
  color: #10b981;
  font-weight: 600;
  border-bottom-color: #10b981;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--dark-primary);
  padding: 124px 0 0;
  min-height: 100vh;
  overflow: hidden;
}

.hero__bg-layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__aurora {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero__aurora--1 {
  inset: 0;
  z-index: 1;
  opacity: 0.12;
}

.hero__aurora--2 {
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  height: 80%;
  z-index: 2;
  opacity: 0.12;
}

.hero__grid-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
  opacity: 0.25; /* Lowered opacity */
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(to right, rgba(207, 213, 221, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(207, 213, 221, 0.05) 1px, transparent 1px);
  background-size: 96px 96px;
  background-position: 0 0;
  outline: 1px solid rgba(207, 213, 221, 0.05); /* Lowered opacity */
}

.hero__cell-glow {
  position: absolute;
  width: 96px;
  height: 96px;
  background: rgba(242, 244, 247, 0.025);
}

.hero__gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 100% 52.19% at 50% 0%,
      black 0%,
      rgba(0, 0, 0, 0) 95%
    ),
    linear-gradient(
      to bottom,
      transparent 60%,
      rgba(7, 14, 26, 0.8) 85%,
      rgba(7, 14, 26, 0.95) 100%
    );
  pointer-events: none;
  z-index: 5;
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8.8px 16.8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 2px;
  margin-bottom: 25px;
}

.hero__badge span {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 16.5px;
  letter-spacing: 0.15em;
}

.hero__title {
  font-size: 48px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  line-height: 59.67px;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 24px;
}
.hero__line {
  display: block;
  white-space: nowrap;
}

.hero__desc {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  max-width: 705px;
  margin-bottom: 48px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

/* Institutional Button Overrides for Hero */
.hero__actions .btn {
  border-radius: 2px; /* Sharp corners */
}

.hero__actions .btn--primary {
  background: #ffffff;
  color: var(--text-body); /* Dark Teal */
  border: none;
  opacity: 1;
}

.hero__actions .btn--primary:hover {
  background: #ffffff;
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.hero__actions .btn--outline-white {
  background: transparent;
  color: #ffffff;
  border: 1px solid #e5e4e2; /* Platinum */
}

.hero__actions .btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero__credentials {
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* Thin white line */
  padding-top: 32px;
  padding-bottom: 115px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.hero__credential {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__credential-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex: 0 0 14px;
  opacity: 0.7;
  filter: brightness(0) saturate(100%) invert(95%) sepia(3%) saturate(245%)
    hue-rotate(180deg) brightness(96%) contrast(92%);
}

.hero__credential span:first-of-type {
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.36px;
}

.hero__credential-sep {
  color: rgba(255, 255, 255, 0.2) !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  line-height: 24px !important;
  letter-spacing: 0 !important;
  margin: 0 12px;
}

.hero__standard {
  margin-top: 16px;
  margin-bottom: 32px;
}

.hero__standard-label {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.hero__standard-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.hero__standard-list li {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__standard-list li::before {
  content: "\2713"; /* Checkmark */
  color: #94a3b8; /* Slate Blue */
  font-size: 13px;
  font-weight: bold;
}

/* ===== INDUSTRY DISCONNECT ===== */
.disconnect {
  position: relative;
  z-index: 20;
  background: var(--white);
  padding: 48px 0 0;
  overflow: visible;
}

.disconnect__curve {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -49.105%);
  width: min(calc(100% - 64px), 1151px);
  height: auto;
  aspect-ratio: 1151 / 203;
  z-index: 21;
  pointer-events: none;
}

.disconnect__inner {
  position: relative;
  z-index: 22;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.disconnect__title {
  font-size: 37.55px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 800;
  line-height: 48px;
  color: #0a1628;
  text-align: center;
  margin-bottom: 24px;
}

.disconnect__title .text-lime {
  color: #bee305;
  line-height: 48px;
}

.disconnect__subtitle {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 28.8px;
  color: var(--text-body);
  text-align: center;
  max-width: 668px;
  margin: 0 auto 48px;
}

.disconnect__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.problem-card {
  background: var(--bg-card-light);
  border-radius: 4px;
  border-left: 4px solid var(--teal);
  border-top: 0.8px solid var(--teal);
  border-right: 0.8px solid var(--teal);
  border-bottom: 0.8px solid var(--teal);
  padding: 28px 32px;
}

.problem-card__num {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
  color: #0a1628;
  font-size: 12px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.problem-card__num::before {
  content: "";
  display: block;
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background: var(--teal);
  margin-bottom: 6px;
}

.problem-card__title {
  font-size: 14px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 800;
  line-height: 25.5px;
  color: var(--text-body);
  margin-bottom: 10px;
}

.problem-card__desc {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 23.8px;
  color: #000;
}

.disconnect__quote {
  position: relative;
  display: flex;
  width: 1100px;
  height: 220px;
  padding: 120px 150px;
  justify-content: space-between;
  align-items: center;
  border-radius: 13px;
  overflow: hidden;
  background: url("../images/elaf-solution-bg.png") 50% / cover no-repeat;
  box-sizing: border-box;
  margin: 0 auto 60px;
}

.disconnect__quote-inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.disconnect__quote-left {
  min-width: 0;
}

.disconnect__quote-tag {
  color: #e5e4e2;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 15px;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 12px;
}

.disconnect__quote-text {
  color: #f8fafc;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 1.75;
  max-width: 693px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.disconnect__quote-mark {
  position: absolute;
  right: 18px;
  bottom: -160px;
  color: var(--white);
  font-size: 238.35px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 357.525px;
  opacity: 0.1;
  pointer-events: none;
}

/* ===== SERVICES ===== */
/* ===== SERVICES ===== */
.services {
  position: relative;
  background: var(--text-body);
  padding: 66px 0 80px;
  overflow: hidden;

  /* Institutional Palette Overrides */
  --platinum: #e5e4e2;
  --silver: #c0c0c0;
  --platinum-light: #d9d9d9;
}

.services__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  pointer-events: none;
}

.services__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.services__header {
  text-align: center;
  margin-bottom: 60px;
}

.services__title {
  font-size: 40.82px;
  font-family: "Arvo", serif;
  font-weight: 700;
  line-height: 61.24px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 16px;
}

.services__subtitle {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: #f1f5f9;
  max-width: 680px;
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 354px);
  gap: 20px;
  margin-bottom: 48px;
  justify-content: center;
}

.service-card {
  display: flex;
  width: 354px;
  height: 585px;
  flex-shrink: 0;
  flex-direction: column;
  background: #132435; /* Is slightly lighter than #0a1628 (~5% lightness increase) */
  border-radius: 6px;
  border: 1px solid rgba(229, 228, 226, 0.12); /* Platinum border hint */
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  /* Glassmorphism: 10% opacity white bg + silver border */
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #c0c0c0; /* Silver border */
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.service-card__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(98%) sepia(2%) saturate(175%)
    hue-rotate(188deg) brightness(98%) contrast(85%); /* Makes icon white/platinum */
}

/* Middle icon (globe) has extra whitespace — scale slightly without changing box */
.service-card__icon img[src*="service-icon-02"] {
  transform: translateY(1px) scale(1.22);
  transform-origin: center;
}

.service-card__num {
  display: block;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 16.5px;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.service-card__title {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 26px;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.service-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 24px;
}

.service-card__meta {
  font-size: 13.5px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.75;
  color: #f8fafc;
  margin: 0;
}

.service-card__label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #e5e4e2;
  font-weight: 700;
}

.service-card__cta {
  width: 204px;
  justify-content: center;
  align-self: center;
  margin-top: 32px;
  padding: 12px 24px;
  border-width: 1px; /* Thin border */
  border-color: #e5e4e2 !important; /* Platinum border */
  color: #e5e4e2 !important;
}

.service-card__cta:hover {
  background: rgba(16, 185, 129, 0.14) !important;
  border-color: #10b981 !important;
  color: #ffffff !important;
}

.services__cta-row {
  display: flex;
  justify-content: center;
}

.services__cta {
  display: inline-flex !important;
  padding: 14.4px 28.8px 15.2px 28.8px;
  justify-content: center;
  align-items: center;
  gap: 7.925px;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.56px;
  margin: 0 auto;
  width: fit-content;
  flex: 0 0 auto;
  box-sizing: border-box;

  /* Institutional Style Override */
  border: 1px solid #e5e4e2 !important; /* Platinum border */
  color: #e5e4e2 !important;
  transition: all 0.3s ease;
}

.services__cta:hover {
  background: #2e3e4a !important; /* Muted brand color */
  border-color: #2e3e4a !important;
  color: var(--white) !important;
}

/* ===== FRAMEWORK ===== */
.framework {
  background: var(--white);
  padding: 100px 0 0;
  border-top: 0.8px solid var(--border-gold-10);
  border-bottom: 0.8px solid var(--border-gold-10);
}

.framework__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.framework__title {
  font-size: 40.82px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 900;
  line-height: 61.24px;
  color: var(--text-body);
  text-align: center;
  margin-bottom: 8px;
}

.framework__subtitle {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 28px;
  color: #334155;
  text-align: center;
  margin-bottom: 60px;
}

.framework__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(229, 228, 226, 0.1); /* Platinum grid lines */
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 80px;
}

.phase-card {
  background: var(--text-body);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.phase-card__circle {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  border: 1px solid #e5e4e2; /* Platinum border (Ghost Circle) */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff; /* White number */
  font-size: 12px;
  font-family: "Inter", sans-serif; /* Bold Sans-Serif */
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 16px;
}

.phase-card__bg-num {
  position: absolute;
  right: 16px;
  top: 16px;
  color: rgba(229, 228, 226, 0.15); /* Platinum 15% opacity */
  font-size: 48px;
  font-family: "Arvo", serif; /* Consistent layout font */
  font-weight: 700;
  line-height: 48px;
  pointer-events: none;
}

.phase-card__title {
  font-size: 17px;
  font-family: "Arvo", serif; /* Bold Slab Serif */
  font-weight: 700;
  line-height: 25.5px;
  color: var(--white);
  margin-bottom: 10px;
}

.phase-card__desc {
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400; /* Regular */
  font-style: normal; /* No Italics */
  line-height: 1.6; /* Increased line height */
  color: #e5e4e2; /* Platinum */
  max-width: 257px;
}

/* ===== CLIENTS ===== */
.clients {
  position: relative;
  z-index: 1;
  background: var(--text-body); /* Dark background (deep teal/charcoal) */
  padding: 80px 0 60px;
  text-align: center;
}

.clients__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.clients__tag {
  color: #e5e4e2; /* Platinum */
  font-size: 11px;
  font-family: "Inter", sans-serif; /* Inter Semi-Bold */
  font-weight: 600;
  text-transform: uppercase;
  line-height: 16.5px;
  letter-spacing: 0.15em; /* Increased spacing */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto; /* Allow auto width */
  padding: 6px 16px; /* Pill padding */
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1); /* Subtle white bg instead of black */
  margin-bottom: 24px; /* Increased margin */
}

.clients__title {
  font-size: 34px;
  font-family: "Arvo", serif; /* Bold Slab Serif */
  font-weight: 700;
  font-style: normal; /* Upright */
  line-height: 51px;
  letter-spacing: -0.01em; /* Solid tracking */
  color: #ffffff; /* Pure White */
  margin-bottom: 16px; /* Increased space */
}

.clients__subtitle {
  font-size: 14px;
  font-family: "Inter", sans-serif; /* Medium Sans */
  font-weight: 500;
  line-height: 24px;
  color: #c0c0c0; /* Silver */
  margin-bottom: 60px; /* Generous luxury spacing */
  word-spacing: 4px; /* Space out locations */
}

.clients__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 64px; /* Increased luxury spacing before button */
}

.clients__cta-row {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

/* Institutional-Grade Button Style - Platinum Ghost */
.btn-platinum {
  display: inline-block;
  padding: 16px 40px; /* Generous padding for a luxury feel */
  font-family: "Inter", "Montserrat", sans-serif;
  font-weight: 600;
  font-style: normal; /* Ensuring NO italics */
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em; /* "Luxury spacing" */
  text-decoration: none;
  color: #e5e4e2; /* Platinum Text */
  background-color: transparent; /* Transparent Ghost */
  border: 1.5px solid #e5e4e2; /* Platinum Border */
  border-radius: 2px; /* Sharp corners for an "Architectural" look */
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.btn-platinum:hover {
  background-color: #e5e4e2; /* Fills with Platinum */
  color: #0a1628; /* Text turns to your dark teal background color */
  box-shadow: 0px 4px 15px rgba(229, 228, 226, 0.2); /* Soft platinum glow */
}

.client-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  background: var(--dark-card);
  border-radius: 2px; /* Sharp architectural corners */
  border: 0.5px solid rgba(229, 228, 226, 0.15); /* Faint Platinum border */
  color: #e5e4e2; /* Platinum text */
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500; /* Medium weight */
  text-transform: uppercase;
  line-height: 19.5px;
  letter-spacing: 1.04px;
  transition: border-color 0.3s ease;
}

.client-logo:hover {
  border-color: #10b981;
}

/* ===== CASE STUDIES ===== */
.case-studies {
  background: var(--dark-primary); /* Deep background */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.case-studies__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.case-study-card {
  display: grid;
  grid-template-columns: 280px 1fr 280px; /* Architectural Grid */
  gap: 40px; /* Spacious Gutters */
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.02); /* Very subtle card bg */
  border: 1px solid rgba(229, 228, 226, 0.1); /* Faint Platinum border */
  border-radius: 2px; /* Sharp corners */
  padding: 40px;
}

.case-study__col {
  display: flex;
  flex-direction: column;
}

.case-study__label {
  color: #c1a050; /* Matte Gold Header */
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800; /* Extra Bold */
  text-transform: uppercase;
  letter-spacing: 0.15em; /* Blueprint Label Spacing */
  margin-bottom: 16px;
}

.case-study__title {
  color: #ffffff; /* Pure White */
  font-family: "Arvo", serif; /* Bold Slab */
  font-weight: 700;
  font-style: normal; /* Upright */
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.01em; /* Dense Authority */
  margin-bottom: 24px;
}

.case-study__desc {
  color: #e5e4e2; /* Platinum Body */
  font-family: "Inter", sans-serif; /* Regular Sans */
  font-weight: 400;
  font-style: normal; /* No Italics */
  font-size: 14px;
  line-height: 1.8; /* Accessible Premium Line Height */
}

.case-study__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto; /* Push to bottom */
  padding-top: 24px;
}

.case-study__tag {
  border: 1px solid rgba(229, 228, 226, 0.2); /* Platinum Ghost Border */
  color: #e5e4e2; /* Platinum Text */
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 2px; /* Sharp corners */
}

/* Institutional Impact Box */
.impact-box {
  background-color: #0d2b33; /* Deep Slate Teal */
  border-top: 3px solid #c1a050; /* Matte Gold Certification Bar */
  padding: 24px;
  border-radius: 2px; /* Sharp corners */
  transition: transform 0.3s ease;
  position: relative;
  height: 100%; /* Fill column height */
}

.impact-box:hover {
  transform: translateY(-4px);
  background-color: #0f353d; /* Slight brighten */
}

.impact-title {
  display: block;
  color: #c1a050; /* Matte Gold */
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em; /* Luxury Spacing */
  margin-bottom: 16px;
}

.impact-stat {
  display: block;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 4px;
}

.impact-context {
  display: block;
  color: #8e9fa3; /* Muted Slate Grey */
  font-family: "Inter", sans-serif;
  font-size: 13px;
  margin-top: 8px;
}

.global-network {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  animation: float-network 6s ease-in-out infinite alternate;
}

.network-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, 0.4);
  box-shadow: inset 0 0 20px rgba(201, 168, 76, 0.05);
  transform-style: preserve-3d;
}

.network-ring--1 {
  animation: spin-axis-1 20s linear infinite;
}

.network-ring--2 {
  border: 1px solid rgba(226, 255, 84, 0.2);
  width: 340px;
  height: 340px;
  animation: spin-axis-2 25s linear infinite;
}

.network-ring--3 {
  width: 360px;
  height: 360px;
  border: 1px dashed rgba(201, 168, 76, 0.3);
  animation: spin-axis-3 30s linear infinite;
}

.network-core {
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(
    circle,
    rgba(226, 255, 84, 0.6) 0%,
    rgba(201, 168, 76, 0.2) 60%,
    transparent 100%
  );
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(226, 255, 84, 0.4);
  animation: pulse-core 4s ease-in-out infinite alternate;
}

@keyframes spin-axis-1 {
  0% {
    transform: rotateX(60deg) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(60deg) rotateY(360deg) rotateZ(360deg);
  }
}
@keyframes spin-axis-2 {
  0% {
    transform: rotateX(120deg) rotateY(45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(120deg) rotateY(45deg) rotateZ(360deg);
  }
}
@keyframes spin-axis-3 {
  0% {
    transform: rotateX(15deg) rotateY(90deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(15deg) rotateY(90deg) rotateZ(360deg);
  }
}
@keyframes pulse-core {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}
@keyframes float-network {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  z-index: 2;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(201, 168, 76, 0.08) 0%,
      rgba(7, 14, 26, 0) 70%
    ),
    linear-gradient(180deg, #070e1a 0%, #0a1628 100%);
  padding: 80px 0;
  border-top: 0.8px solid var(--border-gold-10);
  border-bottom: 0.8px solid var(--border-gold-15);
  text-align: center;
  overflow: hidden;
}

.cta-section__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.cta-section__title {
  width: 697px;
  max-width: 100%;
  flex-shrink: 0;
  color: #ffffff; /* Pure White */
  text-align: center;
  font-family: "Arvo", serif; /* Bold Slab Serif */
  font-size: 32px;
  font-style: normal; /* Upright */
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.01em; /* Locked-in spacing */
  margin: 0 auto 16px;
}

.cta-section__desc {
  width: 763px;
  max-width: 100%;
  flex-shrink: 0;
  color: #f1f5f9;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  margin: 0 auto 48px;
}

/* Institutional Matte Gold Button */
.cta-section .btn--primary {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 16px 40px; /* Generous padding */
  background: #10b981;
  color: #081c22;
  border-radius: 2px;
  border: none;
  transition: all 0.3s ease;
}

.cta-section .btn--primary:hover {
  background: #34d399;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  /* Institutional Deep Palette */
  background: #081c22; /* Midnight Forest */
  border-top: 1px solid rgba(229, 228, 226, 0.1); /* Subtle separation */
  color: #e5e4e2; /* Platinum Text */
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px 0; /* Increased padding */
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr; /* Adjusted column widths */
  gap: 60px; /* Generous spacing */
  margin-bottom: 64px;
}

.footer__col--brand .logo {
  margin-bottom: 24px;
}

.footer__tagline {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #e5e4e2; /* Platinum */
  margin-bottom: 32px;
  max-width: 300px;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px; /* Increased gap */
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 5px;
  color: #ffffff;
}

.footer__contact-item:hover svg {
  color: #ffffff;
}

/* Ensure SVG paths use current color */
.footer__contact-item svg path,
.footer__contact-item svg circle,
.footer__contact-item svg rect {
  stroke: currentColor;
}

.footer__contact-item span,
.footer__contact-item div {
  color: #e5e4e2; /* Platinum */
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.footer__contact-item div {
  display: flex;
  flex-direction: column;
}

.footer__heading {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 16.5px;
  letter-spacing: 0.15em; /* Luxury Spacing */
  margin-bottom: 32px; /* Increased margin */
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 16px; /* Increased gap for 2.0x line feel */
}

.footer__links li {
  line-height: 2; /* 2.0x Line Height */
}

.footer__links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e5e4e2; /* Platinum */
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400; /* Regular */
  font-style: normal; /* No Italics */
  transition: color 0.2s, transform 0.2s;
}

.footer__links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Hide the little arrows in links if desired, or color them gold */
.footer__links a svg {
  display: none; /* Cleaner look for institutional */
}

.footer__newsletter-desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #e5e4e2; /* Platinum */
  margin-bottom: 24px;
}

.footer__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.footer__input {
  width: 100%;
  padding: 14px 16px;
  background: #0a1628; /* Dark Navy/Black Box */
  border: 1px solid rgba(229, 228, 226, 0.3); /* Platinum Border */
  border-radius: 2px; /* Sharp corners */
  color: #ffffff;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s;
}

.footer__input::placeholder {
  color: rgba(229, 228, 226, 0.5);
}

.footer__input:focus {
  border-color: #ffffff;
}

/* Institutional Subscribe Button */
.footer__form .btn--primary {
  width: 100%;
  padding: 14px 0;
  background: #ffffff;
  color: #070e1a;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
}

.footer__form .btn--primary:hover {
  background: #ffffff;
  opacity: 1;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.footer__social-section {
  margin-top: 32px;
}

.footer__social-section .footer__heading {
  margin-bottom: 16px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: transparent;
}

.footer__social-link:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Filter icons to white, then black on hover */
.footer__social-link img {
  width: 18px;
  height: 18px;
  opacity: 1;
  filter: brightness(0) invert(1); /* Pure White Icons */
  transition: filter 0.3s ease;
}

.footer__social-link:hover img {
  filter: brightness(0); /* Black icons on white */
}

.footer__bottom {
  border-top: 1px solid rgba(229, 228, 226, 0.1); /* Thin divider */
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.footer__bottom span {
  color: #cbd5e1;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.footer__bottom-links {
  display: flex;
  gap: 32px;
}

.footer__bottom-links a {
  color: #cbd5e1;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.2s;
}

.footer__bottom-links a:hover {
  color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1366px) {
  /* Extra space so credentials stay above white curve (laptop overlap fix) */
  .hero__credentials {
    padding-bottom: 160px;
  }

  .disconnect__curve {
    width: min(calc(100% - 48px), 1151px);
    /* Pull up less so mountain edge doesn’t cover credential line */
    transform: translate(-50%, -38%);
  }
}

@media (max-width: 1024px) {
  .nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--dark-primary);
    flex-direction: column;
    padding: 24px;
    border-bottom: 0.8px solid var(--border-gold-20);
  }

  .nav.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .header__inner .btn--primary {
    display: none;
  }

  .hero__title {
    font-size: 36px;
    line-height: 44px;
  }

  .hero__desc {
    font-size: 16px;
    line-height: 28px;
  }

  .disconnect__cards {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .framework__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .framework__title,
  .services__title,
  .disconnect__title {
    font-size: 32px;
    line-height: 42px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero__credentials {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    /* Stacked credentials need more clearance above disconnect curve */
    padding-bottom: 200px;
  }

  .hero__credential-sep {
    display: none;
  }

  .disconnect__curve {
    transform: translate(-50%, -32%);
  }
}

@media (max-width: 768px) {
  .disconnect {
    padding-top: 48px;
  }

  .disconnect__curve {
    top: 0;
    /* Less upward overlap on small screens so hero text stays visible */
    transform: translate(-50%, -28%);
    width: calc(100% - 32px);
    height: auto;
  }

  .hero__credentials {
    padding-bottom: 220px;
  }

  .hero__title {
    font-size: 28px;
    line-height: 36px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .framework__grid {
    grid-template-columns: 1fr;
  }

  .clients__title {
    font-size: 24px;
    line-height: 36px;
  }

  .clients__logos {
    gap: 8px;
  }

  .client-logo {
    padding: 12px 20px;
    font-size: 11px;
  }

  .cta-section__title {
    font-size: 24px;
    line-height: 36px;
  }

  .footer__bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ABOUT PAGE ===== */
.page-about .header {
  background: var(--dark-secondary);
  border-bottom: 0.8px solid var(--border-gold-15);
}

.about-hero {
  position: relative;
  background: var(--dark-secondary);
  height: 487px;
  overflow: hidden;
}
.about-hero__inner {
  width: 1152px;
  height: 487px;
  margin: 0 auto;
  padding: 122px 24px 44px;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 16.5px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 18px;
}
.about-hero__target {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}
.about-hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 78% 72% at 65% 10%,
      rgba(110, 222, 209, 0.36) 0%,
      rgba(110, 222, 209, 0) 62%
    ),
    linear-gradient(180deg, rgba(7, 14, 26, 0.2) 0%, rgba(7, 14, 26, 0.72) 100%);
  z-index: 4;
  pointer-events: none;
}
.about-hero .hero__aurora--1,
.about-hero .hero__aurora--2 {
  opacity: 0.12;
}
.about-hero .hero__grid-img {
  opacity: 0.55;
}
.about-hero .hero__grid-lines {
  background-image:
    linear-gradient(to right, rgba(207, 213, 221, 0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(207, 213, 221, 0.14) 1px, transparent 1px);
  outline: 1px solid rgba(207, 213, 221, 0.14);
}
.about-hero .hero__cell-glow {
  background: rgba(242, 244, 247, 0.025);
}
.about-hero__title {
  max-width: 985px;
  font-size: 48px;
  font-family:
    "Montserrat",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 800;
  line-height: 52px;
  color: #fff;
  margin-bottom: 26px;
}
.about-hero__line {
  display: block;
  width: 100%;
}
.about-hero__desc {
  max-width: 760px;
  font-size: 17px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 400;
  line-height: 30.6px;
  color: #fff;
  margin: 0;
}

.about-theology {
  background: #fff;
  padding: 0;
}
.about-theology__inner {
  width: 1151.2px;
  height: 569.2px;
  margin: 0 auto;
  padding: 64px 24px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  box-sizing: border-box;
}
.about-theology__title {
  color: #0a1628;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 43.74px;
  margin-bottom: 24px;
}
.about-theology__highlight {
  background: transparent;
  color: inherit;
  padding: 0;
  border-radius: 0;
}
.about-theology__p {
  color: #0a1628;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.8px;
  margin-bottom: 16px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 215px);
  grid-template-rows: repeat(2, 98px);
  gap: 16px;
  align-self: stretch;
  min-height: 0;
  justify-content: end;
  align-content: start;
  padding-top: 54px;
}
.about-stats__card {
  display: flex;
  width: 215px;
  height: 98px;
  padding: 28px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  justify-self: stretch;
  border-radius: 6px;
  background: #0a1628;
  grid-row: span 1;
  grid-column: span 1;
  box-sizing: border-box;
  min-height: 0;
  text-align: center;
}
.about-stats__num {
  display: block;
  font-size: 36px;
  font-family: "Rockwell", "Rockwell Extra Bold", "Georgia", serif;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}
.about-stats__label {
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #f8fafc;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ── Profile Section ── */
/* Full-bleed like CTA — no side gutters; band touches viewport left/right */
.about-profile {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 760px;
  margin: 0;
  border-top: 0.8px solid rgba(201, 168, 76, 0.1);
  background: #070e1a;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.about-profile__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.about-profile__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 48px 88px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
}
/* Left column */
.about-profile__image-wrap {
  width: 300px;
  height: 340px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 28px;
}
.about-profile__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-profile__eyebrow {
  display: block;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 16.5px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
}
.about-profile__name {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 4px;
}
.about-profile__roles {
  color: #ffffff;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 19.5px;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about-profile__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.about-profile__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(248, 250, 252, 0.22);
  background: rgba(255, 255, 255, 0.06);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.5px;
  letter-spacing: 0.66px;
  color: #f8fafc;
}
/* Right column */
.about-profile__quote {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  color: #ffffff;
  margin: 0 0 32px;
  padding: 0;
  border: none;
  max-width: 760px;
  text-wrap: pretty;
}
.about-profile__bio {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #f8fafc;
  margin-bottom: 32px;
  max-width: 760px;
  text-wrap: pretty;
}
.about-profile__creds {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
}
.about-profile__creds li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  color: #f8fafc;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.about-profile__cred-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 1;
  filter: brightness(0) invert(1);
}

.about-board {
  position: relative;
  background-color: var(--dark-primary);
  background-image: url("../images/ssb-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  text-align: center;
  z-index: 1;
}
.about-board__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.about-board__title {
  font-size: 34px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.about-board__intro {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 25.5px;
}
.about-board__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: left;
}
.about-board__card {
  background: var(--dark-card);
  border-radius: 8px;
  padding: 32px;
  border: 0.8px solid rgba(248, 250, 252, 0.12);
}
.about-board__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(248, 250, 252, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}
.about-board__name {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 28.5px;
  margin-bottom: 4px;
}
.about-board__role {
  color: #f8fafc;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-board__desc {
  margin: 0;
}

/* Card text: first desc line = qualifications, second = main paragraph */
.about-board__card p.about-board__desc:nth-of-type(2) {
  color: #f1f5f9;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px;
  margin: 0 0 14px;
}
.about-board__card p.about-board__desc:nth-of-type(3) {
  color: rgba(248, 250, 252, 0.88);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.2px;
  margin: 0;
}

.about-testimonials {
  background: var(--white);
  padding: 80px 0;
}
.about-testimonials__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.about-testimonials__title {
  font-size: 34px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 800;
  color: var(--dark-primary);
  margin-bottom: 48px;
}
.about-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-testimonial {
  background: var(--bg-card-light);
  border-radius: 8px;
  padding: 30px 26px;
  border: 0.8px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
}
.about-testimonial::before {
  content: "“";
  position: absolute;
  top: 16px;
  left: 18px;
  font-family: "Playfair Display", serif;
  font-size: 32px;
  line-height: 1;
  color: rgba(15, 23, 42, 0.12);
}
.about-testimonial__quote {
  color: #334155;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.8px;
  margin: 20px 0 20px;
}
.about-testimonial__author {
  color: #0a1628;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 19.5px;
  margin: 0;
}
.about-testimonial__country {
  color: #0a1628;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  margin: 2px 0 0;
}

.about-partner {
  background: var(--white);
  padding: 56px 0 100px;
  position: relative;
  overflow: hidden;
}
.about-partner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.about-partner__title {
  color: #0a1628;
  text-align: center;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 800;
  line-height: 51px;
  margin-bottom: 28px;
}
.about-partner__highlight {
  background: transparent;
  padding: 0;
}
.about-partner__btn {
  background: var(--dark-card);
  color: var(--white);
  display: inline-flex;
  padding: 15.6px 31.938px 16.4px 31px;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0.56px;
}
.about-partner__btn:hover {
  opacity: 0.9;
  background: var(--dark-primary);
}
.about-partner__deco {
  position: absolute;
  right: -80px;
  bottom: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(226, 255, 84, 0.25) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.page-about .cta-section {
  position: relative;
  z-index: 2;
}
.btn--case-studies-cta {
  background: #ffffff !important;
  color: #070e1a !important;
  display: inline-flex;
  padding: 13.6px 32.538px 14.4px 32px;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 0;
  height: auto;
  border-radius: 9px;
  box-sizing: border-box;
  text-align: center;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px; /* 150% */
  letter-spacing: 0.7px;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn--case-studies-cta:hover {
  background: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
  .about-theology__inner {
    grid-template-columns: 1fr;
  }
  .about-profile__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-left: 24px;
    padding-right: 24px;
  }
  .about-profile__image-wrap {
    margin-left: auto;
    margin-right: auto;
  }
  .about-board__grid {
    grid-template-columns: 1fr;
  }
  .about-testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   LEXISYNC PAGE
   ======================================== */

/* ── Showcase Section ── */
.page-lexisync {
  background: var(--dark-primary);
}
.lexi-showcase {
  position: relative;
  width: 100%;
  background: var(--dark-primary);
  padding: 118px 0 40px;
  overflow: hidden;
}
.lexi-showcase__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.lexi-showcase__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 27px 0 24px;
}
.lexi-hero__eyebrow {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 16.5px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  /* Slightly left of frame content so eyebrow sits a bit backward vs heading block */
  max-width: 1010px;
  margin: 0 auto 18px;
  padding-left: 57px;
  box-sizing: border-box;
}
.lexi-hero__frame {
  width: 1010px;
  max-width: 100%;
  height: auto;
  min-height: 325px;
  border-radius: 35px;
  background: rgba(217, 217, 217, 0.2);
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto 36px;
}
.lexi-hero__title {
  width: 825.866px;
  max-width: 100%;
  color: #fff;
  font-family:
    "Montserrat",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 44.008px;
  font-style: normal;
  font-weight: 800;
  line-height: 50.609px;
  margin-bottom: 20px;
}
.lexi-hero__title .text-accent {
  color: var(--accent);
}
.lexi-hero__desc {
  width: 702px;
  max-width: 100%;
  color: #f1f5f9;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.72;
  text-wrap: pretty;
}

/* ── Service Cards (Accordion Style) ── */
.lexi-services__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lexi-service-card {
  width: 998.4px;
  max-width: 100%;
  align-self: center;
  margin: 0 auto;
  border: 0.8px solid rgba(248, 250, 252, 0.1);
  border-radius: 3px;
  background: rgba(6, 17, 30, 0.22);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.04);
  overflow: hidden;
  backdrop-filter: blur(1px);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.lexi-service-card:hover {
  background: rgba(6, 17, 30, 0.42);
  border-color: rgba(248, 250, 252, 0.14);
}
.lexi-service-card:hover .lexi-service-card__icon {
  color: #ffffff;
  border-color: rgba(248, 250, 252, 0.18);
}
.lexi-service-card:hover .lexi-service-card__arrow {
  color: #ffffff;
}
.lexi-service-card__header {
  display: flex;
  width: 998.4px;
  max-width: 100%;
  padding: 24px 28px;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  align-self: stretch;
}
.lexi-service-card__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 0.8px solid rgba(248, 250, 252, 0.12);
  background: rgba(13, 27, 42, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e2e8f0;
}
.lexi-service-card__icon svg circle,
.lexi-service-card__icon svg path {
  stroke: currentColor;
}
.lexi-service-card__content {
  flex: 1;
  min-width: 0;
}
.lexi-service-card__left {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 6px;
  min-width: 0;
}
.lexi-service-card__num {
  color: #e2e8f0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.lexi-service-card__num::after {
  content: " · ";
}
.lexi-service-card__tag {
  color: #e2e8f0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lexi-service-card__title {
  color: #ffffff;
  font-family:
    "Montserrat",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 31.5px;
  margin: 0;
}
.lexi-service-card__arrow {
  flex-shrink: 0;
  color: #f1f5f9;
  opacity: 1;
}
.lexi-service-card__arrow path {
  stroke: currentColor;
}

/* ── Not Sure CTA ── */
.lexi-cta {
  width: 100%;
  background: #fff;
  padding: 80px 0;
}
.lexi-cta__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.lexi-cta__title {
  color: #0a1628;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 800;
  line-height: 42px;
  margin-bottom: 20px;
  max-width: 520px;
}
.lexi-cta__desc {
  color: #334155;
  text-align: center;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 470px;
}
.lexi-cta__btn {
  display: inline-flex;
  padding: 15.6px 32px 16.4px 32px;
  justify-content: center;
  align-items: center;
  gap: 7.325px;
  border: none;
  border-radius: 0;
  background: #0f172a;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0.56px;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}
.lexi-cta__btn:hover {
  background: #1e293b;
  color: #ffffff;
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .lexi-showcase {
    padding: 108px 0 28px;
  }
  .lexi-showcase__inner {
    padding: 0 16px;
  }
  .lexi-hero__eyebrow {
    padding-left: 20px;
  }
  .lexi-hero__frame {
    padding: 36px 28px;
    min-height: auto;
    margin-bottom: 24px;
  }
  .lexi-hero__title {
    font-size: 28px;
    line-height: 36px;
  }
  .lexi-service-card__header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 20px;
  }
  .lexi-service-card__content {
    flex-basis: calc(100% - 40px);
  }
  .lexi-service-card__left {
    flex-wrap: wrap;
  }
  .lexi-service-card__title {
    font-size: 15px;
    line-height: 24px;
  }
  .lexi-cta__inner {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }
}

/* ========================================
   CONTACT / BOOK CONSULTATION PAGE
   ======================================== */

/* ── Hero ── */
.page-contact {
  background: var(--dark-primary);
}
.contact-hero {
  position: relative;
  width: 100%;
  padding: 120px 0 60px;
  background: var(--dark-primary);
  overflow: hidden;
}
.contact-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.contact-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-hero__content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}
.contact-hero__eyebrow {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #e2ff54;
  margin-bottom: 24px;
}
.contact-hero__title {
  color: #ffffff;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}
.contact-hero__desc {
  color: #94a3b8;
  font-family: Inter, system-ui, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 30.6px; /* 180% */
}
.contact-hero__visual {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  pointer-events: none;
}
.visual-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: #c9a84c;
  filter: blur(120px);
  opacity: 0.15;
  border-radius: 50%;
}
.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
}
.visual-ring--1 {
  width: 360px;
  height: 360px;
  border-top-color: rgba(201, 168, 76, 0.3);
  border-right-color: rgba(201, 168, 76, 0.1);
  animation: spin 20s linear infinite;
}
.visual-ring--2 {
  width: 280px;
  height: 280px;
  border-bottom-color: rgba(226, 255, 84, 0.2);
  border-left-color: rgba(226, 255, 84, 0.05);
  animation: spin-reverse 15s linear infinite;
}
.visual-ring--3 {
  width: 220px;
  height: 220px;
  border: 1px dashed rgba(201, 168, 76, 0.2);
  animation: spin 30s linear infinite;
}
.visual-star {
  position: absolute;
  width: 140px;
  height: 140px;
  animation: pulse-star 4s ease-in-out infinite alternate;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin-reverse {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes pulse-star {
  0% {
    filter: drop-shadow(0 0 8px rgba(226, 255, 84, 0.1));
    transform: scale(0.98);
  }
  100% {
    filter: drop-shadow(0 0 16px rgba(226, 255, 84, 0.4));
    transform: scale(1.02);
  }
}

/* ── Main Content ── */
/* Contact Information + Engagement Standards + Executive Onboarding Form live here (contact.html .contact-main) */
.contact-main {
  position: relative;
  width: 100%;
  background: #002e36;
  border-bottom: 0.8px solid rgba(201, 168, 76, 0.15);
  padding: 60px 0 100px;
  z-index: 1;
  overflow: hidden;
}
.contact-main__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

/* ── Contact Info (Left) ── */
.contact-info__header {
  margin-bottom: 32px;
}
.contact-info__deco {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.contact-info__deco span {
  width: 24px;
  height: 1px;
  background: rgba(201, 168, 76, 0.4); /* Gold line */
}
.contact-info__diamond {
  width: 6px;
  height: 6px;
  background: #c9a84c;
  transform: rotate(45deg);
}
.contact-info__title {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 29.16px;
  font-style: normal;
  font-weight: 700;
  line-height: 43.74px; /* 150% */
}
.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}
.contact-info__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__label {
  display: block;
  color: #c9a84c;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 16.5px; /* 150% */
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-info__value {
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.6;
}

.contact-standards {
  background: rgba(6, 17, 30, 0.4);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(148, 163, 184, 0.1);
}
.contact-standards__title {
  color: #c9a84c;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 16.5px; /* 150% */
  letter-spacing: 1.32px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contact-standards__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-standards__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #94a3b8;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.5px; /* 150% */
}
.contact-standards__icon {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}

/* ── Contact Form (Right) ── */
.contact-form-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.8px 0.8px 32.8px 0.8px;
  border-radius: 8px;
  border: 0.8px solid rgba(201, 168, 76, 0.15);
  background: #0a1628;
  box-shadow: 0 4px 9.4px 0 rgba(255, 255, 255, 0.25);
}
.contact-form-wrapper .contact-form__title,
.contact-form-wrapper .contact-form__desc,
.contact-form-wrapper .contact-form {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.contact-form-wrapper .contact-form {
  padding: 0 32px 32px;
  align-self: stretch;
}
.contact-form-wrapper .contact-form__title {
  padding: 32px 32px 0;
  margin-bottom: 0;
}
.contact-form-wrapper .contact-form__desc {
  padding: 0 32px;
  margin-bottom: 0;
}
.contact-form__title {
  color: #fff;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  line-height: 33px; /* 150% */
  margin-bottom: 12px;
}
.contact-form__desc {
  color: #64748b;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.5px; /* 150% */
  margin-bottom: 32px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-form__row > .contact-form__group {
  min-width: 0; /* prevent grid blowout on narrow screens */
}
/* Spam honeypot — hidden from users */
.contact-form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form__label {
  color: #64748b;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.5px; /* 150% */
}
.contact-form__input {
  background: rgba(7, 14, 26, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 6px;
  padding: 14px 16px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px; /* 16px+ reduces iOS zoom on focus */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.contact-form__input:focus {
  outline: none;
  border-color: #e2ff54;
}
/* Executive Onboarding Form placeholders (contact.html) */
.contact-form__input::placeholder {
  color: rgba(226, 232, 240, 0.5);
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact-form__select {
  appearance: none;
  width: 100%;
}
.contact-form__select-wrapper {
  position: relative;
}
.contact-form__select-wrapper::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #94a3b8;
  pointer-events: none;
}
.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  background: #e2ff54;
  color: #070e1a;
  text-align: center;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 150% */
  letter-spacing: 0.84px;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 8px;
}
.contact-form__submit:hover {
  background: #d4f04c;
}
.contact-form__disclaimer {
  color: #4a5565;
  font-size: 11px;
  text-align: center;
  line-height: 1.6;
}
.contact-form__success {
  color: #e2ff54;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  margin: 0 32px 16px;
  background: rgba(226, 255, 84, 0.08);
  border: 1px solid rgba(226, 255, 84, 0.25);
  border-radius: 6px;
  text-align: center;
}
@media (max-width: 600px) {
  .contact-form__success {
    margin-left: 16px;
    margin-right: 16px;
  }
}

@media (max-width: 600px) {
  .contact-form-wrapper .contact-form {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 20px;
    gap: 20px;
  }
  .contact-form-wrapper .contact-form__title {
    padding: 24px 16px 0;
    font-size: 20px;
    line-height: 1.35;
  }
  .contact-form-wrapper .contact-form__desc {
    padding: 0 16px;
    font-size: 12px;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-form__submit {
    padding: 18px 16px;
    min-height: 48px; /* touch target */
  }
}

@media (max-width: 900px) {
  .contact-hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .contact-hero__title {
    font-size: 32px;
  }
  .contact-main__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper .contact-form {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 24px;
  }
  .contact-form-wrapper .contact-form__title {
    padding: 24px 20px 0;
  }
  .contact-form-wrapper .contact-form__desc {
    padding: 0 20px;
  }
}

/* ========================================
   LEADERSHIP PAGE
   ======================================== */
.page-leadership {
  background-color: var(--dark-primary);
  background-image: url("../images/contact-main-bg.png");
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
}

/* ── Hero ── */
/* Solid fill under fixed header — body’s fixed BG image showed as a teal/green strip above the frame */
.leadership-hero {
  position: relative;
  width: 100%;
  padding-top: 72px;
  background-image: url("../images/leadership-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--dark-primary);
  overflow: hidden;
}
.leadership-hero__bg {
  display: none;
}
.leadership-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 2000px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
}
.leadership-hero__frame {
  width: 100%;
  max-width: 2000px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Align with phase cards’ left edge only (inner 24px offset) — not the title text inside cards */
  padding: 48px 100px 48px max(100px, calc((100% - var(--max-width)) / 2 + 24px));
  box-sizing: border-box;
  margin: 0 auto;
}
.leadership-hero__content {
  max-width: 700px;
  margin: 0;
  text-align: left;
}
.leadership-hero__eyebrow {
  display: block;
  color: #e5e4e2;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 16.5px; /* 150% */
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.leadership-hero__title {
  color: #fff;
  font-family:
    "Montserrat",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 52.488px;
  font-style: normal;
  font-weight: 800;
  line-height: 60.361px; /* 115% */
  margin-bottom: 24px;
}
.leadership-hero__title .text-accent {
  color: #e2ff54;
}
.leadership-hero__desc {
  color: #f1f5f9;
  font-family: Inter, system-ui, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 30.6px; /* 180% */
  max-width: 750px;
}

/* ── Process Steps ── */
.leadership-process {
  position: relative;
  width: 100%;
  padding: 0 0 48px;
  z-index: 1;
}
.leadership-process__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.leadership-process__title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.leadership-process__subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 32px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
}
.process-step {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: rgba(13, 27, 42, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 8px;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.process-step:hover {
  background: rgba(13, 27, 42, 0.8);
  border-color: rgba(201, 168, 76, 0.3);
}
.process-step__icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-step__icon-img,
.process-step__icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}
.process-step__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.process-step__phase {
  color: #c9a84c;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.process-step__title {
  color: #fff;
  font-family: "Rockwell", "Rockwell Extra Bold", "Georgia", serif;
  font-size: 20px;
  font-weight: 800;
}

/* ── Ask Form ── */
.leadership-ask {
  position: relative;
  width: 100%;
  padding: 48px 0 64px;
  z-index: 1;
}
.leadership-ask__inner {
  max-width: 1151px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}
/* Outer frame: no fixed height — avoids huge empty area; padding matches reference rhythm */
.leadership-ask__frame {
  display: flex;
  width: 100%;
  max-width: 1151px;
  height: auto;
  min-height: 0;
  padding: 48px 0;
  justify-content: center;
  align-items: stretch;
  flex-shrink: 0;
  box-sizing: border-box;
}
.ask-form-wrapper {
  display: flex;
  width: 100%;
  max-width: 886px;
  padding: 32px 40px 40px;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  flex-shrink: 0;
  align-self: center;
  box-sizing: border-box;
  border-radius: 8px;
  border: 0.8px solid rgba(201, 168, 76, 0.2);
  background: #0a1628;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
}
.ask-form-wrapper .ask-form__title,
.ask-form-wrapper .ask-form__desc,
.ask-form-wrapper .ask-form {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.ask-form-wrapper .ask-form {
  padding: 0;
  margin: 0;
}
.ask-form-wrapper .ask-form__title {
  padding: 0;
  margin: 0;
  text-align: left;
}
.ask-form-wrapper .ask-form__desc {
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: none;
}
.ask-form__title {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 34.454px;
  font-style: normal;
  font-weight: 700;
  line-height: 51.681px; /* 150% */
  margin-bottom: 0;
}
.ask-form__desc {
  color: #e2e8f0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.72;
  margin-bottom: 0;
  max-width: none;
}
.ask-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ask-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ask-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ask-form__label {
  color: #f8fafc;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11.816px;
  font-style: normal;
  font-weight: 600;
  line-height: 17.723px; /* 150% */
  letter-spacing: 0.945px;
  text-transform: uppercase;
}
.ask-form__input {
  background: rgba(7, 14, 26, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 6px;
  padding: 14px 16px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
}
.ask-form__input:focus {
  outline: none;
  border-color: rgba(16, 185, 129, 0.65);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.25);
}
.ask-form__input::placeholder {
  color: #94a3b8;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13.785px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.ask-form__select {
  appearance: none;
  width: 100%;
}
.ask-form__select-wrapper {
  position: relative;
}
.ask-form__select-wrapper::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #94a3b8;
  pointer-events: none;
}
.ask-form__textarea {
  min-height: 120px;
  resize: vertical;
}
/* Textarea placeholder: "Please describe your question clearly..." */
.ask-form__textarea::placeholder {
  color: #94a3b8;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13.785px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.677px; /* 150% */
}
.ask-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  gap: 24px;
}
.ask-form__disclaimer {
  color: #cbd5e1;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.ask-form__disclaimer a {
  color: #e5e4e2;
  font-family: Inter, system-ui, sans-serif;
  font-size: inherit;
  font-style: normal;
  font-weight: 600;
  line-height: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ask-form__disclaimer a:hover {
  color: #ffffff;
}
.ask-form__submit {
  display: flex;
  height: 48.247px;
  padding: 13.391px 27.571px 13.856px 27.569px;
  justify-content: center;
  align-items: center;
  gap: 7.124px;
  box-sizing: border-box;
  border: none;
  border-radius: 3.939px;
  background: #e5e4e2;
  color: #070e1a;
  text-align: center;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13.785px;
  font-style: normal;
  font-weight: 700;
  line-height: 20.677px; /* 150% */
  letter-spacing: 0.551px;
  cursor: pointer;
  white-space: nowrap;
}
.ask-form__submit:hover {
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
  .leadership-hero__inner {
    padding: 0 24px;
  }
  .leadership-hero__frame {
    min-height: auto;
    padding: 40px 24px;
  }
  .leadership-hero__title {
    font-size: 32px;
    line-height: 1.2;
  }
  .ask-form__row {
    grid-template-columns: 1fr;
  }
  .ask-form__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .leadership-ask {
    padding: 32px 0 48px;
  }
  .leadership-ask__frame {
    padding: 32px 0;
  }
  .ask-form-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 24px 20px 28px;
    gap: 20px;
  }
}

/* ========================================
   ELAF DIGITAL ACADEMY PAGE
   ======================================== */
.page-academy {
  background: var(--dark-primary);
}
.academy-hero {
  position: relative;
  padding: 100px 0 64px;
  overflow: hidden;
  /* Match building PNG black so no second color band / overlap seam */
  background: #000;
  isolation: isolate;
}
/*
 * Single full-bleed building layer only — no img tag, no leadership-hero-bg.
 * academy-building-banner.png = wide skyline on black (Building_image-91f5df56).
 */
.academy-hero__bg-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background-color: #000;
  background-image: url("../images/academy-building-banner.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  /* One layer: darken slightly so text stays readable; no stacked images */
  opacity: 0.65;
}
.academy-hero__bg-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.35) 0%,
    rgba(10, 22, 40, 0.75) 100%
  );
  pointer-events: none;
}
@media (max-width: 600px) {
  .academy-hero__bg-frame {
    background-position: center center;
  }
}
.academy-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.academy-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 16.5px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 18px;
}
.academy-hero__title {
  color: #fff;
  font-family:
    "Montserrat",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 32.67px;
  font-style: normal;
  font-weight: 800;
  line-height: 37.571px; /* 115% */
  margin-bottom: 20px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .academy-hero__title {
    white-space: normal;
  }
}
.academy-hero__title-accent {
  color: #f8fafc;
  font-family: "Rockwell Extra Bold", Rockwell, Georgia, serif;
  font-size: 32.67px;
  font-style: normal;
  font-weight: 800;
  line-height: 37.571px;
}
.academy-hero__desc {
  color: #f8fafc;
  font-family: Montserrat, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 30.26px;
  max-width: 700px;
  margin-bottom: 40px;
  text-wrap: pretty;
}
.academy-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid rgba(248, 250, 252, 0.2);
  border-bottom: 1px solid rgba(248, 250, 252, 0.2);
  margin-bottom: 40px;
}
.academy-stats__item {
  flex: 1;
  min-width: 100px;
  text-align: center;
}
.academy-stats__num {
  display: block;
  color: #ffffff;
  text-align: center;
  font-family: "Rockwell", "Rockwell Extra Bold", "Georgia", serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
}
.academy-stats__label {
  display: block;
  color: #f8fafc;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 8px;
}
.academy-stats__divider {
  width: 1px;
  height: 48px;
  background: rgba(148, 163, 184, 0.25);
  flex-shrink: 0;
}
/* Partners frame: title + logo grid */
.academy-partners {
  display: flex;
  flex-direction: column;
  min-height: 199.3px;
  height: auto;
  padding-top: 48.5px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  width: 100%;
  box-sizing: border-box;
}
.academy-partners__title {
  text-align: center;
  margin-bottom: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
  text-wrap: pretty;
}
.academy-partners__title-main {
  color: #f8fafc;
  font-family: Montserrat, sans-serif;
  font-size: 21.667px;
  font-style: normal;
  font-weight: 600;
  line-height: 32.5px; /* 150% */
  letter-spacing: 4.333px;
  text-transform: uppercase;
}
.academy-partners__title-note {
  color: rgba(248, 250, 252, 0.88);
  font-family: Montserrat, sans-serif;
  font-size: 21.667px;
  font-style: normal;
  font-weight: 500;
  line-height: 32.5px;
  letter-spacing: 4.333px;
  text-transform: uppercase;
}
.academy-partners__title-main + .academy-partners__title-note::before {
  content: " ";
}
.academy-partners__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.academy-partners__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
}
/* Third row: only 2 chips — stays centered like reference */
.academy-partners__row--short {
  justify-content: center;
}
.academy-partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid rgba(248, 250, 252, 0.16);
  border-radius: 4px;
  background: rgba(7, 14, 26, 0.55);
  color: #f1f5f9;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px; /* 150% */
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.academy-partner-logo:hover {
  border-color: rgba(16, 185, 129, 0.45);
  background: rgba(16, 185, 129, 0.08);
  color: #ffffff;
}

/* Featured programs */
.academy-programs {
  background: #0d1b2a;
  padding: 80px 0;
}
.academy-programs__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.academy-programs__heading {
  color: #fff;
  text-align: center;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 60px; /* 150% */
  margin-bottom: 48px;
}
.academy-card {
  background: rgba(13, 27, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 8px;
  padding: 32px 36px;
  margin-bottom: 24px;
}
.academy-card__header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.academy-card__header-main {
  flex: 1;
  min-width: 0;
}
/* IMPACT box — right side, fixed frame per layout spec */
.academy-card__impact {
  display: flex;
  width: 233.6px;
  height: 80.6px;
  padding: 12.8px 16.8px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  flex-shrink: 0;
  box-sizing: border-box;
  background: rgba(19, 35, 55, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
}
.academy-card__impact-label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  width: 100%;
  color: #e5e4e2;
  text-align: right;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px; /* 150% */
  letter-spacing: 1px;
  text-transform: uppercase;
}
.academy-card__impact-icon {
  color: #e5e4e2;
  flex-shrink: 0;
}
.academy-card__impact-desc {
  margin: 0;
  width: 100%;
  color: #cbd5e1;
  text-align: right;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 150% */
}
/* Tag + country/region grouped on one line (Banking + United States, etc.) */
.academy-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}
.academy-card__location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 150% */
}
.academy-card__location-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  object-fit: contain;
  vertical-align: middle;
}
.academy-card__tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(248, 250, 252, 0.22);
  border-radius: 4px;
  color: #f1f5f9;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px; /* 150% */
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.academy-card__title {
  color: #fff;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 28.6px; /* 143% */
  margin: 0;
}
.academy-card__cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}
.academy-card__col-title {
  color: #e5e4e2;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 15px; /* 150% */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.academy-card__col-text {
  color: #f1f5f9;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.72;
  margin: 0;
}
.academy-card__metric {
  font-weight: 800;
}
.academy-card__footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.academy-card__footer-tags span {
  padding: 6px 12px;
  border: 1px solid rgba(248, 250, 252, 0.18);
  border-radius: 20px;
  color: #cbd5e1;
  font-family: Inter, sans-serif;
  font-size: 11px;
}

/* Ready section — white band */
.academy-ready {
  background: #fff;
  padding: 80px 0;
}
.academy-ready__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.academy-ready__title {
  margin-bottom: 20px;
}
.academy-ready__title-first {
  color: #0a1628;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 23.506px;
  font-style: normal;
  font-weight: 800;
  line-height: 44px; /* 187.183% */
}
.academy-ready__title-second {
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: #0a1628;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 44px;
}
.academy-ready__desc {
  color: #64748b;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 180% */
  margin-bottom: 28px;
}
.academy-ready__btn {
  display: inline-flex;
  padding: 15.6px 32px 16.4px 32px;
  justify-content: center;
  align-items: center;
  gap: 6.45px;
  background: #e5e4e2;
  color: #070e1a;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 150% */
  letter-spacing: 0.56px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.academy-ready__btn:hover {
  background: #ffffff;
}
.academy-ready__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.academy-ready__visual-img {
  width: 534.597px;
  height: 284.063px;
  aspect-ratio: 271 / 144;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 900px) {
  .academy-stats {
    flex-direction: column;
  }
  .academy-stats__divider {
    display: none;
  }
  .academy-card__header {
    flex-direction: column;
    align-items: stretch;
  }
  .academy-card__impact {
    width: 100%;
    height: auto;
    min-height: 80.6px;
  }
  .academy-card__cols {
    grid-template-columns: 1fr;
  }
  .academy-ready__inner {
    grid-template-columns: 1fr;
  }
  .academy-ready__visual-img {
    width: 100%;
    max-width: 534.597px;
    height: auto;
    aspect-ratio: 271 / 144;
  }
}

/* ========================================
   MOBILE RESPONSIVE — ALL PAGES
   Font sizes + layout for ≤ 600px
   Desktop sizes remain untouched above.
   ======================================== */
@media (max-width: 600px) {

  /* ── Global overflow lock ── */
  body {
    overflow-x: hidden;
  }

  /* ── Buttons (all pages) ── */
  .btn {
    font-size: 12px;
    letter-spacing: 0.4px;
  }
  .btn--lg {
    font-size: 13px;
    padding: 14px 24px;
  }
  .btn--case-studies-cta {
    white-space: normal;
    text-align: center;
    padding: 14px 24px;
    line-height: 1.5;
    font-size: 13px;
  }
  .btn-platinum {
    font-size: 12px;
    padding: 14px 28px;
    letter-spacing: 0.08em;
  }

  /* ── Nav links (mobile menu) ── */
  .nav__link {
    font-size: 14px;
    padding: 12px 10px;
  }

  /* ───────────────────────────────
     HOME PAGE (index.html)
     ─────────────────────────────── */

  /* Hero */
  .hero {
    padding: 100px 0 0;
    min-height: auto;
  }
  .hero__content {
    padding: 0 20px;
  }
  .hero__badge {
    padding: 6px 12px;
    margin-bottom: 20px;
  }
  .hero__badge span {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .hero__title {
    font-size: 26px;
    line-height: 34px;
  }
  .hero__line {
    white-space: normal;
    display: inline;
  }
  .hero__desc {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 32px;
  }
  .hero__standard-label {
    font-size: 13px;
  }
  .hero__standard-list li {
    font-size: 13px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn--lg {
    width: 100%;
    justify-content: center;
  }
  .hero__credentials {
    padding-bottom: 80px;
  }
  .hero__credential span:first-of-type {
    font-size: 12px;
  }

  /* Disconnect */
  .disconnect {
    padding-top: 32px;
  }
  .disconnect__curve {
    display: none;
  }
  .disconnect__title {
    font-size: 24px;
    line-height: 34px;
  }
  .disconnect__subtitle {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 32px;
  }
  .disconnect__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
  .problem-card {
    padding: 20px;
  }
  .problem-card__title {
    font-size: 14px;
    line-height: 22px;
  }
  .problem-card__desc {
    font-size: 13px;
    line-height: 22px;
  }
  .disconnect__quote {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 32px 24px;
    border-radius: 8px;
    margin-bottom: 32px;
  }
  .disconnect__quote-inner {
    flex-direction: column;
    gap: 16px;
  }
  .disconnect__quote-tag {
    font-size: 9px;
    letter-spacing: 2.5px;
  }
  .disconnect__quote-text {
    font-size: 16px;
    line-height: 1.6;
  }
  .disconnect__quote-mark {
    display: none;
  }

  /* Services */
  .services {
    padding: 48px 0 56px;
  }
  .services__header {
    margin-bottom: 36px;
  }
  .services__title {
    font-size: 24px;
    line-height: 34px;
  }
  .services__subtitle {
    font-size: 14px;
    line-height: 24px;
  }
  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card {
    width: 100%;
    height: auto;
    padding: 24px 20px;
  }
  .service-card__num {
    font-size: 11px;
  }
  .service-card__title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
  }
  .service-card__meta {
    font-size: 13px;
    line-height: 1.65;
  }
  .service-card__label {
    font-size: 10px;
  }
  .service-card__cta {
    width: 100%;
    margin-top: 20px;
    font-size: 12px;
  }

  /* Framework */
  .framework {
    padding: 56px 0 0;
  }
  .framework__title {
    font-size: 24px;
    line-height: 34px;
  }
  .framework__subtitle {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 36px;
  }
  .framework__grid {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }
  .phase-card {
    padding: 24px 20px;
  }
  .phase-card__title {
    font-size: 15px;
    line-height: 23px;
  }
  .phase-card__desc {
    font-size: 13px;
    max-width: none;
  }

  /* Clients */
  .clients {
    padding: 48px 0 40px;
  }
  .clients__tag {
    font-size: 10px;
  }
  .clients__title {
    font-size: 22px;
    line-height: 32px;
  }
  .clients__subtitle {
    font-size: 12px;
    line-height: 20px;
    word-spacing: 2px;
    margin-bottom: 36px;
  }
  .clients__logos {
    gap: 6px;
    margin-bottom: 36px;
  }
  .client-logo {
    padding: 10px 14px;
    font-size: 10px;
    letter-spacing: 0.6px;
  }

  /* Case study cards */
  .case-study-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }
  .case-study__label {
    font-size: 10px;
  }
  .case-study__title {
    font-size: 17px;
    line-height: 1.35;
  }
  .case-study__desc {
    font-size: 13px;
    line-height: 1.7;
  }
  .case-study__tag {
    font-size: 9px;
  }
  .impact-title {
    font-size: 10px;
  }
  .impact-stat {
    font-size: 14px;
  }
  .impact-context {
    font-size: 12px;
  }

  /* ───────────────────────────────
     CTA SECTION (shared, all pages)
     ─────────────────────────────── */
  .cta-section {
    padding: 48px 0;
  }
  .cta-section__inner {
    padding: 0 20px;
  }
  .cta-section__title {
    font-size: 22px;
    line-height: 32px;
    width: 100%;
  }
  .cta-section__desc {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 32px;
  }

  /* ───────────────────────────────
     FOOTER (shared, all pages)
     ─────────────────────────────── */
  .footer__inner {
    padding: 48px 20px 0;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 36px;
  }
  .footer__heading {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .footer__tagline {
    font-size: 13px;
  }
  .footer__contact-item span,
  .footer__contact-item div {
    font-size: 13px;
  }
  .footer__links a {
    font-size: 13px;
  }
  .footer__newsletter-desc {
    font-size: 13px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 24px 0;
  }
  .footer__bottom span {
    font-size: 11px;
  }
  .footer__bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .footer__bottom-links a {
    font-size: 11px;
  }

  /* ───────────────────────────────
     ABOUT PAGE (about.html)
     ─────────────────────────────── */
  .page-about {
    overflow-x: hidden;
  }
  .about-hero {
    height: auto;
    min-height: 0;
  }
  .about-hero__inner {
    width: 100%;
    height: auto;
    padding: 100px 20px 48px;
  }
  .about-hero__eyebrow {
    white-space: normal;
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  .about-hero__target {
    font-size: 13px;
    line-height: 1.5;
  }
  .about-hero__title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .about-hero__line {
    white-space: normal;
    display: inline;
  }
  .about-hero__desc {
    font-size: 15px;
    line-height: 26px;
  }

  /* Theology */
  .about-theology__inner {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
    padding: 48px 20px;
    gap: 32px;
  }
  .about-theology__title {
    font-size: 24px;
    line-height: 34px;
  }
  .about-theology__p {
    font-size: 15px;
    line-height: 26px;
  }

  /* Stats */
  .about-stats {
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    padding-top: 0;
  }
  .about-stats__card {
    width: 100%;
    height: auto;
    min-height: 80px;
    padding: 20px 16px;
  }
  .about-stats__num {
    font-size: 28px;
  }
  .about-stats__label {
    font-size: 11px;
  }

  /* Profile */
  .about-profile {
    min-height: auto;
  }
  .about-profile__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 20px;
    text-align: center;
  }
  .about-profile__image-wrap {
    width: 220px;
    height: 260px;
    margin: 0 auto 20px;
  }
  .about-profile__eyebrow {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  .about-profile__name {
    font-size: 20px;
    line-height: 30px;
  }
  .about-profile__roles {
    font-size: 11px;
    letter-spacing: 0.6px;
  }
  .about-profile__tag {
    font-size: 10px;
  }
  .about-profile__tags {
    justify-content: center;
  }
  .about-profile__quote {
    font-size: 16px;
    line-height: 26px;
    text-align: left;
  }
  .about-profile__bio {
    font-size: 14px;
    line-height: 26px;
    text-align: left;
  }
  .about-profile__creds li {
    font-size: 13px;
    line-height: 22px;
    text-align: left;
  }

  /* Board */
  .about-board__title {
    font-size: 24px;
    line-height: 34px;
  }
  .about-board__intro {
    font-size: 14px;
    line-height: 24px;
  }
  .about-board__grid {
    grid-template-columns: 1fr;
  }
  .about-board__card {
    padding: 24px 20px;
  }
  .about-board__name {
    font-size: 17px;
    line-height: 26px;
  }
  .about-board__role {
    font-size: 11px;
  }
  .about-board__card p.about-board__desc:nth-of-type(2) {
    font-size: 12px;
    line-height: 20px;
  }
  .about-board__card p.about-board__desc:nth-of-type(3) {
    font-size: 13px;
    line-height: 22px;
  }

  /* Testimonials */
  .about-testimonials {
    padding: 48px 0;
  }
  .about-testimonials__title {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 32px;
  }
  .about-testimonials__grid {
    grid-template-columns: 1fr;
  }
  .about-testimonial__quote {
    font-size: 15px;
    line-height: 26px;
  }
  .about-testimonial__author {
    font-size: 12px;
  }
  .about-testimonial__country {
    font-size: 11px;
  }

  /* Partner */
  .about-partner {
    padding: 40px 0 60px;
  }
  .about-partner__title {
    font-size: 24px;
    line-height: 34px;
  }
  .about-partner__btn {
    font-size: 13px;
  }

  /* ───────────────────────────────
     LEXISYNC PAGE (lexisync.html)
     ─────────────────────────────── */
  .page-lexisync {
    overflow-x: hidden;
  }
  .lexi-showcase {
    padding: 96px 0 28px;
  }
  .lexi-showcase__inner {
    padding: 0 16px;
  }
  .lexi-hero__eyebrow {
    font-size: 10px;
    letter-spacing: 1.5px;
    padding-left: 16px;
  }
  .lexi-hero__frame {
    padding: 28px 20px;
    min-height: auto;
    margin-bottom: 20px;
    border-radius: 16px;
  }
  .lexi-hero__title {
    font-size: 24px;
    line-height: 32px;
  }
  .lexi-hero__desc {
    font-size: 15px;
    line-height: 26px;
  }
  .lexi-service-card__header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 16px;
  }
  .lexi-service-card__content {
    flex-basis: calc(100% - 40px);
  }
  .lexi-service-card__left {
    flex-wrap: wrap;
  }
  .lexi-service-card__num {
    font-size: 9px;
  }
  .lexi-service-card__tag {
    font-size: 9px;
  }
  .lexi-service-card__title {
    font-size: 16px;
    line-height: 24px;
  }
  .lexi-cta {
    padding: 48px 0;
  }
  .lexi-cta__inner {
    padding: 0 20px;
  }
  .lexi-cta__title {
    font-size: 24px;
    line-height: 32px;
  }
  .lexi-cta__desc {
    font-size: 14px;
    line-height: 24px;
  }
  .lexi-cta__btn {
    font-size: 13px;
    padding: 14px 24px;
  }

  /* ───────────────────────────────
     ACADEMY PAGE (academy.html)
     ─────────────────────────────── */
  .page-academy,
  .academy-hero,
  .academy-programs,
  .academy-ready {
    overflow-x: hidden;
  }
  .academy-hero__eyebrow {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  .academy-hero__title {
    white-space: normal;
    font-size: 24px;
    line-height: 32px;
  }
  .academy-hero__desc {
    font-size: 15px;
    line-height: 26px;
  }
  .academy-stats__num {
    font-size: 28px;
  }
  .academy-stats__label {
    font-size: 11px;
  }
  .academy-partners__title {
    margin-bottom: 20px;
  }
  .academy-partners__title-main,
  .academy-partners__title-note {
    font-size: 13px;
    letter-spacing: 1.5px;
    line-height: 22px;
  }
  .academy-partner-logo {
    padding: 10px 14px;
    font-size: 10px;
    letter-spacing: 0.8px;
  }
  .academy-programs__heading {
    font-size: 24px;
    line-height: 34px;
  }
  .academy-card {
    padding: 20px 16px;
  }
  .academy-card__title {
    font-size: 17px;
    line-height: 24px;
  }
  .academy-card__impact {
    width: 100%;
    height: auto;
  }
  .academy-card__col-text {
    font-size: 13px;
    line-height: 1.65;
  }
  .academy-card__footer-tags span {
    font-size: 10px;
  }
  .academy-ready__title-first {
    font-size: 20px;
    line-height: 32px;
  }
  .academy-ready__title-second {
    font-size: 28px;
    line-height: 36px;
  }
  .academy-ready__desc {
    font-size: 14px;
    line-height: 24px;
  }
  .academy-ready__btn {
    font-size: 13px;
  }

  /* ───────────────────────────────
     LEADERSHIP PAGE (leadership.html)
     ─────────────────────────────── */
  .page-leadership {
    overflow-x: hidden;
  }
  .leadership-hero__eyebrow {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  .leadership-hero__title {
    font-size: 28px;
    line-height: 36px;
  }
  .leadership-hero__desc {
    font-size: 15px;
    line-height: 26px;
  }
  .ask-form__title {
    font-size: 24px;
    line-height: 36px;
  }
  .ask-form__desc {
    font-size: 14px;
    line-height: 24px;
  }
  .ask-form__label {
    font-size: 11px;
    letter-spacing: 0.8px;
  }
  .ask-form__input {
    font-size: 14px;
  }
  .ask-form__input::placeholder {
    font-size: 13px;
  }
  .ask-form__textarea::placeholder {
    font-size: 13px;
  }
  .ask-form__disclaimer {
    font-size: 11px;
  }
  .ask-form__submit {
    font-size: 13px;
  }

  /* ───────────────────────────────
     CONTACT PAGE (contact.html)
     ─────────────────────────────── */
  .page-contact {
    overflow-x: hidden;
  }
  .contact-hero {
    padding: 96px 0 40px;
  }
  .contact-hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
    padding: 0 20px;
  }
  .contact-hero__visual {
    display: none;
  }
  .contact-hero__eyebrow {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  .contact-hero__title {
    font-size: 26px;
    line-height: 34px;
  }
  .contact-hero__desc {
    font-size: 15px;
    line-height: 26px;
  }
  .contact-main {
    padding: 40px 0 60px;
  }
  .contact-main__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .contact-info__title {
    font-size: 22px;
    line-height: 34px;
  }
  .contact-info__label {
    font-size: 10px;
  }
  .contact-info__value {
    font-size: 13px;
  }
  .contact-standards__title {
    font-size: 10px;
  }
  .contact-standards__list li {
    font-size: 12px;
  }
  .contact-form__title {
    font-size: 20px;
    line-height: 30px;
  }
  .contact-form__desc {
    font-size: 12px;
  }
  .contact-form__label {
    font-size: 12px;
  }
  .contact-form__submit {
    font-size: 13px;
  }
}
