/* =========================================================
   V P D & Associates — Chartered Accountants
   styles.css
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --navy-950: #04080f;
  --navy-900: #070e1a;
  --navy-800: #0b1525;
  --navy-700: #101d33;
  --navy-600: #16263f;
  --navy-500: #22365a;

  --gold: #c9a35c;
  --gold-light: #ead49c;
  --gold-dark: #9c7a36;

  --cloud: #f5f6f8;
  --mist: #eceef1;
  --white: #ffffff;
  --ink: #0b1525;

  --text: #444d5e;
  --text-soft: #626b7c;
  --text-light: rgba(255, 255, 255, 0.7);
  --border: #e6e8ec;
  --border-dark: rgba(255, 255, 255, 0.1);

  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --radius: 16px;
  --radius-lg: 24px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-card: 0 1px 2px rgba(7, 14, 26, 0.04), 0 18px 42px -20px rgba(7, 14, 26, 0.2);
  --shadow-lift: 0 2px 8px rgba(7, 14, 26, 0.06), 0 40px 70px -32px rgba(7, 14, 26, 0.34);
  --nav-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

::selection { background: var(--gold); color: var(--navy-900); }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--cloud); }
::-webkit-scrollbar-thumb { background: #c4cad4; border-radius: 10px; border: 3px solid var(--cloud); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 999;
  background: var(--navy-800);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

body.menu-open { overflow: hidden; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  position: relative;
  padding: clamp(74px, 10vw, 132px) 0;
}
.section--muted { background: var(--cloud); }
.section--dark {
  background: var(--navy-900);
  color: var(--text-light);
}
section[id] { scroll-margin-top: 76px; }

.section-head {
  max-width: 660px;
  margin: 0 auto clamp(44px, 6vw, 72px);
  text-align: center;
}

/* ---------- Typography helpers ---------- */
.icon {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.eyebrow__dot {
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.95rem, 3.7vw, 3.05rem);
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--ink);
}
.section--dark .section-title { color: #fff; }

.section-intro {
  margin-top: 20px;
  font-size: 1.06rem;
  color: var(--text-soft);
}
.section--dark .section-intro { color: var(--text-light); }

.text-gold { color: var(--gold-dark); }
.text-gradient {
  background: linear-gradient(100deg, var(--gold) 10%, var(--gold-light) 55%, var(--gold) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.94rem;
  padding: 15px 28px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease),
    box-shadow 0.35s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
.btn:hover .icon { transform: translateX(4px); }

.btn--primary {
  background: var(--gold);
  color: var(--navy-900);
  box-shadow: 0 10px 26px -12px rgba(201, 163, 92, 0.7);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -12px rgba(201, 163, 92, 0.75);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.btn--sm { padding: 11px 22px; font-size: 0.86rem; }
.btn--block { width: 100%; }

/* ---------- Reveal animations ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    height 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  height: 68px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -22px rgba(7, 14, 26, 0.4);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
.logo__mark {
  color: var(--gold);
  width: 44px;
  height: 44px;
  flex: none;
  transition: transform 0.4s var(--ease);
}
.logo__mark svg { width: 100%; height: 100%; }
.logo:hover .logo__mark { transform: rotate(-6deg) scale(1.05); }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color 0.4s var(--ease);
}
.logo__tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.nav.scrolled .logo__name { color: var(--ink); }

/* Menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__menu > a:not(.btn) {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  padding: 9px 15px;
  border-radius: 8px;
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav__menu > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__menu > a:not(.btn):hover { color: #fff; }
.nav__menu > a:not(.btn):hover::after { transform: scaleX(1); }
.nav.scrolled .nav__menu > a:not(.btn) { color: var(--text); }
.nav.scrolled .nav__menu > a:not(.btn):hover { color: var(--ink); }
.nav__menu > a:not(.btn).active { color: #fff; }
.nav__menu > a:not(.btn).active::after { transform: scaleX(1); }
.nav.scrolled .nav__menu > a:not(.btn).active { color: var(--gold-dark); }
.nav__cta { margin-left: 12px; }

.nav__toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav.scrolled .nav__toggle {
  background: var(--cloud);
  border-color: var(--border);
  color: var(--ink);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 90px;
  background: radial-gradient(120% 90% at 80% 0%, #13233f 0%, var(--navy-900) 48%, var(--navy-950) 100%);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(100% 70% at 50% 30%, #000 0%, transparent 78%);
  mask-image: radial-gradient(100% 70% at 50% 30%, #000 0%, transparent 78%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.blob--gold {
  width: 460px; height: 460px;
  top: -120px; right: -90px;
  background: radial-gradient(circle, rgba(201, 163, 92, 0.4), transparent 68%);
  animation: float1 16s var(--ease) infinite;
}
.blob--blue {
  width: 520px; height: 520px;
  bottom: -200px; left: -130px;
  background: radial-gradient(circle, rgba(43, 75, 130, 0.55), transparent 70%);
  animation: float2 20s var(--ease) infinite;
}
.blob--ring {
  width: 340px; height: 340px;
  top: 40%; left: 52%;
  border: 1px solid rgba(201, 163, 92, 0.16);
  background: transparent;
  filter: none;
  animation: spin 60s linear infinite;
}
@keyframes float1 {
  50% { transform: translate(-46px, 60px) scale(1.12); }
}
@keyframes float2 {
  50% { transform: translate(56px, -50px) scale(1.1); }
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 56px;
  align-items: center;
}

.hero__content { max-width: 600px; }
.hero .eyebrow--light .eyebrow__dot {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5.4vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero__title .text-gradient { display: inline-block; }
.hero__subtitle {
  margin-top: 24px;
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.74);
  max-width: 540px;
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__trust {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}
.hero__trust .icon { width: 18px; height: 18px; color: var(--gold); }

/* Hero scroll cue */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.hero__scroll .icon { width: 20px; height: 20px; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(6px); } }

/* Hero dashboard visual */
.hero__visual { position: relative; }
.dashboard {
  position: relative;
  background: linear-gradient(165deg, rgba(20, 32, 54, 0.96), rgba(11, 21, 37, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 50px 90px -40px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}
.dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(150deg, rgba(201, 163, 92, 0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.dashboard__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.dashboard__label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.dashboard__title {
  display: block;
  margin-top: 3px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.16rem;
  color: #fff;
}
.dashboard__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 11px;
  border-radius: 100px;
}
.dashboard__live .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: ping 2s var(--ease) infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.dashboard__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.stat-tile {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 15px;
}
.stat-tile__label {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.6);
}
.stat-tile__value {
  display: block;
  margin-top: 5px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  color: #fff;
}
.stat-tile__trend {
  position: absolute;
  top: 14px; right: 14px;
  width: 20px; height: 20px;
  color: var(--gold);
}

.dashboard__chart {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 16px;
}
.dashboard__chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 10px;
}
.chart-tag {
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(201, 163, 92, 0.13);
  padding: 3px 9px;
  border-radius: 100px;
}
.chart {
  width: 100%;
  height: 92px;
  overflow: visible;
}
.chart__line {
  stroke: var(--gold);
  stroke-width: 2.4;
  stroke-dasharray: 640;
  stroke-dashoffset: 640;
  filter: drop-shadow(0 4px 10px rgba(201, 163, 92, 0.45));
  animation: draw 2.4s var(--ease) 0.4s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.chart__area { opacity: 0; animation: fadeIn 1.4s ease 1.6s forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.chart__dot {
  fill: var(--gold-light);
  opacity: 0;
  animation: fadeIn 0.5s ease 2.5s forwards, pulse 2.4s ease 2.6s infinite;
}
@keyframes pulse {
  50% { r: 5.4; }
}

.dashboard__bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 56px;
  margin-top: 14px;
}
.bar {
  flex: 1;
  height: var(--h);
  background: rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  transform: scaleY(0);
  transform-origin: bottom;
  animation: grow 0.8s var(--ease) forwards;
}
.bar--accent { background: linear-gradient(180deg, var(--gold-light), var(--gold)); }
.bar:nth-child(1) { animation-delay: 1.8s; }
.bar:nth-child(2) { animation-delay: 1.9s; }
.bar:nth-child(3) { animation-delay: 2s; }
.bar:nth-child(4) { animation-delay: 2.1s; }
.bar:nth-child(5) { animation-delay: 2.2s; }
.bar:nth-child(6) { animation-delay: 2.3s; }
.bar:nth-child(7) { animation-delay: 2.4s; }
@keyframes grow { to { transform: scaleY(1); } }

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  padding: 12px 15px;
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.6);
}
.float-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--ink);
}
.float-card small { font-size: 0.7rem; color: var(--text-soft); }
.float-card__icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--gold), var(--gold-dark));
  color: #fff;
}
.float-card__icon .icon { width: 19px; height: 19px; }
.float-card--1 { top: 30px; left: -42px; animation: drift 7s ease-in-out infinite; }
.float-card--2 { bottom: 44px; right: -36px; animation: drift 8s ease-in-out infinite 1s; }
@keyframes drift { 50% { transform: translateY(-14px); } }

