:root {
  --cyan: #00B8D9;
  --blue: #2563EB;
  --purple: #6D28D9;
  --magenta: #D946EF;
  --ink: #111827;
  --muted: #667085;
  --soft: #F8FAFC;
  --line: rgba(17, 24, 39, 0.08);
  --white: #FFFFFF;
  --shadow: 0 24px 70px rgba(37, 99, 235, 0.12);
  --gradient: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple), var(--magenta));
  --button-gradient: linear-gradient(135deg, var(--purple), var(--magenta));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--soft);
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-image {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-image {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand-logo { display: inline-flex; align-items: center; min-width: 220px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #344054;
  font-weight: 700;
}
.nav-links a { transition: color .2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--purple); }

.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav-cta, .button-primary {
  color: white;
  background: var(--button-gradient);
  box-shadow: 0 16px 32px rgba(217,70,239,.24);
}
.button-light {
  background: white;
  color: var(--purple);
  box-shadow: 0 16px 34px rgba(17,24,39,.08);
}
.nav-cta:hover, .button:hover { transform: translateY(-2px); }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px; background: var(--ink); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  color: white;
  padding: 118px 0 88px;
  background:
    radial-gradient(circle at 12% 18%, rgba(217,70,239,.30), transparent 34%),
    radial-gradient(circle at 85% 8%, rgba(0,184,217,.35), transparent 36%),
    var(--gradient);
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent);
}
.hero-grid {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 54px;
}
.eyebrow, .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(12px);
}
.eyebrow.dark {
  color: var(--purple);
  background: rgba(109,40,217,.08);
  border-color: rgba(109,40,217,.12);
}
.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: white;
  box-shadow: 0 0 0 7px rgba(255,255,255,.16);
}
.hero h1, .subpage-hero h1 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  margin: 24px 0 18px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: .94;
  letter-spacing: -.075em;
}
.hero-subtitle {
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.35;
  max-width: 720px;
  margin: 0 0 18px;
  font-weight: 800;
}
.hero-text {
  max-width: 680px;
  color: rgba(255,255,255,.84);
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.capability-strip {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.capability-strip div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
}
.capability-strip span {
  display: block;
  font-weight: 900;
  font-size: 18px;
}
.capability-strip small { color: rgba(255,255,255,.78); }

.hero-ecosystem {
  height: 540px;
  position: relative;
}
.ecosystem-card {
  position: absolute;
  inset: 18px;
  border-radius: 42px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 28px 90px rgba(17,24,39,.24);
  backdrop-filter: blur(22px);
}
.connection-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.connection-lines path {
  stroke: rgba(255,255,255,.34);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 8;
  animation: dash 10s linear infinite;
}
.node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 28px;
  font-weight: 900;
  box-shadow: 0 20px 48px rgba(17,24,39,.16);
}
.node-center {
  width: 104px; height: 104px; left: calc(50% - 52px); top: calc(50% - 52px);
  color: var(--purple);
  background: white;
  font-size: 30px;
}
.node-ai, .node-app, .node-code, .node-web, .node-auto {
  width: 88px; height: 88px;
  color: white;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(16px);
}
.node-ai { left: calc(50% - 44px); top: 48px; }
.node-app { right: 54px; top: 128px; }
.node-code { right: 56px; bottom: 104px; }
.node-web { left: 58px; bottom: 104px; }
.node-auto { left: 54px; top: 128px; }

.section { position: relative; overflow: hidden; padding: 112px 0; }
.section-inner { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.two-column, .approach-grid, .vision-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 54px;
  align-items: center;
}
.section-tag {
  color: var(--purple);
  background: rgba(109,40,217,.08);
  border: 1px solid rgba(109,40,217,.12);
}
.light-tag { color: white; background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.22); }

h2 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  margin: 18px 0 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.06em;
}
.center-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 54px;
}
.center-heading .section-tag { margin: 0 auto; }
.center-heading p, .statement-card p, .approach-copy p, .vision-copy p, .intelligence-panel p, .cta-card p, .subpage-hero p, .solution-detail p, .app-card p {
  font-size: 18px;
  line-height: 1.82;
  color: var(--muted);
}

.statement-wrap { position: relative; }
.statement-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(32px, 5vw, 58px);
  box-shadow: var(--shadow);
}
.strong-line { color: var(--ink)!important; font-weight: 900; }
.mini-illustration {
  position: absolute;
  top: -28px; right: 32px;
  display: flex; gap: 12px;
}
.mini-illustration span {
  width: 54px; height: 54px;
  border-radius: 18px;
  background: var(--gradient);
  box-shadow: 0 18px 36px rgba(109,40,217,.20);
  opacity: .92;
}
.mini-illustration span:nth-child(2) { transform: translateY(22px); opacity: .75; }
.mini-illustration span:nth-child(3) { transform: translateY(44px); opacity: .55; }

.service-grid, .why-grid, .app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.app-grid { grid-template-columns: repeat(2, 1fr); }

.service-card, .why-card, .app-card, .solution-detail {
  position: relative;
  min-height: 230px;
  padding: 34px;
  border-radius: 32px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(17,24,39,.055);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card::before, .why-card::before, .app-card::before, .solution-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,184,217,.12), rgba(217,70,239,.12));
  opacity: 0;
  transition: opacity .25s ease;
}
.service-card:hover, .why-card:hover, .app-card:hover, .solution-detail:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.service-card:hover::before, .why-card:hover::before, .app-card:hover::before, .solution-detail:hover::before { opacity: 1; }
.service-card > *, .why-card > *, .app-card > *, .solution-detail > * { position: relative; }

.service-icon, .why-icon, .app-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: var(--gradient);
  color: white;
  font-weight: 900;
  margin-bottom: 28px;
  font-size: 24px;
}
.service-card h3, .why-card h3, .app-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -.04em;
}
.service-card p, .why-card p, .app-card p { margin: 0; font-size: 16px; }
.section-link { text-align: center; margin-top: 36px; font-weight: 900; color: var(--purple); }
.section-link span { color: var(--magenta); }

.why-section, .approach-section, .apps-section { background: white; }
.approach-grid { grid-template-columns: 1fr 1fr; }
.path-card {
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 10%, rgba(0,184,217,.16), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(217,70,239,.16), transparent 30%),
    white;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.path-step {
  padding: 24px;
  border-radius: 22px;
  background: #F8FAFC;
  border: 1px solid var(--line);
  font-weight: 900;
  color: #344054;
}
.path-step.active {
  background: var(--gradient);
  color: white;
  box-shadow: 0 16px 30px rgba(109,40,217,.22);
}
.path-line {
  width: 3px;
  height: 32px;
  margin-left: 26px;
  background: linear-gradient(var(--cyan), var(--magenta));
  opacity: .45;
}

