/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  background: #140F1F;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.purple { color: #6E3FFF; }

.section-divider {
  padding: 60px 0 0;
  display: flex;
  flex-direction: column;
}

.section-label,
.section-divider span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
}

.dash-line {
  border: none;
  border-top: 2.5px dashed rgba(255, 255, 255, 0.1);
  margin: 0;
  width: 100%;
}

.about-us-section {
  background: #140F20;
}

/* === NAVBAR (light white glass, white gradient border, frosted blur) === */
.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 976px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  border-radius: 100px;
  padding: 12px 24px 12px 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
/* White gradient border via pseudo-element (works with border-radius) */
.navbar::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 101px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.navbar.scrolled::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.65) 100%);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  max-width: 100%;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  flex-shrink: 0;
}
.logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s, background 0.2s;
  position: relative;
  letter-spacing: 0.01em;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.nav-links a.active {
  background: #6E3FFF;
  color: #fff;
}
.nav-links a:not(.active)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 50%;
  height: 2px;
  background: #6E3FFF;
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.nav-links a:not(.active):hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Services dropdown: same look as other nav links by default; purple only when open */
.nav-dropdown-wrap {
  position: relative;
  display: inline-block;
}
.nav-dropdown-head {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: transparent;
  color: inherit;
  border-radius: 100px;
  overflow: hidden;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown-head:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.nav-dropdown-wrap.open .nav-dropdown-head {
  background: #6E3FFF;
  color: #fff;
}
.nav-dropdown-wrap.open .nav-dropdown-head:hover {
  background: #7d4dff;
  color: #fff;
}
.nav-dropdown-link {
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 8px 10px 18px;
  border-radius: 100px 0 0 100px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.nav-dropdown-wrap.open .nav-dropdown-link {
  color: #fff;
}
.nav-dropdown-link::after {
  display: none;
}
.nav-dropdown-link:hover::after {
  display: none;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 100%;
  min-height: 38px;
  padding: 0 10px 0 6px;
  margin: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  border-radius: 0 100px 100px 0;
  transition: background 0.2s;
}
.nav-dropdown-trigger:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.nav-dropdown-active .nav-dropdown-trigger,
.nav-dropdown-wrap.open .nav-dropdown-trigger {
  background: transparent;
  color: #fff;
}
.nav-dropdown-wrap.open .nav-dropdown-trigger:hover {
  background: rgba(255, 255, 255, 0.12);
}
.nav-dropdown-active .nav-dropdown-link.active {
  color: #fff;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  min-width: 300px;
  background: rgba(10, 8, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(110, 63, 255, 0.45);
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1001;
}
.nav-dropdown-wrap.open .nav-dropdown {
  display: block;
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown a:last-child {
  border-bottom: none;
}
.nav-dropdown a:hover {
  background: rgba(110, 63, 255, 0.15);
  color: #fff;
}
.nav-dropdown-chevron {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin-left: 12px;
}
@media (max-width: 900px) {
  .nav-dropdown-wrap.open .nav-dropdown {
    position: relative;
    margin-top: 8px;
    min-width: 100%;
  }
}

.nav-cta {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(110, 63, 255, 0.5);
  color: rgba(244, 242, 248, 0.95);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav-cta:hover {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: 0.3s;
}

/* === HERO (#140F1F bg, gradient on “HR Strategy & Execution”, white “that Works.”) === */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 56px 56px;
  background: #140F1F;
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  width: 100%;
  padding-bottom: 64px;
  text-align: center;
}
/* Ellipse BG: top-right glow – gradient merges into hero bg #140F1F (absolute, so doesn’t affect flex) */
.hero-ellipse-bg {
  position: absolute;
  top: -300px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(110, 63, 255, 0.32) 0%,
    rgba(110, 63, 255, 0.12) 30%,
    rgba(80, 55, 120, 0.08) 55%,
    #140F1F 100%
  );
  filter: blur(24px);
  z-index: 1;
  pointer-events: none;
}

/* === APPROACH PAGE – first section (same bg, nav, glass) === */
.approach-hero {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  padding: 140px 24px 100px;
  background: #140F1F;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.approach-ellipse-bg {
  position: absolute;
  top: -280px;
  right: -280px;
  width: 770px;
  height: 770px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(110, 63, 255, 0.32) 0%,
    rgba(110, 63, 255, 0.12) 30%,
    rgba(80, 55, 120, 0.08) 55%,
    #140F1F 100%
  );
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}
.approach-hero .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
}
.approach-hero-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600;
  font-style: normal;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.approach-hero-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  font-weight: 400;
}
.approach-hero .section-divider {
  padding-top: 28px;
  text-align: left;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: max(24px, calc(50vw - 600px + 24px));
  padding-right: max(24px, calc(50vw - 600px + 24px));
  box-sizing: border-box;
}
.approach-hero .section-divider .dash-line {
  width: 100%;
}
.approach-hero .section-divider + .approach-hero-heading {
  margin-top: 0;
}
.approach-hero-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  font-style: normal;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  padding: 80px 24px 0px;
}
.approach-hero-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
  max-width: 640px;
  text-align: center;
}

/* === APPROACH PAGE – Our Process (left: text + timeline, right: approach.svg) === */
.approach-process {
  background: #140F1F;
  padding: 80px 0;
}
.approach-process-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-evenly;
}
.approach-process-left-text {
  flex: 1;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.approach-process-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  font-style: normal;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.approach-process-intro {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 48px;
}
.approach-process-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  font-style: normal;
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.approach-process-title .purple { color: #6E3FFF; }
.approach-process-steps {
  position: relative;
  padding-left: 0;
}
.approach-process-steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 0;
  border-left: 2px dashed #6E3FFF;
  z-index: 0;
}
.approach-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 32px;
}
.approach-step:last-child { padding-bottom: 0; }
.approach-step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.approach-step-num--active {
  background: #6E3FFF;
  color: #fff;
}
.approach-step-content {
  padding-top: 2px;
}
.approach-step-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.approach-step-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
.approach-process-right {
  flex: 0 0 auto;
  width: 100%;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.approach-process-svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .approach-process-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .approach-process-right {
    max-width: 100%;
    order: -1;
  }
  .approach-process-svg { max-width: 320px; margin: 0 auto; }
}

