:root {
  --bg: #e5ebed;
  --bg-soft: #dde8e5;
  --surface: #ffffff;
  --surface-tint: #eef5f2;
  --text: #172033;
  --heading: #07104f;
  --muted: #394853;
  --primary: #07104f;
  --primary-2: #101a67;
  --mint: #2faf68;
  --mint-soft: #dff3e9;
  --mint-pale: #f1faf6;
  --gray: #d9dde4;
  --border: #c6d2d3;
  --shadow: 0 22px 54px rgba(7, 16, 79, 0.09);
  --shadow-soft: 0 14px 32px rgba(7, 16, 79, 0.065);
  --container: 1200px;
  --radius: 8px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(47, 175, 104, 0.14), transparent 27%),
    radial-gradient(circle at 92% 28%, rgba(7, 16, 79, 0.055), transparent 30%),
    linear-gradient(180deg, #edf2f3 0%, var(--bg) 42%, #e4eeeb 100%);
  color: var(--text);
  font-family: "Tajawal", "Segoe UI", sans-serif;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}

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

input,
textarea,
button {
  font: inherit;
}

.container {
  width: min(100% - 30px, var(--container));
  margin-inline: auto;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 252, 252, 0.92);
  border-bottom: 1px solid rgba(212, 221, 222, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(7, 16, 79, 0.02);
}

.navbar {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(34px, 5vw, 72px);
  direction: ltr;
}

.brand {
  grid-column: 1;
  direction: rtl;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  justify-content: flex-start;
  margin: 0;
}

.brand-logo {
  width: 198px;
  max-width: 46vw;
  height: 56px;
  object-fit: contain;
  object-position: right center;
  display: block;
  filter: drop-shadow(0 10px 16px rgba(7, 16, 79, 0.08));
}

.brand-text {
  display: none;
}

.brand-text strong,
.brand-text small {
  display: block;
  line-height: 1.25;
}

.brand-text strong {
  color: var(--heading);
}

.brand-text small {
  color: var(--muted);
  font-size: 0.86rem;
}

.nav-links {
  grid-column: 2;
  direction: rtl;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(18px, 2.4vw, 34px);
  color: var(--muted);
  font-size: 1.22rem;
  font-weight: 700;
}

.nav-links a,
.site-footer a {
  position: relative;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  inset-inline-start: 0;
  bottom: -8px;
  background: var(--mint);
  transition: width 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active,
.site-footer a:hover {
  color: var(--mint);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  width: 100%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(47, 175, 104, 0.22);
  outline-offset: 4px;
}

.button {
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 16px 34px rgba(7, 16, 79, 0.16);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(7, 16, 79, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  border-color: var(--border);
}

.button-secondary:hover {
  border-color: rgba(47, 175, 104, 0.42);
  box-shadow: 0 14px 34px rgba(7, 16, 79, 0.08);
}

.section {
  position: relative;
  padding: 104px 0;
}

.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(720px, calc(100% - 48px));
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(47, 175, 104, 0.86), transparent);
  transform: translateX(-50%);
}

.section + .section::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mint);
  transform: translateX(-50%);
}

.section-muted {
  background:
    radial-gradient(circle at 14% 18%, rgba(47, 175, 104, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(221, 232, 229, 0.88), rgba(232, 237, 238, 0.96)),
    var(--bg-soft);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 78px 0 92px;
  overflow: hidden;
}

.hero-dark {
  background:
    radial-gradient(circle at 14% 22%, rgba(47, 175, 104, 0.24), transparent 28%),
    radial-gradient(circle at 72% 12%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #07104f 0%, #081344 46%, #050a2d 100%);
  color: #fff;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  width: min(560px, 47vw);
  height: min(560px, 47vw);
  border: 1px solid rgba(47, 175, 104, 0.12);
  border-radius: 44% 56% 54% 46%;
  inset-inline-start: -210px;
  top: 52px;
  opacity: 0.72;
  transform: rotate(-18deg);
}

.hero::after {
  width: 48%;
  height: 1px;
  left: 0;
  bottom: 54px;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(47, 175, 104, 0.7), transparent);
  opacity: 0.52;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.76fr) minmax(720px, 1.18fr);
  gap: clamp(34px, 4.4vw, 68px);
  align-items: center;
  direction: ltr;
}

.page-hero {
  min-height: auto;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 68px;
  align-items: center;
}

.page-visual {
  max-width: 560px;
}

.page-visual .visual-orbit {
  inset: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero-copy {
  grid-column: 2;
  grid-row: 1;
  max-width: 860px;
  padding-bottom: 10px;
  direction: rtl;
  justify-self: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mint);
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.hero-company-name {
  color: #73d89f;
  position: relative;
  display: inline-block;
  font-size: clamp(1.14rem, 1.21vw, 1.28rem);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 18px;
  padding-inline-start: 0;
}

.hero-company-name::before {
  content: none;
}

.hero-company-name::after {
  content: none;
}

.section-rule {
  width: clamp(136px, 18vw, 220px);
  height: 12px;
  gap: 0;
  margin-bottom: 20px;
}

.section-rule::before {
  width: 100%;
  height: 3px;
  opacity: 0.86;
}

.section-rule::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-inline-start: -1px;
  border-radius: 50%;
  background: var(--mint);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--heading);
}

h1 {
  max-width: 860px;
  font-size: clamp(2.65rem, 5vw, 4.9rem);
  line-height: 1.1;
  margin-bottom: 26px;
  letter-spacing: 0;
}

.hero-slogan {
  color: #fff;
  max-width: 860px;
  font-size: clamp(3rem, 3.85vw, 4.05rem);
  line-height: 1.06;
  margin-bottom: 22px;
  font-weight: 800;
  white-space: nowrap;
}

h2 {
  font-size: clamp(1.92rem, 3vw, 3.14rem);
  line-height: 1.24;
  margin-bottom: 18px;
  letter-spacing: 0;
}

h3 {
  font-size: 1.14rem;
  line-height: 1.45;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-copy p {
  max-width: 625px;
  font-size: 1.14rem;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.76);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-dark .button-primary {
  background: linear-gradient(135deg, #2faf68, #73d89f);
  color: #061032;
  box-shadow: 0 22px 48px rgba(47, 175, 104, 0.26);
}

.hero-dark .button-primary:hover {
  background: linear-gradient(135deg, #73d89f, #2faf68);
  box-shadow: 0 26px 56px rgba(47, 175, 104, 0.3);
}

.hero-dark .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.hero-dark .button-secondary:hover {
  border-color: rgba(115, 216, 159, 0.58);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.hero-system {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 30px 0;
}

.hero-system::before {
  content: "";
  position: absolute;
  inset: 18px 26px;
  border: 1px solid rgba(47, 175, 104, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 175, 104, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.14));
}

.system-spine {
  position: absolute;
  top: 50%;
  inset-inline: 64px;
  height: 2px;
  background: linear-gradient(90deg, rgba(47, 175, 104, 0.12), rgba(47, 175, 104, 0.72), rgba(47, 175, 104, 0.12));
}

.system-node {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(198, 210, 211, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.system-node:nth-of-type(2) {
  justify-self: start;
}

.system-node:nth-of-type(3) {
  justify-self: center;
}

.system-node:nth-of-type(4) {
  justify-self: end;
}

.system-icon {
  position: relative;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, var(--mint-pale));
  border: 1px solid rgba(47, 175, 104, 0.22);
}

.system-icon::before,
.system-icon::after {
  content: "";
  display: block;
  background: var(--mint);
}

.system-strategy .system-icon::before {
  width: 34px;
  height: 34px;
  clip-path: polygon(50% 0, 62% 35%, 100% 35%, 69% 57%, 82% 100%, 50% 74%, 18% 100%, 31% 57%, 0 35%, 38% 35%);
}

.system-operations .system-icon::before {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 10px var(--mint-pale),
    0 -19px 0 -13px var(--mint),
    19px 0 0 -13px var(--mint),
    0 19px 0 -13px var(--mint),
    -19px 0 0 -13px var(--mint);
}

.system-execution .system-icon::before {
  width: 36px;
  height: 30px;
  clip-path: polygon(0 40%, 56% 40%, 56% 16%, 100% 50%, 56% 84%, 56% 60%, 0 60%);
}

.system-node strong,
.system-node span {
  display: block;
}

.system-node strong {
  color: var(--heading);
  font-size: 1.28rem;
  line-height: 1.35;
  margin-bottom: 3px;
}

.system-node div > span {
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-abstract {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  min-height: 530px;
  isolation: isolate;
  direction: ltr;
}

.hero-abstract::before,
.hero-abstract::after,
.flow-orbit,
.flow-orbit::before,
.flow-orbit::after,
.flow-ribbon,
.growth-arc,
.growth-column,
.signal-point,
.flow-label,
.brand-mark {
  position: absolute;
  pointer-events: none;
}

.hero-abstract::before {
  width: 438px;
  height: 438px;
  left: 22px;
  top: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 46% 42%, rgba(115, 216, 159, 0.2), transparent 23%),
    radial-gradient(circle, rgba(255, 255, 255, 0.075), transparent 66%);
  filter: blur(1px);
  opacity: 0.9;
}

.hero-abstract::after {
  width: 232px;
  height: 232px;
  right: -18px;
  bottom: 30px;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 58%);
  transform: rotate(17deg);
  opacity: 0.46;
}

.flow-orbit {
  width: 434px;
  height: 434px;
  left: 26px;
  top: 54px;
  border-radius: 50%;
  border: 1px solid rgba(115, 216, 159, 0.16);
  transform: rotate(-18deg);
}

.flow-orbit::before {
  inset: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.flow-orbit::after {
  width: 128px;
  height: 128px;
  right: -8px;
  top: 116px;
  border-radius: 50%;
  border: 2px solid rgba(115, 216, 159, 0.36);
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.flow-ribbon {
  height: 68px;
  border-radius: 999px;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.2));
}

.ribbon-main {
  width: 530px;
  left: 8px;
  top: 244px;
  background: linear-gradient(90deg, transparent, rgba(115, 216, 159, 0.1) 14%, rgba(115, 216, 159, 0.74) 50%, rgba(255, 255, 255, 0.18) 74%, transparent);
  transform: rotate(-19deg);
}

.ribbon-soft {
  width: 438px;
  left: 52px;
  top: 304px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.055) 16%, rgba(47, 175, 104, 0.34) 56%, transparent);
  transform: rotate(-19deg);
  opacity: 0.48;
}

.growth-arc {
  width: 396px;
  height: 254px;
  left: 90px;
  bottom: 88px;
  border-top: 2px solid rgba(115, 216, 159, 0.72);
  border-right: 2px solid rgba(115, 216, 159, 0.72);
  border-radius: 0 210px 0 0;
  transform: skewX(-9deg) rotate(-4deg);
}

.growth-arc::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 19px;
  right: -13px;
  top: -11px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: transparent;
  transform: rotate(-10deg);
}