.intelligence-panel {
  position: relative;
  border-radius: 42px;
  padding: clamp(42px, 7vw, 88px);
  color: white;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(255,255,255,.18), transparent 32%),
    var(--gradient);
  box-shadow: 0 28px 95px rgba(109,40,217,.25);
}
.intelligence-panel h2, .intelligence-panel p { position: relative; max-width: 800px; }
.intelligence-panel p { color: rgba(255,255,255,.86); }
.ai-grid-visual {
  position: absolute;
  right: 56px;
  top: 56px;
  width: 280px;
  height: 280px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  opacity: .42;
}
.ai-grid-visual span {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(255,255,255,.12);
}

.vision-grid { grid-template-columns: 1.1fr .9fr; }
.vision-graphic {
  display: grid;
  place-items: center;
  min-height: 420px;
}
.vision-ring {
  position: relative;
  width: min(400px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, white 0 35%, transparent 36%),
    conic-gradient(from 180deg, var(--cyan), var(--blue), var(--purple), var(--magenta), var(--cyan));
  box-shadow: var(--shadow);
}
.vision-ring div {
  position: absolute;
  padding: 14px 18px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(17,24,39,.08);
}
.vision-ring div:nth-child(1) { top: 22px; left: 50%; transform: translateX(-50%); }
.vision-ring div:nth-child(2) { right: -16px; top: 50%; transform: translateY(-50%); }
.vision-ring div:nth-child(3) { bottom: 22px; left: 50%; transform: translateX(-50%); }
.vision-ring div:nth-child(4) { left: -16px; top: 50%; transform: translateY(-50%); }

.final-cta { padding-top: 80px; }
.cta-card {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  text-align: center;
  padding: clamp(50px, 8vw, 92px);
  border-radius: 42px;
  color: white;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.2), transparent 32%),
    var(--gradient);
  box-shadow: 0 26px 90px rgba(109,40,217,.24);
}
.cta-card .section-tag { margin: 0 auto; }
.cta-card p { max-width: 780px; margin: 22px auto 32px; color: rgba(255,255,255,.86); }

.subpage-hero {
  padding: 118px 0 72px;
  background:
    radial-gradient(circle at 15% 15%, rgba(0,184,217,.13), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(217,70,239,.14), transparent 30%),
    white;
  border-bottom: 1px solid var(--line);
}
.narrow { max-width: 920px; }
.subpage-hero h1 { color: var(--ink); }
.subpage-hero p { max-width: 760px; }

.solution-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.solution-detail span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: white;
  background: var(--gradient);
  font-weight: 900;
}
.solution-detail h2 {
  font-size: 36px;
  margin-top: 26px;
}
.solution-detail ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.solution-detail li {
  margin: 12px 0;
  color: #344054;
  font-weight: 700;
}
.solution-detail li::before {
  content: "✓";
  color: var(--purple);
  font-weight: 900;
  margin-right: 10px;
}
.app-card a {
  display: inline-flex;
  margin-top: 22px;
  font-weight: 900;
  color: var(--purple);
}

.footer {
  background: white;
  border-top: 1px solid var(--line);
  padding: 56px 0;
}
.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.enterprise-footer {
  display: grid;
  grid-template-columns: 1.25fr .7fr 1.1fr .75fr .85fr;
  gap: 30px;
  align-items: start;
}
.footer p, .footer span {
  color: var(--muted);
  margin: 10px 0 0;
  display: block;
}
.footer-column h4 {
  margin: 0 0 16px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-column a {
  display: block;
  color: #475467;
  font-weight: 700;
  margin: 11px 0;
}
.footer-column a:hover { color: var(--purple); }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-one { transition-delay: .12s; }
.delay-two { transition-delay: .22s; }

@keyframes dash { to { stroke-dashoffset: -120; } }

@media (max-width: 1020px) {
  .enterprise-footer { grid-template-columns: repeat(2, 1fr); }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 86px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    padding: 24px;
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero-grid, .two-column, .approach-grid, .vision-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 72px; }
  .hero-ecosystem { height: 480px; }
  .service-grid, .why-grid { grid-template-columns: 1fr; }
  .solution-detail-grid, .app-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .navbar { height: 78px; }
  .logo-image { height: 48px; max-width: 210px; }
  .footer-logo-image { height: 54px; max-width: 230px; }
  .brand-logo { min-width: auto; }
  .hero h1, .subpage-hero h1 { font-size: 46px; }
  .hero-actions, .capability-strip { grid-template-columns: 1fr; flex-direction: column; }
  .button { width: 100%; }
  .capability-strip { display: grid; }
  .section { padding: 78px 0; }
  h2 { font-size: 36px; }
  .ai-grid-visual { display: none; }
  .ecosystem-card { inset: 0; }
  .node-ai, .node-app, .node-code, .node-web, .node-auto { width: 72px; height: 72px; border-radius: 22px; }
  .node-center { width: 88px; height: 88px; left: calc(50% - 44px); top: calc(50% - 44px); }
  .enterprise-footer { grid-template-columns: 1fr; }
}


/* UPDATED: Premium outline pill style with purple dot */
.eyebrow,
.section-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding: 15px 26px;
  border-radius: 999px;
  border: 2px solid #E4E7EC;
  background: rgba(255, 255, 255, 0.92);
  color: #5B6472;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.04);
  backdrop-filter: blur(12px);
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 50%;
  background: #6D28D9;
  box-shadow: 0 0 0 6px rgba(109, 40, 217, 0.10);
}

/* Remove the old hero pulse dot since the new dot is handled by the pill itself */
.eyebrow .pulse-dot {
  display: none;
}

/* Keep outline tags readable on gradient/dark sections */
.light-tag {
  background: rgba(255, 255, 255, 0.96);
  color: #5B6472;
  border-color: rgba(255, 255, 255, 0.72);
}

.light-tag::before {
  background: #6D28D9;
  box-shadow: 0 0 0 6px rgba(109, 40, 217, 0.12);
}

/* Subpage eyebrow outline refinement */
.eyebrow.dark {
  background: rgba(255, 255, 255, 0.92);
  color: #5B6472;
  border-color: #E4E7EC;
}

/* Make small label text thinner everywhere */
.mini-label,
.footer-column h4 {
  font-weight: 600;
  letter-spacing: 0.18em;
}