/* === APPROACH PAGE – How We Partner === */
.approach-partner {
  background: #140F1F;
  padding: 80px 0;
}
.approach-partner-divider {
  padding-top: 0;
  padding-bottom: 0;
  text-align: left;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: max(24px, calc(50vw - 600px + 24px));
  padding-right: max(24px, calc(50vw - 600px + 24px));
  box-sizing: border-box;
}
.approach-partner-divider .dash-line {
  width: 100%;
  margin-bottom: 24px;
}
.approach-partner-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  font-style: normal;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.approach-partner-heading .purple { color: #6E3FFF; }
.approach-partner-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  margin-bottom: 48px;
}
.approach-partner-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.approach-partner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 900px) {
  .approach-partner-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 500px) {
  .approach-partner-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* === CONTACT PAGE === */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 24px 80px;
  background: #140F1F;
  text-align: center;
}
.contact-ellipse-bg {
  position: absolute;
  top: -280px;
  right: -280px;
  width: 770px;
  height: 770px;
  border-radius: 50%;
  background: linear-gradient(90deg, #140F1F 0%, rgba(20, 15, 31, 0.6) 40%, transparent 100%),
  linear-gradient(180deg,rgba(110, 63, 255, 0.56) 0%, rgba(110, 63, 255, 0.32) 30%, rgba(80, 55, 120, 0.24) 55%, transparent 100%);
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}
.contact-hero .container {
  position: relative;
  z-index: 1;
}
.contact-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600;
  font-style: normal;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.contact-hero-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* === SERVICES PAGE === */
.services-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 36px 80px;
  background: #140F1F;
  text-align: center;
}
.services-hero-ellipse {
  position: absolute;
  top: -280px;
  right: -280px;
  width: 770px;
  height: 770px;
  border-radius: 50%;
  background: linear-gradient(90deg, #140F1F 0%, rgba(20, 15, 31, 0.6) 40%, transparent 100%),
  linear-gradient(180deg,rgba(110, 63, 255, 0.56) 0%, rgba(110, 63, 255, 0.32) 30%, rgba(80, 55, 120, 0.24) 55%, transparent 100%);
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}
.services-hero .container {
  position: relative;
  z-index: 1;
}
.services-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 800;
  font-style: normal;
  line-height: 1.29; /* 72/56 */
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 12px;
  background: linear-gradient(93.48deg, #6E3FFF 0%, #E7DFFF 41.38%, #D1C3FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.services-hero-title .services-hero-gradient {
  /* inherits gradient from parent */
}
.services-hero-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.services-hero .section-divider {
  padding-top: 32px;
  text-align: left;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: max(24px, calc(50vw - 600px + 24px));
  padding-right: max(24px, calc(50vw - 600px + 24px));
  box-sizing: border-box;
}
.services-hero .section-divider .dash-line {
  width: 100%;
}
.services-hero-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  font-style: normal;
  color: #fff;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.services-hero + .service-divider {
  margin-top: 10px;
  margin-bottom: 80px;
}
.services-hero-heading .purple { color: #6E3FFF; }

/* Services page: two-column detail sections (e.g. 01 + text + list | image) */
/* Service divider: same width as section content (max 1200px), 1px top border #ADADAD 20%, 80px space. BG matches site #140F1F. */
.service-divider {
  max-width: 1200px;
  width: 100%;
  margin: 80px auto 80px;
  padding: 0 24px;
  height: 0;
  border: none;
  border-top: 1px solid rgba(173, 173, 173, 0.2);
  background: #140F1F;
  box-sizing: border-box;
}

.services-detail-section {
  background: #140F1F;
  padding: 24px 24px 40px;
}
.services-detail-inner {
  display: flex;
  gap: 40px;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.services-detail-left {
  flex: 1;
  max-width: 520px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}
.services-detail-num {
  flex-shrink: 0;
  margin-left: -40px;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1;
  letter-spacing: -0.07em;
}
.services-detail-content {
  flex: 1;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.services-detail-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
}
.services-detail-desc {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}
.services-detail-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 8px 0 4px;
  width: 100%;
}
.services-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.services-detail-list li {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  padding-left: 32px;
  position: relative;
}
.services-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: url('ma/CheckCircle.svg') no-repeat center;
  background-size: contain;
  background-color: #6E3FFF;
  border-radius: 50%;
}
.services-detail-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.services-detail-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}
@media (max-width: 900px) {
  .services-detail-inner {
    flex-direction: column;
    gap: 40px;
  }
  .services-detail-left {
    max-width: none;
    flex-direction: column;
    gap: 16px;
  }
  .services-detail-img {
    max-width: 100%;
  }
}