.growth-column {
  bottom: 90px;
  width: 22px;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(115, 216, 159, 0.76), rgba(115, 216, 159, 0.12));
  box-shadow: 0 16px 34px rgba(47, 175, 104, 0.16);
}

.column-one {
  height: 104px;
  left: 170px;
}

.column-two {
  height: 148px;
  left: 236px;
}

.column-three {
  height: 206px;
  left: 304px;
}

.signal-point {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #73d89f;
  box-shadow:
    0 0 0 8px rgba(115, 216, 159, 0.1),
    0 0 24px rgba(115, 216, 159, 0.46);
}

.point-one {
  left: 112px;
  top: 164px;
}

.point-two {
  left: 296px;
  top: 112px;
}

.point-three {
  left: 414px;
  top: 252px;
}

.point-four {
  left: 224px;
  bottom: 126px;
}

.flow-label {
  z-index: 2;
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.82);
  text-align: right;
  direction: rtl;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.flow-label::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 2px;
  top: 14px;
  background: linear-gradient(90deg, rgba(115, 216, 159, 0), rgba(115, 216, 159, 0.86));
}

.flow-label strong {
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.34;
}

.flow-label small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  line-height: 1.5;
}

.label-strategy {
  right: 104px;
  top: 98px;
}

.label-strategy::before {
  right: -40px;
}

.label-operations {
  right: 68px;
  top: 286px;
}

.label-operations::before {
  right: -40px;
}

.label-execution {
  left: 176px;
  bottom: 70px;
}

.label-execution::before {
  left: -36px;
  background: linear-gradient(90deg, rgba(115, 216, 159, 0.86), rgba(115, 216, 159, 0));
}

.brand-mark {
  width: 78px;
  height: auto;
  left: 76px;
  bottom: 104px;
  opacity: 1;
  filter: none;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect x='22' y='21' width='5' height='5' fill='white'/%3E%3Cpath fill='white' fill-rule='evenodd' d='M22 30H27V74H60L72 50L60 26H31V21H63L78 50L63 79H22V30ZM31 31H58L67 50L58 69H31V31Z'/%3E%3Cpath fill='white' d='M36 35H54L62 50L54 65H36V35Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect x='22' y='21' width='5' height='5' fill='white'/%3E%3Cpath fill='white' fill-rule='evenodd' d='M22 30H27V74H60L72 50L60 26H31V21H63L78 50L63 79H22V30ZM31 31H58L67 50L58 69H31V31Z'/%3E%3Cpath fill='white' d='M36 35H54L62 50L54 65H36V35Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.home-about {
  margin-top: -1px;
  padding: 70px 0 56px;
  background:
    radial-gradient(circle at 16% 6%, rgba(143, 228, 176, 0.14), transparent 22%),
    radial-gradient(circle at 84% 26%, rgba(7, 16, 79, 0.3), transparent 30%),
    radial-gradient(circle at 72% 78%, rgba(47, 175, 104, 0.12), transparent 24%),
    radial-gradient(circle at 18% 66%, rgba(7, 16, 79, 0.12), transparent 34%),
    linear-gradient(180deg, #07104f 0%, #101b55 17%, #455c6d 40%, #b7c8c8 67%, #ccd8d7 100%);
  overflow: hidden;
}

.home-about::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 168px;
  background:
    linear-gradient(180deg, rgba(7, 16, 79, 0.72), rgba(7, 16, 79, 0.22) 60%, transparent),
    linear-gradient(90deg, rgba(7, 16, 79, 0.1), rgba(143, 228, 176, 0.14), rgba(7, 16, 79, 0.06));
  transform: none;
  opacity: 1;
}

.home-about::after {
  top: 46px;
  left: 50%;
  width: min(820px, calc(100% - 48px));
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(115, 216, 159, 0.48), transparent);
  box-shadow: 0 0 22px rgba(115, 216, 159, 0.16);
}

.home-about .split-section {
  position: relative;
  grid-template-columns: minmax(130px, 0.26fr) minmax(0, 1.08fr) minmax(54px, 0.08fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.about-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.about-decor-left {
  left: -18px;
  top: 168px;
  width: 255px;
  height: 255px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 46px;
  transform: rotate(17deg);
}

.about-decor-left::before,
.about-decor-left::after,
.about-decor-right::before,
.about-decor-right::after,
.about-decor-lines::before,
.about-decor-lines::after {
  content: "";
  position: absolute;
}

.about-decor-left::before {
  inset: 46px;
  border: 1px solid rgba(47, 175, 104, 0.2);
  border-radius: 30px;
}

.about-decor-left::after {
  left: 68px;
  top: 78px;
  width: 1px;
  height: 138px;
  background: linear-gradient(180deg, transparent, rgba(47, 175, 104, 0.3), transparent);
  transform: rotate(-18deg);
}

.about-decor-right {
  right: 22px;
  bottom: -54px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(7, 16, 79, 0.2);
  border-radius: 50%;
}

.about-decor-right::before,
.about-decor-right::after {
  border-radius: 50%;
}

.about-decor-right::before {
  inset: 54px;
  border: 1px solid rgba(47, 175, 104, 0.18);
}

.about-decor-right::after {
  width: 12px;
  height: 12px;
  top: 70px;
  left: 78px;
  background: rgba(47, 175, 104, 0.78);
  box-shadow: 0 0 0 10px rgba(47, 175, 104, 0.08);
}

.about-decor-lines {
  right: 10%;
  bottom: 104px;
  width: min(390px, 36vw);
  height: 150px;
  opacity: 0.46;
}

.about-decor-lines::before,
.about-decor-lines::after {
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 175, 104, 0.34), transparent);
  transform: rotate(-8deg);
}

.about-decor-lines::before {
  top: 42px;
}

.about-decor-lines::after {
  top: 92px;
  opacity: 0.7;
}

.home-about .split-section::after {
  content: "";
  position: absolute;
  inset-inline: 6%;
  bottom: -28px;
  height: 62px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(7, 16, 79, 0.11), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.home-about .split-section::before {
  content: "";
  position: absolute;
  inset-inline-start: -70px;
  top: -34px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(47, 175, 104, 0.18);
  border-radius: 44px;
  transform: rotate(18deg);
  pointer-events: none;
}

.home-about .section-heading {
  position: relative;
  z-index: 1;
  align-self: start;
  max-width: 170px;
  padding-top: 10px;
}

.home-about .section-heading::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint), rgba(47, 175, 104, 0));
}

.home-about .eyebrow {
  color: #8fe4b0;
  font-size: 1.56rem;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(115, 216, 159, 0.18);
  margin-bottom: 0;
}

.home-about h2 {
  color: var(--heading);
  font-size: clamp(2.08rem, 3.25vw, 3.42rem);
  line-height: 1.22;
  margin-bottom: 0;
}

.home-about .panel-soft {
  position: relative;
  z-index: 1;
  grid-column: 2;
  padding: clamp(34px, 4vw, 52px);
  border: 1px solid rgba(217, 227, 226, 0.86);
  border-top: 3px solid rgba(47, 175, 104, 0.82);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 253, 252, 0.92));
  box-shadow: 0 22px 54px rgba(7, 16, 79, 0.075);
  overflow: hidden;
}

.home-about .panel-soft::before {
  content: "";
  position: absolute;
  inset-inline-end: -42px;
  top: -42px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(47, 175, 104, 0.16);
  border-radius: 32px;
  transform: rotate(16deg);
}

.home-about .panel-soft::after {
  content: "";
  position: absolute;
  inset-inline-start: 34px;
  bottom: 0;
  width: 160px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint), rgba(47, 175, 104, 0));
}

.home-about .panel-soft p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline-start: auto;
  color: #102431;
  font-size: 1.06rem;
  line-height: 1.96;
  text-align: right;
}

.home-about .panel-soft p + p {
  margin-top: 18px;
}

.brand-visual {
  position: relative;
  isolation: isolate;
  padding-top: 70px;
}

.visual-orbit {
  position: absolute;
  width: 84%;
  aspect-ratio: 1;
  inset: 11% 8% auto auto;
  border: 1px solid rgba(47, 175, 104, 0.28);
  border-radius: 50%;
  z-index: -1;
}

.visual-orbit::before,
.visual-orbit::after {
  content: "";
  position: absolute;
  border-radius: var(--radius);
  background: var(--mint);
}

.visual-orbit::before {
  width: 36px;
  height: 36px;
  top: 10%;
  inset-inline-end: 12%;
}

.visual-orbit::after {
  width: 22px;
  height: 22px;
  bottom: 20%;
  inset-inline-start: 3%;
  background: var(--primary);
}

.visual-brand-card {
  position: absolute;
  top: 0;
  inset-inline-start: 14px;
  width: min(340px, 82%);
  padding: 18px 20px;
  border: 1px solid rgba(221, 228, 229, 0.95);
  border-inline-end: 4px solid var(--mint);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.visual-brand-card img {
  width: 190px;
  max-width: 100%;
  height: 44px;
  object-fit: contain;
  object-position: left center;
  display: block;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 12px;
}

.visual-brand-card span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(219, 231, 228, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(244, 249, 247, 0.86));
  box-shadow: 0 24px 62px rgba(7, 16, 79, 0.095);
  backdrop-filter: blur(16px);
}

.metric {
  min-height: 160px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #f7fbf9);
  border: 1px solid rgba(221, 228, 229, 0.96);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.metric::after,
.service-card::after,
.feature-item::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(47, 175, 104, 0.13);
  border-radius: 14px;
  inset-inline-end: -24px;
  bottom: -24px;
  transform: rotate(12deg);
}

.metric::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 74px;
  height: 74px;
  border-radius: 18px;
  background: rgba(47, 175, 104, 0.06);
  inset-inline-end: -34px;
  top: -34px;
  transform: rotate(12deg);
}

.metric:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 175, 104, 0.28);
  box-shadow: var(--shadow-soft);
}

.metric.wide {
  grid-column: 1 / -1;
}

.metric-kicker {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), var(--mint-pale));
  border: 1px solid rgba(47, 175, 104, 0.24);
  box-shadow: inset 0 -8px 16px rgba(47, 175, 104, 0.05);
}

.metric-kicker::before {
  content: "";
  width: 38px;
  height: 38px;
  background: var(--mint);
}

.metric-strategy .metric-kicker::before {
  clip-path: polygon(50% 0, 62% 35%, 100% 35%, 69% 57%, 82% 100%, 50% 74%, 18% 100%, 31% 57%, 0 35%, 38% 35%);
}

.metric-operations .metric-kicker::before {
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 10px var(--mint-pale),
    0 -18px 0 -12px var(--mint),
    18px 0 0 -12px var(--mint),
    0 18px 0 -12px var(--mint),
    -18px 0 0 -12px var(--mint);
  background: var(--mint);
}

