/* =========================================================
   Shobelihle Enterprise — site styles
   ========================================================= */
@font-face{font-family:"Unbounded";font-style:normal;font-weight:300;font-display:swap;src:url("../fonts/unbounded-latin-300-normal.woff2") format("woff2");}
@font-face{font-family:"Unbounded";font-style:normal;font-weight:400;font-display:swap;src:url("../fonts/unbounded-latin-400-normal.woff2") format("woff2");}
@font-face{font-family:"Unbounded";font-style:normal;font-weight:500;font-display:swap;src:url("../fonts/unbounded-latin-500-normal.woff2") format("woff2");}
@font-face{font-family:"Manrope";font-style:normal;font-weight:400;font-display:swap;src:url("../fonts/manrope-latin-400-normal.woff2") format("woff2");}
@font-face{font-family:"Manrope";font-style:normal;font-weight:500;font-display:swap;src:url("../fonts/manrope-latin-500-normal.woff2") format("woff2");}
@font-face{font-family:"Manrope";font-style:normal;font-weight:600;font-display:swap;src:url("../fonts/manrope-latin-600-normal.woff2") format("woff2");}
@font-face{font-family:"Manrope";font-style:normal;font-weight:700;font-display:swap;src:url("../fonts/manrope-latin-700-normal.woff2") format("woff2");}

:root {
  --ink: #05080e;
  --ink-2: #0a111c;
  --navy: #0c1a2c;
  --blue: #1082ce;          /* brand blue from logo */
  --blue-2: #3aa8f5;
  --blue-3: #8fd0ff;
  --charcoal: #4f4c4c;      /* brand grey from logo */
  --text: #eef3f8;
  --muted: #9aa8b8;
  --line: rgba(255, 255, 255, .12);
  --glass: rgba(255, 255, 255, .055);
  --glass-strong: rgba(255, 255, 255, .09);
  --glass-border: rgba(255, 255, 255, .14);
  --radius: 22px;
  --radius-lg: 32px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --display: "Unbounded", "Manrope", system-ui, sans-serif;
  --body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --pad: clamp(20px, 5vw, 64px);
  --max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--blue-2); }
::selection { background: var(--blue); color: #fff; }

.skip { position: absolute; left: -999px; top: 8px; background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--blue-2); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section { position: relative; padding: clamp(96px, 14vw, 180px) 0; }

/* ---------- Glass ---------- */
.glass {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.025));
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.18);
  border-radius: var(--radius);
}
/* Cursor-follow sheen */
.glass::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, -30%), rgba(58,168,245,.16), transparent 45%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.glass:hover::after { opacity: 1; }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 22px;
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-3);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-2); box-shadow: 0 0 0 4px rgba(58,168,245,.18), 0 0 18px var(--blue-2); }
.h2 {
  font-family: var(--display); font-weight: 400; letter-spacing: -.02em;
  font-size: clamp(28px, 3.8vw, 52px); line-height: 1.1; margin: 0 0 28px; max-width: 16ch;
}
h3 { font-family: var(--display); font-weight: 500; letter-spacing: -.01em; }

