:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-300: #6ee7b7;
  --emerald-200: #a7f3d0;
  --emerald-100: #d1fae5;
  --emerald-50: #ecfdf5;
  --shadow-sm: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.18);
  --radius-3xl: 36px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--slate-50);
  color: var(--slate-950);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

p {
  margin: 0;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--slate-950);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,0.08);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-tagline {
  margin-top: 2px;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--slate-600);
  font-size: 14px;
  font-weight: 750;
}

.main-nav a:hover {
  color: var(--slate-950);
}

.main-nav a.active:not(.nav-cta) {
  color: var(--slate-950);
  border-bottom: 2px solid var(--slate-950);
  padding-bottom: 2px;
}

.nav-cta {
  background: var(--slate-950);
  color: white !important;
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: white;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--slate-950);
}

.hero {
  position: relative;
  overflow: hidden;
  background: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.16), transparent 34%),
    radial-gradient(circle at 82% 20%, rgba(37, 99, 235, 0.13), transparent 34%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  min-height: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  background: var(--slate-950);
  color: white;
}

.eyebrow.light {
  border: 1px solid var(--emerald-200);
  background: var(--emerald-50);
  color: var(--emerald-700);
}

.eyebrow.light-on-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--emerald-300);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 900px;
  font-size: clamp(46px, 6.4vw, 76px);
  font-weight: 950;
}

h2 {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 950;
}

h3 {
  font-size: 23px;
  font-weight: 900;
}

.hero-text,
.section-intro p,
.approach-grid > div > p,
.outsourcing-grid > div > p,
.cta-section p,
.site-footer p {
  margin-top: 24px;
  color: var(--slate-600);
  font-size: 18px;
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 18px;
  padding: 15px 21px;
  font-size: 15px;
  font-weight: 850;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.button.primary {
  background: var(--slate-950);
  color: white;
  box-shadow: var(--shadow-sm);
}

.button.primary:hover {
  background: var(--slate-800);
}

.button.secondary {
  background: white;
  color: var(--slate-950);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 640px;
  margin-top: 42px;
}

.stat-card {
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.stat-card strong {
  display: block;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.stat-card span {
  display: block;
  margin-top: 5px;
  color: var(--slate-500);
  font-size: 14px;
  font-weight: 650;
}

.hero-panel {
  position: relative;
}

.ai-map-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-3xl);
  background: var(--slate-950);
  color: white;
  padding: 22px;
  box-shadow: var(--shadow-lg);
}

.ai-map-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-map-header strong,
.ai-map-header span {
  display: block;
}

.ai-map-header strong {
  color: var(--emerald-300);
}

.ai-map-header span {
  margin-top: 5px;
  color: var(--slate-300);
  font-size: 13px;
}

.panel-icon {
  color: var(--emerald-300);
  font-size: 34px;
}

.process-list {
  margin-top: 18px;
  display: grid;
  gap: 16px;
}

.process-item {
  display: flex;
  gap: 15px;
  padding: 18px;
  border-radius: 22px;
  background: white;
  color: var(--slate-950);
}

.process-number {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--emerald-100);
  color: var(--emerald-700);
  font-weight: 950;
}

.process-item strong,
.process-item span {
  display: block;
}

.process-item span {
  margin-top: 5px;
  color: var(--slate-600);
  line-height: 1.55;
}

.floating-card {
  position: absolute;
  left: -28px;
  bottom: -28px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--slate-200);
  border-radius: 26px;
  background: white;
  padding: 20px;
  color: var(--slate-950);
  box-shadow: var(--shadow-lg);
}

.floating-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #eff6ff;
  font-size: 24px;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card span {
  margin-top: 4px;
  color: var(--slate-500);
  font-size: 14px;
}

.section-intro {
  max-width: 820px;
}

.pillar-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pillar-card,
.experience-card,
.package-card,
.mini-card,
.capability-panel {
  border: 1px solid var(--slate-200);
  background: white;
  box-shadow: var(--shadow-sm);
}

.pillar-card {
  border-radius: 32px;
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar-card.featured {
  background: var(--slate-950);
  color: white;
  border-color: var(--slate-950);
}

.pillar-card:hover,
.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 20px;
  background: var(--slate-950);
  color: white;
  font-size: 25px;
}

.pillar-card.featured .service-icon {
  background: white;
  color: var(--slate-950);
}

.pillar-card p {
  margin-top: 16px;
  color: var(--slate-600);
  line-height: 1.7;
}

.pillar-card.featured p {
  color: var(--slate-300);
}

.pillar-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pillar-card li {
  position: relative;
  margin-top: 13px;
  padding-left: 28px;
  color: var(--slate-700);
  line-height: 1.55;
}

.pillar-card.featured li {
  color: var(--slate-100);
}

.pillar-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--emerald-600);
  font-weight: 950;
}

.pillar-card.featured li::before {
  color: var(--emerald-300);
}

.dark-section {
  background: var(--slate-950);
  color: white;
}

.outsourcing-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: start;
}

.outsourcing-grid > div > p {
  color: var(--slate-300);
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.sector-tags span {
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--slate-200);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 750;
}