.metric-execution .metric-kicker::before {
  clip-path: polygon(0 41%, 55% 41%, 55% 16%, 100% 50%, 55% 84%, 55% 59%, 0 59%);
}

.metric.wide {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 20px;
  align-items: center;
}

.metric.wide .metric-kicker {
  grid-row: 1 / span 2;
  margin-bottom: 0;
}

.metric.wide strong {
  margin-bottom: 2px;
}

.card-icon {
  color: var(--mint);
  font-weight: 800;
}

.metric strong {
  display: block;
  color: var(--primary);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.24;
  margin-bottom: 8px;
}

.metric span:last-child {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 78px;
  align-items: start;
}

.section-title {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading-match {
  position: relative;
  z-index: 1;
  align-self: start;
  max-width: 170px;
  padding-top: 10px;
  margin-bottom: 18px;
}

.section-heading-match::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #238b57, rgba(35, 139, 87, 0));
}

.eyebrow-match {
  color: #238b57;
  font-size: 1.56rem;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(115, 216, 159, 0.18);
  margin-bottom: 0;
}

.panel-soft {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(248, 251, 250, 0.84));
  box-shadow: var(--shadow-soft);
}

.section-content p:last-child {
  margin-bottom: 0;
}

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

#services .card-grid .service-card:nth-child(5) {
  grid-column: 1 / span 1;
}

#services .card-grid .service-card:nth-child(6) {
  grid-column: 2 / span 1;
}

#services .card-grid .service-card:nth-child(7) {
  grid-column: 3 / span 1;
}

.services-title {
  margin-inline: auto;
  text-align: center;
}

.services-title .section-rule {
  margin-inline: auto;
}

.execution-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 0.9fr) minmax(260px, 1fr);
  grid-template-areas:
    "strategy core transformation"
    "structure core tools"
    "pmo core process"
    ". p3m3 .";
  gap: 34px 44px;
  align-items: center;
  margin-top: 42px;
  padding: 34px 0 10px;
}

.execution-map::before,
.execution-map::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.execution-map::before {
  width: min(660px, 74vw);
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    conic-gradient(
      from -34deg,
      transparent 0deg 18deg,
      rgba(35, 36, 42, 0.94) 18deg 54deg,
      transparent 54deg 72deg,
      rgba(35, 36, 42, 0.94) 72deg 108deg,
      transparent 108deg 126deg,
      rgba(35, 36, 42, 0.94) 126deg 162deg,
      transparent 162deg 198deg,
      rgba(35, 36, 42, 0.94) 198deg 234deg,
      transparent 234deg 252deg,
      rgba(35, 36, 42, 0.94) 252deg 288deg,
      transparent 288deg 306deg,
      rgba(35, 36, 42, 0.94) 306deg 342deg,
      transparent 342deg 360deg
    );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 12px), #000 calc(100% - 12px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 12px), #000 calc(100% - 12px));
  opacity: 0.94;
}

.execution-map::after {
  top: 64px;
  bottom: 88px;
  left: 50%;
  width: min(680px, 76vw);
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(7, 16, 79, 0.07), transparent 46%),
    radial-gradient(circle at 50% 50%, rgba(47, 175, 104, 0.1), transparent 63%);
  filter: blur(8px);
  opacity: 0.8;
}

.execution-map > * {
  position: relative;
  z-index: 1;
}

.map-core {
  grid-area: core;
  position: relative;
  z-index: 2;
  width: min(336px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-items: center;
}

.map-core::before,
.map-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.map-core::before {
  inset: 10px;
  border: 26px solid rgba(210, 214, 222, 0.92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.66);
}

.map-core::after {
  inset: 44px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.92), rgba(244, 246, 248, 0.96) 66%, rgba(233, 236, 241, 0.92) 100%);
  box-shadow: 0 18px 40px rgba(7, 16, 79, 0.08);
}

.map-core-shell {
  position: relative;
  z-index: 1;
  width: 68%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.map-core-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.96);
}

.execution-service {
  position: relative;
  display: grid;
  align-items: center;
  gap: 18px;
  min-height: 122px;
}

.execution-service > div {
  display: grid;
  gap: 4px;
}

.node-strategy,
.node-structure,
.node-pmo {
  grid-template-columns: minmax(0, 1fr) auto;
  text-align: right;
  direction: rtl;
}

.node-strategy .service-visual,
.node-structure .service-visual,
.node-pmo .service-visual {
  grid-column: 2;
}

.node-strategy > div,
.node-structure > div,
.node-pmo > div {
  grid-column: 1;
  justify-self: end;
  max-width: 320px;
}

.node-transformation,
.node-tools,
.node-process {
  grid-template-columns: auto minmax(0, 1fr);
  text-align: right;
  direction: rtl;
}

.node-transformation > div,
.node-tools > div,
.node-process > div {
  max-width: 320px;
}

.node-strategy {
  grid-area: strategy;
}

.node-transformation {
  grid-area: transformation;
}

.node-structure {
  grid-area: structure;
}

.node-tools {
  grid-area: tools;
}

.node-pmo {
  grid-area: pmo;
}

.node-process {
  grid-area: process;
}

.node-p3m3 {
  grid-area: p3m3;
  justify-self: center;
  max-width: 620px;
  text-align: center;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 20px;
  padding-top: 6px;
}

.node-p3m3 > div {
  max-width: 560px;
}

.execution-service h3 {
  color: var(--mint);
  font-size: 1.14rem;
  line-height: 1.32;
  margin-bottom: 0;
  font-weight: 800;
}

.execution-service p {
  color: #172432;
  font-size: 0.98rem;
  line-height: 1.52;
  margin-bottom: 0;
}

.service-visual {
  position: relative;
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 10px solid var(--primary);
  box-shadow: 0 14px 30px rgba(7, 16, 79, 0.08);
}

.service-visual::before,
.service-visual::after {
  content: "";
  position: absolute;
}

.service-visual::before {
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(47, 175, 104, 0.18);
}

.node-strategy .service-visual::after,
.node-structure .service-visual::after,
.node-pmo .service-visual::after,
.node-transformation .service-visual::after,
.node-tools .service-visual::after,
.node-process .service-visual::after {
  top: 50%;
  width: 56px;
  height: 12px;
  transform: translateY(-50%);
}

.node-strategy .service-visual::after,
.node-structure .service-visual::after,
.node-pmo .service-visual::after {
  right: -60px;
  background:
    linear-gradient(var(--primary), var(--primary)) 0 50% / calc(100% - 12px) 3px no-repeat,
    radial-gradient(circle, var(--primary) 0 5px, transparent 5.5px) 100% 50% / 12px 12px no-repeat;
}

.node-transformation .service-visual::after,
.node-tools .service-visual::after,
.node-process .service-visual::after {
  left: -60px;
  background:
    radial-gradient(circle, var(--primary) 0 5px, transparent 5.5px) 0 50% / 12px 12px no-repeat,
    linear-gradient(var(--primary), var(--primary)) 100% 50% / calc(100% - 12px) 3px no-repeat;
}

.node-p3m3 .service-visual::after {
  width: 12px;
  height: 56px;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, var(--primary) 0 5px, transparent 5.5px) 50% 0 / 12px 12px no-repeat,
    linear-gradient(var(--primary), var(--primary)) 50% 100% / 3px calc(100% - 12px) no-repeat;
}

.service-visual svg {
  width: 54px;
  height: 54px;
  stroke: var(--mint);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-strategy svg {
  width: 58px;
  height: 58px;
}

.visual-p3m3 {
  width: 126px;
  height: 126px;
}

.visual-p3m3 svg {
  width: 52px;
  height: 52px;
}

#services.section-muted {
  background:
    radial-gradient(circle at 9% 18%, rgba(7, 16, 79, 0.055), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(47, 175, 104, 0.09), transparent 22%),
    radial-gradient(circle at 62% 84%, rgba(7, 16, 79, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(208, 219, 219, 0.58) 0%, rgba(235, 240, 240, 0.94) 14%, rgba(243, 246, 246, 0.98) 100%);
  overflow: hidden;
}

#services::before {
  background: linear-gradient(90deg, transparent, rgba(115, 216, 159, 0.72), transparent);
}

.services-shell {
  position: relative;
}

.services-shell::before,
.services-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.services-shell::before {
  width: min(460px, 36vw);
  height: min(460px, 36vw);
  inset-inline-end: -140px;
  top: 56px;
  border-radius: 50%;
  border: 1px solid rgba(7, 16, 79, 0.07);
  background:
    radial-gradient(circle at 50% 50%, rgba(47, 175, 104, 0.075), transparent 56%);
  box-shadow: inset 0 0 0 58px rgba(255, 255, 255, 0.18);
}

.services-shell::after {
  width: min(390px, 32vw);
  height: 210px;
  inset-inline-start: -82px;
  bottom: 34px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(7, 16, 79, 0.04), rgba(47, 175, 104, 0.065), transparent 72%);
  transform: rotate(-9deg);
  opacity: 0.64;
}

.services-title {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 0;
}

.services-modular {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.72fr) minmax(0, 1.02fr);
  grid-template-areas:
    "strategy strategy transformation"
    "structure p3m3 transformation"
    "structure tools process"
    "pmo pmo process";
  gap: 22px 24px;
  margin-top: 42px;
  padding: 14px 0 10px;
}

.services-modular::before,
.services-modular::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.services-modular::before {
  inset: 26px 8% 32px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 32%),
    radial-gradient(circle at 50% 50%, rgba(47, 175, 104, 0.035), transparent 58%);
  border: 1px solid rgba(198, 210, 211, 0.36);
}

.services-modular::after {
  top: 72px;
  bottom: 66px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(47, 175, 104, 0.2), transparent);
  transform: translateX(-50%);
}

.service-module {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 18px;
  min-height: 224px;
  padding: 26px 26px 24px;
  direction: rtl;
  text-align: right;
  border: 1px solid rgba(198, 210, 211, 0.74);
  border-radius: 30px 10px 26px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 251, 250, 0.94)),
    radial-gradient(circle at 88% 10%, rgba(47, 175, 104, 0.055), transparent 34%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72) inset,
    0 18px 36px rgba(7, 16, 79, 0.045);
}

.service-module::before,
.service-module::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.service-module::before {
  inset-inline-start: 0;
  top: 0;
  width: 110px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint), rgba(47, 175, 104, 0));
  opacity: 0.92;
}

.service-module::after {
  inset-inline-end: 18px;
  bottom: 18px;
  width: 94px;
  height: 94px;
  border-radius: 24px;
  border: 1px solid rgba(7, 16, 79, 0.055);
  transform: rotate(13deg);
  opacity: 0.5;
}

.service-module > * {
  position: relative;
  z-index: 1;
}

.service-module > div {
  display: grid;
  gap: 9px;
}

.service-module h3 {
  color: var(--heading);
  font-size: 1.16rem;
  line-height: 1.38;
  margin-bottom: 0;
}