@media (max-width: 640px) {
  .eyebrow,
  .section-tag {
    padding: 13px 20px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .eyebrow::before,
  .section-tag::before {
    width: 10px;
    height: 10px;
    min-width: 10px;
  }
}


/* UPDATED: Hero ecosystem and service cards now use custom Reinvent icon images */
.node {
  overflow: visible;
  text-align: center;
}

.node img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 22px rgba(17, 24, 39, 0.18));
}

.node span {
  display: block;
  margin-top: 6px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.node-center img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.node-ai,
.node-app,
.node-code,
.node-web,
.node-auto {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: center;
}

.service-icon.image-icon {
  width: 86px;
  height: 86px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(0, 184, 217, 0.12), rgba(217, 70, 239, 0.14));
  border: 1px solid rgba(109, 40, 217, 0.10);
  box-shadow: 0 18px 42px rgba(109, 40, 217, 0.12);
  overflow: hidden;
}

.service-icon.image-icon img {
  width: 112%;
  height: 112%;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .node img {
    width: 42px;
    height: 42px;
  }

  .node-center img {
    width: 48px;
    height: 48px;
  }

  .node span {
    font-size: 11px;
  }

  .service-icon.image-icon {
    width: 74px;
    height: 74px;
  }
}


.solution-detail-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 24px;
  opacity: 0.92;
  box-shadow: 0 18px 44px rgba(109, 40, 217, 0.12);
}

.solution-detail {
  padding-right: 150px;
}

@media (max-width: 640px) {
  .solution-detail {
    padding-right: 34px;
  }

  .solution-detail-icon {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    width: 86px;
    height: 86px;
    margin: 18px 0 0;
  }
}


/* UPDATED: Seamless hero ecosystem icon treatment */
.hero-ecosystem .node-ai,
.hero-ecosystem .node-app,
.hero-ecosystem .node-code,
.hero-ecosystem .node-web,
.hero-ecosystem .node-auto {
  width: 118px;
  height: 118px;
  border-radius: 34px;
  padding: 12px 10px 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 22px 54px rgba(17, 24, 39, 0.18);
  backdrop-filter: blur(18px);
}

.hero-ecosystem .node img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  display: block;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.18));
}

.hero-ecosystem .node span {
  display: block;
  margin-top: 4px;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 8px 18px rgba(17, 24, 39, 0.22);
}

.hero-ecosystem .node-center {
  width: 118px;
  height: 118px;
  left: calc(50% - 59px);
  top: calc(50% - 59px);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 30px 70px rgba(17, 24, 39, 0.18);
}

.hero-ecosystem .node-center img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: none;
}

/* Reposition nodes after increasing size */
.hero-ecosystem .node-ai {
  left: calc(50% - 59px);
  top: 44px;
}

.hero-ecosystem .node-app {
  right: 48px;
  top: 122px;
}

.hero-ecosystem .node-code {
  right: 50px;
  bottom: 96px;
}

.hero-ecosystem .node-web {
  left: 52px;
  bottom: 96px;
}

.hero-ecosystem .node-auto {
  left: 48px;
  top: 122px;
}

/* Make connection lines feel more integrated behind the bigger nodes */
.hero-ecosystem .connection-lines path {
  stroke: rgba(255, 255, 255, 0.30);
  stroke-width: 2.5;
  stroke-dasharray: 10;
}

/* Keep service cards using the full rich icon style */
.service-icon.image-icon img {
  width: 118%;
  height: 118%;
  object-fit: cover;
  transform: translate(-4%, -4%);
}

@media (max-width: 640px) {
  .hero-ecosystem .node-ai,
  .hero-ecosystem .node-app,
  .hero-ecosystem .node-code,
  .hero-ecosystem .node-web,
  .hero-ecosystem .node-auto {
    width: 92px;
    height: 92px;
    border-radius: 28px;
    padding: 10px 8px 8px;
  }

  .hero-ecosystem .node img {
    width: 54px;
    height: 54px;
  }

  .hero-ecosystem .node span {
    font-size: 11px;
  }

  .hero-ecosystem .node-center {
    width: 96px;
    height: 96px;
    left: calc(50% - 48px);
    top: calc(50% - 48px);
  }

  .hero-ecosystem .node-center img {
    width: 62px;
    height: 62px;
  }

  .hero-ecosystem .node-ai {
    left: calc(50% - 46px);
    top: 46px;
  }

  .hero-ecosystem .node-app {
    right: 22px;
    top: 126px;
  }

  .hero-ecosystem .node-code {
    right: 24px;
    bottom: 96px;
  }

  .hero-ecosystem .node-web {
    left: 24px;
    bottom: 96px;
  }

  .hero-ecosystem .node-auto {
    left: 22px;
    top: 126px;
  }
}


/* ICON CENTERING FIX */
.service-icon.image-icon{
    display:grid !important;
    place-items:center !important;
    overflow:hidden !important;
}

.service-icon.image-icon img{
    width:72px !important;
    height:72px !important;
    object-fit:contain !important;
    object-position:center center !important;
    transform:none !important;
    display:block !important;
}


/* ICON FILL FIX: keep icons centered but zoomed to fill the rounded tile */
.service-icon.image-icon {
  width: 96px !important;
  height: 96px !important;
  border-radius: 28px !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  padding: 0 !important;
}

.service-icon.image-icon img {
  width: 96px !important;
  height: 96px !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
  display: block !important;
  border-radius: 28px !important;
}

@media (max-width: 640px) {
  .service-icon.image-icon {
    width: 82px !important;
    height: 82px !important;
    border-radius: 24px !important;
  }

  .service-icon.image-icon img {
    width: 82px !important;
    height: 82px !important;
    border-radius: 24px !important;
  }
}


/* PREMIUM FOOTER UPDATE */
.premium-footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 0 !important;
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 184, 217, 0.10), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(217, 70, 239, 0.10), transparent 30%),
    #FFFFFF !important;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.premium-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1180px, calc(100% - 36px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #00B8D9, #2563EB, #6D28D9, #D946EF, transparent);
  opacity: 0.65;
}

.premium-footer-grid {
  width: min(1180px, calc(100% - 36px)) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1.45fr 0.7fr 1.05fr 0.82fr 0.95fr !important;
  gap: 38px !important;
  align-items: start !important;
}

.footer-brand-block {
  max-width: 360px;
}

.footer-description {
  margin: 18px 0 0 !important;
  color: #667085 !important;
  line-height: 1.75;
  font-size: 15px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-badges span {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: #F8FAFC;
  border: 1px solid #E4E7EC;
  color: #344054 !important;
  font-size: 12px;
  font-weight: 800;
}

.footer-badges span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #6D28D9;
}