/* ---------- Buttons ---------- */
.btn {
  --bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 15px;
  border: 1px solid transparent; background: var(--bg); cursor: pointer; font-family: var(--body);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s;
  white-space: nowrap;
}
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary { background: linear-gradient(135deg, var(--blue-2), var(--blue)); color: #fff; box-shadow: 0 10px 30px -10px rgba(16,130,206,.8), inset 0 1px 0 rgba(255,255,255,.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(58,168,245,.9), inset 0 1px 0 rgba(255,255,255,.35); }
.btn--ghost { border-color: rgba(255,255,255,.28); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.btn--ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn--whatsapp { background: rgba(37,211,102,.12); border-color: rgba(37,211,102,.4); color: #d7ffe6; margin-top: 12px; }
.btn--whatsapp svg { width: 20px; height: 20px; fill: #25d366; }
.btn--whatsapp:hover { background: rgba(37,211,102,.22); transform: translateY(-2px); }
.arrow { display: inline-block; transition: transform .35s var(--ease); }
.btn:hover .arrow, .link:hover .arrow { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 16px; left: 0; right: 0; z-index: 50; padding: 0 16px; transition: transform .5s var(--ease); }
.nav.is-hidden { transform: translateY(-140%); }
.nav__inner {
  max-width: var(--max); margin: 0 auto; display: flex; align-items: center; gap: 24px;
  padding: 10px 10px 10px 22px; border-radius: 999px;
  background: rgba(8, 14, 24, .35);
}
.nav.is-scrolled .nav__inner { background: rgba(8, 14, 24, .65); }
.nav__brand img { height: 56px; width: auto; }
.nav__links { display: flex; gap: 6px; margin-left: auto; }
.nav__links a { padding: 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 600; color: #d5dde6; transition: background .3s, color .3s; }
.nav__links a:hover, .nav__links a.is-active { background: rgba(255,255,255,.08); color: #fff; }
.nav__toggle { display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--glass-border); background: rgba(255,255,255,.06); cursor: pointer; position: relative; }
.nav__toggle span { position: absolute; left: 14px; right: 14px; height: 2px; background: #fff; border-radius: 2px; transition: transform .35s var(--ease), top .35s var(--ease); }
.nav__toggle span:first-child { top: 18px; }
.nav__toggle span:last-child { top: 26px; }
.nav__toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }
.mobile-menu { max-width: var(--max); margin: 10px auto 0; padding: 14px; display: grid; gap: 4px; background: rgba(8,14,24,.8); }
.mobile-menu[hidden] { display: none; }
.mobile-menu a:not(.btn) { padding: 14px 16px; border-radius: 14px; font-weight: 600; font-size: 18px; }
.mobile-menu a:not(.btn):hover { background: rgba(255,255,255,.06); }
.mobile-menu .btn { margin-top: 8px; padding: 16px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: 140px 0 110px; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__img { position: absolute; inset: -8% 0 auto 0; width: 100%; height: 125%; object-fit: cover; object-position: 50% 30%; will-change: transform; transform-origin: center top; }
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5,8,14,.94) 0%, rgba(5,8,14,.72) 42%, rgba(5,8,14,.25) 75%, rgba(5,8,14,.45) 100%),
    linear-gradient(180deg, rgba(5,8,14,.5) 0%, transparent 25%, transparent 60%, var(--ink) 100%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; will-change: transform; }
.orb--a { width: 46vw; height: 46vw; left: -14vw; top: 18%; background: radial-gradient(circle, rgba(16,130,206,.7), transparent 65%); }
.orb--b { width: 30vw; height: 30vw; right: 4vw; bottom: -8vw; background: radial-gradient(circle, rgba(58,168,245,.45), transparent 65%); }

.hero__grid { display: grid; grid-template-columns: 1.35fr .8fr; gap: 56px; align-items: end; }
.hero__title { font-family: var(--display); font-weight: 400; font-size: clamp(34px, 5vw, 74px); line-height: 1.04; letter-spacing: -.04em; margin: 0 0 30px; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero__title em { font-weight: 300; background: linear-gradient(100deg, #fff 0%, var(--blue-3) 40%, var(--blue-2) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.reveal-line { display: inline-block; transform: translateY(105%); transition: transform 1.1s var(--ease); }
.is-loaded .reveal-line { transform: none; }
.is-loaded .line:nth-child(2) .reveal-line { transition-delay: .1s; }
.is-loaded .line:nth-child(3) .reveal-line { transition-delay: .2s; }
.hero__lede { font-size: clamp(17px, 1.4vw, 20px); color: #c6d1dd; max-width: 50ch; margin: 0 0 38px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__card { padding: 26px; border-radius: var(--radius-lg); max-width: 380px; justify-self: end; }
.hero__card-head { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; margin-bottom: 6px; border-bottom: 1px solid var(--line); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--blue-3); }
.glance { margin: 0; }
.glance div { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.glance div:last-child { border-bottom: 0; padding-bottom: 0; }
.glance dt { color: var(--muted); font-size: 14px; }
.glance dd { margin: 0; font-weight: 700; text-align: right; font-size: 15px; }

.scroll-cue { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); }
.scroll-cue__line { width: 1px; height: 46px; background: linear-gradient(var(--blue-2), transparent); position: relative; overflow: hidden; }
.scroll-cue__line::after { content: ""; position: absolute; left: 0; top: -40%; width: 1px; height: 40%; background: #fff; animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { to { top: 110%; } }

/* ---------- Ticker ---------- */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 22px 0; background: linear-gradient(90deg, rgba(16,130,206,.08), rgba(255,255,255,.02), rgba(16,130,206,.08)); }
.ticker__track { display: flex; gap: 32px; width: max-content; animation: ticker 48s linear infinite; font-family: var(--display); font-size: clamp(16px, 1.6vw, 22px); font-weight: 300; white-space: nowrap; }
.ticker__track i { color: var(--blue-2); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(48px, 7vw, 110px); align-items: center; }
.about__visual { position: relative; }
.about__frame { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: 0 60px 100px -40px rgba(0,0,0,.8); border: 1px solid var(--glass-border); }
.about__frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 1.4s var(--ease); }
.about__visual:hover .about__frame img { transform: scale(1.09); }
.about__badge { position: absolute; right: -28px; bottom: 44px; padding: 22px 26px; display: flex; align-items: center; gap: 16px; border-radius: 24px; background: rgba(10,17,28,.45); }
.about__badge strong { font-family: var(--display); font-weight: 400; font-size: 44px; line-height: 1; color: var(--blue-2); }
.about__badge span { font-size: 14px; color: #d5dde6; line-height: 1.35; font-weight: 600; }
.about__copy p { color: #c3cdd8; max-width: 56ch; }
.sectors { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.sector { padding: 14px 20px; border-radius: 999px; font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 12px; }
.sector__n { font-family: var(--display); font-size: 11px; color: var(--blue-3); font-weight: 400; }

/* ---------- Section head ---------- */
.section-head { margin-bottom: clamp(48px, 6vw, 80px); }
.section-head__lede { color: #b7c2cf; max-width: 52ch; font-size: 18px; margin: 0; }
.section-head--split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.section-head--split .h2 { margin-bottom: 0; }

/* ---------- Services ---------- */
.services { overflow: hidden; isolation: isolate; }
.services__bg { position: absolute; inset: 0; z-index: -1; }
.services__bg img { position: absolute; left: 0; top: -20%; width: 100%; height: 140%; object-fit: cover; filter: blur(3px) saturate(.9); opacity: .38; will-change: transform; }
.services__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--ink) 0%, rgba(5,8,14,.72) 22%, rgba(8,20,36,.7) 60%, var(--ink) 100%); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service { padding: 30px 26px 30px; display: flex; flex-direction: column; min-height: 440px; transition: transform .5s var(--ease), border-color .5s; }
.service:hover { transform: translateY(-8px); border-color: rgba(58,168,245,.45); }
.service__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 64px; }
.service__idx { font-family: var(--display); font-size: 13px; color: var(--muted); }
.service__icon { width: 46px; height: 46px; fill: none; stroke: var(--blue-2); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service h3 { font-size: 22px; margin: 0 0 12px; }
.service p { color: #b0bccb; font-size: 15px; margin: 0 0 24px; }
.service ul { list-style: none; padding: 18px 0 0; margin: auto 0 0; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.service li { font-size: 15px; font-weight: 600; display: flex; gap: 10px; align-items: baseline; }
.service li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-2); transform: translateY(-2px); }

/* ---------- Band ---------- */
.band { position: relative; min-height: 80vh; display: flex; align-items: center; overflow: hidden; isolation: isolate; padding: 120px 0; }
.band__bg { position: absolute; inset: 0; z-index: -1; }
.band__bg img { position: absolute; left: 0; top: -25%; width: 100%; height: 150%; object-fit: cover; object-position: 50% 40%; will-change: transform; }
.band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--ink) 0%, rgba(5,8,14,.55) 30%, rgba(5,8,14,.6) 70%, var(--ink) 100%), radial-gradient(ellipse at center, transparent 0%, rgba(5,8,14,.6) 80%); }
.band__inner { text-align: center; }
.band__quote { font-family: var(--display); font-weight: 300; font-size: clamp(26px, 3.8vw, 52px); line-height: 1.2; letter-spacing: -.02em; max-width: 22ch; margin: 0 auto 28px; }
.band__cite { color: var(--blue-3); letter-spacing: .14em; text-transform: uppercase; font-size: 13px; font-weight: 700; }

/* ---------- Values ---------- */
.values { background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(16,130,206,.14), transparent 70%); }
.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value { padding: 30px 26px; min-height: 280px; display: flex; flex-direction: column; transition: transform .5s var(--ease); }
.value:hover { transform: translateY(-6px); }
.value__n { font-family: var(--display); font-weight: 300; font-size: 56px; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(143,208,255,.55); margin-bottom: auto; }
.value h3 { font-size: 20px; margin: 40px 0 10px; }
.value p { color: #b0bccb; font-size: 15px; margin: 0; }

/* ---------- Credentials ---------- */
.credentials { padding-top: 0; }
.cred { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; padding: clamp(32px, 5vw, 64px); border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, rgba(16,130,206,.22), rgba(255,255,255,.03) 55%); }
.cred__intro p:not(.eyebrow) { color: #c3cdd8; max-width: 44ch; }
.cred__list { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.cred__item { padding: 26px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(5,8,14,.25); }
.cred__item dt { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 12px; }
.cred__item dd { margin: 0 0 6px; font-family: var(--display); font-weight: 400; font-size: clamp(22px, 2.4vw, 32px); line-height: 1.1; }
.cred__item dd.mono { font-size: clamp(16px, 1.6vw, 21px); letter-spacing: .02em; }
.cred__item .sep { color: var(--blue-2); }
.cred__item small { color: #9aa8b8; font-size: 13px; }

/* ---------- Leader ---------- */
.leader { padding-top: 0; }
.leader__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.leader__card { display: flex; gap: 28px; padding: 34px; align-items: flex-start; }
.leader__avatar { flex: none; width: 88px; height: 88px; border-radius: 24px; display: grid; place-items: center; font-family: var(--display); font-size: 26px; background: linear-gradient(135deg, var(--blue-2), var(--blue) 60%, #0b4e7d); box-shadow: 0 20px 40px -18px rgba(16,130,206,.9), inset 0 1px 0 rgba(255,255,255,.35); }
.leader__card h3 { font-size: 24px; margin: 4px 0 2px; }
.leader__role { color: var(--blue-3); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; margin: 0 0 14px; }
.leader__card p:not(.leader__role) { color: #b7c2cf; margin: 0 0 18px; }
.link { font-weight: 700; color: var(--blue-3); display: inline-flex; gap: 8px; }

/* ---------- Contact ---------- */
.contact { overflow: hidden; border-top: 1px solid var(--line); }
.contact__glow { position: absolute; width: 70vw; height: 70vw; left: 50%; top: 40%; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(16,130,206,.22), transparent 60%); pointer-events: none; }
.contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: start; position: relative; }
.contact__info > p { color: #c3cdd8; max-width: 44ch; }
.contact__list { list-style: none; padding: 0; margin: 36px 0 24px; display: grid; gap: 22px; }
.contact__list li { display: grid; gap: 2px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.contact__label { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 4px; }
.contact__list a { font-size: 18px; font-weight: 600; width: fit-content; background: linear-gradient(var(--blue-2), var(--blue-2)) 0 100% / 0 1px no-repeat; transition: background-size .4s var(--ease), color .3s; overflow-wrap: anywhere; }
.contact__list a:hover { background-size: 100% 1px; color: #fff; }

.form { padding: clamp(26px, 4vw, 44px); border-radius: var(--radius-lg); display: grid; gap: 18px; }
.form h3 { font-size: 24px; margin: 0 0 6px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field span, .chips legend { font-size: 13px; font-weight: 700; color: #c6d1dd; }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 16px; color: #fff; padding: 14px 16px; border-radius: 14px;
  background: rgba(5,8,14,.45); border: 1px solid rgba(255,255,255,.14); transition: border-color .3s, box-shadow .3s, background .3s; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue-2); box-shadow: 0 0 0 4px rgba(58,168,245,.18); background: rgba(5,8,14,.6); }
.field.is-invalid input, .field.is-invalid textarea { border-color: #ff7b7b; }
.chips { border: 0; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips legend { margin-bottom: 10px; padding: 0; }
.chips label { cursor: pointer; }
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips label span { display: inline-block; padding: 10px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); font-size: 14px; font-weight: 600; transition: all .3s var(--ease); background: rgba(255,255,255,.03); }
.chips input:checked + span { background: rgba(58,168,245,.2); border-color: var(--blue-2); color: #fff; }
.chips input:focus-visible + span { outline: 2px solid var(--blue-2); outline-offset: 2px; }
.form__note { margin: 0; font-size: 14px; color: var(--blue-3); min-height: 1.4em; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 80px 0 36px; background: linear-gradient(180deg, var(--ink), #03050a); }
.footer__top { display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center; padding-bottom: 56px; border-bottom: 1px solid var(--line); }
.footer__top img { height: 88px; width: auto; }
.footer__tag { color: var(--muted); max-width: 36ch; margin: 0; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding: 56px 0; }
.footer__cols h4 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 0 0 18px; }
.footer__cols a, .footer__cols span { display: block; color: #d5dde6; margin-bottom: 10px; font-size: 15px; overflow-wrap: anywhere; }
.footer__cols a:hover { color: var(--blue-2); }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--line); color: #7f8c9b; font-size: 13px; }
.to-top:hover { color: #fff; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal, .no-js .reveal-line { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .services__grid, .values__grid { grid-template-columns: repeat(2, 1fr); }
  .service { min-height: 380px; }
  .cred { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .hero__grid, .about__grid, .contact__grid, .leader__grid, .section-head--split { grid-template-columns: 1fr; }
  .hero { align-items: flex-end; }
  .hero__card { justify-self: start; max-width: 100%; width: 100%; }
  .about__badge { right: 16px; }
  .footer__top { grid-template-columns: 1fr; justify-items: start; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .nav { top: 10px; padding: 0 10px; }
  .nav__brand img { height: 38px; }
  .services__grid, .values__grid, .form__row, .cred__list, .footer__cols { grid-template-columns: 1fr; }
  .service { min-height: 0; }
  .service__top { margin-bottom: 36px; }
  .value { min-height: 0; }
  .value h3 { margin-top: 28px; }
  .leader__card { flex-direction: column; }
  .hero__actions .btn { flex: 1 1 100%; }
  .about__badge { padding: 16px 18px; bottom: 20px; }
  .about__badge strong { font-size: 32px; }
  .scroll-cue { display: none; }
}

/* Browsers without backdrop-filter get a solid fallback */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass { background: rgba(14, 24, 38, .92); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal, .reveal-line { opacity: 1; transform: none; }
}

/* ---------- Our work / gallery ---------- */
.work__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 18px; }
.work__item { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-border); box-shadow: 0 40px 80px -40px rgba(0,0,0,.8); }
.work__item--tall { grid-row: span 2; }
.work__item--wide { grid-column: span 2; grid-row: span 2; }
.work__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.work__item:hover img { transform: scale(1.06); }
.work__item::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,8,14,.75)); z-index: 1; pointer-events: none; }
.work__item figcaption { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; padding: 14px 18px; border-radius: 16px; font-weight: 700; font-size: 15px; background: rgba(8,14,24,.35); }
.work__item figcaption span { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--blue-3); margin-bottom: 2px; }
@media (max-width: 900px) {
  .work__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .work__item--wide { grid-column: span 1; }
}
@media (max-width: 600px) {
  .work__grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .work__item--tall { grid-row: span 2; }
  .work__item--wide { grid-row: span 1; }
}

/* ---------- Six-card services layout ---------- */
.services__grid { grid-template-columns: repeat(3, 1fr); }
.service { min-height: 400px; }
@media (max-width: 1100px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services__grid { grid-template-columns: 1fr; } .service { min-height: 0; } }

/* ---------- Clients ---------- */
.clients { padding-top: 0; }
.clients__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.client { padding: 34px 30px; min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; transition: transform .5s var(--ease), border-color .5s; }
.client:hover { transform: translateY(-6px); border-color: rgba(58,168,245,.45); }
.client__sector { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.client strong { font-family: var(--display); font-weight: 400; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.15; letter-spacing: -.02em; }
.client strong em { color: var(--blue-2); }
@media (max-width: 900px) { .clients__grid { grid-template-columns: 1fr; } .client { min-height: 0; } }
.client__logo { height: 110px; border-radius: 16px; background: #fff; display: grid; place-items: center; padding: 18px 24px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.04), 0 18px 40px -24px rgba(0,0,0,.8); }
.client__logo img { max-height: 74px; max-width: 100%; width: auto; object-fit: contain; }
.client { gap: 22px; justify-content: flex-start; }