.service-module p {
  color: #172432;
  font-size: 0.97rem;
  line-height: 1.76;
  margin-bottom: 0;
  max-width: 33ch;
}

.service-module .service-visual {
  margin-top: 0;
  justify-self: end;
}

.module-strategy {
  grid-area: strategy;
  min-height: 204px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  border-radius: 34px 10px 22px 14px;
  background:
    linear-gradient(135deg, rgba(7, 16, 79, 0.055), rgba(255, 255, 255, 0.96) 32%, rgba(243, 249, 246, 0.98)),
    radial-gradient(circle at 8% 0, rgba(47, 175, 104, 0.11), transparent 40%);
}

.module-transformation {
  grid-area: transformation;
  min-height: 446px;
  align-content: start;
  padding-top: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 245, 0.98)),
    radial-gradient(circle at 100% 16%, rgba(47, 175, 104, 0.08), transparent 34%);
  transform: translateY(16px);
}

.module-structure {
  grid-area: structure;
  min-height: 438px;
  align-content: start;
  padding-top: 30px;
  border-radius: 16px 34px 18px 34px;
  transform: translateY(-10px);
}

.module-tools {
  grid-area: tools;
  min-height: 216px;
  grid-template-columns: minmax(0, 1fr) auto;
  background:
    linear-gradient(180deg, rgba(248, 251, 250, 0.98), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 82% 24%, rgba(7, 16, 79, 0.06), transparent 34%);
  transform: translateY(8px);
}

.module-pmo {
  grid-area: pmo;
  min-height: 196px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.module-process {
  grid-area: process;
  min-height: 306px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 247, 0.98)),
    radial-gradient(circle at 12% 82%, rgba(47, 175, 104, 0.08), transparent 34%);
  transform: translateY(20px);
}

.module-p3m3 {
  grid-area: p3m3;
  min-height: 220px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-radius: 24px 12px 24px 12px;
  background:
    linear-gradient(135deg, rgba(7, 16, 79, 0.05), rgba(255, 255, 255, 0.98) 32%, rgba(242, 248, 246, 0.96)),
    radial-gradient(circle at 88% 20%, rgba(47, 175, 104, 0.08), transparent 34%);
  transform: translateY(-12px);
}

.module-p3m3::before {
  width: 126px;
  height: 3px;
}

.module-wide {
  grid-template-columns: minmax(0, 1fr) auto;
}

#services.section-muted {
  background:
    radial-gradient(circle at 12% 16%, rgba(7, 16, 79, 0.05), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(47, 175, 104, 0.085), transparent 22%),
    radial-gradient(circle at 54% 84%, rgba(7, 16, 79, 0.04), transparent 24%),
    linear-gradient(180deg, rgba(208, 219, 219, 0.56) 0%, rgba(235, 240, 240, 0.94) 14%, rgba(243, 246, 246, 0.985) 100%);
}

.services-shell::before {
  width: min(440px, 34vw);
  height: min(440px, 34vw);
  inset-inline-end: -164px;
  top: 58px;
  border-radius: 50%;
  border: 1px solid rgba(7, 16, 79, 0.06);
  background:
    radial-gradient(circle at 50% 50%, rgba(47, 175, 104, 0.07), transparent 56%);
  box-shadow: inset 0 0 0 56px rgba(255, 255, 255, 0.18);
  opacity: 0.38;
}

.services-shell::after {
  width: min(360px, 30vw);
  height: 200px;
  inset-inline-start: -78px;
  bottom: 28px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(7, 16, 79, 0.04), rgba(47, 175, 104, 0.055), transparent 72%);
  transform: rotate(-9deg);
  opacity: 0.62;
}

.services-title {
  margin-bottom: 8px;
}

.services-title h2 {
  color: var(--primary);
}

#services .services-title > h2,
#support-services .services-title > h2 {
  color: var(--primary) !important;
  position: relative;
  display: inline-block;
  font-size: clamp(1.6rem, 2.5vw, 2.82rem);
}

#services .services-title > h2 {
  font-size: clamp(0.9rem, 1.39vw, 1.62rem);
}

#support-services .services-title > h2 {
  font-size: clamp(0.9rem, 1.39vw, 1.62rem);
}

#services .services-title {
  margin-top: 40px;
}

#support-services .services-title {
  margin-top: 57px;
}

#services .services-title > h2::after,
#support-services .services-title > h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -14px;
  width: 34%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint), rgba(47, 175, 104, 0));
}

#services .services-title > h2::after {
  transform: translateX(363.828125px);
}

#support-services .services-title > h2::after {
  transform: translateX(382.649px);
}

#services .services-shell > .section-heading,
#partners .partners-shell > .section-heading,
#support-services .services-shell > .section-heading,
#why-us .why-us-heading {
  position: relative;
  z-index: 1;
  align-self: start;
  max-width: 170px;
  padding-top: 10px;
}

#services .services-shell > .section-heading::after,
#partners .partners-shell > .section-heading::after,
#support-services .services-shell > .section-heading::after,
#why-us .why-us-heading::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #238b57, rgba(35, 139, 87, 0));
}

#services .services-shell > .section-heading .eyebrow,
#partners .partners-shell > .section-heading .eyebrow,
#support-services .services-shell > .section-heading .eyebrow,
#why-us .why-us-heading .eyebrow {
  color: #238b57;
  font-size: 1.56rem;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(115, 216, 159, 0.18);
  margin-bottom: 0;
}

#partners .partners-shell > .section-heading .eyebrow {
  font-size: 1.32rem;
}

#support-services::before,
#support-services::after {
  display: none;
}

.services-strategic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(290px, 1fr) minmax(320px, 0.88fr) minmax(290px, 1fr);
  grid-template-areas:
    "left center right"
    ". bottom .";
  align-items: center;
  column-gap: clamp(34px, 4vw, 58px);
  row-gap: 20px;
  margin-top: 54px;
  padding: 10px 0 2px;
}

#services .services-strategic {
  margin-top: 38px;
  transform: scale(0.8);
  transform-origin: center top;
  margin-bottom: -164px;
}

.services-strategic::before,
.services-strategic::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.services-strategic::before {
  left: 50%;
  top: 50%;
  width: min(520px, 50vw);
  aspect-ratio: 1;
  transform: translate(-50%, -51%);
  border-radius: 50%;
  border: 1px solid rgba(7, 16, 79, 0.06);
  box-shadow: inset 0 0 0 28px rgba(255, 255, 255, 0.22);
}

.services-strategic::after {
  left: 50%;
  top: 50%;
  width: min(676px, 68vw);
  height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, rgba(47, 175, 104, 0.16), transparent);
}

.services-column {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(24px, 3vw, 36px);
}

.services-column-left {
  grid-area: left;
  padding-top: 0;
}

.services-column-right {
  grid-area: right;
  padding-top: 16px;
}

.services-center {
  grid-area: center;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 426px;
}

.services-center-shell {
  position: relative;
  width: min(100%, 274px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.services-center-shell::before,
.services-center-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.services-center-shell::before {
  inset: 0;
  border: 6px solid rgba(34, 35, 40, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.services-center-shell::after {
  inset: 30px;
  border: 15px solid rgba(220, 225, 232, 0.72);
}

.services-center-core {
  position: relative;
  z-index: 1;
  width: 64%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.94), rgba(247, 249, 250, 0.98) 62%, rgba(237, 240, 244, 0.96) 100%);
  box-shadow: 0 12px 28px rgba(7, 16, 79, 0.055);
}

.services-center-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68%;
  height: 68%;
  transform: translate(calc(-50% + 6px), -50%);
  display: block;
  object-fit: contain;
  object-position: center center;
}

.service-spoke {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 16px;
}

.service-spoke-left::after,
.service-spoke-right::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
  z-index: 1;
}

.service-spoke-left {
  grid-template-columns: minmax(0, 1fr) auto;
}

.service-spoke-right {
  grid-template-columns: auto minmax(0, 1fr);
}

.service-spoke-bottom {
  grid-area: bottom;
  justify-self: center;
  width: min(100%, 560px);
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 12px;
  padding-top: 0;
  text-align: center;
  transform: translateY(-10px);
}

.service-copy {
  position: relative;
  display: grid;
  gap: 10px;
  max-width: 36ch;
  padding-top: 12px;
}

.service-copy::before {
  content: "";
  position: absolute;
  top: 0;
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), rgba(47, 175, 104, 0));
  opacity: 0.9;
}

.service-spoke-left .service-copy {
  justify-self: end;
  text-align: right;
}

.service-spoke-right .service-copy {
  text-align: right;
}

.service-spoke-bottom .service-copy {
  max-width: 44ch;
  text-align: center;
}

.service-spoke-bottom .service-copy::before {
  left: 50%;
  transform: translateX(-50%);
}

.services-strategic .service-copy h3 {
  color: var(--mint);
  font-size: 1.22rem;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 0;
}

.service-spoke p {
  color: #30414d;
  font-size: 1rem;
  line-height: 1.86;
  margin-bottom: 0;
}

.services-strategic .service-visual {
  position: relative;
  width: 124px;
  height: 124px;
  border-width: 10px;
  box-shadow: 0 18px 34px rgba(7, 16, 79, 0.09);
}

#services .services-strategic .service-visual svg {
  width: 54px;
  height: 54px;
  transform: scale(1.25);
  transform-origin: center;
}

#services .services-strategic .visual-strategy svg {
  width: 58px;
  height: 58px;
}

#services .services-strategic .visual-p3m3 svg {
  width: 52px;
  height: 52px;
}

.services-strategic .service-visual::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 62px;
  height: 12px;
  transform: translateY(-50%);
  opacity: 0.88;
}

.service-spoke-left .service-visual::after {
  inset-inline-end: -64px;
  background:
    linear-gradient(var(--primary), var(--primary)) 0 50% / calc(100% - 10px) 3px no-repeat;
}

.service-spoke-right .service-visual::after {
  inset-inline-start: -64px;
  background:
    linear-gradient(var(--primary), var(--primary)) 100% 50% / calc(100% - 10px) 3px no-repeat;
}

.service-spoke-left::after {
  inset-inline-end: -64px;
}

.service-spoke-right::after {
  inset-inline-start: -64px;
}

.service-spoke-bottom .service-visual::after {
  left: 50%;
  top: -66px;
  width: 12px;
  height: 64px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, var(--primary) 0 4px, transparent 4.5px) 50% 0 / 10px 10px no-repeat,
    linear-gradient(var(--primary), var(--primary)) 50% 100% / 3px calc(100% - 10px) no-repeat;
}

.service-spoke-top {
  transform: translateY(-4px);
}

.service-spoke-middle {
  transform: translateY(2px);
}

.service-spoke-bottom-left,
.service-spoke-bottom-right {
  transform: translateY(8px);
}

.service-spoke-anchor {
  transform: translateY(-4px);
}