/* === M&A Service page (services-ma.html): two sections, gradient text, dashed divider === */
.ma-section {
  position: relative;
  overflow: hidden;
  background: #140F1F;
  padding: 180px 36px 100px;
  text-align: center;
}
.ma-section-1 .services-hero-ellipse {
  position: absolute;
  top: -280px;
  right: -280px;
  width: 770px;
  height: 770px;
  border-radius: 50%;
  background: linear-gradient(90deg, #140F1F 0%, rgba(20, 15, 31, 0.6) 40%, transparent 100%),
  linear-gradient(180deg, rgba(110, 63, 255, 0.56) 0%, rgba(110, 63, 255, 0.32) 30%, rgba(80, 55, 120, 0.24) 55%, transparent 100%);
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}
.ma-section .container {
  position: relative;
  z-index: 1;
}

/* M&A hero (section 1): center content, gradient inside title text */
.ma-section-1-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ma-hero-title {
  margin-left: auto;
  margin-right: auto;
}
.ma-hero-gradient {
  background: linear-gradient(93.48deg, #6E3FFF 0.06%, #E7DFFF 41.38%, #D1C3FF 103.3%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.ma-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  font-style: normal;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.ma-heading .ma-gradient {
  color: #6E3FFF;
  -webkit-text-fill-color: #6E3FFF;
}
.ma-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.ma-section-2 {
  padding-top: 40px;
}
.ma-divider-wrap {
  text-align: left;
  width: 100%;
  margin-bottom: 32px;
}
.ma-section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}
.ma-dash-line {
  border: none;
  border-top: 2.5px dashed rgba(255, 255, 255, 0.1);
  margin: 0;
  width: 100%;
}
.ma-body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto;
  max-width: 640px;
  text-align: center;
}
/* Executive Coaching page: section 2 title and body left-aligned */
.ec-section2-title {
  text-align: center;
}
.ec-section2-body {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* AI page: section 2 title and body centered */
.ai-section2-title {
  text-align: center;
}
.ai-section2-title .ma-gradient {
  background: linear-gradient(93.48deg, #6E3FFF 0.06%, #E7DFFF 41.38%, #D1C3FF 103.3%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #6E3FFF;
}
.ai-section2-body {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* AI page: CTA button below What We Do timeline */
.ai-cta-wrap {
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
}
.ai-cta-btn {
  display: inline-block;
  padding: 17px 33px;
  background: linear-gradient(rgba(20, 15, 31, 0.98), rgba(20, 15, 31, 0.98)) padding-box,
              linear-gradient(94.76deg, #FFFFFF 0%, rgba(255, 255, 255, 0.12) 77.9%, rgba(110, 63, 255, 0.8) 100%) border-box;
  border: 1px solid transparent;
  border-radius: 100px;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: filter 0.25s ease, box-shadow 0.25s ease;
}
.ai-cta-btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 0 20px rgba(110, 63, 255, 0.3);
}

/* M&A page: Transaction Advisory section (left col + right timeline) */
.ma-advisory-section {
  background: #140F1F;
  padding: 80px 24px 100px;
}
.ma-advisory-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}
.ma-advisory-left {
  flex: 0 1 380px;
  position: sticky;
  top: 120px;
  text-align: left;
}
.ma-advisory-title {
  color: #fff;
  margin-bottom: 16px;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-style: semi-bold;
  font-size: 34px;
  line-height: 48px;
  letter-spacing: 0%;
  
}
.ma-advisory-title .ma-gradient {
  color: #6E3FFF;
  -webkit-text-fill-color: #6E3FFF;
}
.ma-advisory-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.ma-advisory-right {
  flex: 1 1 480px;
  max-width: 560px;
}
.ma-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Connector stretches from bottom of icon to bottom of step (= top of next icon) */
.ma-timeline-connector {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex: 1;
  min-height: 95px;
  padding-left: 0;
  margin-top: 0;
}
.ma-timeline-line {
  display: block;
  width: 0;
  height: 100%;
  min-height: 95px;
  margin-left: 37px;
  flex-shrink: 0;
  border: none;
  border-left: 2.5px dashed rgba(255, 255, 255, 0.2);
  transition: border-left-color 0.45s ease;
}
.ma-timeline-connector--active .ma-timeline-line {
  border-left-color: #6E3FFF;
}
.ma-timeline-step {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 0;
}
/* Icon column: icon + connector; connector stretches so line reaches top of next icon */
.ma-timeline-icon-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  gap: 0;
  min-height: 76px;
}
.ma-timeline-icon-wrap {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}
.ma-timeline-step--active .ma-timeline-icon-wrap {
  background: #6E3FFF;
  border-color: #6E3FFF;
  box-shadow: 0 0 20px rgba(110, 63, 255, 0.6), 0 0 40px rgba(110, 63, 255, 0.3);
}
.ma-timeline-icon {
  width: 76px;
  height: 76px;
  display: block;
  object-fit: contain;
  transition: filter 0.45s ease;
}
.ma-timeline-step--active .ma-timeline-icon {
  filter: brightness(0) invert(1);
}
.ma-timeline-content {
  flex: 1;
  padding-bottom: 16px;
  text-align: left;
}
.ma-timeline-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.ma-timeline-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
  line-height: 1.5;
}
.ma-timeline-list-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 16px 0 8px;
  line-height: 1.5;
}
.ma-timeline-list-label:first-of-type {
  margin-top: 0;
}
.ma-timeline-note {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 12px 0 0;
  line-height: 1.6;
}
.ma-timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ma-timeline-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.ma-timeline-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: url('ma/CheckCircle.svg') no-repeat center;
  background-size: contain;
}

/* Services pages: use CheckCircle.svg for list markers (circular purple check) */
.services-page .ma-timeline-list li::before,
.services-page .ma-org-see-list li::before {
  background-image: url('ma/CheckCircle.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
  border-radius: 0;
}

@media (max-width: 900px) {
  .ma-advisory-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
  }
  .ma-advisory-left {
    position: static;
    flex: none;
    max-width: none;
  }
  .ma-advisory-right {
    flex: none;
    max-width: none;
  }
  .ma-timeline-connector {
    min-height: 95px;
  }
  .ma-timeline-line {
    margin-left: 37px;
    min-height: 95px;
  }
}