.premium-footer .footer-column h4 {
  margin: 0 0 18px !important;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.premium-footer .footer-column a,
.premium-footer .footer-column span {
  display: block;
  margin: 12px 0 !important;
  color: #667085 !important;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
  transition: color 0.2s ease, transform 0.2s ease;
}

.premium-footer .footer-column a:hover {
  color: #6D28D9 !important;
  transform: translateX(3px);
}

.footer-bottom {
  width: min(1180px, calc(100% - 36px));
  margin: 58px auto 0;
  padding: 24px 0;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0 !important;
  color: #667085 !important;
  font-size: 14px;
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-bottom a {
  color: #344054;
  font-size: 14px;
  font-weight: 750;
}

.footer-bottom a:hover {
  color: #6D28D9;
}

@media (max-width: 1020px) {
  .premium-footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .footer-brand-block {
    max-width: none;
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .premium-footer {
    padding-top: 52px !important;
  }

  .premium-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .footer-bottom {
    margin-top: 42px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }
}


/* DARK PREMIUM FOOTER FINAL */
.dark-footer {
  position: relative;
  overflow: hidden;
  padding: 76px 0 0 !important;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 184, 217, 0.16), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(217, 70, 239, 0.14), transparent 32%),
    linear-gradient(180deg, #111827 0%, #0F172A 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.dark-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1180px, calc(100% - 36px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #00B8D9, #2563EB, #6D28D9, #D946EF, transparent);
  opacity: 0.85;
}

.dark-footer-grid {
  width: min(1180px, calc(100% - 36px)) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1.5fr 0.8fr 1.15fr 1fr !important;
  gap: 44px !important;
  align-items: start !important;
}

.dark-footer .footer-brand-block {
  max-width: 390px;
}

.dark-footer .footer-logo-image {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.dark-footer .footer-description {
  margin: 20px 0 0 !important;
  color: #94A3B8 !important;
  line-height: 1.75;
  font-size: 15px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  background: rgba(109, 40, 217, 0.24);
  border-color: rgba(217, 70, 239, 0.38);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
}

.dark-footer .footer-column h4 {
  margin: 0 0 18px !important;
  color: #FFFFFF !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dark-footer .footer-column a,
.dark-footer .footer-column span {
  display: block;
  margin: 12px 0 !important;
  color: #CBD5E1 !important;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
  transition: color 0.2s ease, transform 0.2s ease;
}

.dark-footer .footer-column a:hover {
  color: #FFFFFF !important;
  transform: translateX(3px);
}

.dark-footer .footer-bottom {
  width: min(1180px, calc(100% - 36px));
  margin: 62px auto 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.dark-footer .footer-bottom p {
  margin: 0 !important;
  color: #94A3B8 !important;
  font-size: 14px;
}

.dark-footer .footer-bottom div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.dark-footer .footer-bottom a {
  color: #CBD5E1 !important;
  font-size: 14px;
  font-weight: 750;
}

.dark-footer .footer-bottom a:hover {
  color: #FFFFFF !important;
}

@media (max-width: 1020px) {
  .dark-footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .dark-footer .footer-brand-block {
    max-width: none;
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .dark-footer {
    padding-top: 56px !important;
  }

  .dark-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .dark-footer .footer-bottom {
    margin-top: 42px;
    flex-direction: column;
    align-items: flex-start;
  }

  .dark-footer .footer-bottom div {
    flex-wrap: wrap;
  }
}


/* CONTACT FORM PAGE */
.contact-page-hero {
  min-height: calc(100vh - 86px);
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 184, 217, 0.12), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(217, 70, 239, 0.12), transparent 32%),
    #F8FAFC;
}

.contact-page-grid {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.contact-intro h1 {
  margin: 24px 0 20px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(46px, 5vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.075em;
  color: #111827;
}

.contact-intro p {
  color: #667085;
  font-size: 18px;
  line-height: 1.8;
  max-width: 560px;
}

.contact-focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-focus-list span {
  padding: 11px 14px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid #E4E7EC;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.contact-form-card {
  padding: clamp(28px, 4vw, 46px);
  border-radius: 34px;
  background: #FFFFFF;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.12);
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form-card label {
  display: block;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  margin-top: 9px;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid #D0D5DD;
  background: #F8FAFC;
  color: #111827;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: #6D28D9;
  box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.12);
  background: #FFFFFF;
}

.contact-submit {
  border: 0;
  cursor: pointer;
  margin-top: 6px;
}

.hidden-field {
  display: none !important;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 184, 217, 0.12), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(217, 70, 239, 0.12), transparent 32%),
    #F8FAFC;
}

.thank-you-card {
  width: min(720px, 100%);
  text-align: center;
  padding: clamp(38px, 7vw, 76px);
  border-radius: 38px;
  background: #FFFFFF;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.12);
}

.thank-you-card img {
  max-width: 260px;
  height: auto;
  margin-bottom: 28px;
}

.thank-you-card .section-tag {
  margin: 0 auto;
}

.thank-you-card h1 {
  margin: 24px 0 16px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.065em;
}

.thank-you-card p {
  color: #667085;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 28px;
}

@media (max-width: 920px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .form-row.two {
    grid-template-columns: 1fr;
    gap: 0;
  }
}


/* PLACEHOLDER CLEANUP + MOBILE POLISH PASS */

/* Remove decorative placeholder dots from Digital Shift section */
.mini-illustration,
.transformation-illustration {
  display: none !important;
}

/* Give the Digital Shift card cleaner spacing now that the dots are removed */
.statement-wrap {
  position: relative;
}

.statement-card {
  overflow: hidden;
}

/* Better responsive layout across the site */
@media (max-width: 1020px) {
  .section-inner,
  .footer-inner,
  .hero-grid,
  .contact-page-grid {
    width: min(100% - 36px, 1180px) !important;
  }

  .two-column,
  .approach-grid,
  .vision-grid,
  .contact-page-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .section-heading,
  .center-heading {
    max-width: 100% !important;
  }

  .statement-card {
    padding: 34px !important;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .navbar {
    width: min(100% - 28px, 1180px) !important;
  }

  .logo-image {
    max-width: 190px !important;
    height: auto !important;
    max-height: 48px !important;
  }

  .hero {
    padding: 72px 0 78px !important;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 58px) !important;
    line-height: 0.96 !important;
  }

  .hero-subtitle {
    font-size: 21px !important;
  }

  .hero-text {
    font-size: 16px !important;
  }

  .hero-actions {
    width: 100%;
  }

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

  .section {
    padding: 72px 0 !important;
  }

  h2,
  .contact-intro h1,
  .subpage-hero h1 {
    font-size: clamp(34px, 10vw, 46px) !important;
    line-height: 1.02 !important;
  }

  .center-heading p,
  .statement-card p,
  .approach-copy p,
  .vision-copy p,
  .intelligence-panel p,
  .cta-card p,
  .subpage-hero p,
  .solution-detail p,
  .app-card p {
    font-size: 16px !important;
    line-height: 1.72 !important;
  }

  .service-grid,
  .why-grid,
  .solution-detail-grid,
  .app-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .service-card,
  .why-card,
  .app-card,
  .solution-detail {
    padding: 28px !important;
    border-radius: 28px !important;
    min-height: auto !important;
  }

  .solution-detail {
    padding-right: 28px !important;
  }

  .solution-detail-icon {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    display: block !important;
    margin: 18px 0 0 !important;
  }

  .intelligence-panel,
  .cta-card {
    border-radius: 32px !important;
    padding: 42px 28px !important;
  }

  .final-cta {
    padding-top: 54px !important;
  }

  .contact-page-hero {
    padding: 72px 0 !important;
  }

  .form-row.two {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .contact-form-card {
    padding: 28px !important;
    border-radius: 30px !important;
  }

  .contact-focus-list span {
    font-size: 12px !important;
  }

  .footer-logo-image {
    max-width: 230px !important;
    height: auto !important;
  }
}

@media (max-width: 420px) {
  .eyebrow,
  .section-tag {
    max-width: 100%;
    white-space: normal;
    line-height: 1.4;
  }

  .button {
    min-height: 52px;
  }

  .statement-card {
    padding: 28px !important;
    border-radius: 28px !important;
  }

  .service-card h3,
  .why-card h3,
  .app-card h3 {
    font-size: 22px !important;
  }
}


/* SAFE HERO FIX: hide only the decorative glass placeholders, keep hero layout intact */
.ai-grid-visual,
.ai-grid-visual span,
.hero-placeholder-grid,
.hero-placeholder-grid div,
.hero-visual .placeholder,
.hero-visual .placeholder-grid,
.hero-visual .glass-placeholder,
.hero-visual .glass-placeholders {
  display: none !important;
}

/* Keep the AI section clean after removing decorative placeholder boxes */
.intelligence-panel h2,
.intelligence-panel p,
.intelligence-panel .section-tag {
  position: relative;
  z-index: 2;
}

.intelligence-panel {
  min-height: auto !important;
}

/* Do not force hero layout changes here. This preserves the original hero. */


/* AI & THE FUTURE SECTION FIX */
/* Remove only the decorative placeholder boxes inside the AI section */
.intelligence-section .ai-grid-visual,
.intelligence-section .ai-grid-visual span,
.intelligence-section .ai-dashboard-visual,
.intelligence-section .dashboard-mini-card {
  display: none !important;
}

/* Keep the AI section clean, balanced, and not stretched */
.intelligence-panel {
  min-height: auto !important;
}

.intelligence-panel h2,
.intelligence-panel p {
  max-width: 860px !important;
  padding-right: 0 !important;
}

.intelligence-panel .section-tag,
.intelligence-panel h2,
.intelligence-panel p {
  position: relative;
  z-index: 2;
}

/* Mobile polish for this section */
@media (max-width: 760px) {
  .intelligence-panel {
    padding: 42px 28px !important;
    border-radius: 32px !important;
  }
}


/* HERO CLEANUP: remove repeated AI / Apps / Software / Automation cards */
.capability-strip,
.hero-highlights,
.highlight-card,
.capability-card {
  display: none !important;
}

/* Keep hero spacing clean after removing the repeated cards */
.hero-actions {
  margin-bottom: 0 !important;
}


/* OPTION C HERO VISUAL: clean floating Reinvent logo with orbit tags */
.hero-ecosystem,
.hero-tech-ecosystem,
.hero-growth-visual,
.hero-brand-visual,
.hero-command-center,
.capability-strip,
.hero-highlights,
.highlight-card,
.capability-card {
  display: none !important;
}

.hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr) !important;
  gap: 64px !important;
  align-items: center !important;
}

.hero-orbit-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  justify-self: end;
  width: 100%;
}

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

.orbit-stage::before {
  content: "";
  position: absolute;
  width: 84%;
  height: 84%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 45% 45%, rgba(255,255,255,.32), rgba(255,255,255,.08) 42%, transparent 72%);
  filter: blur(4px);
}

.orbit-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: inset 0 0 48px rgba(255,255,255,.06);
}