.support-services-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(7, 16, 79, 0.05), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(47, 175, 104, 0.09), transparent 20%),
    linear-gradient(180deg, rgba(241, 245, 245, 0.98) 0%, rgba(246, 249, 248, 0.99) 100%);
}

.support-services-shell {
  position: relative;
}

.support-services-shell::before,
.support-services-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.support-services-shell::before {
  width: min(380px, 28vw);
  height: min(380px, 28vw);
  inset-inline-start: -150px;
  top: 34px;
  background: radial-gradient(circle at 50% 50%, rgba(47, 175, 104, 0.06), transparent 62%);
  border: 1px solid rgba(7, 16, 79, 0.04);
  opacity: 0.8;
}

.support-services-shell::after {
  width: min(320px, 26vw);
  height: min(320px, 26vw);
  inset-inline-end: -120px;
  bottom: 10px;
  background: radial-gradient(circle at 50% 50%, rgba(7, 16, 79, 0.045), transparent 68%);
  opacity: 0.55;
}

.support-services-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 84px);
}

.support-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.support-visual::before,
.support-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.support-visual::before {
  width: min(440px, 34vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(7, 16, 79, 0.06);
  box-shadow: inset 0 0 0 34px rgba(255, 255, 255, 0.28);
  opacity: 0.88;
}

.support-visual::after {
  width: 220px;
  height: 220px;
  border-radius: 28px;
  background: linear-gradient(140deg, rgba(7, 16, 79, 0.045), rgba(47, 175, 104, 0.055), transparent 72%);
  transform: rotate(-16deg) translate(-18%, 14%);
  opacity: 0.7;
}

.support-visual-core {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.support-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(7, 16, 79, 0.08);
}

.support-orbit-large {
  inset: 18px;
}

.support-orbit-small {
  inset: 72px;
  border-color: rgba(47, 175, 104, 0.18);
}

.support-visual-mark {
  position: relative;
  width: min(100%, 250px);
  aspect-ratio: 1;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 249, 0.98));
  border: 1px solid rgba(210, 220, 220, 0.92);
  box-shadow: 0 20px 46px rgba(7, 16, 79, 0.08);
}

.support-visual-mark::before,
.support-visual-mark::after {
  content: "";
  position: absolute;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  background: var(--primary);
}

.support-visual-mark::before {
  top: 48px;
  width: 2px;
  height: calc(100% - 96px);
}

.support-visual-mark::after {
  top: 50%;
  width: calc(100% - 96px);
  height: 2px;
  transform: translate(-50%, -50%);
}

.support-diagram-grid,
.support-beam,
.support-node {
  position: absolute;
  display: block;
}

.support-diagram-grid {
  inset-inline-start: 50%;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  border: 2px solid rgba(47, 175, 104, 0.88);
  transform: translateX(-50%);
}

.support-diagram-grid::before,
.support-diagram-grid::after {
  content: "";
  position: absolute;
  inset-inline-start: 14px;
  inset-inline-end: 14px;
  height: 2px;
  background: rgba(47, 175, 104, 0.88);
}

.support-diagram-grid::before {
  top: 22px;
}

.support-diagram-grid::after {
  bottom: 22px;
}

.support-diagram-grid-top {
  top: 26px;
}

.support-diagram-grid-bottom {
  bottom: 26px;
}

.support-beam {
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 2px solid rgba(7, 16, 79, 0.82);
  transform: translateY(-50%);
}

.support-beam::before,
.support-beam::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 2px;
  background: rgba(47, 175, 104, 0.9);
  transform: translateY(-50%);
}

.support-beam-left {
  inset-inline-start: 26px;
}

.support-beam-left::before,
.support-beam-left::after {
  inset-inline-end: -16px;
}

.support-beam-left::before {
  transform: translateY(calc(-50% - 8px));
}

.support-beam-left::after {
  transform: translateY(calc(-50% + 8px));
}

.support-beam-right {
  inset-inline-end: 26px;
}

.support-beam-right::before,
.support-beam-right::after {
  inset-inline-start: -16px;
}

.support-beam-right::before {
  transform: translateY(calc(-50% - 8px));
}

.support-beam-right::after {
  transform: translateY(calc(-50% + 8px));
}

.support-node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  inset-inline-start: 50%;
  transform: translateX(-50%);
}

.support-node-top {
  top: 18px;
}

.support-node-bottom {
  bottom: 18px;
}

.support-services-content {
  display: grid;
  gap: 30px;
}

.support-services-title {
  margin-bottom: 0;
}

.support-services-title h2 {
  color: var(--primary);
}

.support-services-list {
  display: grid;
  gap: 18px;
}

.support-service-item {
  position: relative;
  padding: 28px 30px 28px 34px;
  border-radius: 24px;
  border: 1px solid rgba(202, 213, 214, 0.96);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(247, 250, 249, 0.98));
  box-shadow: 0 18px 38px rgba(7, 16, 79, 0.055);
}

.support-service-item::before {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 24px;
  width: 4px;
  height: calc(100% - 48px);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--mint), rgba(47, 175, 104, 0.16));
}

.support-service-item h3 {
  color: var(--mint);
  font-size: 1.32rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.support-service-item p {
  color: #253845;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 0;
}

.support-preview-page.section-muted {
  background:
    radial-gradient(circle at 12% 16%, rgba(7, 16, 79, 0.05), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(47, 175, 104, 0.085), transparent 22%),
    radial-gradient(circle at 54% 84%, rgba(7, 16, 79, 0.04), transparent 24%),
    linear-gradient(180deg, rgba(208, 219, 219, 0.56) 0%, rgba(235, 240, 240, 0.94) 14%, rgba(243, 246, 246, 0.985) 100%);
}

#services.section-muted,
#support-services.section-muted {
  background:
    radial-gradient(circle at 14% 20%, rgba(7, 16, 79, 0.045), transparent 26%),
    radial-gradient(circle at 86% 16%, rgba(47, 175, 104, 0.075), transparent 24%),
    radial-gradient(circle at 52% 82%, rgba(7, 16, 79, 0.035), transparent 26%),
    linear-gradient(180deg, rgba(214, 224, 224, 0.54) 0%, rgba(232, 238, 238, 0.9) 38%, rgba(243, 246, 246, 0.98) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

#support-services.section-muted {
  background:
    radial-gradient(circle at 14% 20%, rgba(7, 16, 79, 0.047), transparent 27%),
    radial-gradient(circle at 86% 16%, rgba(47, 175, 104, 0.078), transparent 25%),
    radial-gradient(circle at 52% 82%, rgba(7, 16, 79, 0.037), transparent 27%),
    linear-gradient(180deg, rgba(215, 224, 224, 0.545) 0%, rgba(233, 239, 239, 0.91) 38%, rgba(243, 246, 246, 0.98) 100%);
}

#services {
  padding-bottom: 28px;
}

#support-services {
  padding-top: 28px;
  padding-bottom: 76px;
}

.partners-section {
  background:
    radial-gradient(circle at 14% 20%, rgba(7, 16, 79, 0.04), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(47, 175, 104, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(241, 244, 244, 0.98) 0%, rgba(236, 241, 241, 0.99) 100%);
}

.partners-shell {
  display: grid;
  gap: 34px;
}

.partners-visible-content {
  transform: scale(0.85);
  transform-origin: top center;
}

.partners-title {
  margin-inline: auto;
  margin-bottom: 0;
  text-align: center;
}

.partners-title h2 {
  color: var(--primary);
  font-size: clamp(2rem, 3.3vw, 4.15rem);
  line-height: 1.08;
  margin: 0;
}

.partners-intro {
  max-width: 1180px;
  margin: 0 auto;
  color: #30414d;
  font-size: clamp(0.82rem, 1.55vw, 1.46rem);
  line-height: 1.72;
  text-align: right;
  white-space: nowrap;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: stretch;
  transform: translateY(40px);
}

.partner-block {
  width: 85%;
  min-height: 399.5px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 28.9px;
  padding: 44.2px 30.6px 34px;
  border: 1px solid rgba(205, 212, 214, 0.92);
  background: linear-gradient(180deg, rgba(241, 241, 241, 0.92), rgba(236, 236, 236, 0.88));
}

.partner-logo-frame {
  width: min(72.25%, 520.2px);
  min-height: 187.85px;
  display: grid;
  place-items: center;
  padding: 23.8px 25.5px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 34px rgba(7, 16, 79, 0.07);
}

.partner-logo {
  width: 100%;
  max-width: 364px;
  height: auto;
  display: block;
  object-fit: contain;
}

.partner-block p {
  max-width: 780px;
  margin: 0;
  color: #30414d;
  font-size: clamp(0.89rem, 1.55vw, 1.46rem);
  line-height: 1.6;
  text-align: right;
}

@media (max-width: 980px) {
  .partners-visible-content {
    transform: none;
  }

  .partners-intro {
    max-width: 100%;
    white-space: normal;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    transform: none;
    gap: 24px;
  }

  .partner-block {
    width: 100%;
    min-height: auto;
  }

  .partner-logo-frame {
    min-height: 220px;
  }
}

.support-preview-shell {
  position: relative;
}

.support-preview-map {
  grid-template-columns: minmax(260px, 0.94fr) minmax(248px, 0.72fr) minmax(260px, 0.94fr);
  grid-template-areas: "left center right";
  column-gap: clamp(22px, 2.8vw, 36px);
  row-gap: 0;
  padding-bottom: 10px;
}

#support-services .support-preview-map {
  margin-top: -16px;
  transform: scale(0.8);
  transform-origin: center top;
  margin-bottom: -70px;
}

.support-preview-map::before {
  width: min(450px, 45vw);
  transform: translate(-50%, -50%);
}

.support-preview-map::after {
  width: min(590px, 63vw);
}

.support-preview-left {
  grid-area: left;
  transform: translateY(-40px) !important;
}

.support-preview-right {
  grid-area: right;
  transform: translateY(40px) !important;
}

.support-preview-center {
  min-height: 348px;
}

.support-preview-center .services-center-shell {
  width: min(100%, 244px);
}

.support-preview-left .service-copy,
.support-preview-right .service-copy {
  max-width: 28ch;
}

.support-preview-left p,
.support-preview-right p {
  font-size: 1.02rem;
  line-height: 1.92;
}

.support-preview-shell::after {
  opacity: 0.38;
  transform: rotate(-9deg) translateX(-22px);
}

.support-preview-visual svg {
  width: 46px;
  height: 46px;
}

#support-services .support-preview-visual svg {
  transform: scale(1.25);
  transform-origin: center;
}