/* =========================================================
   ABOUT
   ========================================================= */
.about__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(201, 163, 92, 0.4);
}
.pillar-card__icon {
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 15px;
  background: linear-gradient(155deg, var(--navy-700), var(--navy-800));
  color: var(--gold);
  margin-bottom: 22px;
  transition: transform 0.4s var(--ease);
}
.pillar-card:hover .pillar-card__icon { transform: rotate(-8deg) scale(1.06); }
.pillar-card__icon .icon { width: 28px; height: 28px; }
.pillar-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.pillar-card p { color: var(--text-soft); }
.pillar-card__list { display: flex; flex-direction: column; gap: 10px; }
.pillar-card__list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-soft);
  font-size: 0.96rem;
}
.pillar-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(201, 163, 92, 0.2);
  box-shadow: inset 0 0 0 4px var(--gold);
}

/* Stats */
.stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: linear-gradient(155deg, var(--navy-700), var(--navy-900));
  border-radius: var(--radius-lg);
  padding: 46px 36px;
  position: relative;
  overflow: hidden;
}
.stats::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  right: -80px; top: -120px;
  background: radial-gradient(circle, rgba(201, 163, 92, 0.22), transparent 70%);
}
.stat {
  position: relative;
  text-align: center;
  padding: 0 12px;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 12%;
  height: 76%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.stat__icon {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(201, 163, 92, 0.12);
  color: var(--gold);
  margin-bottom: 14px;
}
.stat__icon .icon { width: 22px; height: 22px; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  line-height: 1;
  color: #fff;
}
.stat__label {
  display: block;
  margin-top: 9px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.62);
}