.orbit-ring-one {
  inset: 18px;
  animation: orbitSpin 22s linear infinite;
}

.orbit-ring-two {
  inset: 74px;
  border-style: dashed;
  opacity: .82;
  animation: orbitSpin 30s linear infinite reverse;
}

.orbit-ring-three {
  inset: 132px;
  opacity: .58;
}

.orbit-logo-card {
  position: relative;
  z-index: 5;
  width: 176px;
  height: 176px;
  border-radius: 44px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.96);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.98),
    0 38px 90px rgba(17,24,39,.22);
}

.orbit-logo-card img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  display: block;
}

.orbit-tag {
  position: absolute;
  z-index: 6;
  padding: 14px 18px;
  border-radius: 999px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 18px 44px rgba(17,24,39,.14);
  backdrop-filter: blur(16px);
  animation: orbitFloat 6s ease-in-out infinite;
}

.orbit-ai {
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-apps {
  right: 24px;
  top: 160px;
  animation-delay: .45s;
}

.orbit-software {
  right: 42px;
  bottom: 112px;
  animation-delay: .9s;
}

.orbit-automation {
  left: 22px;
  bottom: 128px;
  animation-delay: 1.35s;
}

.orbit-web {
  left: 48px;
  top: 164px;
  animation-delay: 1.8s;
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes orbitFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -10px; }
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 44px !important;
  }

  .hero-orbit-visual {
    justify-self: center;
    min-height: 470px;
  }

  .orbit-stage {
    width: min(430px, 90vw);
  }
}

@media (max-width: 640px) {
  .hero-orbit-visual {
    min-height: 360px;
  }

  .orbit-stage {
    width: min(320px, 86vw);
  }

  .orbit-logo-card {
    width: 124px;
    height: 124px;
    border-radius: 34px;
  }

  .orbit-logo-card img {
    width: 78px;
    height: 78px;
  }

  .orbit-tag {
    font-size: 11px;
    padding: 10px 12px;
  }

  .orbit-ai { top: 28px; }
  .orbit-apps { right: 0; top: 105px; }
  .orbit-software { right: 10px; bottom: 72px; }
  .orbit-automation { left: -2px; bottom: 82px; }
  .orbit-web { left: 8px; top: 108px; }
}