.support-preview-visual svg path,
.support-preview-visual svg circle {
  stroke: var(--mint);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-group {
  display: grid;
  gap: 34px;
}

.service-group .section-title {
  margin-bottom: 0;
}

.service-group-title {
  padding-top: 10px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 232px;
  padding: 28px;
  border: 1px solid rgba(198, 210, 211, 0.95);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0 0, rgba(47, 175, 104, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 248, 0.96));
  box-shadow: 0 1px 0 rgba(7, 16, 79, 0.04), 0 12px 30px rgba(7, 16, 79, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 5px;
  height: 70px;
  background: var(--mint);
}

.service-card::after {
  width: 86px;
  height: 86px;
  border-radius: 20px;
  inset-inline-end: -40px;
  bottom: -44px;
  background: rgba(47, 175, 104, 0.025);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.metric > *,
.feature-item > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 175, 104, 0.34);
  box-shadow: var(--shadow);
}

.card-icon {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #f8fcfa, var(--mint-pale));
  border: 1px solid rgba(47, 175, 104, 0.16);
  margin-bottom: 24px;
  box-shadow: inset 0 -8px 18px rgba(47, 175, 104, 0.06);
}

.card-icon::before,
.card-icon::after {
  content: "";
  display: block;
  background: var(--mint);
}

.featured-service .card-icon::before,
.featured-service .card-icon::after {
  display: none;
}

.icon-strategy::before {
  width: 32px;
  height: 32px;
  clip-path: polygon(50% 0, 62% 35%, 100% 35%, 69% 57%, 82% 100%, 50% 74%, 18% 100%, 31% 57%, 0 35%, 38% 35%);
}

.icon-structure::before {
  width: 30px;
  height: 30px;
  background:
    linear-gradient(var(--mint), var(--mint)) 50% 0 / 3px 100% no-repeat,
    linear-gradient(var(--mint), var(--mint)) 0 50% / 100% 3px no-repeat;
  border: 2px solid var(--mint);
  border-radius: 6px;
}

.icon-pmo::before {
  width: 31px;
  height: 31px;
  border: 3px solid var(--mint);
  border-radius: 7px;
  background:
    linear-gradient(var(--mint), var(--mint)) 7px 9px / 15px 3px no-repeat,
    linear-gradient(var(--mint), var(--mint)) 7px 18px / 11px 3px no-repeat;
}

.icon-transformation::before {
  width: 32px;
  height: 32px;
  border: 3px solid var(--mint);
  border-inline-start-color: transparent;
  border-radius: 50%;
}

.icon-transformation::after {
  position: absolute;
  width: 12px;
  height: 12px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-12px, -10px);
}

.icon-process::before {
  width: 32px;
  height: 26px;
  background:
    linear-gradient(var(--mint), var(--mint)) 0 3px / 32px 3px no-repeat,
    linear-gradient(var(--mint), var(--mint)) 0 12px / 24px 3px no-repeat,
    linear-gradient(var(--mint), var(--mint)) 0 21px / 28px 3px no-repeat;
}

.icon-tools::before,
.icon-automation::before {
  width: 31px;
  height: 31px;
  border-radius: 8px;
  background:
    linear-gradient(var(--mint), var(--mint)) 50% 0 / 5px 100% no-repeat,
    linear-gradient(var(--mint), var(--mint)) 0 50% / 100% 5px no-repeat;
}

.icon-operations::before {
  width: 33px;
  height: 28px;
  border: 3px solid var(--mint);
  border-radius: 7px;
  background:
    linear-gradient(var(--mint), var(--mint)) 0 50% / 100% 3px no-repeat;
}

.icon-experts::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow:
    0 -12px 0 -2px var(--mint),
    12px 12px 0 -2px var(--mint),
    -12px 12px 0 -2px var(--mint);
}

.featured-service {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 28px 32px;
  border: 1px solid rgba(47, 175, 104, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 175, 104, 0.1), rgba(255, 255, 255, 0.9)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.featured-service::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(47, 175, 104, 0.18);
  border-radius: 28px;
  inset-inline-end: -54px;
  bottom: -60px;
  transform: rotate(12deg);
}

.featured-service > * {
  position: relative;
  z-index: 1;
}

.featured-service .card-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 0;
}

.featured-service h3 {
  font-size: 1.32rem;
}

.featured-service p {
  margin-bottom: 0;
}

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

.services-cta {
  padding-top: 88px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

#why-us.section-muted {
  background:
    radial-gradient(circle at 14% 18%, rgba(7, 16, 79, 0.045), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(47, 175, 104, 0.074), transparent 23%),
    radial-gradient(circle at 56% 80%, rgba(7, 16, 79, 0.035), transparent 24%),
    linear-gradient(180deg, rgba(214, 224, 224, 0.54) 0%, rgba(233, 239, 239, 0.91) 42%, rgba(243, 246, 246, 0.98) 100%);
}

#why-us .why-us-shell {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  transform: scale(0.88);
  transform-origin: top right;
}

#why-us .why-us-heading {
  width: fit-content;
  max-width: none;
  margin-inline-start: 0;
  margin-inline-end: auto;
  margin-bottom: 18px;
}

#why-us .why-us-heading .eyebrow {
  display: inline-flex;
  white-space: nowrap;
}

#why-us .why-us-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 62px 92px;
  align-items: start;
  width: min(100%, 920px);
  margin: auto;
  padding: 18px 0;
  transform: translateX(-120px);
}

#why-us .why-us-grid::before,
#why-us .why-us-grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

#why-us .why-us-grid::before {
  top: 10px;
  bottom: 10px;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(7, 16, 79, 0), rgba(7, 16, 79, 0.9) 18%, rgba(7, 16, 79, 0.9) 82%, rgba(7, 16, 79, 0));
}

#why-us .why-us-grid::after {
  left: 4%;
  right: 4%;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(7, 16, 79, 0), rgba(7, 16, 79, 0.9) 18%, rgba(7, 16, 79, 0.9) 82%, rgba(7, 16, 79, 0));
}

#why-us .why-us-item {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  min-height: 150px;
  padding-top: 20px;
  padding-inline: 0 24px;
  text-align: right;
}

#why-us .why-us-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, rgba(47, 175, 104, 0.98), rgba(47, 175, 104, 0.18));
  border-radius: 999px;
  opacity: 1;
}

#why-us .why-us-item h3 {
  color: var(--primary);
  font-size: 1.22rem;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 12px;
}

#why-us .why-us-item p {
  color: #172432;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 0;
  max-width: 32ch;
  margin-inline-start: auto;
}

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

.feature-item {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbfa);
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 175, 104, 0.3);
  box-shadow: var(--shadow-soft);
}

.feature-mark {
  width: 34px;
  height: 34px;
  display: block;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, transparent 48%, rgba(255, 255, 255, 0.88) 49%),
    var(--mint);
}

.contact-section {
  position: relative;
  background:
    radial-gradient(circle at 78% 18%, rgba(47, 175, 104, 0.16), transparent 28%),
    linear-gradient(135deg, #07104f 0%, #071d33 100%);
  color: #fff;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(47, 175, 104, 0.25);
  border-radius: 50%;
  inset-inline-start: -140px;
  top: -120px;
}

.contact-section::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 28px;
  border: 1px solid rgba(47, 175, 104, 0.22);
  inset-inline-end: 8%;
  bottom: -82px;
  transform: rotate(12deg);
}

.contact-section h2 {
  color: #fff;
}

.contact-section p,
.contact-section .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.contact-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.contact-copy {
  max-width: 620px;
}

.contact-copy > .contact-heading {
  position: relative;
  z-index: 1;
  align-self: start;
  max-width: 170px;
  padding-top: 10px;
  transform: translateY(-118px);
}

.contact-copy > .contact-heading::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint), rgba(47, 175, 104, 0));
}

.contact-copy > .contact-heading .eyebrow {
  color: #8fe4b0;
  font-size: 1.56rem;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(115, 216, 159, 0.18);
  margin-bottom: 0;
  white-space: nowrap;
}

.contact-copy p {
  font-size: 1.1rem;
  line-height: 1.9;
}

.contact-signal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
}

.contact-signal span {
  width: 34px;
  height: 2px;
  background: var(--mint);
}

.contact-signal strong {
  font-size: 0.96rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  box-shadow: 0 22px 60px rgba(4, 12, 46, 0.18);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--heading);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px 16px;
  color: var(--text);
  background: #fbfdfc;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(47, 175, 104, 0.18);
  border-color: var(--mint);
}

.contact-form .form-status {
  min-height: 1.6em;
  margin: 4px 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(7, 16, 79, 0.78);
}

.contact-form .form-status.success {
  color: var(--mint-deep);
}

.contact-form .form-status.error {
  color: #b54708;
}

.site-footer {
  padding: 42px 0 24px;
  background:
    linear-gradient(180deg, #071d33, #06182b);
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.45fr) minmax(320px, 1.15fr);
  column-gap: clamp(48px, 7vw, 110px);
  row-gap: 44px;
  align-items: start;
  padding-bottom: 26px;
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.12rem;
  margin-bottom: 10px;
  max-width: none;
  white-space: nowrap;
}

.footer-brand {
  justify-self: end;
  transform: none;
  max-width: 520px;
}

.footer-logo {
  width: 176px;
  height: 50px;
  object-fit: contain;
  object-position: right center;
  display: block;
  margin-bottom: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-brand p {
  max-width: none;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  white-space: nowrap;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  justify-self: start;
  align-content: start;
  margin-top: 8px;
}

.footer-links h4,
.footer-contact h4 {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  margin: 0 0 4px;
}

.footer-links a {
  padding-bottom: 0;
  border-bottom: 0;
}

.footer-links span {
  display: block;
  margin-top: 14px;
}

.footer-icon-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  direction: ltr;
  justify-self: start;
}