/* M&A: What Organizations See (two columns: text + list + button | image card) */
.ma-org-see-section {
  background: #140F1F;
  padding: 80px 0 100px;
}
.ma-org-see-inner {
  display: flex;
  align-items: stretch;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.ma-org-see-left {
  flex: 1;
  min-width: 0;
}
.ma-org-see-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.ma-org-see-intro {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin: 0 0 20px 0;
}
.ma-org-see-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 40px 0 24px 0;
  width: 100%;
}
.ma-org-see-divider--wide {
  width: 1050px;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
.ma-org-see-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.ma-org-see-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}
.ma-org-see-list li:last-child {
  margin-bottom: 0;
}
.ma-org-see-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: url('ma/CheckCircle.svg') no-repeat center;
  background-size: contain;
  /* Icon uses #6E3FFF in SVG; services-page scoped rule above keeps same bg */
}
.ma-org-see-closing {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin: 0 0 28px 0;
}
.ma-org-see-btn {
  display: inline-block;
  text-decoration: none;
}
.ma-org-see-btn-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
.ma-org-see-right {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ma-org-see-card {
  width: 100%;
  max-width: 480px;
  background: #140F1F;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.ma-org-see-card::before,
.ma-org-see-card::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: rgba(255,255,255,0.4);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
}
.ma-org-see-card::before {
  display: none; /* top-left corner bracket removed */
}
.ma-org-see-card::after {
  display: none; /* bottom-right corner bracket removed */
}
.ma-org-see-img {
  width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 900px) {
  .ma-org-see-inner {
    flex-direction: column;
    gap: 40px;
  }
  .ma-org-see-section {
    padding: 56px 0 72px;
  }
}

/* Services page: core offerings images (1Div–6Div) */
.services-core-images {
  background: #140F1F;
  padding: 0 24px 80px;
}
.services-core-img-wrap {
  margin-bottom: 32px;
}
.services-core-img-wrap:last-child {
  margin-bottom: 0;
}
.services-core-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Services 3, 5, 6: check circles in assets are lighter; darken/saturate so purple reads as #6E3FFF */
.services-core-img-wrap:nth-child(3) .services-core-img,
.services-core-img-wrap:nth-child(5) .services-core-img,
.services-core-img-wrap:nth-child(6) .services-core-img {
  filter: brightness(0.9) saturate(1.1);
}

.contact-form-section {
  position: relative;
  background: #140F1F;
  padding: 0 24px 80px;
}
.contact-form-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  font-style: normal;
  color: #fff;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.contact-form-heading .purple { color: #6E3FFF; }
.contact-form {
  max-width: 720px;
  margin: 0 auto;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form-field--full {
  margin-bottom: 32px;
}
.contact-form-field label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.contact-form-field input,
.contact-form-field textarea {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background-color: #140F1F;
  background-image:
    linear-gradient(#140F1F, #140F1F),
     linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,0.1))
    ;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  border: 1px solid transparent;
  border-radius: 24px;
  padding: 14px 18px;
  transition: box-shadow 0.2s;
}
/* Prevent browser autofill from painting inputs white */
.contact-form-field input:-webkit-autofill,
.contact-form-field input:-webkit-autofill:hover,
.contact-form-field input:-webkit-autofill:focus,
.contact-form-field input:-webkit-autofill:active,
.contact-form-field textarea:-webkit-autofill,
.contact-form-field textarea:-webkit-autofill:hover,
.contact-form-field textarea:-webkit-autofill:focus,
.contact-form-field textarea:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #140F1F inset;
  box-shadow: 0 0 0 1000px #140F1F inset;
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contact-form-field input:focus,
.contact-form-field textarea:focus {
  outline: none;
  color: #fff;
  -webkit-text-fill-color: #fff;
  /* Same border as default – no visual change on focus */
  background-color: #140F1F;
  background-image:
    linear-gradient(#140F1F, #140F1F),
    linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,0.1));
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
}
.contact-form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form-email-error {
  display: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: #e74c3c;
  margin-top: 6px;
  align-items: center;
  gap: 6px;
}
.contact-form-email-error.contact-form-email-error--visible {
  display: flex;
}
.contact-form-email-error-icon {
  color: #e74c3c;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}
.contact-form-submit-wrap {
  text-align: center;
}
.contact-form-submit {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background-image:
    linear-gradient(#140F1F, #140F1F),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1)),
    linear-gradient(rgba(110, 63, 255, 0.75), rgba(110, 63, 255, 0.75));
  background-origin: padding-box, border-box, border-box;
  background-clip: padding-box, border-box, border-box;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 16px 32px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  animation: btn-pop 2.5s ease-in-out infinite;
}
.contact-form-submit:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  animation: none;
}

/* Success overlay: full viewport, fixed, blur over everything including navbar */
.contact-form-success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.contact-form-success-overlay.contact-form-success-overlay--visible {
  opacity: 1;
  visibility: visible;
}
.contact-form-success-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #140F1F;
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 400px;
  width: calc(100% - 48px);
  text-align: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}