/* OPTION C LOGO FIX: remove white card behind transparent logo */
.hero-orbit-visual .orbit-logo-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  width: 210px !important;
  height: 210px !important;
  border-radius: 0 !important;
  position: relative !important;
  overflow: visible !important;
}

.hero-orbit-visual .orbit-logo-card::before {
  content: "";
  position: absolute;
  inset: 50%;
  width: 240px;
  height: 240px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.22), rgba(255,255,255,.08) 42%, transparent 72%);
  filter: blur(34px);
  z-index: -1;
}

.hero-orbit-visual .orbit-logo-card img {
  width: 170px !important;
  height: auto !important;
  max-height: 170px !important;
  object-fit: contain !important;
  display: block !important;
  filter: drop-shadow(0 24px 45px rgba(17,24,39,.18));
}

@media (max-width: 640px) {
  .hero-orbit-visual .orbit-logo-card {
    width: 145px !important;
    height: 145px !important;
  }

  .hero-orbit-visual .orbit-logo-card::before {
    width: 170px;
    height: 170px;
  }

  .hero-orbit-visual .orbit-logo-card img {
    width: 112px !important;
    max-height: 112px !important;
  }
}


/* ABOUT PAGE */
.about-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 184, 217, 0.12), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(217, 70, 239, 0.12), transparent 32%),
    #F8FAFC;
}

.about-story-grid,
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.about-story-copy h2,
.mission-card h2,
.about-capabilities-panel h2 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: #111827;
  letter-spacing: -0.06em;
  line-height: 1;
}

.about-story-copy h2 {
  font-size: clamp(38px, 4vw, 64px);
  margin: 24px 0 22px;
}

.about-story-copy p,
.mission-card p,
.about-capabilities-panel p {
  color: #667085;
  font-size: 17px;
  line-height: 1.78;
}

.about-card-stack {
  display: grid;
  gap: 18px;
}

.about-feature-card,
.mission-card {
  padding: 32px;
  border-radius: 30px;
  background: #FFFFFF;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 55px rgba(37, 99, 235, 0.08);
}

.about-feature-card strong {
  display: block;
  color: #111827;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.about-feature-card span {
  display: block;
  color: #667085;
  line-height: 1.7;
}

.about-capabilities-panel {
  padding: clamp(44px, 6vw, 76px);
  border-radius: 42px;
  background: linear-gradient(135deg, #00B8D9, #2563EB, #6D28D9, #D946EF);
  color: #FFFFFF;
  overflow: hidden;
  position: relative;
}

.about-capabilities-panel h2 {
  color: #FFFFFF;
  font-size: clamp(38px, 5vw, 74px);
  margin: 24px 0 22px;
}

.about-capabilities-panel p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 850px;
}

.about-capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.about-capability-list span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  color: #FFFFFF;
  font-weight: 850;
  font-size: 13px;
}

.mission-card h2 {
  font-size: clamp(32px, 4vw, 54px);
  margin: 24px 0 20px;
}

@media (max-width: 920px) {
  .about-story-grid,
  .about-mission-grid {
    grid-template-columns: 1fr;
  }
}


/* ABOUT PAGE LAYOUT FIX */
.about-hero .subpage-hero-inner {
  width: min(1180px, calc(100% - 72px)) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  text-align: left !important;
}

.about-hero .subpage-hero-inner h1 {
  max-width: 980px !important;
  font-size: clamp(54px, 6.4vw, 92px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.08em !important;
  margin: 28px 0 24px !important;
}

.about-hero .subpage-hero-inner p {
  max-width: 760px !important;
  font-size: 18px !important;
  line-height: 1.8 !important;
}

.subpage-hero.about-hero {
  padding: 108px 0 118px !important;
  overflow: hidden !important;
}

@media (max-width: 920px) {
  .about-hero .subpage-hero-inner {
    width: min(100% - 42px, 1180px) !important;
  }

  .about-hero .subpage-hero-inner h1 {
    font-size: clamp(44px, 11vw, 70px) !important;
  }
}

@media (max-width: 640px) {
  .subpage-hero.about-hero {
    padding: 76px 0 82px !important;
  }

  .about-hero .subpage-hero-inner {
    width: min(100% - 36px, 1180px) !important;
  }

  .about-hero .subpage-hero-inner h1 {
    font-size: 44px !important;
    line-height: 1 !important;
  }

  .about-hero .subpage-hero-inner p {
    font-size: 16px !important;
  }
}


/* ABOUT PAGE FIX: Equal Mission and Vision card heights */
.about-mission-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 40px !important;
  align-items: stretch !important;
}

.about-mission-grid .mission-card {
  height: 100% !important;
  min-height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

@media (max-width: 920px) {
  .about-mission-grid {
    grid-template-columns: 1fr !important;
  }

  .about-mission-grid .mission-card {
    height: auto !important;
    min-height: auto !important;
  }
}


/* FOOTER TYPOGRAPHY PREMIUM FIX */
.dark-footer-grid,
.premium-footer-grid {
  grid-template-columns: 1.55fr 0.75fr 1.35fr !important;
  gap: 64px !important;
}

.dark-footer .footer-column h4,
.premium-footer .footer-column h4 {
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.96) !important;
  margin: 0 0 24px !important;
}

.dark-footer .footer-column a,
.dark-footer .footer-column span,
.premium-footer .footer-column a,
.premium-footer .footer-column span {
  font-size: 17px !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
  letter-spacing: -0.015em !important;
  color: rgba(203, 213, 225, 0.76) !important;
  margin: 14px 0 !important;
}

.dark-footer .footer-column a:hover,
.premium-footer .footer-column a:hover {
  color: #FFFFFF !important;
  transform: translateX(4px);
}

.dark-footer .footer-description,
.premium-footer .footer-description {
  font-size: 17px !important;
  line-height: 1.82 !important;
  font-weight: 400 !important;
  color: rgba(148, 163, 184, 0.86) !important;
}

.footer-socials a {
  opacity: 0.82;
}

.footer-socials a:hover {
  opacity: 1;
}

.dark-footer .footer-bottom a,
.premium-footer .footer-bottom a {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: rgba(203, 213, 225, 0.76) !important;
}