.footer-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-link-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.footer-email-icon svg {
  transform: translateY(1px);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 1px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: inherit;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .navbar {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    grid-template-columns: 1fr;
    row-gap: 16px;
    direction: rtl;
  }

  .brand {
    grid-column: 1;
    width: 100%;
    min-width: 0;
    margin-inline-start: 0;
    justify-content: flex-end;
  }

  .nav-links {
    grid-column: 1;
    width: 100%;
    overflow: visible;
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .page-hero-grid,
  .split-section,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  html[lang="ar"][dir="rtl"] .home-about .split-section {
    grid-template-columns: 1fr;
    gap: 24px;
    overflow: clip;
  }

  .home-about .section-heading,
  .home-about .panel-soft {
    grid-column: auto;
  }

  html[lang="ar"][dir="rtl"] .nav-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-content: stretch;
    justify-items: stretch;
    align-items: stretch;
    text-align: right;
  }

  html[lang="ar"][dir="rtl"] .nav-links a {
    display: flex;
    width: 100%;
    min-width: 0;
    justify-content: flex-end;
    align-items: center;
    grid-column: auto;
  }

  html[lang="ar"][dir="rtl"] .about-decor-left {
    left: 36px;
    top: 150px;
    opacity: 0.7;
  }

  html[lang="ar"][dir="rtl"] .about-decor-right {
    right: 0;
    bottom: -96px;
    opacity: 0.72;
  }

  .about-decor-lines {
    right: 4%;
    width: 64vw;
    opacity: 0.34;
  }

  .hero-copy,
  .hero-abstract {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
  }

  .hero-copy {
    max-width: 100%;
    padding-block: 0;
  }

  .hero-slogan {
    white-space: normal;
    font-size: clamp(2.35rem, 7vw, 3.5rem);
    line-height: 1.12;
  }

  .hero-system {
    min-height: auto;
    padding: 18px 0;
  }

  .hero-abstract {
    min-height: 360px;
    max-width: 620px;
    margin-inline: auto;
    width: 100%;
    transform: scale(0.82);
    transform-origin: center;
  }

  .hero-copy p {
    max-width: 100%;
  }

  #why-us .why-us-shell {
    min-height: auto;
    transform: none;
  }

  #why-us .why-us-grid {
    width: 100%;
    margin: 0;
    gap: 36px 28px;
    transform: none;
  }

  #support-services .support-preview-map {
    margin-top: 24px;
    margin-bottom: 0;
    transform: none;
  }

  html[lang="ar"][dir="rtl"] #support-services .support-preview-shell::before {
    display: none;
  }

  .support-preview-shell::after {
    display: none;
  }

  #services .services-title h2 > span,
  #support-services .services-title h2 > span {
    position: static !important;
    left: auto !important;
    display: inline !important;
  }

  #services .services-title,
  #support-services .services-title,
  .section-title,
  .section-heading,
  #why-us .why-us-heading {
    width: 100%;
    max-width: 100%;
  }

  #services .services-title,
  #support-services .services-title {
    margin-top: 28px;
    text-align: right;
  }

  #services .services-title > h2,
  #support-services .services-title > h2 {
    max-width: 100%;
    font-size: 1.28rem;
    line-height: 1.45;
  }

  #services .services-title > h2::after,
  #support-services .services-title > h2::after {
    width: 54px;
    bottom: -10px;
    transform: none !important;
  }

  #why-us .why-us-heading .eyebrow {
    white-space: normal;
  }

  .flow-label {
    transform: scale(0.96);
  }

  .system-node,
  .system-node:nth-of-type(2),
  .system-node:nth-of-type(3),
  .system-node:nth-of-type(4) {
    justify-self: stretch;
    width: 100%;
  }

  .system-spine {
    top: 50px;
    bottom: 50px;
    inset-inline-start: 31px;
    inset-inline-end: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(47, 175, 104, 0.12), rgba(47, 175, 104, 0.72), rgba(47, 175, 104, 0.12));
  }

  .brand-visual {
    max-width: 620px;
  }

  .card-grid,
  .feature-list,
  .support-grid,
  .approach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #why-us .why-us-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #why-us .why-us-grid::before,
  #why-us .why-us-grid::after {
    display: none;
  }

  .execution-map {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "strategy transformation"
      "structure tools"
      "pmo process"
      "p3m3 p3m3";
    gap: 24px 28px;
  }

  .map-core,
  .execution-map::before,
  .execution-map::after {
    display: none;
  }

  .execution-service,
  .node-strategy,
  .node-structure,
  .node-pmo,
  .node-transformation,
  .node-tools,
  .node-process {
    grid-template-columns: auto minmax(0, 1fr);
    text-align: right;
  }

  .node-strategy .service-visual,
  .node-structure .service-visual,
  .node-pmo .service-visual,
  .node-strategy > div,
  .node-structure > div,
  .node-pmo > div,
  .node-transformation > div,
  .node-tools > div,
  .node-process > div {
    grid-column: auto;
    justify-self: stretch;
    max-width: none;
  }

  .service-visual {
    width: 108px;
    height: 108px;
    border-width: 8px;
  }

  .service-visual::after {
    display: none;
  }

  .visual-p3m3 {
    width: 114px;
    height: 114px;
  }

  .services-modular {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "strategy transformation"
      "structure transformation"
      "structure tools"
      "pmo process"
      "p3m3 p3m3";
    gap: 18px;
  }

  .services-modular::before,
  .services-modular::after {
    display: none;
  }

  .service-module,
  .module-strategy,
  .module-transformation,
  .module-structure,
  .module-tools,
  .module-pmo,
  .module-process,
  .module-p3m3 {
    min-height: 0;
    border-radius: 24px 12px 24px 12px;
    transform: none;
  }

  .module-p3m3 {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .service-module,
  .module-wide,
  .module-pmo,
  .module-p3m3 {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .services-strategic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "center center"
      "left right"
      "bottom bottom";
    column-gap: 28px;
    row-gap: 24px;
  }

  .services-strategic::before,
  .services-strategic::after {
    display: none;
  }

  .services-column {
    gap: 28px;
    padding-top: 0;
  }

  .services-center {
    min-height: 286px;
  }

  .services-center-shell {
    width: min(100%, 270px);
  }

  .services-center-shell::before {
    border-width: 7px;
  }

  .services-center-shell::after {
    inset: 28px;
    border-width: 15px;
  }

  .services-strategic .service-visual {
    width: 110px;
    height: 110px;
    border-width: 8px;
  }

  .service-copy {
    max-width: 32ch;
  }

  .service-spoke h3 {
    font-size: 1.14rem;
  }

  .service-spoke p {
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .service-spoke-left .service-visual::after,
  .service-spoke-right .service-visual::after {
    width: 38px;
  }

  .support-services-layout {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
    gap: 32px;
  }

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

  .support-visual-core {
    width: min(100%, 360px);
  }

  .support-service-item {
    padding: 24px 26px 24px 30px;
  }

  .support-preview-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "center center"
      "left right";
    column-gap: 28px;
    row-gap: 24px;
  }

  .support-preview-center {
    min-height: 320px;
  }

  .support-preview-left,
  .support-preview-right {
    transform: none;
  }

  #services .card-grid .service-card:nth-child(5),
  #services .card-grid .service-card:nth-child(6),
  #services .card-grid .service-card:nth-child(7) {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .contact-section::before,
  .contact-section::after {
    display: none;
  }

  .contact-copy > .contact-heading {
    max-width: none;
    padding-top: 0;
    transform: none;
  }

  .contact-copy > .contact-heading .eyebrow {
    white-space: normal;
    font-size: 1.18rem;
  }

  .contact-wrap {
    gap: 32px;
  }

  .node-p3m3 {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 14px;
    padding-top: 0;
    text-align: right;
  }

  .node-p3m3 > div {
    max-width: none;
    width: 100%;
  }

  .node-p3m3 .service-visual,
  .visual-p3m3 {
    justify-self: center;
    width: 82px;
    height: 82px;
    border-width: 6px;
  }

  .node-p3m3 .service-visual::after {
    display: none;
  }

  .node-p3m3 .service-visual svg,
  .visual-p3m3 svg {
    width: 36px;
    height: 36px;
  }

  .support-preview-map {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "right";
    row-gap: 16px;
    margin-top: 20px;
    padding-bottom: 0;
  }

  #support-services .support-preview-map {
    margin-top: 20px;
    margin-bottom: 0;
    transform: none;
  }

  .support-preview-map::before,
  .support-preview-map::after {
    display: none;
  }

  .support-preview-center {
    display: none;
  }

  .support-preview-center .services-center-shell {
    width: min(100%, 160px);
  }

  .support-preview-left,
  .support-preview-right {
    transform: none !important;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
    justify-items: stretch;
    width: 100%;
    max-width: 100%;
    text-align: right;
  }

  .support-preview-left .service-copy,
  .support-preview-right .service-copy {
    max-width: none;
    width: 100%;
    text-align: right;
  }

  .support-preview-left p,
  .support-preview-right p {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  #support-services .service-spoke-left .service-visual::after,
  #support-services .service-spoke-right .service-visual::after,
  #support-services .service-spoke-bottom .service-visual::after,
  #support-services .service-spoke-left::after,
  #support-services .service-spoke-right::after,
  #support-services .support-preview-left::after,
  #support-services .support-preview-right::after {
    display: none !important;
  }

  .support-preview-visual,
  .support-preview-left .service-visual,
  .support-preview-right .service-visual {
    position: static;
    justify-self: start;
    margin: 0;
    width: 72px;
    height: 72px;
    border-width: 5px;
    box-shadow: none;
  }

  .support-preview-visual svg,
  #support-services .support-preview-visual svg {
    width: 30px;
    height: 30px;
    transform: none;
  }

  .node-p3m3 {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 10px;
    padding-top: 0;
    text-align: right;
  }

  .node-p3m3 > div {
    width: 100%;
    max-width: none;
  }

  .node-p3m3 .service-visual,
  .visual-p3m3 {
    position: static;
    justify-self: center;
    margin: 0 0 4px;
    width: 64px;
    height: 64px;
    border-width: 5px;
    box-shadow: none;
  }

  .node-p3m3 .service-visual::after,
  .node-p3m3::before,
  .node-p3m3::after {
    display: none !important;
  }

  .node-p3m3 .service-visual svg,
  .visual-p3m3 svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  html,
  body {
    overflow-x: hidden;
  }

  .section {
    padding: 76px 0;
  }

  .navbar {
    gap: 12px;
  }

  .nav-links {
    gap: 12px 16px;
    font-size: 0.98rem;
    overflow: visible;
    flex-wrap: wrap;
    white-space: normal;
  }

  .brand {
    justify-content: flex-end;
  }

  .brand-logo {
    width: 140px;
    height: auto;
    max-width: 100%;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .hero-company-name {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero-slogan {
    font-size: clamp(2rem, 10vw, 2.85rem);
    line-height: 1.12;
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: none;
  }

  .hero-abstract {
    min-height: 250px;
    transform: scale(0.58);
    transform-origin: center top;
    margin-block: -92px -108px;
  }

  .flow-label strong {
    font-size: 0.92rem;
  }

  .flow-label small {
    font-size: 0.72rem;
  }

  .label-strategy {
    right: 88px;
    top: 104px;
  }

  .label-operations {
    right: 66px;
    top: 278px;
  }

  .label-execution {
    left: 164px;
    bottom: 82px;
  }

  .hero-panel,
  .card-grid,
  .feature-list,
  .support-grid,
  .approach-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  #why-us .why-us-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 30px;
    padding-top: 8px;
    transform: none;
  }

  #why-us .why-us-grid::before,
  #why-us .why-us-grid::after {
    display: none;
  }

  #why-us .why-us-item {
    min-height: auto;
    padding-inline: 0;
    gap: 10px;
  }

  #why-us .why-us-item h3 {
    font-size: 1.04rem !important;
    white-space: normal !important;
  }

  #services .services-title,
  #support-services .services-title {
    margin-top: 24px;
  }

  #services .services-title > h2,
  #support-services .services-title > h2 {
    font-size: 1.14rem;
    line-height: 1.5;
  }

  .footer-brand {
    justify-self: start;
    transform: none;
  }

  .footer-links {
    justify-self: start;
  }

  .execution-map {
    grid-template-columns: 1fr;
    grid-template-areas:
      "strategy"
      "transformation"
      "structure"
      "tools"
      "pmo"
      "process"
      "p3m3";
    margin-top: 28px;
  }

  .execution-service,
  .node-p3m3 {
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: stretch;
    text-align: right;
    max-width: none;
  }

  .service-visual {
    width: 98px;
    height: 98px;
    border-width: 7px;
  }

  .service-visual svg {
    width: 44px;
    height: 44px;
  }

  .visual-strategy svg {
    width: 46px;
    height: 46px;
  }

  .visual-p3m3,
  .node-p3m3 .service-visual {
    width: 104px;
    height: 104px;
  }

  .services-shell::before,
  .services-shell::after {
    display: none;
  }

  .support-services-shell::before,
  .support-services-shell::after {
    display: none;
  }

  .support-services-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .support-visual {
    order: 2;
    min-height: 300px;
  }

  .support-services-content {
    order: 1;
    gap: 24px;
  }

  .support-visual-core {
    width: min(100%, 320px);
  }

  .support-visual-mark {
    width: min(100%, 220px);
  }

  .support-diagram-grid {
    width: 58px;
    height: 58px;
  }

  .support-diagram-grid::before,
  .support-diagram-grid::after {
    inset-inline-start: 12px;
    inset-inline-end: 12px;
  }

  .support-diagram-grid::before {
    top: 18px;
  }

  .support-diagram-grid::after {
    bottom: 18px;
  }

  .support-beam {
    width: 46px;
    height: 46px;
  }

  .support-beam-left {
    inset-inline-start: 22px;
  }

  .support-beam-right {
    inset-inline-end: 22px;
  }

  .support-preview-map {
    grid-template-columns: 1fr;
    grid-template-areas:
      "center"
      "left"
      "right";
    row-gap: 18px;
    margin-top: 28px;
  }

  .support-preview-center {
    min-height: 216px;
  }

  .support-preview-left,
  .support-preview-right {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .support-preview-right .service-visual {
    order: 2;
  }

  .support-preview-right .service-copy {
    order: 1;
    text-align: right;
  }

  .support-preview-left::after,
  .support-preview-right::after {
    display: none;
  }

  .services-modular {
    grid-template-columns: 1fr;
    grid-template-areas:
      "strategy"
      "transformation"
      "structure"
      "tools"
      "pmo"
      "process"
      "p3m3";
    margin-top: 30px;
    gap: 16px;
  }

  .service-module,
  .module-p3m3 {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 0;
    padding: 22px 20px;
    border-radius: 20px 12px 20px 12px;
    gap: 16px;
  }

  .service-module::before {
    width: 66px;
    height: 66px;
  }

  .service-module::after {
    width: 96px;
  }

  .service-module h3 {
    font-size: 1.08rem;
  }

  .service-module p {
    font-size: 0.95rem;
    line-height: 1.64;
    max-width: none;
  }

  .services-strategic {
    grid-template-columns: 1fr;
    grid-template-areas:
      "center"
      "left"
      "right"
      "bottom";
    row-gap: 18px;
    margin-top: 28px;
  }

  .services-center {
    min-height: 216px;
  }

  .services-center-shell {
    width: min(100%, 214px);
  }

  .services-center-shell::before {
    border-width: 6px;
  }

  .services-center-shell::after {
    inset: 22px;
    border-width: 11px;
  }

  .services-column {
    gap: 18px;
  }

  .service-spoke,
  .service-spoke-left,
  .service-spoke-right {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    transform: none;
  }

  .service-spoke-right .service-visual {
    order: 2;
  }

  .service-spoke-right .service-copy {
    order: 1;
  }

  .service-spoke-bottom {
    width: 100%;
    justify-items: stretch;
    text-align: right;
  }

  .service-spoke-bottom .service-copy {
    text-align: right;
    max-width: none;
  }

  .service-spoke-bottom .service-copy::before {
    left: 0;
    transform: none;
  }

  .services-strategic .service-visual {
    width: 96px;
    height: 96px;
    border-width: 7px;
  }

  .services-strategic .service-visual svg {
    width: 42px;
    height: 42px;
  }

.services-strategic .visual-strategy svg {
  width: 44px;
  height: 44px;
}


  .services-strategic .visual-p3m3 {
    width: 98px;
    height: 98px;
  }

  .service-spoke-left .service-visual::after,
  .service-spoke-right .service-visual::after,
  .service-spoke-bottom .service-visual::after {
    display: none;
  }

  .service-spoke h3 {
    font-size: 1.08rem;
  }

  .service-spoke p {
    font-size: 0.93rem;
    line-height: 1.68;
  }

  .featured-service {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .metric.wide {
    grid-column: auto;
  }

  .panel-soft,
  .service-card,
  .feature-item,
  .contact-form {
    padding: 24px;
  }

  .service-card,
  .feature-item {
    min-height: auto;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .brand-logo {
    width: 164px;
    height: 46px;
  }

  .footer-logo {
    width: 164px;
    height: 48px;
  }

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

@media (max-width: 480px) {
  .hero-abstract {
    display: none;
  }

  .hero-actions .button {
    max-width: 280px;
    margin-inline: auto;
  }

  .partners-intro {
    font-size: 0.98rem;
    line-height: 1.85;
  }

  .partner-block {
    gap: 18px;
    padding: 28px 20px 24px;
  }

  .partner-logo-frame {
    width: min(100%, 240px);
    min-height: 140px;
    padding: 18px;
  }

  .partner-logo {
    max-width: 100%;
  }

  .contact-copy > .contact-heading .eyebrow {
    font-size: 1.04rem;
  }

  .support-preview-map {
    grid-template-areas:
      "left"
      "right";
    row-gap: 14px;
  }

  .support-preview-left,
  .support-preview-right {
    grid-template-columns: 1fr;
    justify-items: stretch;
    text-align: right;
    gap: 8px;
  }

  .support-preview-right .service-visual,
  .support-preview-right .service-copy {
    order: initial;
  }

  .support-preview-left .service-copy,
  .support-preview-right .service-copy {
    text-align: right;
  }

  .support-preview-visual,
  .support-preview-left .service-visual,
  .support-preview-right .service-visual {
    display: none;
  }

  .support-preview-visual svg,
  #support-services .support-preview-visual svg {
    width: 28px;
    height: 28px;
  }

  .node-p3m3 .service-visual,
  .visual-p3m3 {
    display: none;
  }
}

@media (max-width: 768px) {
  #support-services::before,
  #support-services::after,
  #support-services .support-preview-shell::before,
  #support-services .support-preview-shell::after,
  #support-services .support-preview-map::before,
  #support-services .support-preview-map::after,
  #support-services .support-preview-left::after,
  #support-services .support-preview-right::after,
  #support-services .service-spoke-left::after,
  #support-services .service-spoke-right::after,
  #support-services .service-spoke-left .service-visual::after,
  #support-services .service-spoke-right .service-visual::after,
  #support-services .service-spoke-bottom .service-visual::after {
    display: none !important;
  }

  #support-services .support-preview-center,
  #support-services .support-preview-visual,
  #support-services .support-preview-left .service-visual,
  #support-services .support-preview-right .service-visual,
  #services .node-p3m3 .service-visual,
  #services .visual-p3m3 {
    display: none !important;
  }

  #support-services .support-preview-map {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "right";
    gap: 14px;
    margin-top: 18px !important;
    margin-bottom: 0 !important;
    padding-bottom: 0;
    transform: none !important;
  }

  #support-services .support-preview-left,
  #support-services .support-preview-right {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    transform: none !important;
    margin: 0;
    text-align: right;
  }

  #support-services .support-preview-left .service-copy,
  #support-services .support-preview-right .service-copy,
  #services .node-p3m3 > div {
    width: 100%;
    max-width: 100%;
    text-align: right;
  }

  #support-services .support-preview-left h3,
  #support-services .support-preview-right h3,
  #services .node-p3m3 h3 {
    font-size: 1.04rem;
    line-height: 1.55;
    margin-bottom: 8px;
  }

  #support-services .support-preview-left p,
  #support-services .support-preview-right p,
  #services .node-p3m3 p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  #services .node-p3m3 {
    display: block;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
    gap: 0;
    text-align: right;
  }
}