/* =========================================================
   LEADERSHIP
   ========================================================= */
.leader__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.leader-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.leader-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 4;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(201, 163, 92, 0.35);
}
.leader-card:hover::before { transform: scaleX(1); }

/* Photo */
.leader-card__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, var(--navy-600), var(--navy-900));
  overflow: hidden;
}
.leader-card__avatar {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.6rem;
  letter-spacing: 0.04em;
  color: var(--gold-light);
}
.leader-card__img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
}
.leader-card:hover .leader-card__img { transform: scale(1.04); }
.leader-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(7, 14, 26, 0.52), transparent 42%);
}
.leader-card__linkedin {
  position: absolute;
  right: 16px; bottom: 16px;
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy-700);
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.55);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.leader-card__linkedin:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}
.leader-card__linkedin .icon { width: 21px; height: 21px; }

/* Body */
.leader-card__body { padding: 26px 28px 30px; }
.leader-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.32rem;
  color: var(--ink);
}
.leader-card__role {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-top: 3px;
}
.leader-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
}
.leader-card__tags span {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--navy-600);
  background: var(--cloud);
  border: 1px solid var(--border);
  padding: 5px 11px;
  border-radius: 100px;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(201, 163, 92, 0.07), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(201, 163, 92, 0.4);
}
.service-card:hover::after { opacity: 1; }
.service-card__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 13px;
  background: linear-gradient(155deg, var(--navy-700), var(--navy-900));
  color: var(--gold);
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.service-card:hover .service-card__icon {
  transform: rotate(-8deg) scale(1.05);
  background: linear-gradient(155deg, var(--gold), var(--gold-dark));
  color: #fff;
}
.service-card__icon .icon { width: 26px; height: 26px; }
.service-card h3 {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 9px;
}
.service-card p {
  position: relative;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.service-card__more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gold-dark);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.service-card__more .icon { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.service-card:hover .service-card__more .icon { transform: translateX(4px); }

/* =========================================================
   INDUSTRIES
   ========================================================= */
.industries .section-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.industries .container { position: relative; z-index: 1; }
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.industry-card {
  position: relative;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 34px 28px 30px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.industry-card::before {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  right: -90px; top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 163, 92, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.industry-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 163, 92, 0.4);
}
.industry-card:hover::before { opacity: 1; }
.industry-card__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}
.industry-card__icon {
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 15px;
  background: rgba(201, 163, 92, 0.12);
  border: 1px solid rgba(201, 163, 92, 0.22);
  color: var(--gold-light);
  margin: 16px 0 20px;
  transition: transform 0.4s var(--ease);
}
.industry-card:hover .industry-card__icon { transform: rotate(-8deg) scale(1.07); }
.industry-card__icon .icon { width: 28px; height: 28px; }
.industry-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.16rem;
  color: #fff;
  margin-bottom: 10px;
}
.industry-card p {
  font-size: 0.91rem;
  color: rgba(255, 255, 255, 0.62);
}
.industry-card__arrow {
  position: absolute;
  top: 28px; right: 26px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.35s var(--ease), transform 0.35s var(--ease);
}
.industry-card__arrow .icon { width: 22px; height: 22px; }
.industry-card:hover .industry-card__arrow {
  color: var(--gold);
  transform: translate(3px, -3px);
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.why-card {
  grid-column: span 2;
  display: flex;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.why-card:nth-child(4) { grid-column: 2 / span 2; }
.why-card:nth-child(5) { grid-column: span 2; }
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201, 163, 92, 0.4);
}
.why-card__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 13px;
  background: linear-gradient(155deg, var(--gold), var(--gold-dark));
  color: #fff;
  transition: transform 0.4s var(--ease);
}
.why-card:hover .why-card__icon { transform: rotate(-8deg) scale(1.06); }
.why-card__icon .icon { width: 25px; height: 25px; }
.why-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.why-card p { font-size: 0.9rem; color: var(--text-soft); }