.contact-form-success-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.contact-form-success-icon svg {
  display: block;
}
.contact-form-success-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.contact-form-success-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
  line-height: 1.5;
}
.contact-form-success-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 14px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, border-color 0.2s;
}
.contact-form-success-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}
.contact-form-success-btn-arrow {
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 600px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.hero h1 .hero-title-line1 {
  white-space: nowrap;
}
.hero h1 .hero-title-gradient {
  background: linear-gradient(93.48deg, #6E3FFF 0.06%, #E7DFFF 41.38%, #D1C3FF 103.3%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .hero-title-line2 {
  color: #ffffff;
}
.hero p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* Primary CTA – #6E3FFF with pop animation */
.btn-primary {
  padding: 16px 32px;
  border-radius: 100px;
  background: #6E3FFF;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(110, 63, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  animation: btn-pop 2.5s ease-in-out infinite;
}
@keyframes btn-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.btn-primary:hover {
  background: #7d4dff;
  box-shadow: 0 6px 28px rgba(110, 63, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  animation: none;
}
/* Talk to An Advisor – gradient bg (white + purple), gradient border (purple → white) */
.btn-outline {
  position: relative;
  padding: 16px 32px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(110, 63, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(110, 63, 255, 0.15) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 101px;
  padding: 1px;
  background: linear-gradient(135deg, #6E3FFF 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.btn-outline:hover {
  background: linear-gradient(135deg, rgba(110, 63, 255, 0.28) 0%, rgba(255, 255, 255, 0.18) 50%, rgba(110, 63, 255, 0.2) 100%);
  transform: translateY(-2px);
}
/* === WHO WE ARE === */
.who-we-are {
  background: #140F20;
  padding: 72px 0 80px;
  text-align: center;
}

.who-we-are h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  font-style: normal;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.who-we-are p {
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  color: #6B7280;
}

/* === GLOBAL PEOPLE CONSULTANT === */
.global-consultant {
  background: #140F20;
  
  padding: 80px 0;
  line-height: 66px;
}

.global-consultant .container {
  display: flex;
  gap: 80px;
  align-items: stretch;
  overflow: visible;
}

/* Left column: height from content; vertical flow, 32px gap, 24px right padding */
.gc-left {
  flex: 1;
  max-width: 645px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 24px;
  gap: 32px;
}

.gc-left h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  font-style: normal;
  color: #fff;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.5px;
}

.gc-left h2 .purple {
  display: block;
  color: #6E3FFF;
  font-size: 0.92em;
}

.gc-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gc-left ul li {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #6B7280;
  padding-left: 20px;
  position: relative;
}

.gc-left ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #6E3FFF;
  font-size: 16px;
  line-height: 1.4;
}

/* ===================================
   GLASS DASHBOARD CARD — gc-right
   =================================== */

.gc-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  position: relative;
  padding: 30px 40px 30px 0;
}

/* Right division — matches left column height, glass effect, radius 20px */
.dashboard-outer {
  position: relative;
  width: 595px;
  min-height: 510px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, #140F1F 0%, rgba(20, 15, 31, 0.6) 100%);
  overflow: hidden;
  opacity: 1;
}

.rightdiv-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top left;
  display: block;
}



/* === SCROLL CARDS STRIP (infinite horizontal scroll) === */
.scroll-cards {
  background: #140F1F;
  padding: 0 0 80px;
  overflow: hidden;
}

.scroll-cards-inner {
  display: flex;
  gap: 24px;
  padding: 0 24px;
  width: max-content;
  animation: scroll-cards-move 30s linear 2s infinite;
}

@keyframes scroll-cards-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.scroll-card {
  position: relative;
  overflow: hidden;
  min-width: 260px;
  max-width: 300px;
  padding: 20px 24px;
  background: linear-gradient(90deg, #140F1F 0%, rgba(20, 15, 31, 0.6) 500%),
    linear-gradient(90deg, rgba(110, 63, 255, 0.56) 0%, transparent 50%);
  background-blend-mode: multiply, normal;
  backdrop-filter: blur(130px);
  -webkit-backdrop-filter: blur(130px);
  border: linear gradient(135deg, linear-gradient(97.76deg, rgba(94, 94, 94, 0.08) 100%, rgba(10, 10, 10, 0.08) 97.31%)) 1px solid rgba(255, 255, 255, 0.812);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
/* Ellipse 16: 101×101px, 80% opacity, purple, blur – centered in each card (Figma spec) */
.scroll-card::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 101px;
  height: 101px;
  border-radius: 50%;
  background: rgba(110, 63, 255, 0.8);
  filter: blur(65px);
  -webkit-filter: blur(65px);
  z-index: 0;
  pointer-events: none;
}

.scroll-card:hover {
  border-color: rgba(110, 63, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* === INDUSTRIES / WHO WE SUPPORT (full block #140F1F) === */
.industry-section-wrapper {
  background: #140F1F;
  width: 100%;
}
.who-support {
  background: #140F1F;
  padding: 80px 0;
}
.who-support > .container > h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; text-align: center; margin-bottom: 16px; font-style: normal; }
.who-support > .container > p { text-align: center; max-width: 700px; margin: 0 auto 60px; color: #aaa; font-size: 15px; font-style: normal; }
.who-support-content {
  display: flex;
  gap: 60px;
  align-items: center;
}
.industry-left {
  flex: 0 0 auto;
  width: 380px;
  max-width: 100%;
  height: 380px;
  min-height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  opacity: 1;
}
.industry-left-svg {
  width: 100%;
  max-width: 300px;
  height: 100%;
  max-height: 380px;
  object-fit: contain;
  display: block;
}
.industry-right {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.industry-group-svg {
  width: 100%;
  max-width: 640px;
  height: auto;
  display: block;
}

/* Legacy support-item (used elsewhere if needed) */
.support-items { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.support-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 20px 24px;
}
.support-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(110,63,255,0.1); border: 1px solid rgba(110,63,255,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
}
.support-item p { color: #ccc; font-size: 14px; }

/* === CORE OFFERINGS (match Figma: 2+3 grid, 24px gaps, no extra padding) === */
.core-offerings {
  background: #140F1F;
  padding: 48px 0 60px;
}
.core-offerings h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  font-style: normal;
  text-align: center;
  margin-bottom: 16px;
}
.core-offerings > .container > p { text-align: center; max-width: 700px; margin: 0 auto 32px; color: #aaa; font-size: 15px; }

.services-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
.services-cards-grid--mobile {
  display: none;
}
.services-card-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .services-cards-grid--desktop {
    display: none;
  }
  .services-cards-grid--mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.services-divider-wrapper {
  background: #140F1F;
  width: 100%;
}
.services-svg-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services-svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.services-cta-wrap {
  text-align: center;
  margin-top: 40px;
}
.btn-explore-services {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 100px;
  background: #6E3FFF;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(110, 63, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: btnPop 2.5s ease-in-out infinite;
}
.btn-explore-services:hover {
  background: #7d4dff;
  box-shadow: 0 6px 28px rgba(110, 63, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  animation: none;
}
@keyframes btnPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.offering-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px;
  transition: border-color 0.3s;
}
.offering-card:hover { border-color: rgba(110,63,255,0.3); }
.offering-graphic {
  height: 180px; margin-bottom: 20px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.05);
}
.offering-card h3 { font-size: 20px; color: #fff; margin-bottom: 8px; }
.offering-card p { color: #aaa; font-size: 14px; }
.offerings-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.offerings-cta { text-align: center; }

/* === OUR APPROACH === */
.our-approach {
  background: #140F1F;
  padding: 80px 0;
}
.approach-card {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.approach-svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Our Approach: mobile-only block (stacked list with checkmarks) */
.approach-mobile {
  display: none;
  flex-direction: column;
  gap: 24px;
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
}
.approach-mobile-content {
  padding: 0;
}
.approach-mobile-img {
  width: 100%;
  height: auto;
  display: block;
}
.approach-mobile-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.approach-mobile-title .purple {
  color: #6E3FFF;
}
.approach-mobile-intro {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}
.approach-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.approach-mobile-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.approach-mobile-list li:last-child {
  margin-bottom: 0;
}
.approach-mobile-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #6E3FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.approach-mobile-icon::before {
  content: '✓';
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.approach-mobile-item-content {
  flex: 1;
}
.approach-mobile-item-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  display: block;
  margin-bottom: 6px;
}
.approach-mobile-item-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

@media (max-width: 900px) {
  .approach-card--desktop {
    display: none !important;
  }
  .approach-mobile {
    display: flex;
  }
}

/* Legacy approach items (kept for reference if needed) */
.approach-left { flex: 1; }
.approach-left h2 { font-size: clamp(32px, 3.5vw, 44px); font-weight: 800; margin-bottom: 20px; }
.approach-left p { color: #aaa; font-size: 15px; }
.approach-right { flex: 1; display: flex; flex-direction: column; gap: 28px; }
.approach-item { display: flex; gap: 14px; }
.approach-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #6E3FFF, #6E3FFF);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 14px; color: #fff;
}
.approach-item h4 { font-size: 16px; color: #fff; margin-bottom: 4px; }
.approach-item p { font-size: 14px; color: #aaa; }

/* === WHY CHOOSE US / WHY TRUST (layout and bg #140F1F) === */
.why-choose-wrapper {
  background: #140F1F;
  width: 100%;
}
.why-trust {
  background: #140F1F;
  padding: 80px 0;
}
.why-trust-content {
  display: flex;
  align-items: flex-start;
}
.why-trust-left {
  flex: 0 0 auto;
  max-width: 480px;
  margin-right: 32px;
}
.why-trust-left h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  text-align: left;
  width: 521;
  height: 146px;
  gap: 32px;
  angle: 0 deg;
  opacity: 1;
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.why-trust-gap {
  flex: 32px;
  width: 32px;
  min-width: 32px;
  height: 1px;
}
.why-trust-right {
  flex: 0 1 480px;
  min-width: 0;
  position: relative;
}

/* Why Choose Us: timeline with icon-to-icon dashed connectors (like Our Approach / M&A) */
.why-trust-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-trust-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 0;
}
.why-trust-icon-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  gap: 0;
  min-height: 56px;
}
.why-trust-item--last .why-trust-icon-col {
  min-height: 0;
}
.why-trust-icon-wrap {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}
.why-trust-item--active .why-trust-icon-wrap {
  background: #6E3FFF;
  border-color: #6E3FFF;
  box-shadow: 0 0 20px rgba(110, 63, 255, 0.6), 0 0 40px rgba(110, 63, 255, 0.3);
}
.why-trust-icon-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
.why-trust-connector {
  display: flex;
  flex: 1;
  min-height: 150px;
  justify-content: center;
}
.why-trust-item--last .why-trust-connector {
  display: none;
}
.why-trust-line {
  display: block;
  width: 0;
  height: 100%;
  min-height: 150px;
  margin-left: 28px;
  flex-shrink: 0;
  border: none;
  border-left: 2px dashed rgba(255, 255, 255, 0.2);
  transition: border-left-color 0.45s ease;
}
.why-trust-connector--active .why-trust-line {
  border-left-color: #6E3FFF;
}
.why-trust-item-content {
  flex: 1;
  padding-bottom: 24px;
  min-width: 0;
}
.why-trust-item-content h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.why-trust-item-content p {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Line segment below each block: connects icon above to icon below (1↔2, 2↔3, 3↔4) */
.timeline-line-connector {
  display: flex;
  gap: 32px;
  height: 56px;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-item:hover + .timeline-line-connector,
.timeline-line-connector:hover {
  opacity: 1;
}
.timeline-line-wrap {
  width: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.timeline-line-connector img {
  width: 2px;
  height: 72px;
  object-fit: fill;
  display: block;
  margin: -8px auto 0;
  transition: opacity 0.3s ease;
}
.timeline-line-connector--dashed .timeline-line-wrap {
  align-items: stretch;
  justify-content: center;
  overflow: visible;
}
.timeline-dashed-line {
  display: block;
  width: 0;
  height: 50px;
  border-left: 2px dashed rgba(255, 255, 255, 0.35);
  margin: -2px auto 20px;
  flex-shrink: 0;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}
.timeline-item:hover + .timeline-line-connector .timeline-dashed-line,
.timeline-line-connector:hover .timeline-dashed-line {
  border-left-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}
.timeline-item:hover + .timeline-line-connector img,
.timeline-line-connector:hover img {
  opacity: 1;
  transform: scale(1.05);
}
.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.timeline-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}
.timeline-item h4 { font-size: 18px; color: #fff; font-weight: 700; margin-bottom: 8px; }
.timeline-item p { font-size: 14px; color: #b0b0b0; line-height: 1.6; }

/* === FAQ === */
.faq {
  background: #140F1F;
  padding: 80px 0;
}
.faq h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  font-style: normal;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
  margin-bottom: 48px;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; width: 100%; background: none; border: none;
  color: #fff; font-size: 18px; text-align: left; font-family: inherit;
  padding: 0;
}
.faq-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  padding: 0;
  box-sizing: border-box;
}
.faq-icon-img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  color: #aaa; font-size: 18px; padding-right: 100px; line-height: 1.5;
}
.faq-item.active .faq-answer { max-height: 200px; padding-top: 18px; }

/* === TESTIMONIALS === */
.testimonials-section-wrapper {
  background: #140F1F;
  width: 100%;
}
.testimonials {
  background: #140F1F;
  padding: 80px 0;
}
.testimonials h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  font-style: normal;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
  margin-bottom: 48px;
}
/* Desktop: all 3 testimonials in one row, pagination arrows centered below */
.testimonials-carousel {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}
.testimonials-carousel--row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 32px;
}
.testimonials-carousel--row .testimonials-card-wrap {
  min-width: 0;
}
/* Desktop row: slide animation when prev/next is clicked (same 3 cards) */
.testimonials-carousel--row.testimonials-row-slide-next {
  animation: testimonialsRowSlideNext 0.4s ease-out both;
}
.testimonials-carousel--row.testimonials-row-slide-prev {
  animation: testimonialsRowSlidePrev 0.4s ease-out both;
}
@keyframes testimonialsRowSlideNext {
  from {
    opacity: 0.6;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes testimonialsRowSlidePrev {
  from {
    opacity: 0.6;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.testimonials-card-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(55, 48, 80, 0.5);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.testimonials-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.testimonials-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 0;
}

/* Mobile: prev/next arrow buttons */
.testimonials-prev,
.testimonials-next {
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  color: #fff;
}
.testimonials-prev:hover,
.testimonials-next:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
}
.testimonials-prev svg,
.testimonials-next svg {
  flex-shrink: 0;
  display: block;
}

/* Testimonials mobile (shown only on small viewports) */
.testimonials-mobile {
  display: none;
}
.testimonials-mobile-carousel {
  position: relative;
  margin-bottom: 24px;
}
.testimonials-mobile-slide {
  display: none;
  animation-duration: 0.4s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}
.testimonials-mobile-slide.active {
  display: block;
}
.testimonials-mobile-slide.slide-in-right {
  animation-name: testimonialSlideInRight;
}
.testimonials-mobile-slide.slide-in-left {
  animation-name: testimonialSlideInLeft;
}
.testimonials-mobile-card {
  background: rgba(55, 48, 80, 0.9);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
}
.testimonials-mobile-card .testimonials-mobile-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.testimonials-mobile-label {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  margin: 0 0 8px 0;
}
.testimonials-mobile-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}
.testimonials-mobile-dots span {
  width: 24px;
  height: 3px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
}
.testimonials-mobile-quote-mark {
  font-size: 64px;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
  font-family: Georgia, serif;
  letter-spacing: -0.02em;
}
.testimonials-mobile-quote {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 24px 0;
}
.testimonials-mobile-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonials-mobile-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonials-mobile-name {
  display: block;
  font-size: 15px;
  color: #fff;
  margin-bottom: 2px;
}
.testimonials-mobile-role {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.testimonials-mobile-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}
.testimonials-mobile-pagination .testimonials-prev,
.testimonials-mobile-pagination .testimonials-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.testimonials-mobile-pagination .testimonials-prev:hover,
.testimonials-mobile-pagination .testimonials-next:hover {
  background: #f5f5f5;
  border-color: rgba(0,0,0,0.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.testimonials-mobile-pagination .testimonials-prev svg,
.testimonials-mobile-pagination .testimonials-next svg {
  stroke: #333;
}

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-mark { font-size: 48px; color: #6E3FFF; font-weight: 700; margin-bottom: 16px; font-family: Georgia, serif; }
.testimonial-card blockquote { color: #ccc; font-size: 14px; margin-bottom: 24px; line-height: 1.7; flex: 1; }
.testimonial-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #6E3FFF, #6E3FFF);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff; font-weight: 600;
}
.author-info h5 { font-size: 15px; color: #fff; font-weight: 600; }
.author-info p { font-size: 12px; color: #aaa; }

/* === CTA BANNER === */
.cta-banner {
  background: #140F1F;
  padding: 80px 0;
}
.cta-svg-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-svg-link {
  display: block;
  width: 100%;
  line-height: 0;
}
.cta-svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}
.cta-card {
  background: linear-gradient(135deg, #6E3FFF, #6E3FFF);
  border-radius: 24px; padding: 80px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-card .cta-sub { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.cta-card h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: #fff; margin-bottom: 20px; line-height: 1.2; }
.cta-card p { color: rgba(255,255,255,0.8); font-size: 15px; max-width: 650px; margin: 0 auto 32px; }
.btn-white {
  padding: 16px 36px; border-radius: 50px;
  background: #fff; color: #333; font-size: 15px; font-weight: 600;
  border: none; cursor: pointer; transition: 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-white:hover { background: #f0f0f0; }
.cta-waves {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 150px;
  overflow: hidden; opacity: 0.3;
}
.cta-waves svg { position: absolute; bottom: -10px; width: 120%; left: -10%; }

/* CTA mobile (shown only on small viewports) */
.cta-mobile {
  display: none;
  background: linear-gradient(135deg, #6E3FFF, #6E3FFF);
  border-radius: 24px;
  padding: 40px 24px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-mobile::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 Q300,0 600,60 T1200,60 L1200,120 L0,120 Z' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 120% 100%;
  pointer-events: none;
}
.cta-mobile-pre {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  margin: 0 0 12px 0;
}
.cta-mobile-title,
.cta-mobile-heading {
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 16px 0;
}
.cta-mobile-desc,
.cta-mobile-text {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 28px;
}
.cta-mobile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 100px;
  background: #fff;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.cta-mobile-btn:hover {
  background: #f0f0f0;
  color: #111;
}

/* === ACCESSIBILITY PAGE === */
.accessibility-page { background: #140F1F; }

.accessibility-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 24px 80px;
  background: #140F1F;
  text-align: center;
}
.accessibility-hero .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.accessibility-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 56px;
  font-weight: 800;
  font-style: normal;
  line-height: 72px;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 24px;
  background: linear-gradient(93.48deg, #6E3FFF 0.06%, #E7DFFF 41.38%, #D1C3FF 103.3%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.accessibility-hero-intro {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin: 0 0 32px;
}
.accessibility-hero .section-divider {
  padding-top: 32px;
  text-align: left;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: max(24px, calc(50vw - 600px + 24px));
  padding-right: max(24px, calc(50vw - 600px + 24px));
  box-sizing: border-box;
}
.accessibility-hero .section-divider .dash-line {
  width: 100%;
}
/* Align commitment block with section divider left edge */
.accessibility-commitment-wrap {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: max(24px, calc(50vw - 600px + 24px));
  padding-right: max(24px, calc(50vw - 600px + 24px));
  box-sizing: border-box;
  padding-top: 0;
}
.accessibility-commitment-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #fff;
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  padding-top: 32px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.accessibility-commitment-body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
  margin: 0;
}

/* Accessibility page: Standards & Features sections (same left alignment) */
.accessibility-more {
  background: #140F1F;
  padding: 0 24px 80px;
}
.accessibility-more .container {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.accessibility-more .accessibility-section-divider {
  padding-top: 48px;
  text-align: left;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: max(24px, calc(50vw - 600px + 24px));
  padding-right: max(24px, calc(50vw - 600px + 24px));
  box-sizing: border-box;
}
.accessibility-more .accessibility-section-divider .dash-line {
  width: 100%;
}
.accessibility-block-wrap {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: max(24px, calc(50vw - 600px + 24px));
  padding-right: max(24px, calc(50vw - 600px + 24px));
  box-sizing: border-box;
  padding-top: 0;
}
.accessibility-block-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #fff;
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  padding-top: 32px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.accessibility-block-body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
  margin: 0 0 16px;
}
.accessibility-block-body:last-of-type {
  margin-bottom: 0;
}
.accessibility-email-link {
  color: #6E3FFF;
  text-decoration: none;
}
.accessibility-email-link:hover {
  text-decoration: underline;
}
.accessibility-block-wrap--no-divider {
  padding-top: 48px;
}
.accessibility-features-list {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 16px 0 0;
  padding-left: 24px;
  list-style: disc;
  list-style-color: rgba(255, 255, 255, 0.7);
}
.accessibility-features-list li {
  margin-bottom: 10px;
}
.accessibility-features-list li:last-child {
  margin-bottom: 0;
}

/* === FOOTER === */
.footer {
  position: relative;
  overflow: hidden;
  background: #140F1F;
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
/* Same ellipse as hero, in footer left corner – merges into #140F1F */
.footer-ellipse-bg {
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 570px;
  height: 570px;
  border-radius: 50%;
  background: linear-gradient(180deg, #140F1F 0%, rgba(20, 15, 31, 0.6) 40%, transparent 100%),
  linear-gradient(90deg,rgba(110, 63, 255, 0.56) 0%, rgba(110, 63, 255, 0.32) 30%, rgba(80, 55, 120, 0.24) 55%, transparent 100%);
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}
.footer .container { position: relative; z-index: 1; text-align: left; }
.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 1fr;
  gap: 40px 48px;
  margin-bottom: 40px;
  align-items: start;
}
.footer-col-logo {
  max-width: 280px;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px 0;
  text-transform: none;
  letter-spacing: 0;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  margin-bottom: 10px;
}
.footer-list li:last-child {
  margin-bottom: 0;
}
.footer-list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.footer-list a:hover {
  color: #fff;
}
.footer-col-contact .footer-contact-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  margin-top: 4px;
}
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0 0 24px 0;
  width: 100%;
}
.footer-copyright {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  text-align: center;
}
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .footer-col-logo {
    max-width: none;
  }
}
@media (max-width: 500px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
}

/* === MINI CHART GRAPHICS === */
.mini-chart { display: flex; gap: 6px; align-items: flex-end; }
.mini-bar { width: 16px; border-radius: 3px; background: linear-gradient(to top, #6E3FFF, #6E3FFF); }
.mini-line { width: 100%; height: 60px; position: relative; }
.donut { width: 60px; height: 60px; border-radius: 50%; border: 6px solid #333; border-top-color: #6E3FFF; border-right-color: #6E3FFF; }

/* === ANIMATIONS === */
@keyframes waveFlow {
  0% { transform: translateX(0); }
  50% { transform: translateX(-5%); }
  100% { transform: translateX(0); }
}
.cta-waves svg { animation: waveFlow 10s ease-in-out infinite; }

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.circle-1 { animation: slowSpin 40s linear infinite; }
.circle-2 { animation: slowSpin 30s linear infinite reverse; }

@keyframes dotPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}
.purple-dot { animation: dotPulse 3s ease-in-out infinite; }
.dot-2 { animation-delay: 1s; }
.dot-3 { animation-delay: 2s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 { animation: heroFadeIn 1s ease 0.2s both; }
.hero p { animation: heroFadeIn 1s ease 0.5s both; }
.hero-buttons { animation: heroFadeIn 1s ease 0.8s both; }

.offering-card {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(110,63,255,0.15);
}
.support-item {
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.support-item:hover {
  transform: translateX(6px);
  border-color: rgba(110,63,255,0.3);
}
.testimonial-card {
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110,63,255,0.4);
}

.btn-primary {
  transition: background 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(110,63,255,0.4);
}
.btn-outline:hover {
  transform: translateY(-2px);
}
.btn-white {
  transition: background 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

.approach-check {
  transition: transform 0.3s ease;
}
.approach-item:hover .approach-check {
  transform: scale(1.15);
}

.timeline-icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-item:hover .timeline-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(110,63,255,0.3);
}

/* Smooth counter */
@keyframes countUp {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

/* === MOBILE: right-side drawer (#140F1F, #6E3FFF) – outside nav for correct fixed positioning === */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9998;
  pointer-events: none;
}
.nav-overlay.open {
  pointer-events: auto;
}
.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: #140F1F;
  border-radius: 24px 0 0 24px;
  z-index: 9999;
  flex-direction: column;
  padding: 28px 24px 32px;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
  overflow-y: auto;
}
.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
}
.nav-drawer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.nav-drawer-logo .logo-img {
  height: 36px;
  width: auto;
}
.nav-drawer-socials {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-drawer-socials-img {
  height: 40px;
  width: auto;
  display: block;
  pointer-events: none;
}
.nav-drawer-social-link {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
}
.nav-drawer-social-link--linkedin {
  left: 0;
}
.nav-drawer-social-link--instagram {
  right: 0;
}
.nav-drawer-sep {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0 0 24px 0;
}
.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-height: 0;
}
.nav-drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: normal;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-drawer-links a:hover {
  background: rgba(255, 255, 255, 0.06);
}
/* Services row: link + arrow button (arrow toggles dropdown) */
.nav-drawer-services-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-drawer-services {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #6E3FFF;
  color: #fff;
  border-radius: 100px;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: normal;
  transition: background 0.2s;
}
.nav-drawer-services:hover {
  background: #7d4dff;
  color: #fff;
}
.nav-drawer-services-text {
  flex: 1;
}
.nav-drawer-services-arrow {
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  padding: 0 0 0 8px;
  line-height: 1;
}
.nav-drawer-services-dropdown {
  display: none;
  flex-direction: column;
  margin-top: 6px;
  padding-left: 12px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  margin-left: 12px;
}
.nav-drawer-services-dropdown.open {
  display: flex;
}
.nav-drawer-services-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 16px;
  font-size: 14px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
}
.nav-drawer-services-dropdown a:last-child {
  border-bottom: none;
}
.nav-drawer-services-dropdown a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.nav-drawer-sub-arrow {
  font-size: 16px;
  opacity: 0.9;
  margin-left: 8px;
}
/* CTAs pinned to bottom of drawer */
.nav-drawer-cta-wrap {
  margin-top: auto;
  padding-top: 24px;
  flex-shrink: 0;
}
.nav-drawer-cta {
  display: block;
  text-align: center;
  padding: 16px 24px;
  border-radius: 100px;
  background: #6E3FFF;
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  text-decoration: none;
  margin-top: 0;
  margin-bottom: 12px;
  transition: background 0.2s, transform 0.2s;
}
.nav-drawer-cta:hover {
  background: #7d4dff;
  color: #fff;
}
.nav-drawer-cta-outline {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.4);

  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  
  text-decoration: none;
  margin-top: 0;
  transition: border-color 0.2s, background 0.2s;
}
.nav-drawer-cta-outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(rgba(20, 15, 31, 0.98), rgba(20, 15, 31, 0.98)) padding-box,
              linear-gradient(94.76deg, #FFFFFF 0%, rgba(255, 255, 255, 0.12) 77.9%, rgba(110, 63, 255, 0.8) 100%) border-box;
  color: #fff;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-overlay.open {
    display: block;
  }
  .nav-drawer {
    display: flex;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav-drawer.open {
    transform: translateX(0);
  }
  body.nav-drawer-open {
    overflow: hidden;
  }
  .global-consultant .container { flex-direction: column; }
  .global-consultant { padding-bottom: 40px; }
  .gc-right { padding: 0; }
  .dashboard-outer {
    width: 100%;
    min-height: 0;
  }
  .rightdiv-svg {
    height: auto;
    display: block;
    vertical-align: top;
  }
  .who-support-content { flex-direction: column; }
  .industry-left { min-height: 250px; }
  .offerings-grid { grid-template-columns: 1fr; }
  .offerings-row2 { grid-template-columns: 1fr; }
  .approach-card { padding: 24px 20px; }
  .why-trust-content { flex-direction: column; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  /* Testimonials: show HTML mobile block, hide SVG carousel */
  .testimonials-desktop { display: none !important; }
  .testimonials-mobile { display: block; }
  /* CTA: show HTML mobile block, hide SVG */
  .cta-desktop { display: none !important; }
  .cta-mobile { display: block; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 28px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .cta-card { padding: 48px 20px; }
}