@media (max-width: 1020px) {
  .dark-footer-grid,
  .premium-footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 42px !important;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .dark-footer-grid,
  .premium-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .dark-footer .footer-column a,
  .premium-footer .footer-column a {
    font-size: 16px !important;
  }
}


/* ABOUT PAGE: What We Support section balance fix */
.about-capability-list {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
  margin-top: 34px !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
  -webkit-overflow-scrolling: touch !important;
  max-width: 100% !important;
}

.about-capability-list::-webkit-scrollbar {
  display: none !important;
}

.about-capability-list span {
  white-space: nowrap !important;
  flex: 0 0 auto !important;
  padding: 11px 14px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 750 !important;
  letter-spacing: -0.01em !important;
}

.about-capabilities-panel {
  padding-top: clamp(44px, 5vw, 66px) !important;
  padding-bottom: clamp(44px, 5vw, 66px) !important;
}

.about-capabilities-panel h2 {
  font-size: clamp(52px, 6vw, 84px) !important;
  line-height: 0.96 !important;
  max-width: 900px !important;
}

.about-capabilities-panel p {
  max-width: 960px !important;
}

@media (max-width: 760px) {
  .about-capability-list {
    gap: 9px !important;
    padding-bottom: 4px !important;
  }

  .about-capability-list span {
    font-size: 12px !important;
    padding: 10px 12px !important;
  }

  .about-capabilities-panel h2 {
    font-size: clamp(38px, 11vw, 54px) !important;
  }
}


/* LEGAL PAGES + FINAL FOOTER LINKS */
.legal-page {
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 184, 217, 0.10), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(217, 70, 239, 0.10), transparent 32%),
    #F8FAFC;
}

.legal-card {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 64px);
  border-radius: 34px;
  background: #FFFFFF;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.10);
}

.legal-card h1 {
  margin: 26px 0 24px;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  color: #111827;
}

.legal-card h2 {
  margin: 30px 0 10px;
  color: #111827;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.legal-card p,
.legal-card li {
  color: #667085;
  font-size: 17px;
  line-height: 1.75;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.sitemap-list a {
  color: #6D28D9;
  font-weight: 800;
}

.footer-socials a[aria-label="LinkedIn"] svg {
  width: 19px;
  height: 19px;
}

.dark-footer .footer-bottom div a,
.premium-footer .footer-bottom div a {
  font-weight: 500 !important;
}

@media (max-width: 640px) {
  .legal-page {
    padding: 76px 0;
  }
}


/* INDUSTRIES WE SUPPORT SECTION */
.industries-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 184, 217, 0.08), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(217, 70, 239, 0.08), transparent 30%),
    #F8FAFC;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.industry-card {
  position: relative;
  min-height: 255px;
  padding: 34px;
  border-radius: 32px;
  background: #FFFFFF;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 55px rgba(37, 99, 235, 0.07);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -55px auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 184, 217, 0.12), rgba(109, 40, 217, 0.12), rgba(217, 70, 239, 0.12));
  filter: blur(4px);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 75px rgba(37, 99, 235, 0.11);
  border-color: rgba(109, 40, 217, 0.18);
}

.industry-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #00B8D9, #2563EB, #6D28D9, #D946EF);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow: 0 18px 35px rgba(109, 40, 217, 0.18);
}

.industry-card h3 {
  position: relative;
  margin: 28px 0 14px;
  color: #111827;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.industry-card p {
  position: relative;
  margin: 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 1020px) {
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

  .industry-card {
    min-height: auto;
    padding: 28px;
    border-radius: 28px;
  }

  .industry-card h3 {
    font-size: 24px;
  }
}


/* INDUSTRIES WE SUPPORT SECTION - FINAL FIX */
.industries-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 184, 217, 0.08), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(217, 70, 239, 0.08), transparent 30%),
    #F8FAFC;
}

.industries-section .center-heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.industries-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin-top: 48px !important;
}

.industry-card {
  position: relative;
  min-height: 255px;
  padding: 34px;
  border-radius: 32px;
  background: #FFFFFF;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 55px rgba(37, 99, 235, 0.07);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -55px auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 184, 217, 0.12), rgba(109, 40, 217, 0.12), rgba(217, 70, 239, 0.12));
  filter: blur(4px);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 75px rgba(37, 99, 235, 0.11);
  border-color: rgba(109, 40, 217, 0.18);
}

.industry-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #00B8D9, #2563EB, #6D28D9, #D946EF);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow: 0 18px 35px rgba(109, 40, 217, 0.18);
}

.industry-card h3 {
  position: relative;
  margin: 28px 0 14px;
  color: #111827;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.industry-card p {
  position: relative;
  margin: 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 1020px) {
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .industries-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin-top: 34px !important;
  }

  .industry-card {
    min-height: auto;
    padding: 28px;
    border-radius: 28px;
  }

  .industry-card h3 {
    font-size: 24px;
  }
}


/* GLOBAL PREMIUM BACKGROUND UPGRADE */
html,
body {
  background:
    radial-gradient(
      circle at 8% 8%,
      rgba(0, 184, 217, 0.04),
      transparent 32%
    ),
    radial-gradient(
      circle at 92% 8%,
      rgba(217, 70, 239, 0.04),
      transparent 34%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(37, 99, 235, 0.03),
      transparent 38%
    ),
    #F8FAFC !important;
}

/* Keep cards pure white so they still pop */
.service-card,
.industry-card,
.why-card,
.mission-card,
.about-feature-card,
.contact-card {
  background: #FFFFFF;
}


/* APPLE-STYLE GLOBAL BACKGROUND + CARD CLEANUP FINAL */
:root {
  --rm-page-bg: #F5F5F7;
  --rm-card-bg: #FFFFFF;
  --rm-card-border: rgba(17, 24, 39, 0.08);
  --rm-card-shadow: 0 18px 45px rgba(15, 23, 42, 0.055);
  --rm-card-shadow-hover: 0 28px 65px rgba(15, 23, 42, 0.095);
}

/* Universal page background, no global gradient wash */
html,
body,
main,
.section,
.statement-section,
.industries-section,
.about-hero,
.contact-page-hero,
.legal-page,
.thank-you-page {
  background: var(--rm-page-bg) !important;
}