/* =========================================================
   TECHNOLOGY
   ========================================================= */
.tech__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tech-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.tech-badge:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201, 163, 92, 0.4);
}
.tech-badge__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 13px;
  background: linear-gradient(155deg, var(--navy-700), var(--navy-900));
  color: var(--gold);
  transition: transform 0.4s var(--ease);
}
.tech-badge:hover .tech-badge__icon { transform: scale(1.07); }
.tech-badge__icon .icon { width: 26px; height: 26px; }
.tech-badge strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--ink);
}
.tech-badge small { font-size: 0.82rem; color: var(--text-soft); }

/* =========================================================
   PROCESS
   ========================================================= */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}
.process__steps::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-step__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px; height: 76px;
  margin: 0 auto 22px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--gold-dark);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
}
.process-step:hover .process-step__icon {
  transform: translateY(-6px);
  background: linear-gradient(155deg, var(--navy-700), var(--navy-900));
  color: var(--gold);
}
.process-step__icon .icon { width: 30px; height: 30px; }
.process-step__num {
  position: absolute;
  top: -10px; right: calc(50% - 50px);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--navy-900);
  background: var(--gold);
  border: 3px solid var(--white);
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--ink);
  margin-bottom: 9px;
}
.process-step p { font-size: 0.92rem; color: var(--text-soft); padding: 0 6px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials .section-grid { position: absolute; inset: 0; z-index: 0; }
.testimonials .container { position: relative; z-index: 1; }
.slider { max-width: 820px; margin: 0 auto; }
.slider__viewport { overflow: hidden; border-radius: var(--radius-lg); }
.slider__track {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.testimonial {
  flex: 0 0 100%;
  padding: 48px clamp(28px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 6px; left: 32px;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(201, 163, 92, 0.2);
}
.testimonial__stars {
  display: inline-flex;
  gap: 4px;
  color: var(--gold);
  margin-bottom: 20px;
}
.testimonial__stars .icon { width: 19px; height: 19px; }
.testimonial__quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.9vw, 1.32rem);
  line-height: 1.6;
  color: #fff;
}
.testimonial__author {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 28px;
}
.testimonial__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--gold-light);
  background: linear-gradient(155deg, var(--navy-600), var(--navy-900));
  border: 1px solid rgba(201, 163, 92, 0.3);
}
.testimonial__author span:last-child { text-align: left; }
.testimonial__author strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.testimonial__author small { font-size: 0.82rem; color: var(--gold-light); }