@media (max-width: 768px) {
  #services::before,
  #services::after,
  #services .services-shell::before,
  #services .services-shell::after,
  #services .services-strategic::before,
  #services .services-strategic::after,
  #services .service-spoke::before,
  #services .service-spoke::after,
  #services .service-spoke-left::before,
  #services .service-spoke-left::after,
  #services .service-spoke-right::before,
  #services .service-spoke-right::after,
  #services .service-spoke-bottom::before,
  #services .service-spoke-bottom::after,
  #services .node-p3m3::before,
  #services .node-p3m3::after,
  #services .service-visual::before,
  #services .service-visual::after,
  #services .node-p3m3 .service-visual::after {
    display: none !important;
  }

  #services .service-visual,
  #services .service-visual svg,
  #services .service-spoke-left .service-visual,
  #services .service-spoke-right .service-visual,
  #services .service-spoke-bottom .service-visual,
  #services .visual-p3m3,
  #services .node-p3m3 .service-visual {
    display: none !important;
  }

  #services .services-strategic {
    display: grid;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "left"
      "right"
      "bottom" !important;
    gap: 16px !important;
    column-gap: 0 !important;
    row-gap: 16px !important;
    margin-top: 20px;
    transform: none !important;
  }

  #services .services-column {
    display: contents;
    gap: 0 !important;
    padding-top: 0 !important;
  }

  #services .services-center,
  #services .services-center-shell,
  #services .services-center-core,
  #services .services-center-logo {
    display: none !important;
  }

  #services .service-spoke,
  #services .service-spoke-left,
  #services .service-spoke-right,
  #services .service-spoke-bottom,
  #services .service-spoke-anchor,
  #services .node-p3m3 {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: right !important;
    justify-items: stretch !important;
    align-items: start !important;
  }

  #services .node-p3m3 > div,
  #services .service-copy {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    text-align: right !important;
  }

  #services .service-copy::before,
  #services .service-spoke-bottom .service-copy::before {
    display: none !important;
  }

  #services .service-copy h3,
  #services .service-spoke h3,
  #services .node-p3m3 h3 {
    font-size: 1.04rem !important;
    line-height: 1.55 !important;
    margin-bottom: 8px !important;
    white-space: normal !important;
  }

  #services .service-copy p,
  #services .service-spoke p,
  #services .node-p3m3 p {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    max-width: 100% !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 480px) {
  #services .services-strategic {
    gap: 14px !important;
    row-gap: 14px !important;
  }

  #services .service-copy h3,
  #services .service-spoke h3,
  #services .node-p3m3 h3 {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  #services .service-copy p,
  #services .service-spoke p,
  #services .node-p3m3 p {
    font-size: 0.93rem !important;
    line-height: 1.68 !important;
  }
}