/* Keep intentional brand gradient panels only */
.hero,
.intelligence-panel,
.about-capabilities-panel,
.cta-card {
  background: linear-gradient(135deg, #00B8D9, #2563EB, #6D28D9, #D946EF) !important;
}

/* Keep all cards white and premium */
.service-card,
.industry-card,
.why-card,
.mission-card,
.about-feature-card,
.solution-detail,
.app-card,
.contact-form-card,
.legal-card,
.thank-you-card,
.statement-card {
  background: var(--rm-card-bg) !important;
  background-image: none !important;
  border: 1px solid var(--rm-card-border) !important;
  box-shadow: var(--rm-card-shadow) !important;
}

/* Remove template-like gradient overlays and decorative blobs from cards */
.service-card::before,
.service-card::after,
.industry-card::before,
.industry-card::after,
.why-card::before,
.why-card::after,
.mission-card::before,
.mission-card::after,
.about-feature-card::before,
.about-feature-card::after,
.solution-detail::before,
.solution-detail::after,
.app-card::before,
.app-card::after,
.statement-card::before,
.statement-card::after {
  display: none !important;
  content: none !important;
}

/* Premium hover: white card, subtle lift, no color wash */
.service-card:hover,
.industry-card:hover,
.why-card:hover,
.mission-card:hover,
.about-feature-card:hover,
.solution-detail:hover,
.app-card:hover,
.statement-card:hover {
  background: var(--rm-card-bg) !important;
  background-image: none !important;
  transform: translateY(-6px) !important;
  border-color: rgba(109, 40, 217, 0.16) !important;
  box-shadow: var(--rm-card-shadow-hover) !important;
}

/* Remove any child color wash caused by hover states */
.service-card:hover *,
.industry-card:hover *,
.why-card:hover *,
.mission-card:hover *,
.about-feature-card:hover *,
.solution-detail:hover *,
.app-card:hover *,
.statement-card:hover * {
  color: inherit;
}

/* Keep headings/text colors consistent after removing hover gradients */
.service-card:hover h3,
.industry-card:hover h3,
.why-card:hover h3,
.mission-card:hover h2,
.about-feature-card:hover strong,
.solution-detail:hover h3,
.app-card:hover h3,
.statement-card:hover strong {
  color: #111827 !important;
}

.service-card:hover p,
.industry-card:hover p,
.why-card:hover p,
.mission-card:hover p,
.about-feature-card:hover span,
.solution-detail:hover p,
.app-card:hover p,
.statement-card:hover p {
  color: #667085 !important;
}

/* Icon hover only, clean and intentional */
.service-card .service-icon,
.industry-card .industry-number,
.solution-detail .solution-detail-icon,
.app-card .app-icon {
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.service-card:hover .service-icon,
.solution-detail:hover .solution-detail-icon,
.app-card:hover .app-icon {
  transform: scale(1.045) !important;
}

/* Keep selected/featured cards from turning into gradient blocks */
.service-card.featured,
.industry-card.featured,
.why-card.featured {
  background: #FFFFFF !important;
  background-image: none !important;
}

/* Industries cards, cleaner and flatter */
.industry-card {
  min-height: 245px !important;
}

.industry-number {
  background: #111827 !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
}

/* Disable aggressive animated hover behavior if present */
.service-card,
.industry-card,
.why-card,
.mission-card,
.about-feature-card,
.solution-detail,
.app-card,
.statement-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
}

/* Make subtle section separation without gradients */
.section {
  border-color: rgba(17, 24, 39, 0.04);
}


/* OUR APPROACH CLEANUP: remove cheap gradient step styling */
.approach-visual,
.approach-card,
.process-card,
.process-list,
.approach-steps {
  background: #FFFFFF !important;
  background-image: none !important;
}

/* Main left visual panel */
.approach-visual,
.approach-card,
.process-card {
  border: 1px solid rgba(17, 24, 39, 0.08) !important;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.055) !important;
}

/* Remove background glow blobs in the approach visual */
.approach-visual::before,
.approach-visual::after,
.approach-card::before,
.approach-card::after,
.process-card::before,
.process-card::after {
  display: none !important;
  content: none !important;
}

/* Step rows inside the approach panel */
.process-step,
.approach-step,
.step-card {
  position: relative !important;
  background: #FFFFFF !important;
  background-image: none !important;
  color: #111827 !important;
  border: 1px solid rgba(17, 24, 39, 0.08) !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045) !important;
}

/* Kill the gradient active row */
.process-step:first-child,
.approach-step:first-child,
.step-card:first-child {
  background: #FFFFFF !important;
  background-image: none !important;
  color: #111827 !important;
}

/* Add small clean numbered badges */
.process-step:nth-child(1)::before,
.approach-step:nth-child(1)::before,
.step-card:nth-child(1)::before {
  content: "01";
}

.process-step:nth-child(2)::before,
.approach-step:nth-child(2)::before,
.step-card:nth-child(2)::before {
  content: "02";
}

.process-step:nth-child(3)::before,
.approach-step:nth-child(3)::before,
.step-card:nth-child(3)::before {
  content: "03";
}

.process-step:nth-child(4)::before,
.approach-step:nth-child(4)::before,
.step-card:nth-child(4)::before {
  content: "04";
}

.process-step::before,
.approach-step::before,
.step-card::before {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  display: inline-grid !important;
  place-items: center !important;
  margin-right: 14px !important;
  border-radius: 12px !important;
  background: #111827 !important;
  color: #FFFFFF !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  vertical-align: middle !important;
}

/* Make text hierarchy clean */
.process-step,
.approach-step,
.step-card {
  display: flex !important;
  align-items: center !important;
  font-weight: 750 !important;
}

/* Neutral connector line only */
.approach-visual .timeline-line,
.approach-card .timeline-line,
.process-card .timeline-line,
.process-list::before,
.approach-steps::before {
  background: rgba(17, 24, 39, 0.12) !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* If the old design used the first row as a wide gradient bar, remove that effect */
.process-step:first-child *,
.approach-step:first-child *,
.step-card:first-child * {
  color: #111827 !important;
}

/* Preserve section page background */
.approach-section {
  background: #F5F5F7 !important;
}


/* FINAL OUR APPROACH REDESIGN */
.approach-visual,
.approach-card,
.process-card,
.process-list,
.approach-steps,
.process-step,
.approach-step,
.step-card {
  display: none !important;
}

.approach-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.approach-mini-card {
  min-height: 220px;
  padding: 30px;
  border-radius: 30px;
  background: #FFFFFF;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.055);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.approach-mini-card:hover {
  transform: translateY(-5px);
  border-color: rgba(109, 40, 217, 0.16);
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.095);
}

.approach-mini-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #111827;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}

.approach-mini-card h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.approach-mini-card p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.65;
}

.approach-section {
  background: #F5F5F7 !important;
}

@media (max-width: 760px) {
  .approach-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .approach-mini-card {
    min-height: auto;
    padding: 26px;
    border-radius: 26px;
  }
}