.capability-panel {
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  padding: 30px;
}

.capability-panel h3 {
  color: white;
  margin-bottom: 24px;
}

.capability-list {
  display: grid;
  gap: 16px;
}

.capability-list div {
  border-radius: 22px;
  background: white;
  color: var(--slate-950);
  padding: 18px;
}

.capability-list strong,
.capability-list span {
  display: block;
}

.capability-list span {
  margin-top: 7px;
  color: var(--slate-600);
  line-height: 1.6;
}

.experience-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.experience-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 30px;
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.98) 100%);
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: auto -12px -12px auto;
  width: 150px;
  height: 150px;
  z-index: -1;
  opacity: 0.1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(-6deg);
}

.experience-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(226,232,240,0.9);
  font-size: 25px;
  backdrop-filter: blur(2px);
}

.experience-card h3,
.experience-card p {
  position: relative;
  z-index: 1;
}

.experience-card p {
  margin-top: 15px;
  color: var(--slate-600);
  line-height: 1.7;
}

.theme-finance::before {
  background:
    radial-gradient(circle at top right, rgba(59,130,246,0.10), transparent 34%),
    radial-gradient(circle at bottom left, rgba(34,197,94,0.08), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(248,250,252,0.99) 100%);
}

/* .theme-finance::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23059769' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'><rect x='34' y='95' width='20' height='55' rx='5'/><rect x='76' y='65' width='20' height='85' rx='5'/><rect x='118' y='40' width='20' height='110' rx='5'/><path d='M28 158h124'/><path d='M34 55c18-18 39-27 64-27 22 0 42 6 60 19'/><path d='M147 32h19v19'/></g></svg>");
} */

.theme-mining::before {
  background:
    radial-gradient(circle at top right, rgba(245,158,11,0.12), transparent 34%),
    radial-gradient(circle at bottom left, rgba(120,113,108,0.10), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(250,250,249,0.99) 100%);
}

/* .theme-mining::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23b45309' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'><path d='M40 145l44-44'/><path d='M72 69l60 60'/><path d='M93 57l20 20'/><path d='M62 100l20 20'/><path d='M30 154h120'/><path d='M115 55l32-32'/><path d='M101 69l46-46'/></g></svg>");
} */

.theme-insurance::before {
  background:
    radial-gradient(circle at top right, rgba(14,165,233,0.11), transparent 34%),
    radial-gradient(circle at bottom left, rgba(99,102,241,0.08), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(248,250,252,0.99) 100%);
}

/* .theme-insurance::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%234f46e5' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'><path d='M100 28l50 18v36c0 34-21 57-50 77-29-20-50-43-50-77V46l50-18z'/><path d='M75 95l16 16 34-34'/></g></svg>");
} */

.theme-data::before {
  background:
    radial-gradient(circle at top right, rgba(16,185,129,0.11), transparent 34%),
    radial-gradient(circle at bottom left, rgba(14,165,233,0.08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(248,250,252,0.99) 100%);
}

/* .theme-data::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23059669' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'><path d='M34 146h122'/><path d='M50 127V93'/><path d='M84 127V71'/><path d='M118 127V52'/><path d='M152 127V82'/><circle cx='50' cy='93' r='6'/><circle cx='84' cy='71' r='6'/><circle cx='118' cy='52' r='6'/><circle cx='152' cy='82' r='6'/><path d='M50 93l34-22 34-19 34 30'/></g></svg>");
} */

.theme-cloud::before {
  background:
    radial-gradient(circle at top right, rgba(59,130,246,0.12), transparent 34%),
    radial-gradient(circle at bottom left, rgba(125,211,252,0.10), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(248,250,252,0.99) 100%);
}

/* .theme-cloud::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%232563eb' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'><path d='M60 138h76c20 0 35-14 35-31 0-16-13-29-30-31-7-22-26-36-49-36-27 0-49 19-54 45-16 2-28 15-28 31 0 18 16 32 36 32h14z'/><path d='M100 86v58'/><path d='M80 124l20 20 20-20'/></g></svg>");
} */

.theme-innovation::before {
  background:
    radial-gradient(circle at top right, rgba(168,85,247,0.12), transparent 34%),
    radial-gradient(circle at bottom left, rgba(236,72,153,0.08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(250,250,255,0.99) 100%);
}

/* .theme-innovation::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%237c3aed' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'><path d='M100 30l18 36 40 6-29 28 7 40-36-19-36 19 7-40-29-28 40-6z'/><circle cx='100' cy='96' r='10'/></g></svg>");
} */

.white-section {
  background: white;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 23px;
  margin-top: 34px;
}

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

.step > span {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--emerald-100);
  color: var(--emerald-700);
  font-weight: 950;
}

.step strong {
  display: block;
  font-weight: 950;
}

.step p {
  margin-top: 5px;
  color: var(--slate-600);
  line-height: 1.65;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mini-card {
  min-height: 160px;
  border-radius: 28px;
  padding: 26px;
}

.mini-card strong,
.mini-card span {
  display: block;
}

.mini-card strong {
  font-size: 17px;
  font-weight: 950;
}

.mini-card span {
  margin-top: 12px;
  color: var(--slate-600);
  line-height: 1.55;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.package-card {
  border-radius: 30px;
  background: white;
  padding: 28px;
}

.package-card > span {
  color: var(--emerald-700);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-card h3 {
  margin-top: 14px;
  font-size: 22px;
}

.package-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  margin-top: 14px;
  padding-left: 28px;
  color: var(--slate-700);
  line-height: 1.5;
}

.package-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--emerald-600);
  font-weight: 950;
}

.cta-section-wrap {
  background: var(--slate-50);
}

.cta-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  border-radius: 36px;
  background: var(--slate-950);
  color: white;
  padding: 52px;
  box-shadow: var(--shadow-lg);
}