.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}
.slider__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.slider__btn:hover {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.slider__btn .icon { width: 20px; height: 20px; }
.slider__dots { display: flex; gap: 9px; }
.slider__dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
}
.slider__dots button.active {
  width: 28px;
  border-radius: 100px;
  background: var(--gold);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
}
.contact__form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow-card);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cloud);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 13px 15px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder,
.field textarea::placeholder { color: #9aa2b1; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 163, 92, 0.13);
}
.field input.invalid,
.field textarea.invalid { border-color: #e0635a; background: #fdf3f2; }
.contact-form__note {
  font-size: 0.86rem;
  font-weight: 600;
  min-height: 1.2em;
}
.contact-form__note.ok { color: #1f9d6b; }
.contact-form__note.err { color: #d6463c; }

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.info-card:hover { border-color: rgba(201, 163, 92, 0.4); transform: translateY(-3px); }
.info-card--split {
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
}
.info-card__item {
  display: flex;
  gap: 13px;
  flex: 1;
  min-width: 180px;
}
.info-card__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(155deg, var(--navy-700), var(--navy-900));
  color: var(--gold);
}
.info-card__icon .icon { width: 22px; height: 22px; }
.info-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.info-card p { font-size: 0.9rem; color: var(--text-soft); }
.info-card a { transition: color 0.25s var(--ease); }
.info-card a:hover { color: var(--gold-dark); }
.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
}
.contact__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.62);
  padding: 76px 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
}
.logo--light .logo__name { color: #fff; }
.footer__about {
  margin: 22px 0;
  font-size: 0.92rem;
  max-width: 320px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark);
  color: #fff;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), color 0.3s var(--ease);
}
.footer__social a:hover {
  background: var(--gold);
  color: var(--navy-900);
  transform: translateY(-3px);
}
.footer__social .icon { width: 20px; height: 20px; }
.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: #fff;
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 0.92rem; transition: color 0.25s var(--ease), padding 0.25s var(--ease); }
.footer__col a:hover { color: var(--gold-light); }
.footer__col ul:not(.footer__contact) a:hover { padding-left: 6px; }
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}
.footer__contact .icon { width: 18px; height: 18px; color: var(--gold); margin-top: 2px; }
.footer__bottom {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer__disclaimer { font-size: 0.78rem; line-height: 1.6; max-width: 940px; }

/* =========================================================
   MODAL
   ========================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[hidden] { display: none; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 15, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.modal.open .modal__overlay { opacity: 1; }
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lift);
  transform: translateY(28px) scale(0.97);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.modal.open .modal__dialog { transform: none; opacity: 1; }
.modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--cloud);
  border: 1px solid var(--border);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.modal__close:hover { background: var(--navy-800); color: #fff; transform: rotate(90deg); }
.modal__close .icon { width: 20px; height: 20px; }
.modal__icon {
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  border-radius: 15px;
  background: linear-gradient(155deg, var(--gold), var(--gold-dark));
  color: #fff;
  margin-bottom: 20px;
}
.modal__icon .icon { width: 30px; height: 30px; }
.modal__dialog .eyebrow { margin-bottom: 10px; }
.modal__dialog h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.modal__dialog > p { color: var(--text-soft); }
.modal__subhead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 24px 0 14px;
}
.modal__list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.modal__list li {
  display: flex;
  gap: 11px;
  font-size: 0.93rem;
  color: var(--text-soft);
}
.modal__list li .icon {
  width: 20px; height: 20px;
  flex: none;
  color: var(--gold-dark);
  margin-top: 2px;
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy-800);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease),
    visibility 0.35s, background 0.3s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold); color: var(--navy-900); }
.to-top .icon { width: 22px; height: 22px; transform: rotate(180deg); }

/* ---------- Leadership card: experience & tools ---------- */
.leader-card__exp { margin-top: 18px; }
.leader-card__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 9px;
}
.leader-card__label .icon { width: 15px; height: 15px; }
.leader-card__exp ul { display: flex; flex-direction: column; gap: 6px; }
.leader-card__exp li {
  position: relative;
  padding-left: 16px;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.leader-card__exp li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.leader-card__exp li em { font-style: normal; color: #9aa2b1; font-size: 0.82rem; }
.leader-card__tools {
  margin-top: 16px;
  font-size: 0.84rem;
  color: var(--text-soft);
}
.leader-card__tools span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-right: 7px;
}

/* ---------- Services: grouped layout ---------- */
.services__group + .services__group { margin-top: 56px; }
.services__group-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.16rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.services__group-title::before {
  content: "";
  flex: none;
  width: 26px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.services__group-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ---------- Technology note callout ---------- */
.tech__note {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900));
  border-radius: var(--radius);
  padding: 26px 32px;
  position: relative;
  overflow: hidden;
}
.tech__note::after {
  content: "";
  position: absolute;
  width: 240px; height: 240px;
  right: -90px; top: -110px;
  background: radial-gradient(circle, rgba(201, 163, 92, 0.2), transparent 70%);
}
.tech__note-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 13px;
  background: rgba(201, 163, 92, 0.14);
  border: 1px solid rgba(201, 163, 92, 0.25);
  color: var(--gold);
}
.tech__note-icon .icon { width: 26px; height: 26px; }
.tech__note p {
  position: relative;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.74);
}
.tech__note strong { color: #fff; font-weight: 600; }

/* =========================================================
   WELCOME POPUP
   ========================================================= */
.welcome-pop {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.welcome-pop[hidden] { display: none; }
.welcome-pop__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 15, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.welcome-pop.open .welcome-pop__overlay { opacity: 1; }
.welcome-pop__dialog {
  position: relative;
  width: 100%;
  max-width: 720px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  transform: scale(0.9) translateY(24px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.welcome-pop.open .welcome-pop__dialog { transform: none; opacity: 1; }
.welcome-pop__dialog img { display: block; width: 100%; height: auto; }
.welcome-pop__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(11, 21, 37, 0.92);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.welcome-pop__close:hover {
  background: var(--gold);
  color: var(--navy-900);
  transform: rotate(90deg);
}
.welcome-pop__close .icon { width: 22px; height: 22px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: 64px; }
  .hero__content { max-width: 640px; }
  .hero__visual { max-width: 460px; margin: 0 auto; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .industries__grid { grid-template-columns: repeat(2, 1fr); }
  .tech__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .why-card,
  .why-card:nth-child(4),
  .why-card:nth-child(5) { grid-column: span 1; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 86vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    background: var(--navy-900);
    padding: calc(var(--nav-h) + 18px) 26px 40px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    box-shadow: -30px 0 60px -30px rgba(0, 0, 0, 0.7);
  }
  .nav.open .nav__menu { transform: translateX(0); }
  .nav__menu > a:not(.btn) {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 1rem;
    padding: 14px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0;
  }
  .nav__menu > a:not(.btn)::after { display: none; }
  .nav__cta { margin: 18px 0 0; }
  .nav.open .nav__toggle { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); color: #fff; }
  body.menu-open { overflow: hidden; }

  .about__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 32px 20px; padding: 40px 28px; }
  .stat + .stat::before { display: none; }
  .stat:nth-child(3)::before,
  .stat:nth-child(4)::before { display: none; }
  .leader__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .process__steps::before { display: none; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .services__grid,
  .industries__grid,
  .tech__grid,
  .why__grid { grid-template-columns: 1fr; }
  .hero { padding-top: calc(var(--nav-h) + 30px); }
  .hero__actions .btn { flex: 1; }
  .hero__trust { gap: 14px 22px; }
  .stats { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .info-card--split { flex-direction: column; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .float-card--1 { left: -10px; }
  .float-card--2 { right: -8px; }
  .modal__dialog { padding: 32px 24px; }
  .tech__note { flex-direction: column; text-align: center; gap: 14px; padding: 26px 22px; }
  .logo__tag { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .chart__line { stroke-dashoffset: 0; }
  .chart__area, .chart__dot { opacity: 1; }
  .bar { transform: scaleY(1); }
}