.cta-section p {
  max-width: 850px;
  color: var(--slate-300);
}

.site-footer {
  border-top: 1px solid var(--slate-200);
  background: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 48px;
  padding: 58px 0;
}

.site-footer h2 {
  font-size: 28px;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.footer-tags span {
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-700);
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 750;
}

.contact-card {
  border: 1px solid var(--slate-200);
  border-radius: 30px;
  background: var(--slate-50);
  padding: 28px;
}

.contact-card h3 {
  margin-bottom: 18px;
}

.contact-card p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
}

.office-hours {
  margin-top: 22px;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: white;
  padding: 16px;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.6;
}

.copyright {
  border-top: 1px solid var(--slate-200);
  padding: 22px;
  text-align: center;
  color: var(--slate-500);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 980px) {
  .section {
    padding: 72px 0;
  }

  .mobile-menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--slate-200);
    border-radius: 24px;
    background: white;
    padding: 12px;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
    border-radius: 14px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-grid,
  .outsourcing-grid,
  .approach-grid,
  .footer-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 36px;
  }

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

  .floating-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 18px;
  }
}

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

  .section {
    padding: 58px 0;
  }

  .brand-tagline {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 35px;
  }

  .hero-text,
  .section-intro p,
  .approach-grid > div > p,
  .outsourcing-grid > div > p,
  .cta-section p,
  .site-footer p {
    font-size: 16px;
  }

  .stats-grid,
  .pillar-grid,
  .experience-grid,
  .mini-card-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .cta-section {
    padding: 30px;
    border-radius: 28px;
  }

  .experience-card::after {
    width: 120px;
    height: 120px;
  }
}


/* Web imagery additions */
.hero-image-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 12px;
  max-width: 700px;
  margin-top: 26px;
}

.image-tile,
.band-image,
.outsourcing-photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 24px;
  min-height: 118px;
  border: 1px solid rgba(226,232,240,0.9);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-sm);
}

.image-tile::before,
.band-image::before,
.outsourcing-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2,6,23,0.08), rgba(2,6,23,0.68)),
    linear-gradient(90deg, rgba(16,185,129,0.20), rgba(37,99,235,0.10));
}

.image-tile span,
.band-image span,
.outsourcing-photo span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: white;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}

.tile-software {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=900&q=75");
}

.tile-ai {
  background-image: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=75");
}

.tile-consulting {
  background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=900&q=75");
}

.image-band {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
  margin-top: 38px;
}

.band-image {
  min-height: 190px;
  border-radius: 30px;
}

.band-software {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1000&q=75");
}

.band-data {
  background-image: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1000&q=75");
}

.band-cloud {
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1000&q=75");
}

.outsourcing-side {
  display: grid;
  gap: 18px;
}

.outsourcing-visual {
  min-width: 0;
}

.outsourcing-photo {
  min-height: 240px;
  border-color: rgba(255,255,255,0.12);
  background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1200&q=75");
}

.outsourcing-photo::before {
  background:
    linear-gradient(180deg, rgba(2,6,23,0.05), rgba(2,6,23,0.74)),
    linear-gradient(90deg, rgba(16,185,129,0.24), rgba(15,23,42,0.12));
}

.experience-card {
  min-height: 275px;
}

.experience-card::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.87) 0%, rgba(248,250,252,0.96) 100%),
    var(--card-photo);
  background-size: cover;
  background-position: center;
  filter: saturate(0.95);
}

.experience-card::after {
  opacity: 0.12;
}

.theme-finance {
  --card-photo: url("https://images.unsplash.com/photo-1563986768494-4dee2763ff3f?auto=format&fit=crop&w=900&q=70");
}

.theme-mining {
  --card-photo: url("https://images.unsplash.com/photo-1518709268805-4e9042af2176?auto=format&fit=crop&w=900&q=70");
}

.theme-insurance {
  --card-photo: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=900&q=70");
}

.theme-data {
  --card-photo: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=70");
}

.theme-cloud {
  --card-photo: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=900&q=70");
}

.theme-innovation {
  --card-photo: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=70");
}

.footer-logo-wrap {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--slate-950);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}

.footer-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 980px) {
  .hero-image-strip,
  .image-band {
    grid-template-columns: 1fr;
  }

  .image-tile {
    min-height: 140px;
  }

  .band-image,
  .outsourcing-photo {
    min-height: 210px;
  }
}
