/* SAA Hero Page Specific Components */

/* Main Hero Section */
/* Main Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background-image: url('../assets/icons/new-homepage-darkbg.png');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Redundant mock glows now hidden as they are printed on hero_bg.png */
.hero-glow-wave {
  display: none;
}

/* Curving glowing neon path illustration overlay */
.hero-streak-overlay {
  display: none;
}

/* City skyline at the bottom right of hero */
.hero-cityscape-dark {
  display: none;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
  z-index: 3;
  pointer-events: none;
}

/* Hero Content Frame alignment */
.hero-content {
  position: relative;
  z-index: 10;
  margin-top: 50px;
  padding-left: var(--nav-left-offset);
}

.hero-breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: var(--spacing-md);
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.6rem, 2.8vw, 4.35rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-text-light);
  max-width: 1200px;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.01em;
}

.hero-description{
  max-width: 980px;
  font-size: clamp(0.7rem, 0.7vw, 2.35rem)!important;
  font-weight: 500;
  margin-bottom: var(--spacing-lg);
}

/* Call to Action Button */
.btn-talk {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
  background: transparent;
  text-transform: uppercase;
  transition: all var(--transition-normal);
}

.btn-talk:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.case-container{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--max-width);
    padding-inline: var(--spacing-xl);
    box-sizing: border-box;
}


.case-study-box {
  position: relative;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  color: #000000;
  display: flex;
  height: 100px;
  width: max-content;
  min-width: 530px;
  z-index: 10;
}

.case-study-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #888888;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.case-study-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-sm);
}

.case-study-location {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.case-study-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  white-space: nowrap;
}

/* Technical Metrics/Pillars columns (Center-Right overlay) */
.hero-pillars {
  position: absolute;
  bottom: 0;
  right: var(--spacing-xl);
  display: none;
  /* Hidden on desktop to avoid clashing with hero_bg.png prints */
  gap: var(--spacing-xl);
  z-index: 10;
  height: 220px;
  align-items: flex-end;
  padding-bottom: var(--spacing-md);
}

.pillar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 130px;
}

/* Connecting vertical line */
.pillar-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.05));
  margin-bottom: var(--spacing-sm);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--spacing-xs);
  transition: transform var(--transition-fast);
}

.pillar-item:hover .pillar-icon {
  transform: scale(1.15);
  color: #ffffff;
}

.pillar-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.4;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1745px) {
  .hero-description {
    max-width: 800px;
   
}
  
}

@media (max-width: 1024px) {
  .hero-pillars {
    gap: var(--spacing-md);
    right: var(--spacing-md);
  }

  .pillar-item {
    width: 100px;
  }
}

@media (max-width: 900px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 0;
    background-size: cover;
    background-position: center bottom;
    background-attachment: scroll;
  }

  .hero-content {
    margin-top: 20px;
    margin-bottom: var(--spacing-xl);
    /* Add breathing space below CTA button */
  }

  .hero-pillars {
    display: flex;
    /* Show on mobile stack when bg text is hidden/cut-off */
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: var(--spacing-xl);
    justify-content: space-around;
    height: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    padding-bottom: 0;
    box-sizing: border-box;
  }

  .pillar-line {
    display: none;
    /* Hide vertical lines on mobile stack */
  }

  .case-container{
    left: 45%;
}

  .case-study-box {
    position: relative;
    width: 100%;
    margin-top: var(--spacing-xl);
    height: 110px;
  }

  .case-study-title {
    white-space: nowrap;
  }
}



@media (max-width: 576px) {
  .hero-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    box-sizing: border-box;
  }

  .pillar-item {
    width: 100%;
  }

  .case-study-title {
    white-space: nowrap;
    font-size: 0.77rem;
  }

  .case-study-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0.5rem;
  }

  .case-study-label {
    font-size: 0.55rem;

  }
  .case-container{
    left: 40%;
}
}

@media (max-width: 322px) {

  .btn-talk {
    whitespace: nowrap;
    padding: 0.9rem 1.1rem;

  }

  .case-study-box {
    height: 91px;
  }

  .case-study-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0.2rem;
  }

  .case-study-title {
    white-space: nowrap;
    font-size: 0.64rem;
  }

  .case-study-label {
    font-size: 0.54rem;

  }

}

/* Business Outcomes Section Styles */
.outcomes-section {
   overflow-x: hidden;
  background-color: #ffffff;
  color: #0f172a;
  padding: var(--spacing-xxl) 0;
}

.outcomes-header {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .85fr);
  column-gap: clamp(2rem, 8vw, 9rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.outcomes-meta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #888888;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--spacing-xs);
}

.outcomes-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: #030214;
  line-height: 1.25;
  letter-spacing: normal;
  max-width: 600px;
}

.outcomes-intro {
  max-width: 370px;
  margin: 0;
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.6;
}

.btn-services {
  background-color: #030214;
  color: #ffffff;
  padding: 0.8rem 2.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  flex-shrink: 0;
  margin-bottom: 5px;
}

.btn-services:hover {
  background-color: #1e1b4b;
  transform: translateY(-2px);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--spacing-md);
}

.outcome-card {
  position: relative;
  isolation: isolate;
  border-radius: 18px;
  min-height: 360px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #fbf8ff 55%, #fdeff6 100%);
  border: 1px solid #f0eafa;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.outcome-copy {
  position: relative;
  z-index: 2;
  padding: 30px 28px;
  max-width: 68%;
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
  align-items: start;
}

.outcome-card .card-title {
  grid-column: 2;
  grid-row: 1;
  font-size: clamp(1.2rem, 1.65vw, 1.55rem);
  font-weight: 600;
  color: #030214;
  margin: 7px 0 10px;
  line-height: 1.25;
}

.outcome-card .card-desc {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.88rem;
  color: #313042;
  line-height: 1.65;
  margin: 0;
}

.outcome-card:hover {
  transform: translateY(-5px);
}

.outcome-card:hover {
  box-shadow: 0 14px 35px rgba(68, 35, 135, 0.12);
}

.outcome-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #a56cff, #3f0e9d);
  box-shadow: 0 8px 16px rgba(103, 45, 197, .28);
  color: white;
  font-size: 1.55rem;
  font-weight: 600;
}

.outcome-icon img {
  width: 63%;
  height: 63%;
  object-fit: contain;
}

.outcome-visual {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  transition: transform var(--transition-slow);
}

.outcome-card:hover .outcome-visual {
  transform: scale(1.05);
}

.outcome-feature-card {
  grid-column: span 4;
  min-height: 500px;
}

.outcome-feature-card .outcome-copy {
  max-width: 48%;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 20px;
  align-items: start;
}

.outcome-feature-card .outcome-icon {
  grid-column: 1;
  grid-row: 1;
}

.outcome-feature-card .card-title {
  grid-column: 2;
  grid-row: 1;
  margin: 8px 0 0;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.outcome-feature-card .card-desc {
  grid-column: 2;
  margin-top: 12px;
}

.outcome-feature-card .outcome-points {
  grid-column: 1 / -1;
}

.visual-rocket {
  width: 60%;
  height: 100%;
  right: 0%;
  bottom: 0%;
  object-fit: cover;
  object-position: 51% 21%;
}

.outcome-points {
  display: flex;
  gap: 0;
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
}

.outcome-points li {
  width: 33%;
  padding: 0 12px;
  border-right: 1px solid #ded2f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.outcome-points li:first-child {
  padding-left: 0;
}

.outcome-points li:last-child {
  border: 0;
}

.outcome-point-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 16px rgba(91, 43, 166, .14);
}

.outcome-point-icon svg {
  width: 29px;
  height: 29px;
}

.point-icon-target {
  color: #ff8a71;
}

.point-icon-delivery {
  color: #a24cf1;
}

.point-icon-lightning {
  color: #ffb32d;
}

.outcome-confidence-card {
  grid-column: span 2;
  background: #1d0751;
  color: white;
}

.visual-confidence {
  inset: 0;
  width: 100%;
  height: 86%;
  object-fit: cover;
  object-position: 82% 21%;
  opacity: .95;
}

.outcome-confidence-card p {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 28px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  color: white;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.4;
}

.outcome-confidence-card .outcome-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #a968ff 0%, #7044ed 53%, #ff875d 100%);
  box-shadow: 0 12px 25px rgba(55, 24, 135, .45);
}

.outcome-confidence-card .outcome-icon img {
  width: 62%;
  height: 62%;
}

.outcome-confidence-copy {
  display: block;
}

.outcome-standard-card,
.outcome-wide-card {
  background: linear-gradient(135deg, #fff 0%, #faf6ff 60%, #fdebf5 100%);
}

.outcome-standard-card {
  grid-column: span 2;
  min-height: 418px;
}

.outcome-standard-card .outcome-copy {
  max-width: 95%;
}

/* Keep all headings after the first two cards on one line. */
.outcome-standard-card .card-title,
.outcome-wide-card .card-title {
  font-size: clamp(0.95rem, 1.05vw, 2rem);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.outcome-standard-card .card-desc {
  max-width: 280px;
  font-size: 0.88rem;
  line-height: 1.7;
}

.outcome-wide-card {
  grid-column: span 3;
  min-height: 277px;
}

.outcome-wide-card .outcome-copy {
  max-width: 61%;
}

.outcome-figure {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.outcome-figure i,
.outcome-figure b {
  display: block;
  font-style: normal;
}

.data-figure {
  width: 82%;
  height: 48%;
  bottom: 7%;
  left: 9%;
}

.data-core {
  position: absolute;
  width: 34%;
  height: 48%;
  left: 33%;
  top: 20%;
  border-radius: 50%;
  background: linear-gradient(#fff, #e9d9ff 45%, #5620bb 47%, #7f3cff 67%, #f7eaff 70%);
  box-shadow: 0 14px 16px #7340c450;
}

.data-screen {
  position: absolute;
  width: 24%;
  height: 34%;
  top: 27%;
  border: 3px solid #a56cff;
  border-radius: 8px;
  background: linear-gradient(135deg, #9c6bff, #42118d);
  box-shadow: 0 8px 14px #7851cc3d;
}

.data-screen.left {
  left: 0;
  transform: rotate(-9deg);
}

.data-screen.right {
  right: 0;
  transform: rotate(8deg);
}

.data-screen::after {
  content: '';
  position: absolute;
  inset: 26% 17% 14%;
  background: repeating-linear-gradient(90deg, #cbaaff 0 13%, transparent 13% 20%);
}

.data-shield {
  position: absolute;
  bottom: 0;
  left: 43%;
  width: 23%;
  aspect-ratio: 1;
  display: grid !important;
  place-items: center;
  color: #7b32d6;
  font-size: 1.7rem;
  font-weight: 800;
  border-radius: 48% 48% 42% 42%;
  background: #fff;
  box-shadow: 0 8px 20px #7e45cc45;
}

.ai-figure {
  width: 82%;
  height: 48%;
  bottom: 11%;
  left: 9%;
}

.ai-orbit,
.risk-orbit {
  position: absolute;
  inset: 18% 0 12%;
  border: 1px dashed #9c69fb;
  border-radius: 50%;
}

.ai-brain {
  position: absolute;
  width: 48%;
  aspect-ratio: 1.25;
  left: 26%;
  top: 10%;
  display: grid !important;
  place-items: center;
  border-radius: 48%;
  background: radial-gradient(circle at 35% 25%, #c291ff, #6c22d3 45%, #2d076c);
  box-shadow: 0 12px 20px #6321bf66;
  color: white;
  font-size: 1.55rem;
  font-weight: 600;
}

.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #6d20d0;
  box-shadow: 0 0 8px #9d62ff;
}

.dot-one {
  left: 4%;
  top: 53%
}

.dot-two {
  right: 3%;
  top: 51%;
  background: #ffaf3c
}

.dot-three {
  left: 20%;
  bottom: 5%
}

.visibility-figure {
  width: 92%;
  height: 46%;
  bottom: 11%;
  left: 4%;
}

.dashboard {
  position: absolute;
  width: 65%;
  height: 78%;
  left: 18%;
  top: 4%;
  padding: 11px;
  border-radius: 9px;
  background: #21064d;
  border: 3px solid #6836b8;
  box-shadow: 0 11px 19px #4d15966b;
}

.dashboard::before {
  content: '';
  position: absolute;
  left: 11%;
  right: 40%;
  top: 23%;
  height: 25%;
  border-bottom: 2px solid #fdad5e;
  transform: skewY(-15deg);
}

.dashboard b {
  height: 8%;
  margin-top: 10%;
  width: 45%;
  border-radius: 3px;
  background: #7f42cd;
}

.dashboard em {
  position: absolute;
  right: 9%;
  top: 18%;
  width: 23%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(#ffb34c 0 25%, #8c41e4 25% 56%, #f3d8ff 56% 76%, #fa7a8b 76%);
}

.figure-bubble {
  position: absolute;
  display: grid !important;
  place-items: center;
  width: 19%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: white;
  box-shadow: 0 5px 13px #6330b344;
  color: #6a25c5;
  font-weight: 600;
}

.bubble-data {
  left: 0;
  bottom: 10%
}

.bubble-team {
  left: 40%;
  bottom: -5%
}

.bubble-gear {
  right: 0;
  bottom: 10%
}

.digital-figure {
  width: 39%;
  height: 97%;
  right: 4%;
  bottom: -10%;
}

.laptop {
  position: absolute;
  width: 68%;
  height: 64%;
  bottom: 12%;
  left: 2%;
  transform: rotate(-8deg);
  border: 7px solid #28105e;
  border-radius: 8px;
  background: linear-gradient(135deg, #eee2ff, #a76af6);
  box-shadow: 0 11px 17px #2e12636b;
}

.laptop b {
  margin: 17%;
  height: 45%;
  display: grid !important;
  place-items: center;
  border-radius: 4px;
  color: white;
  background: #7850d5;
  font-size: 2rem;
}

.phone {
  position: absolute;
  width: 27%;
  height: 56%;
  right: 1%;
  bottom: 13%;
  transform: rotate(7deg);
  border: 5px solid #280f61;
  border-radius: 12px;
  background: linear-gradient(#4b168e, #1c063f);
}

.phone b {
  margin-top: 40%;
  color: #e7cbff;
  text-align: center;
  font-size: 1.8rem;
}

.risk-figure {
  width: 46%;
  height: 86%;
  right: 1%;
  bottom: 0;
}

.risk-orbit {
  inset: 23% 0 10%;
}

.risk-shield {
  position: absolute;
  z-index: 2;
  left: 31%;
  top: 13%;
  width: 40%;
  aspect-ratio: .82;
  display: grid !important;
  place-items: center;
  clip-path: polygon(50% 0, 100% 18%, 87% 72%, 50% 100%, 13% 72%, 0 18%);
  background: linear-gradient(135deg, #a760ff, #2d0878);
  color: #ffb3bb;
  font-size: 2.2rem;
  box-shadow: 0 12px 20px #6924c861;
}

.risk-file {
  left: 0;
  top: 42%
}

.risk-team {
  right: 0;
  top: 40%
}

.risk-code {
  left: 42%;
  bottom: 0
}

.services-nav-item,
.solutions-nav-item,
.industries-nav-item,
.vibe-nav-item,
.insights-nav-item {
  position: static;
  /* Force relative coordinates back to header */
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.services-nav-item:hover .nav-link,
.services-nav-item .nav-link:focus,
.solutions-nav-item:hover .nav-link,
.solutions-nav-item .nav-link:focus,
.industries-nav-item:hover .nav-link,
.industries-nav-item .nav-link:focus,
.vibe-nav-item:hover .nav-link,
.vibe-nav-item .nav-link:focus,
.insights-nav-item:hover .nav-link,
.insights-nav-item .nav-link:focus {
  color: #ffffff;
}

.services-dropdown,
.solutions-dropdown,
.industries-dropdown,
.vibe-dropdown,
.insights-dropdown {
  position: absolute;
  top: 70px;
  /* Positioned right under the navbar links */
  left: var(--nav-left-offset);
  right: 0;
  background-color: #ffffff;
  border-radius: 0;
  /* Fully rounded card like Stripe */
  box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.15), 0 20px 40px -20px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 50px;
  box-sizing: border-box;
  z-index: 1000;

  /* Stripe animation setup */
  perspective: 2000px;
  transform-origin: 50% 0;
  opacity: 0;
  visibility: hidden;
  transform: rotateX(-12deg) scale(0.95);
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.28s;
}

/* Hover state toggle (JS will also support this with a slight debounce, but CSS fallback is immediate/clean) */
.services-nav-item:hover .services-dropdown,
.services-dropdown.active,
.solutions-nav-item:hover .solutions-dropdown,
.solutions-dropdown.active,
.industries-nav-item:hover .industries-dropdown,
.industries-dropdown.active,
.vibe-nav-item:hover .vibe-dropdown,
.vibe-dropdown.active,
.insights-nav-item:hover .insights-dropdown,
.insights-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: rotateX(0deg) scale(1);
  pointer-events: auto;
}

@media (max-width: 900px) {
  .outcomes-header {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .outcomes-intro {
    max-width: 600px;
  }

  .btn-services {
    margin-bottom: 0;
  }

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

  .outcome-feature-card,
  .outcome-confidence-card {
    grid-column: span 2;
  }

  .outcome-standard-card,
  .outcome-wide-card {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .outcome-card {
    height: auto;
    min-height: 260px;
    padding: var(--spacing-md);
  }

  .outcome-feature-card,
  .outcome-wide-card,
  .outcome-standard-card,
  .outcome-confidence-card {
    grid-column: span 1;
  }

  .outcome-feature-card {
    min-height: 440px;
  }

  .outcome-standard-card {
    min-height: 0;
    aspect-ratio: 1.08;
    background-size: 310% auto;
  }

  .outcome-wide-card {
    min-height: 0;
    aspect-ratio: 2.52;
  }

  .outcome-feature-card .outcome-copy,
  .outcome-standard-card .outcome-copy,
  .outcome-wide-card .outcome-copy {
    max-width: 72%;
    padding: 24px;
  }

  .outcome-points {
    margin-top: 28px;
  }
}

/* SAA Transformation Ecosystem Steps Styling */
.ecosystem-section {
  background-color: #ffffff;
  color: #0f172a;
  padding: var(--spacing-xxl) 0;
  border-top: 1px solid #e2e8f0;
}

.ecosystem-carousel-container {
  position: relative;
  width: 100%;
}

.ecosystem-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  border-radius: 24px;
}

.ecosystem-carousel-track {
  display: flex;
  transition: transform var(--transition-slow);
  will-change: transform;
  width: 100%;
}

.ecosystem-step {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
  top: auto !important;
  z-index: 1 !important;
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  margin-bottom: 0 !important;
  padding: var(--spacing-lg);
  box-sizing: border-box;
  transition: transform var(--transition-normal);
}

.ecosystem-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}

.ecosystem-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-fast);
}

.ecosystem-carousel-arrow:hover {
  background-color: #030214;
  color: #ffffff;
  border-color: #030214;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.25);
}

.ecosystem-carousel-arrow.arrow-left {
  left: -28px;
}

.ecosystem-carousel-arrow.arrow-right {
  right: -28px;
}

/* Responsive arrow positioning */
@media (max-width: 1440px) {
  .ecosystem-carousel-arrow.arrow-left {
    left: -15px;
  }

  .ecosystem-carousel-arrow.arrow-right {
    right: -15px;
  }
}

@media (max-width: 1200px) {
  .ecosystem-carousel-arrow.arrow-left {
    left: 15px;
  }

  .ecosystem-carousel-arrow.arrow-right {
    right: 15px;
  }
}

@media (max-width: 768px) {
  .ecosystem-carousel-arrow {
    width: 44px;
    height: 44px;
  }

  .ecosystem-carousel-arrow.arrow-left {
    left: 10px;
  }

  .ecosystem-carousel-arrow.arrow-right {
    right: 10px;
  }
}

/* Indicators */
.ecosystem-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: var(--spacing-lg);
}

.eco-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.eco-dot.active {
  width: 28px;
  border-radius: var(--radius-pill);
  background-color: #4f46e5;
}

.eco-dot:hover {
  background-color: #94a3b8;
}

@media (min-width: 992px) {
  .ecosystem-step {
    padding: var(--spacing-xl);
  }
}

.step-info {
  flex: 1.2;
}

.step-meta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #888888;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--spacing-xs);
}

.step-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: #030214;
  margin-bottom: var(--spacing-sm);
}

.step-desc {
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

/* Pill Capabilities Button (Royal Blue Gradient) */
.btn-capabilities {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #ffffff;
  padding: 0.75rem 1.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-capabilities:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
  color: #ffffff;
}

.btn-capabilities .arrow-icon {
  width: 22px;          /* Adjust to your image */
  height: 22px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.btn-capabilities:hover .arrow-icon {
  transform: translateX(4px);
}

/* See Also Links */
.step-see-also {
  margin-top: var(--spacing-lg);
  border-top: 1px solid #f1f5f9;
  padding-top: var(--spacing-sm);
}

.see-also-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: var(--spacing-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.see-also-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.see-also-link {
  font-size: 0.9rem;
  color: #555555;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.see-also-link strong {
  color: #4f46e5;
  font-weight: 600;
  margin-right: 4px;
}

.see-also-link:hover {
  color: #4f46e5;
}

/* Mockup screen (right) */
.step-mockup-wrapper {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Styling for the Photoroom Mockup Image */
.mockup-img {
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
  display: block;
}

/* Artwork supplied for the five transformation-ecosystem slides. */
.mockup-img.ecosystem-visual {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.ecosystem-visual-advise {
  object-position: 13% center;
}

.ecosystem-visual-architect {
  object-position: 37% center;
}

.ecosystem-visual-deliver {
  object-position: 57% center;
}

.ecosystem-visual-govern {
  object-position: 77% center;
}

.ecosystem-visual-accelerate {
  object-position: 93% center;
}

/* One Connected Model — third section only */
.ecosystem-section {
  padding: 80px 0;
  border-top: 0;
}

.ecosystem-section .container {
  max-width: 1440px !important;
  padding-right: 40px;
  padding-left: 40px;
}

.ecosystem-intro {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.ecosystem-intro>span {
  font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #888888;
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.ecosystem-intro h2 {
  margin: 0 0 15px;
  color: #030214;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.25;
}

.ecosystem-intro p {
  max-width: 680px;
  margin: 0 auto;
  color: #6d7482;
  font-size: 0.85rem;
  line-height: 1.65;
}

.ecosystem-carousel-container {
  max-width: 1440px;
  margin: 0 auto;
}

.ecosystem-carousel-wrapper {
  overflow: hidden;
  border-radius: 0;
}

.ecosystem-carousel-track {
  width: 100%;
}

.ecosystem-step {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  min-height: 560px;
  min-width: 100%;
  max-width: 100%;
  padding: 0;
  gap: 64px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.ecosystem-step:hover {
  transform: none;
  box-shadow: none;
}

.step-info {
  min-width: 0;
}

.step-meta {
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f4f0ff;
  color: #6543ef;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.step-title {
  margin-bottom: 24px;
  color: #111426;
  font-size: clamp(2.5rem, 4.7vw, 1.75rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.step-desc {
  max-width: 460px;
  margin-bottom: 32px;
  color: #333746;
  font-size: 0.9rem;
  line-height: 1.6;
}

.btn-capabilities {
  padding: 1rem 2rem;
  background: #6546ef;
  box-shadow: none;
  font-size: 1rem;
  letter-spacing: 0;
}

.step-see-also {
  margin-top: 40px;
  padding-top: 0;
  border-top: 0;
}

.see-also-title {
  display: none;
}

.see-also-list {
  gap: 16px;
}

.see-also-link {
  color: #536174;
  font-size: 0.9rem;
}

.see-also-link strong {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  margin-right: 12px;
  border-radius: 50%;
  background: #6b4af1;
  color: #fff;
  font-size: 0.65rem;
}

.step-mockup-wrapper {
  width: 100%;
  min-width: 0;
}

.mockup-img.ecosystem-visual {
  width: 100%;
  height: 560px;
  border-radius: 24px;
  filter: none;
}

.ecosystem-carousel-arrow {
  width: 32px;
  height: 32px;
  border: 0;
  color: #4e4ef2;
  box-shadow: 0 5px 13px rgba(16, 18, 35, 0.14);
}

.ecosystem-carousel-arrow svg {
  width: 15px;
  height: 15px;
}

.ecosystem-carousel-arrow.arrow-left {
  left: -34px;
}

.ecosystem-carousel-arrow.arrow-right {
  right: -34px;
}


@media (max-width: 426px){
  .ecosystem-carousel-arrow.arrow-left {
  left: -23px;
}

.ecosystem-carousel-arrow.arrow-right {
  right: -23px;
}
}
.ecosystem-indicators {
  display: none;
}

.ecosystem-model-link {
  display: table;
  margin: 48px auto 0;
  padding: 15px 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7a5aff, #6944eb);
  box-shadow: 0 12px 24px rgba(81, 54, 231, .35);
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}


@media (max-width: 992px) {
  .ecosystem-intro {
    margin-bottom: 35px;
  }

  .ecosystem-step {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: var(--spacing-lg);
    text-align: center;
    padding: 0 24px;
  }

  .step-info {
    flex-basis: auto;
  }

  .step-meta {
    margin-right: auto;
    margin-left: auto;
  }

  .step-mockup-wrapper {
    width: 100%;
  }

  .ecosystem-section .container {
    padding-right: 24px;
    padding-left: 24px;
  }

  .ecosystem-step {
    min-height: 0;
  }

  .step-title {
    font-size: clamp(0rem, 7vw, 3.2rem);
    line-height: 1.2;
  }

  .step-desc {
    font-size: 0.9rem;
  }

  .mockup-img.ecosystem-visual {
    height: 360px;
  }

  .see-also-list {
    align-items: center;
  }
}

/* Tablet: keep the ecosystem slide copy centred as one aligned text block. */
@media (min-width: 601px) and (max-width: 992px) {
  .ecosystem-step {
    padding: 0 48px;
  }

  .step-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .step-desc {
    margin-right: auto;
    margin-left: auto;
  }

  .step-see-also,
  .see-also-list {
    align-self: center;
  }
}

@media (max-width: 600px) {
  .ecosystem-section {
    padding: var(--spacing-xl) 0;
  }

  /* Keep the value-list markers beside their text when items wrap on mobile. */
  #ecosystem .step-see-also,
  #ecosystem .see-also-list {
    width: 100%;
    align-self: stretch;
    align-items: stretch;
    text-align: left;
  }

  #ecosystem .see-also-link {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    column-gap: 12px;
    align-items: start;
    width: 100%;
    text-align: left;
  }

  #ecosystem .see-also-link strong {
    margin: .25em 0 0;
  }

  /* Keep the CTA label and arrow together as one compact mobile button. */
  #ecosystem .btn-capabilities {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    max-width: 100%;
    padding: .75rem 1rem;
    font-size: .79rem;
    line-height: 1;
    white-space: nowrap;
  }

  #ecosystem .btn-capabilities .arrow-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }
}

/* Capabilities Outcomes Section (Dark Cover BG) */
.capabilities-section {
  background-image: url('../assets/images/section4-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: var(--spacing-xxl) 0;
  color: #ffffff;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.capabilities-section .container {
  position: relative;
  z-index: 2;
}

/* Absolute Vertical Grid Layout Lines */
.capabilities-grid-lines {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width);
  height: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 1;
  padding: 0 var(--spacing-xl);
}

.capabilities-grid-lines .grid-line {
  width: 1px;
  height: 100%;
  background: #ffffff0f;
  /* Faint cyan/blue line to match screenshot */
}

@media (max-width: 768px) {
  .capabilities-grid-lines {
    padding: 0 var(--spacing-md);
  }
}

/* Heading wrapper without border */
.capabilities-header {
  margin-bottom: 70px;
  position: relative;
  z-index: 5;
}

.capabilities-meta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.65);
  /* Silver/white uppercase category */
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--spacing-xs);
  padding-left: 12px;
  /* Close spacing to grid line, matching screenshot */
}

.capabilities-title {
  padding-left: 12px;
  /* Close spacing to grid line, matching screenshot */
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
  max-width: 800px;
  margin-bottom: 0;
}

.capabilities-intro {
  max-width: 880px;
  margin: 30px 0 0 12px;
  color: rgba(255, 255, 255, .65);
  font-size: .93rem;
  line-height: 1.75;
}

.capabilities-button {
  position: absolute;
  top: 40px;
  right: 0;
  padding: 15px 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7a5aff, #6944eb);
  box-shadow: 0 12px 24px rgba(81, 54, 231, .35);
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.capabilities-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(81, 54, 231, .48);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0;
  /* Align columns with the 4 grid lines */
  row-gap: var(--spacing-xl);
}

.capability-card {
  padding-right: var(--spacing-lg);
  background: transparent;
  transition: transform var(--transition-fast);
}

.capability-card-icon {
  width: 50px;
  height: 50px;
  margin: 0 0 18px 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 9px;
  background: rgba(255, 255, 255, .05);
  color: #9d62ff;
}

.capability-card-icon i {
  font-size: 1.65rem;
}

.capability-card:hover {
  transform: translateX(4px);
}

.capability-card-title {
  border-left: 1px solid #00a8ff;
  /* Very thin solid cyan border, only on the card title */
  padding-left: 12px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: var(--spacing-xs);
}

.capability-card-desc {
  padding-left: 13px;
  /* Align with title text (12px + 1px border) */
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .capabilities-grid-lines {
    display: none;
    /* Hide background grid lines when layout shifts to 2 columns */
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--spacing-lg);
  }

  .capability-card {
    padding-right: 0;
  }

  .capabilities-button {
    right: 12px;
  }
}

/* Tablet: place the action below the heading so it cannot cover the title. */
@media (min-width: 601px) and (max-width: 992px) {
  .capabilities-header {
    margin-bottom: 52px;
  }

  .capabilities-title {
    max-width: 100%;
  }

  .capabilities-button {
    position: static;
    display: inline-flex;
    margin: 0px 0 2.5rem 12px;
  }
}

@media (max-width: 768px) {
  .capabilities-section {
    background-attachment: scroll;
  }
}

@media (max-width: 600px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .capabilities-section {
    padding: var(--spacing-xl) 0;
  }

  .capabilities-header {
    margin-bottom: var(--spacing-lg);
  }

  .capabilities-intro {
    margin-left: 0;
  }

  .capabilities-meta,
  .capabilities-title {
    padding-left: 0;
  }

  .capabilities-button {
    position: static;
    display: inline-block;
    margin-bottom: 2.5rem;
  }

  .capability-card-icon {
    margin-left: 0;
  }
}

/* Architecture & Delivery Expertise Section */
.architecture-section { padding: 100px 0 110px; background: #f8fafc; font-family: 'Poppins', sans-serif; color: #1e1b4b; }
.architecture-header { display: grid; grid-template-columns: 7fr 5fr; gap: 64px; align-items: start; margin-bottom: 58px; }
.architecture-meta { font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #888888;
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--spacing-xs); }
.architecture-meta i { display: none; }
.architecture-heading h2 { max-width: 650px; margin: 0; color: #030214;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.25; }
.architecture-rule, .architecture-card-rule { display: block; background: #6366f1; }
.architecture-rule { display: none; }
.architecture-intro { max-width: 360px; padding-top: 2px; }
.architecture-intro p { margin: 0; color: #718096; font-size: .76rem; line-height: 1.7; }
.architecture-button { display: inline-flex; align-items: center; gap: 12px; padding: 15px 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7a5aff, #6944eb);
  box-shadow: 0 12px 24px rgba(81, 54, 231, .35);
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.architecture-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(99, 102, 241, .34);
}

.architecture-button svg,
.architecture-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.architecture-cards-wrap {
  position: relative;
}

.architecture-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.architecture-card {
  min-width: 0;
  min-height: 380px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid #eef0f5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(30, 27, 75, .025);
  transition: transform .25s ease, box-shadow .25s ease;
}

.architecture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(30, 27, 75, .09);
}

.architecture-number {
  margin-bottom: 16px;
  color: rgba(99, 102, 241, .4);
  font-size: 1.05rem;
  font-weight: 700;
}

.architecture-card h3 {
  margin: 0;
  color: #1e1b4b;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.architecture-card-rule {
  width: 32px;
  height: 2px;
  margin: 15px 0 18px;
}

.architecture-card img {
  width: 100%;
  height: 120px;
  margin: auto 0 22px;
  object-fit: contain;
}

.architecture-card p {
  margin: 0;
  color: #64748b;
  font-size: .76rem;
  line-height: 1.65;
}

.architecture-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #edf0f5;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 18px rgba(30, 27, 75, .12);
  color: #6366f1;
  transform: translateY(-50%);
  cursor: pointer;
}

.architecture-arrow-prev {
  left: -23px;
}

.architecture-arrow-next {
  right: -23px;
}

.architecture-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.architecture-pagination i {
  width: 48px;
  height: 4px;
  border-radius: 99px;
  background: #e5e7eb;
}

.architecture-pagination .active {
  background: #6366f1;
}

.architecture-bottom-button {
  display: table;
  margin: 20px auto 0;
}

@media (max-width: 1100px) {
  .architecture-header {
    gap: 40px;
  }

  .architecture-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .architecture-card {
    min-height: 350px;
  }

  .architecture-arrow {
    display: none;
  }
}

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

  .architecture-header {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .architecture-intro {
    padding-top: 0;
  }

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

  .architecture-card {
    min-height: 340px;
    padding: 18px;
  }

  .architecture-pagination i {
    width: 28px;
  }
}

@media (max-width: 460px) {
  .architecture-cards {
    grid-template-columns: 1fr;
  }

  .architecture-card {
    min-height: 300px;
  }
}


/* newcssofarchitecturesectio */


/* ========================================================================== 
   Industry Expertise Carousel Section
   ========================================================================== */
.expertise-section {
  background-color: #f8fafc;
  /* Clean off-white background */
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
  color: #1e293b;
}

.expertise-header {
  max-width: 800px;
  margin: 0 auto var(--spacing-xl) auto;
  text-align: center;
}

.expertise-meta {
  font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #888888;
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.expertise-title {
  color: #030214;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.25;
  margin-bottom: var(--spacing-sm);
}

.expertise-desc {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}

/* Carousel Container and Track */
.carousel-container {
  position: relative;
  width: calc(100% - 160px);
  /* Leave 80px space on each side for buttons */
  max-width: 1200px;
  /* Bring the track bounds in slightly so cards are centered beautifully */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
  /* Accommodates active card height + shadows */
  padding: 20px 0;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
  /* Enables 3D rotations */
}

/* Base card styling */
.carousel-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220px;
  height: 350px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: var(--spacing-md);
  margin: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  background-image: none !important;
  /* Disable old css background images */

  /* Centering translate and 3D transitions */
  transform: translate3d(-50%, -50%, 0);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    width 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    height 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  will-change: transform, opacity, width, height;
}

.carousel-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

/* Card Image Wrap - Inactive State: Watermark background */
.carousel-card .card-image-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  /* Subtle watermark */
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

.carousel-card .card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Active (Featured) card styling */
.carousel-card.active {
  width: 440px;
  height: 478px;
  border-radius: 20px;
  border-color: #e0e7ff;
  box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.15);
  cursor: default;
  z-index: 10;
  background-color: #ffffff;
}

/* Card Image Wrap - Active State: Right side curved layout */
.carousel-card.active .card-image-wrap {
  top: 0;
  right: -15px;
  bottom: 76px;
  /* Space for stats row at bottom */
  height: auto;
  width: 57%;
  /* Left side is text, right side is image */
  opacity: 1;
  border-top-left-radius: 100% 100%;
  /* Curved mask cutting top-left of image block */
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 2;
  overflow: visible;
}

.carousel-card.active .card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card number */
.card-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #f1f5f9;
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
  z-index: 2;
}

.carousel-card.active .card-num {
  display: none;
  /* Hide number on active featured card */
}

/* Card Icon Circle */
.card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
  flex-shrink: 0;
  z-index: 3;
  transition: all var(--transition-normal);
  background-color: #eff6ff;
  color: #3b82f6;
}

.carousel-card.active .card-icon-wrap {
  width: 52px;
  height: 52px;
  margin-top: 25px;
  /* Push down to clear featured badge */
  margin-bottom: var(--spacing-md);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.18);
  /* Premium shadow */
}

/* Divider line */
.card-divider {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: var(--spacing-sm);
  z-index: 3;
  transition: width var(--transition-normal);
  background-color: #3b82f6;
}

.carousel-card.active .card-divider {
  width: 32px;
  margin-bottom: var(--spacing-md);
}

/* Custom Card Color Accents & Themes */
.card-icon-wrap.icon-green {
  background-color: #ecfdf5;
  color: #10b981;
}

.card-icon-wrap.icon-purple {
  background-color: #f5f3ff;
  color: #8b5cf6;
}

.card-icon-wrap.icon-blue {
  background-color: #eff6ff;
  color: #3b82f6;
}

.card-icon-wrap.icon-orange {
  background-color: #fff7ed;
  color: #f97316;
}

.card-icon-wrap.icon-pink {
  background-color: #fdf2f8;
  color: #ec4899;
}

.card-divider.divider-green {
  background-color: #10b981;
}

.card-divider.divider-purple {
  background-color: #8b5cf6;
}

.card-divider.divider-blue {
  background-color: #3b82f6;
}

.card-divider.divider-orange {
  background-color: #f97316;
}

.card-divider.divider-pink {
  background-color: #ec4899;
}

.bg-green-light {
  background-color: #ecfdf5;
  color: #10b981;
}

.bg-purple-light {
  background-color: #f5f3ff;
  color: #8b5cf6;
}

.bg-blue-light {
  background-color: #eff6ff;
  color: #3b82f6;
}

.bg-orange-light {
  background-color: #fff7ed;
  color: #f97316;
}

.bg-pink-light {
  background-color: #fdf2f8;
  color: #ec4899;
}

/* Custom explore solutions button colors per industry */
.card-education.active .btn-explore-solutions {
  background: #10b981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.card-education.active .btn-explore-solutions:hover {
  background: #059669;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.card-fintech.active .btn-explore-solutions {
  background: #8b5cf6;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.card-fintech.active .btn-explore-solutions:hover {
  background: #7c3aed;
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.3);
}

.card-healthcare.active .btn-explore-solutions {
  background: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.card-healthcare.active .btn-explore-solutions:hover {
  background: #2563eb;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

.card-manufacturing.active .btn-explore-solutions {
  background: #f97316;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.card-manufacturing.active .btn-explore-solutions:hover {
  background: #ea580c;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
}

.card-retail.active .btn-explore-solutions {
  background: #ec4899;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.2);
}

.card-retail.active .btn-explore-solutions:hover {
  background: #db2777;
  box-shadow: 0 6px 16px rgba(236, 72, 153, 0.3);
}

/* Custom icon wrap active shadow colors per industry */
.card-education.active .card-icon-wrap {
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.18);
}

.card-fintech.active .card-icon-wrap {
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.18);
}

.card-healthcare.active .card-icon-wrap {
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.18);
}

.card-manufacturing.active .card-icon-wrap {
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.18);
}

.card-retail.active .card-icon-wrap {
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.18);
}

/* Card Typography */
.carousel-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
  z-index: 3;
  transition: font-size var(--transition-normal);
}

.carousel-card.active h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  max-width: 50%;
  /* Prevent overlapping right-side image */
}

.carousel-card p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: var(--spacing-sm);
  max-width: 100%;
  z-index: 3;
  transition: all var(--transition-normal);
}

.carousel-card.active p {
  font-size: 0.77rem;
  color: #475569;
  max-width: 48%;
  /* Prevent overlapping right-side image */
  margin-bottom: var(--spacing-md);
}

/* Featured Badge */
.badge-featured {
  display: none;
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 4;
}

/* Healthcare */
.card-education.active .badge-featured {
  background: #10B981;
}

/* Public Sector */
.card-fintech.active .badge-featured {
  background: #8B5CF6;
}

/* Financial Services */
.card-healthcare.active .badge-featured {
  background: #3B82F6;
}

/* Enterprise & Commercial */
.card-manufacturing.active .badge-featured {
  background: #F97316;
}

/* Regulated Industries */
.card-retail.active .badge-featured {
  background: #EC4899;
}

/* Digital & Technology Businesses */
.card-digital.active .badge-featured {
  background: #06B6D4;
}

.carousel-card.active .badge-featured {
  display: block;
}

/* Buttons */
.btn-card-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  background-color: #eff6ff;
  text-decoration: none;
  margin-top: auto;
  z-index: 3;
  transition: all var(--transition-fast);
}

.btn-card-arrow:hover {
  transform: scale(1.08);
}

.btn-explore-solutions {
    display: none;
    align-items: center;
    gap: 10px;

    background: #3b82f6;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;

    padding: 10px 18px;
    border-radius: 8px;

    align-self: flex-start;
    margin-top: auto;

    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    z-index: 3;
    transition: all var(--transition-fast);
}

.btn-explore-solutions img {
    width: 20px;   /* Adjust to your image */
    height: 20px;
    object-fit: contain;
    display: block;
}



.btn-explore-solutions:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

.carousel-card.active .btn-explore-solutions {
  display: flex;
  max-width: 50%;
}

.carousel-card.active .btn-card-arrow {
  display: none;
}

/* Card Stats Grid at bottom */
.card-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #f1f5f9;
  padding: 8px 0;
  margin-top: auto;
  margin-bottom: calc(-1 * var(--spacing-md));
  background: #f8fafc;
  border-radius: 0 0 20px 20px;
  width: calc(100% + 2 * var(--spacing-md));
  margin-left: calc(-1 * var(--spacing-md));
  z-index: 3;
  box-sizing: border-box;
}

.carousel-card.active .card-stats-row {
  display: grid;
}

.card-stats-row .stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 3px 5px;
}

.card-stats-row .stat-item:not(:last-child) {
  border-right: 1px solid #e2e8f0;
}

.stat-icon-circle {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-circle.icon-blue {
  background-color: #eff6ff;
  color: #3b82f6;
}

.stat-icon-circle.icon-shield {
  background-color: #f5f3ff;
  color: #8b5cf6;
}

/* Purple/Violet shield */
.stat-icon-circle.icon-trend {
  background-color: #e6fffa;
  color: #0d9488;
}

/* Teal trend */

.stat-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
  margin-left: 4px;
}

.stat-val {
  font-size: 0.72rem;
  font-weight: 600;
  color: #0f172a;
}

.stat-lbl {
  font-size: 0.55rem;
  color: #64748b;
  white-space: nowrap;
}

/* Arrows controls */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #475569;
  z-index: 100;
  transition: all var(--transition-fast);
}

.carousel-arrow:hover {
  background-color: #f8fafc;
  color: #0f172a;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow.arrow-left {
  left: -70px;
  /* Positioned in the container's side margins */
}

.carousel-arrow.arrow-right {
  right: -70px;
  /* Positioned in the container's side margins */
}

/* Dots indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: var(--spacing-lg);
}

.carousel-indicators .indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-indicators .indicator-dot.active {
  background-color: #3b82f6;
  width: 20px;
  border-radius: 4px;
}

/* Responsive constraints for carousel */
@media (max-width: 768px) {
  .carousel-container {
    height: 480px;
    width: calc(100% - 90px);
    /* Leave space for buttons on mobile */
  }

  .carousel-card {
    width: 160px;
    height: 280px;
    background-size: 90% auto;
  }

  .carousel-card.active {
    width: 290px;
    height: 380px;
    background-size: 70% auto;
  }

  .carousel-card p {
    font-size: 0.75rem;
  }

  .carousel-card.active p {
    font-size: 0.8rem;
    max-width: 90%;
  }

  .carousel-card.active .btn-explore-solutions {
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  .card-stats-row {
    display: none !important;
    /* Hide stats rows on mobile layouts to prevent squishing */
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .carousel-arrow.arrow-left {
    left: -35px;
  }

  .carousel-arrow.arrow-right {
    right: -35px;
  }
}

/* Preserve the desktop carousel composition while scaling it for tablets. */
@media (max-width: 1024px) and (min-width: 769px) {
  .expertise-section {
    padding: 72px 0;
  }

  .carousel-container {
    width: calc(100% - 120px);
    height: 500px;
  }

  .carousel-card {
    width: 200px;
    height: 320px;
  }

  .carousel-card.active {
    width: 400px;
    height: 450px;
  }
}

/* Mobile keeps the same centred-card carousel, with smaller cards and text. */
@media (max-width: 1024px) {
  .expertise-section {
    padding: 56px 0;
  }

  .expertise-title {
    font-size: 1.75rem;
  }

  .expertise-desc {
    padding: 0 12px;
    font-size: .9rem;
  }

  .carousel-container {
    width: calc(100% - 40px);
    height: 455px;
  }

  .carousel-card {
    width: 215px;
    height: 327px;
  }

  .carousel-card.active {
    width: min(395px, calc(100% - 36px));
    height: 471px;
  }

  .carousel-card.active p {
    max-width: 48%;
    font-size: .73rem;
    line-height: 1.5;
  }

  .carousel-card.active .btn-explore-solutions {
    max-width: 50%;
  }

  .carousel-card.active .card-stats-row {
    display: grid !important;
  }

  .stat-lbl {
    font-size: .48rem;
  }

  .stat-val {
    font-size: .65rem;
  }

  .carousel-arrow.arrow-left {
    left: -18px;
  }

  .carousel-arrow.arrow-right {
    right: -18px;
  }

}

/* ===========================
   Mobile (320px - 765px)
=========================== */
@media (max-width: 765px) {

  .expertise-section {
    padding: 48px 0;
  }

  .expertise-header {
    margin-bottom: 32px;
    padding: 0 16px;
  }

  .expertise-meta {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .expertise-title {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .expertise-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0;
  }

  .carousel-container {
    width: 100%;
    height: 385px;
    padding: 0 16px;
  }

  /* Small side cards */
  .carousel-card {
    width: 130px;
    height: 220px;
    padding: 14px;
    border-radius: 14px;
  }

  /* Active card */
  .carousel-card.active {
    width: min(339px, calc(100vw - 32px));
    height: 381px;
    border-radius: 18px;
  }

  /* Image */
  .carousel-card.active .card-image-wrap {
    width: 48%;
    bottom: 62px;
    right: -8px;
  }

  /* Icon */
  .card-icon-wrap {
    width: 36px;
    height: 36px;
  }

  .carousel-card.active .card-icon-wrap {
    width: 42px;
    height: 42px;
    margin-top: 18px;
    margin-bottom: 12px;
  }

  /* Divider */
  .card-divider {
    width: 18px;
  }

  .carousel-card.active .card-divider {
    width: 24px;
    margin-bottom: 12px;
  }

  /* Heading */
  .carousel-card h3 {
    font-size: 0.95rem;
  }

  .carousel-card.active h3 {
    font-size: 1.15rem;
    max-width: 50%;
    margin-bottom: 8px;
  }

  /* Paragraph */
  .carousel-card p {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .carousel-card.active p {
    font-size: 0.68rem;
    line-height: 1.45;
    max-width: 50%;
    margin-bottom: 12px;
  }

  /* Featured badge */
  .badge-featured {
    top: 14px;
    left: 14px;
    padding: 4px 10px;
    font-size: 0.55rem;
  }

  /* Button */
  .btn-explore-solutions {
    font-size: 0.68rem;
    padding: 8px 12px;
    border-radius: 7px;
  }

  .carousel-card.active .btn-explore-solutions {
    margin-top: 8px;
    max-width: 48%;
  }

  .btn-card-arrow {
    width: 28px;
    height: 28px;
  }

  /* Number */
  .card-num {
    font-size: 1.5rem;
    top: 12px;
    right: 14px;
  }

  /* Stats */
  .card-stats-row {
    padding: 15px 10px;
  }

  .stat-icon-circle {
    width: 18px;
    height: 18px;
  }

  .stat-val {
    font-size: 0.58rem;
  }

  .stat-lbl {
    font-size: 0.42rem;
  }

  /* Arrows */
  .carousel-arrow {
    width: 32px;
    height: 32px;
  }

  .carousel-arrow.arrow-left {
    left: -6px;
  }

  .carousel-arrow.arrow-right {
    right: -6px;
  }

  .carousel-indicators {
    margin-top: 22px;
  }

  .carousel-indicators .indicator-dot {
    width: 7px;
    height: 7px;
  }

  .carousel-indicators .indicator-dot.active {
    width: 18px;
  }

  .card-stats-row {
    margin-top: auto;

  }
}

@media (max-width: 320px) {

  .expertise-section {
    padding: 48px 0;
  }

  .expertise-header {
    margin-bottom: 32px;
    padding: 0 16px;
  }

  .expertise-meta {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .expertise-title {
    font-size: 1.7rem;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .expertise-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0;
  }

  .carousel-container {
    width: 100%;
    height: 385px;
    padding: 0 16px;
  }

  /* Small side cards */
  .carousel-card {
    width: 130px;
    height: 220px;
    padding: 14px;
    border-radius: 14px;
  }

  /* Active card */
  .carousel-card.active {
    width: min(329px, calc(100vw - 32px));
    height: 381px;
    border-radius: 18px;
  }

  /* Image */
  .carousel-card.active .card-image-wrap {
    width: 69%;
    bottom: 62px;
    right: -73px;
  }

  /* Icon */
  .card-icon-wrap {
    width: 36px;
    height: 36px;
  }

  .carousel-card.active .card-icon-wrap {
    width: 42px;
    height: 42px;
    margin-top: 27px;
    margin-bottom: 12px;
  }

  /* Divider */
  .card-divider {
    width: 18px;
  }

  .carousel-card.active .card-divider {
    width: 24px;
    margin-bottom: 12px;
  }

  /* Heading */
  .carousel-card h3 {
    font-size: 0.95rem;
  }

  .carousel-card.active h3 {
    font-size: 1.15rem;
    max-width: 50%;
    margin-bottom: 8px;
  }

  /* Paragraph */
  .carousel-card p {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .carousel-card.active p {
    font-size: 0.68rem;
    line-height: 1.45;
    max-width: 61%;
    margin-bottom: 12px;
  }

  /* Featured badge */
  .badge-featured {
    top: 14px;
    left: 14px;
    padding: 4px 10px;
    font-size: 0.55rem;
  }

  /* Button */
  .btn-explore-solutions {
    font-size: 0.68rem;
    padding: 8px 12px;
    border-radius: 7px;
  }

  .carousel-card.active .btn-explore-solutions {
    white-space: nowrap;
    margin-top: 8px;
    max-width: 60%;
  }

  .btn-card-arrow {
    width: 28px;
    height: 28px;
  }

  /* Number */
  .card-num {
    font-size: 1.5rem;
    top: 12px;
    right: 14px;
  }

  /* Stats */
  .card-stats-row {
    padding: 15px 10px;
  }

  .stat-icon-circle {
    width: 18px;
    height: 18px;
  }

  .stat-val {
    font-size: 0.58rem;
  }

  .stat-lbl {
    font-size: 0.42rem;
  }

  /* Arrows */
  .carousel-arrow {
    width: 32px;
    height: 32px;
  }

  .carousel-arrow.arrow-left {
    left: -23px;
  }

  .carousel-arrow.arrow-right {
    right: -23px;
  }

  .carousel-indicators {
    margin-top: 22px;
  }

  .carousel-indicators .indicator-dot {
    width: 7px;
    height: 7px;
  }

  .carousel-indicators .indicator-dot.active {
    width: 18px;
  }

  .card-stats-row {
    margin-top: auto;

  }
}

/* Digital Card Theme */
.card-digital.active .btn-explore-solutions {
  background: #06b6d4;
  box-shadow: 0 4px 12px rgba(6, 182, 212, .25);
}

.card-digital.active .btn-explore-solutions:hover {
  background: #0891b2;
  box-shadow: 0 6px 18px rgba(6, 182, 212, .35);
}

.card-digital.active .card-icon-wrap {
  background: #ecfeff;
  color: #06b6d4;
  box-shadow: 0 8px 20px rgba(6, 182, 212, .22);
}

.card-digital .card-icon-wrap {
  background: #ecfeff;
  color: #06b6d4;
}

.card-digital .card-divider {
  background: #06b6d4;
}

.bg-digital-light {
  background: #ecfeff;
  color: #06b6d4;
}

.icon-digital {
  background: #ecfeff;
  color: #06b6d4;
}

.divider-digital {
  background: #06b6d4;
}

/* ==========================================================================
   VIBE Section (Light Theme)
   ========================================================================== */
.vibe-section {
  background-color: #ffffff;
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
  color: #1e293b;
}

.vibe-header {
  max-width: 800px;
  margin: 0 auto var(--spacing-xxl) auto;
  text-align: center;
}

.vibe-meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #64748b;
  /* Silver/grey uppercase category */
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--spacing-xs);
}

.vibe-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

.vibe-desc {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}

/* Three-column interactive layout */
.vibe-content-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: var(--spacing-xl);
}

.vibe-side-col {
  width: 28%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  z-index: 5;
}

.vibe-center-col {
  width: 44%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

/* Feature Item card structure */
.vibe-item {
  display: flex;
  gap: var(--spacing-sm);
  position: relative;
  transition: transform var(--transition-fast);
}

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

.vibe-item-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.vibe-item-icon.icon-violet {
  background: #eef2ff;
  color: #6366f1;
}

.vibe-item-icon.icon-green {
  background: #ecfdf5;
  color: #10b981;
}

.vibe-item-icon.icon-blue {
  background: #eff6ff;
  color: #3b82f6;
}

.vibe-item-icon.icon-pink {
  background: #fdf2f8;
  color: #ec4899;
}

.vibe-item-icon.icon-orange {
  background: #fff7ed;
  color: #f97316;
}

.vibe-item-text h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.vibe-item-text p {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.5;
}

/* Connector Dot styling */
.connector-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 19px;
  display: none;
  /* Display only on desktop where SVGs are visible */
}

.left-col .connector-dot {
  right: -20px;
}

.right-col .connector-dot {
  left: -20px;
}

.connector-dot.dot-violet {
  background: #6366f1;
  box-shadow: 0 0 6px #6366f1;
}

.connector-dot.dot-green {
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.connector-dot.dot-blue {
  background: #3b82f6;
  box-shadow: 0 0 6px #3b82f6;
}

.connector-dot.dot-pink {
  background: #ec4899;
  box-shadow: 0 0 6px #ec4899;
}

.connector-dot.dot-orange {
  background: #f97316;
  box-shadow: 0 0 6px #f97316;
}

/* SVG connecting lines */
.connecting-lines {
  position: absolute;
  top: 5%;
  left: -40%;
  width: 180%;
  height: 90%;
  pointer-events: none;
  z-index: -1;
  display: none;
  /* Shown only on desktop */
}

@media (min-width: 1025px) {
  .connecting-lines {
    display: block;
  }

  .connector-dot {
    display: block;
  }
}

/* Premium Dashboard Mockup Container */
.dashboard-mockup {
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  display: flex;
  overflow: hidden;
  height: 520px;
}

/* Dashboard Sidebar */
.db-sidebar {
  width: 180px;
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  padding: var(--spacing-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.db-logo {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--spacing-md);
}

.db-logo .logo-dot {
  width: 8px;
  height: 8px;
  background: #6366f1;
  border-radius: 50%;
}

.db-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}

.db-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748b;
  padding: 8px 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.db-nav-item svg {
  stroke: #64748b;
  transition: stroke var(--transition-fast);
}

.db-nav-item:hover,
.db-nav-item.active {
  background: #eef2ff;
  color: #6366f1;
}

.db-nav-item:hover svg,
.db-nav-item.active svg {
  stroke: #6366f1;
}

.db-upgrade-card {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 10px;
  position: relative;
  margin-top: auto;
}

.db-upgrade-card h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: #b45309;
  margin-bottom: 2px;
}

.db-upgrade-card p {
  font-size: 0.65rem;
  color: #d97706;
  margin-bottom: 0;
}

.upgrade-icon {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.db-upgrade-card .arrow-right {
  position: absolute;
  right: 10px;
  bottom: 8px;
  font-size: 0.8rem;
  color: #b45309;
}

/* Dashboard Main Content Panel */
.db-main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow-y: auto;
}

/* Inner header */
.db-inner-header {
  height: 50px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--spacing-sm);
  flex-shrink: 0;
}

.db-search {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  width: 140px;
}

.db-search input {
  border: none;
  background: transparent;
  font-size: 0.72rem;
  width: 100%;
  outline: none;
}

.db-header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.notification-bell {
  font-size: 0.9rem;
  color: #64748b;
  cursor: pointer;
}

.db-user {
  display: flex;
  align-items: center;
  gap: 6px;
}

.avatar-circle {
  width: 28px;
  height: 28px;
  background: #e0e7ff;
  color: #4f46e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
}

.user-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.user-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f172a;
}

.user-role {
  font-size: 0.62rem;
  color: #64748b;
}

/* Welcome Panel */
.db-welcome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm);
  border-bottom: 1px solid #f1f5f9;
  background: #f8fafc;
}

.welcome-left h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2px;
}

.welcome-left p {
  font-size: 0.7rem;
  color: #64748b;
  margin-bottom: 0;
}

.db-date {
  font-size: 0.68rem;
  font-weight: 600;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 4px 8px;
  color: #475569;
}

/* Stats metrics row */
.db-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xs);
  padding: var(--spacing-sm);
}

.stat-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.stat-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.stat-icon.icon-violet {
  background: #f5f3ff;
}

.stat-icon.icon-blue {
  background: #eff6ff;
}

.stat-icon.icon-green {
  background: #ecfdf5;
}

.stat-icon.icon-pink {
  background: #fdf2f8;
}

.stat-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.6rem;
  color: #64748b;
}

.stat-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
}

.stat-trend {
  font-size: 0.55rem;
  font-weight: 600;
}

.trend-up {
  color: #10b981;
}

/* Split grid at bottom */
.db-details-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--spacing-sm);
  padding: 0 var(--spacing-sm) var(--spacing-sm) var(--spacing-sm);
  flex-grow: 1;
}

.details-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: var(--spacing-sm);
  display: flex;
  flex-direction: column;
}

.details-card h4 {
  font-size: 0.78rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: var(--spacing-sm);
}

.chart-wrapper {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.performance-svg {
  width: 100%;
  height: 110px;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  padding-top: 4px;
  border-top: 1px solid #f1f5f9;
}

.chart-labels span {
  font-size: 0.6rem;
  color: #94a3b8;
}

/* Timeline/Activity */
.activity-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.timeline-item {
  display: flex;
  gap: 8px;
  position: relative;
}

.timeline-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}

.timeline-dot.bg-purple {
  background: #8b5cf6;
}

.timeline-dot.bg-blue {
  background: #3b82f6;
}

.timeline-dot.bg-green {
  background: #10b981;
}

.timeline-dot.bg-orange {
  background: #f97316;
}

.timeline-content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.timeline-content p {
  font-size: 0.68rem;
  color: #334155;
  margin-bottom: 0;
}

.timeline-content strong {
  color: #0f172a;
}

.timeline-time {
  font-size: 0.58rem;
  color: #94a3b8;
}

.view-all-link {
  font-size: 0.68rem;
  font-weight: 600;
  color: #6366f1;
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
}

.view-all-link:hover {
  text-decoration: underline;
}

/* VIBE CTA Actions */
.vibe-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.btn-explore-all {
  background: #6366f1;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.2);
  transition: all var(--transition-fast);
}

.btn-explore-all:hover {
  background: #4f46e5;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.3);
}

.btn-watch-demo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0f172a;
  transition: transform var(--transition-fast);
}

.btn-watch-demo:hover {
  transform: translateY(-1px);
}

.play-icon-wrap {
  width: 38px;
  height: 38px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366f1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
}

.demo-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.demo-btn-text strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f172a;
}

.demo-btn-text span {
  font-size: 0.72rem;
  color: #64748b;
}

/* Responsive constraints for VIBE Section */
@media (max-width: 1024px) {
  .vibe-content-grid {
    flex-direction: column;
    gap: var(--spacing-xl);
  }

  .vibe-side-col {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .vibe-center-col {
    width: 100%;
  }

  .dashboard-mockup {
    max-width: 768px;
  }
}

@media (max-width: 768px) {
  .dashboard-mockup {
    height: auto;
  }

  .db-sidebar {
    display: none;
    /* Collapse sidebar on mobile devices for viewport efficiency */
  }

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

  .db-details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .vibe-side-col {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .db-stats {
    grid-template-columns: 1fr;
  }

  .vibe-ctas {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}

/* SAA Case Study & Trust Section Custom Styles */
.old-case-study-content { display: none; }
.case-study-section { font-family: 'Poppins', sans-serif !important; }
.proof-outcomes-container { text-align: center; }
.proof-outcomes-header { margin: 0 auto 34px; }
.proof-outcomes-header > span { font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #888888;
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--spacing-xs); }
.proof-outcomes-header h2 { margin: 0; color: #030214;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.25; }
.proof-outcomes-header p { margin: 18px 0 0; color: #718096; font-size: .85rem; line-height: 1.65; }
.proof-study-row { position: relative; text-align: left; }
.proof-study-viewport { overflow: hidden; }
.proof-study-track { display: flex; gap: 20px; transition: transform .45s ease; will-change: transform; }
.proof-study-card { flex: 0 0 calc((100% - 20px) / 2); display: grid; grid-template-columns: 66% 34%; height: 410px; overflow: hidden; border: 1px solid #e8e8ef; border-radius: 10px; background: #fff; box-shadow: 0 3px 10px rgba(56, 43, 115, .08); }
.proof-study-content { min-height: 0; padding: 20px; display: flex; flex-direction: column; }
.proof-badge { align-self: flex-start; padding: 5px 9px; border-radius: 4px; background: #f1edff; color: #6d42f3; font-size: .58rem; font-weight: 700; text-transform: uppercase; }
.proof-study-content h3 { margin: 15px 0 10px; color: #1c1b32; font-size: 1.18rem; font-weight: 600; line-height: 1.2; letter-spacing: -.025em; }
.proof-study-content p { margin: 0; color: #667085; font-size: .78rem; line-height: 1.5; }
.proof-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: auto 0 24px; border-radius: 7px; overflow: hidden; background: #ede9fe; }
.proof-metrics div { min-height: 65px; padding: 8px 3px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #f8f7ff; text-align: center; }
.proof-metrics b { color: #7c5cff; font-size: .9rem; }.proof-metrics strong { margin-top: 3px; color: #5f40e9; font-size: .65rem; }.proof-metrics small { margin-top: 2px; color: #8a8ea0; font-size: .43rem; text-transform: uppercase; }
.proof-study-content > a { color: #6542eb; font-size: .66rem; font-weight: 600; text-decoration: none; }
.proof-study-image { position: relative; min-height: 0; overflow: hidden; background: #0d4d77; }.proof-study-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.5) contrast(1.08); }.proof-study-image-dark img { filter: hue-rotate(160deg) saturate(1.7) brightness(.6); }
.proof-study-image button { position: absolute; right: 12px; bottom: 12px; width: 28px; height: 28px; border: 0; border-radius: 50%; background: #fff; color: #6847f3; font-size: .6rem; box-shadow: 0 3px 8px rgba(0,0,0,.18); cursor: pointer; }
.proof-arrow { position: absolute; top: 50%; z-index: 2; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid #eee; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.12); color: #374151; transform: translateY(-50%); cursor: pointer; }.proof-arrow svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }.proof-arrow:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; }.proof-prev { left: -14px; }.proof-next { right: -14px; }
.proof-dots { display: flex; justify-content: center; gap: 9px; margin: 32px 0 20px; }.proof-dots i { width: 7px; height: 7px; border-radius: 50%; background: #cbd2df; }.proof-dots .active { background: #6842ed; }
.proof-outcomes-button { display: inline-block; padding: 15px 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7a5aff, #6944eb);
  box-shadow: 0 12px 24px rgba(81, 54, 231, .35);
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

@media (max-width: 800px) {
  .proof-study-card { flex-basis: 100%; }
  .proof-outcomes-header p br { display: none; }
}

@media (max-width: 480px) {
  .proof-study-card {
    grid-template-columns: 1fr;
  }
  .proof-study-image {
    min-height: 180px;
  }
}

.case-study-section {
  background-color: #fcfcfd;
  border-top: 1px solid #f1f5f9;
  padding: 72px 0;
}

.case-study-header {
  max-width: 800px;
  margin: 0 auto var(--spacing-xl) auto;
  text-align: center;
}

.case-study-meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #4f46e5;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--spacing-xs);
}

.case-study-section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
}

.case-study-row {
  position: relative;
  margin-bottom: var(--spacing-xxl);
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

@media (min-width: 1024px) {
  .case-study-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
}

.case-study-card {
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #f1f5f9;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .case-study-card {
    flex-direction: row;
  }
}

.case-study-card-content {
  padding: var(--spacing-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .case-study-card-content {
    padding: var(--spacing-xl);
  }
}

.case-study-card-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background-color: #eff6ff;
  color: #3b82f6;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--spacing-md);
}

.case-study-card-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
}

.case-study-card-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.case-study-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-lg);
}

.metric-card {
  background: rgba(249, 250, 251, 0.75);
  border-radius: 12px;
  padding: var(--spacing-sm) var(--spacing-xs);
  text-align: center;
  border: 1px solid #f1f5f9;
}

.metric-icon-wrap {
  margin-bottom: var(--spacing-xs);
  display: flex;
  justify-content: center;
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}

.metric-value.color-indigo {
  color: #4f46e5;
}

.metric-value.color-emerald {
  color: #10b981;
}

.metric-value.color-blue {
  color: #3b82f6;
}

.metric-label {
  font-size: 10px;
  color: #64748b;
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.3;
}

.case-study-read-link {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.case-study-read-link:hover {
  text-decoration: underline;
}

.case-study-read-link svg {
  margin-left: 8px;
  transition: transform var(--transition-fast);
}

.case-study-read-link:hover svg {
  transform: translateX(4px);
}

.case-study-card-image {
  width: 100%;
  position: relative;
  min-height: 300px;
}

@media (min-width: 768px) {
  .case-study-card-image {
    width: 33.333333%;
  }
}

.case-study-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(79, 70, 229, 0.08);
}

.case-study-play-btn {
  position: absolute;
  bottom: var(--spacing-md);
  left: var(--spacing-md);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.case-study-play-btn:hover {
  transform: scale(1.08);
}

.case-study-testimonial-card {
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #f1f5f9;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.testimonial-card-body {
  padding: var(--spacing-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .testimonial-card-body {
    padding: var(--spacing-xl);
  }
}

.testimonial-quote-wrap {
  margin-bottom: var(--spacing-md);
}

.testimonial-quote-icon {
  width: 40px;
  height: 40px;
  color: #e0e7ff;
  margin-bottom: var(--spacing-xs);
}

.testimonial-blockquote {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.45;
}

.testimonial-author-row {
  border-top: 1px solid #f1f5f9;
  padding-top: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eff6ff;
}

.testimonial-author-name {
  font-weight: 600;
  color: #0f172a;
}

.testimonial-author-role {
  font-size: 0.8rem;
  color: #64748b;
}

.testimonial-rating-stars {
  display: flex;
  color: #3b82f6;
  margin-top: 4px;
}

.testimonial-mini-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
}

.case-study-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--spacing-md);
}

.case-study-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.case-study-dot.active-dot {
  background-color: #3b82f6;
  width: 20px;
  border-radius: 4px;
}

.case-study-dot.inactive-dot {
  background-color: #cbd5e1;
}

.case-study-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: #64748b;
  z-index: 10;
}

.case-study-arrow:hover {
  background-color: #f8fafc;
  color: #0f172a;
}

.case-study-arrow.arrow-left {
  left: 0;
  transform: translateY(-50%) translateX(-24px);
}

.case-study-arrow.arrow-right {
  right: 0;
  transform: translateY(-50%) translateX(24px);
}

@media (min-width: 1200px) {
  .case-study-arrow {
    display: flex;
  }
}

.case-study-trusted-section {
  margin-top: var(--spacing-xl);
}

.trusted-box {
  background: #ffffff;
  border-radius: 24px;
  padding: var(--spacing-lg);
  border: 1px solid #f8fafc;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

@media (min-width: 768px) {
  .trusted-box {
    padding: var(--spacing-xl);
  }
}

.trusted-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.trusted-line-left,
.trusted-line-right {
  height: 1.5px;
  flex: 1;
  max-width: 80px;
}

.trusted-line-left {
  background: linear-gradient(to right, transparent, #6366f1);
}

.trusted-line-right {
  background: linear-gradient(to left, transparent, #6366f1);
}

.trusted-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: #6366f1;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.trusted-logos-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
}

.trusted-logos-flex img {
  opacity: 0.9;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.trusted-logos-flex img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .trusted-logos-flex {
    gap: var(--spacing-xl);
  }
}


.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon img {
    width: 28px;   /* Adjust as needed */
    height: 28px;
    display: block;
    object-fit: contain;
}

/* ==========================================================================
   CTA & Space Features Section Styles
   ========================================================================== */
.cta-features-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.cta-banner {
  width: 100%;
  padding: 96px 0 92px;
  background-image: url('../assets/images/cta-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  color: #ffffff;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 2, 20, 0.22);
  /* Protect contrast for text readability */
  z-index: 1;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 850px;
  margin: 0 auto;
}

.cta-meta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.cta-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 14px;
  max-width: 850px;
}

.cta-desc {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 21px;
}

.btn-talk-expert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.btn-assess-readiness {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .72rem 1.6rem;
  border-radius: var(--radius-pill);
  background: #fff;
  color: #30206f;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-assess-readiness:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, .22);
}

.btn-talk-expert:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.05);
}

/* Bottom Features Row */
.features-bar {
  background-color: #f5f7fb;
  /* Light blue-white bar */
  padding: var(--spacing-md) 0;
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
}

.features-bar-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.feature-bar-item {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 72px 0;
    background-attachment: scroll;
  }

  .cta-desc br {
    display: none;
  }

  .cta-actions {
    flex-direction: column;
  }

  .features-bar {
    padding: var(--spacing-sm) 0;
  }

  .features-bar-grid {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}

/* ==========================================================================
   Footer Section Styles
   ========================================================================== */
.footer {
  background-color: #ffffff;
  padding: var(--spacing-xxl) 0 var(--spacing-xl) 0;
  border-top: 1px solid #f1f5f9;
  color: #475569;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(6, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xxl);
}

@media (max-width: 1200px) {
  .footer-top-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
    row-gap: var(--spacing-xl);
  }
}

@media (max-width: 768px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    row-gap: var(--spacing-lg);
  }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.02em;
}

.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: var(--spacing-md);
  max-width: 260px;
}

.footer-connect {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.connect-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-btn:hover {
  background-color: #6366f1;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-nav-col h4 {
  position: relative;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-md);
  padding-top: 12px;
}

.footer-nav-col h4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 2.5px;
  background-color: #6366f1;
  border-radius: 2px;
}

.footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col li a {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-nav-col li a:hover {
  color: #6366f1;
}

.link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #818cf8;
  margin-right: 8px;
  flex-shrink: 0;
}

.link-icon svg {
  width: 14px;
  height: 14px;
}

/* Middle Floating Contact Box */
.footer-contact-panel {
  background-color: #f4f6fc;
  border: 1px solid rgba(99, 102, 241, 0.05);
  border-radius: 28px;
  padding: var(--spacing-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

@media (max-width: 1024px) {
  .footer-contact-panel {
    flex-direction: column;
    align-items: stretch;
    padding: var(--spacing-lg);
  }
}

.contact-cta-col {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  flex: 1;
}

@media (min-width: 1025px) {
  .contact-cta-col {
    border-right: 1px solid rgba(99, 102, 241, 0.1);
    padding-right: var(--spacing-xl);
  }
}

.cta-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background-color: #ffffff;
  color: #6366f1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.05);
  flex-shrink: 0;
}

.cta-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.cta-text-wrap h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.cta-text-wrap p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 12px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6366f1;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.cta-link:hover {
  text-decoration: underline;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  flex: 2;
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #6366f1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  flex-shrink: 0;
  border: 1px solid #f1f5f9;
}

.info-icon-circle svg {
  width: 16px;
  height: 16px;
}

.info-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.info-text strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.info-text .info-val {
  font-size: 0.76rem;
  color: #64748b;
}

.info-text .info-val a {
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
}

.info-text .info-val a:hover {
  text-decoration: underline;
}

.info-text .info-val.text-muted {
  font-size: 0.72rem;
  color: #94a3b8;
}

/* Bottom Bar */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid #f1f5f9;
  font-size: 0.76rem;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .footer-bottom-bar {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }
}

.bottom-center {
  display: flex;
  gap: var(--spacing-md);
}

.bottom-center a {
  color: #94a3b8;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.bottom-center a:hover {
  color: #6366f1;
}

/* ==========================================================================
   Services Mega Menu Dropdown with Stripe-like Animation
   ========================================================================== */

/* Layout structure:
   We want the header to be relative container for positioning.
   Since header is absolute, any absolute descendant is positioned relative to header as long as intermediate parents aren't relative.
*/
.nav-menu {
  position: static !important;
  /* Ensure nav-menu doesn't form a stacking context */
}

.services-nav-item,
.solutions-nav-item,
.industries-nav-item {
  position: static;
  /* Force relative coordinates back to header */
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.services-nav-item:hover .nav-link,
.services-nav-item .nav-link:focus,
.solutions-nav-item:hover .nav-link,
.solutions-nav-item .nav-link:focus,
.industries-nav-item:hover .nav-link,
.industries-nav-item .nav-link:focus {
  color: #ffffff;
}

.services-dropdown,
.solutions-dropdown,
.industries-dropdown {
  position: absolute;
  top: 70px;
  /* Positioned right under the navbar links */
  left: var(--nav-left-offset);
  right: 0;
  background-color: #ffffff;
  border-radius: 0;
  /* Fully rounded card like Stripe */
  box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.15), 0 20px 40px -20px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 50px;
  box-sizing: border-box;
  z-index: 1000;

  /* Stripe animation setup */
  perspective: 2000px;
  transform-origin: 50% 0;
  opacity: 0;
  visibility: hidden;
  transform: rotateX(-12deg) scale(0.95);
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.28s;
}

/* Hover state toggle (JS will also support this with a slight debounce, but CSS fallback is immediate/clean) */
.services-nav-item:hover .services-dropdown,
.services-dropdown.active,
.solutions-nav-item:hover .solutions-dropdown,
.solutions-dropdown.active,
.industries-nav-item:hover .industries-dropdown,
.industries-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: rotateX(0deg) scale(1);
  pointer-events: auto;
}

/* Dropdown column headings */
.dropdown-column {
  display: flex;
  flex-direction: column;
}

.dropdown-header {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  /* Desaturated Slate */
  padding-bottom: 8px;
  border-bottom: 1.5px solid #f1f5f9;
  margin-bottom: 16px;
  margin-top: 0;
}

/* List elements */
.dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dropdown-list li {
  margin: 0;
  padding: 0;
}

.dropdown-link {
  display: inline-flex;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #3b82f6;
  /* Premium Cobalt Blue */
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium micro-animations on hover */
.dropdown-link:hover {
  color: #7c3aed;
  /* Brand Accent Violet */
  transform: translateX(4px);
}

/* Specific item underline styles matching screenshot (e.g. Application Integration highlighted) */
.dropdown-link.highlighted,
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(2) a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Responsive constraints */
@media (max-width: 1024px) and (min-width: 901px) {

  .services-dropdown,
  .solutions-dropdown,
  .industries-dropdown {
    padding: 30px 35px;
    gap: 20px;
  }

  .dropdown-header {
    font-size: 0.65rem;
    margin-bottom: 12px;
  }

  .dropdown-link {
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {

  .services-dropdown,
  .solutions-dropdown,
  .industries-dropdown {
    display: none !important;
    /* Completely disabled on mobile, handled natively */
  }
}

.heart-icon {
  color: #818cf8;
}

/* ==========================================================================
   Stripe-inspired desktop navigation treatment
   ========================================================================== */
@media (min-width: 901px) {
  .header {
    height: 70px;
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .brand-box {
    width: auto;
    margin-right: 28px;
  }

  .logo {
    color: #ffffff;
    font-size: 1.45rem;
    letter-spacing: -0.04em;
  }

  .nav-menu {
    height: 100%;
    gap: 0;
  }

  .nav-link {
    height: 70px;
    padding: 0 14px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-link:hover,
  .services-nav-item:hover .nav-link,
  .services-nav-item .nav-link:focus,
  .solutions-nav-item:hover .nav-link,
  .solutions-nav-item .nav-link:focus,
  .industries-nav-item:hover .nav-link,
  .industries-nav-item .nav-link:focus,
  .vibe-nav-item:hover .nav-link,
  .vibe-nav-item .nav-link:focus,
  .insights-nav-item:hover .nav-link,
  .insights-nav-item .nav-link:focus {
    color: #ffffff;
  }

  .nav-arrow {
    width: 9px;
    color: currentColor;
  }

  .btn-demo-header {
    margin-left: auto;
    padding: 0.62rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    background: transparent;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
  }

  .btn-demo-header:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
  }

  .header:hover,
  .header:focus-within,
  .header:has(.services-dropdown.active),
  .header:has(.solutions-dropdown.active),
  .header:has(.industries-dropdown.active),
  .header:has(.vibe-dropdown.active),
  .header:has(.insights-dropdown.active) {
    background: #ffffff;
    border-bottom-color: #e6ebf1;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  }

  .header:hover .logo,
  .header:focus-within .logo,
  .header:has(.services-dropdown.active) .logo,
  .header:has(.solutions-dropdown.active) .logo,
  .header:has(.industries-dropdown.active) .logo,
  .header:has(.vibe-dropdown.active) .logo,
  .header:has(.insights-dropdown.active) .logo {
    color: #0a2540;
  }

  .header:hover .nav-link,
  .header:focus-within .nav-link,
  .header:has(.services-dropdown.active) .nav-link,
  .header:has(.solutions-dropdown.active) .nav-link,
  .header:has(.industries-dropdown.active) .nav-link,
  .header:has(.vibe-dropdown.active) .nav-link,
  .header:has(.insights-dropdown.active) .nav-link {
    color: #425466;
  }

  .header:hover .nav-link:hover,
  .header:focus-within .nav-link:focus,
  .header:hover .services-nav-item:hover .nav-link,
  .header:hover .solutions-nav-item:hover .nav-link,
  .header:hover .industries-nav-item:hover .nav-link,
  .header:hover .vibe-nav-item:hover .nav-link,
  .header:hover .insights-nav-item:hover .nav-link {
    color: #0a2540;
  }

  .header:hover .btn-demo-header,
  .header:focus-within .btn-demo-header,
  .header:has(.services-dropdown.active) .btn-demo-header,
  .header:has(.solutions-dropdown.active) .btn-demo-header,
  .header:has(.industries-dropdown.active) .btn-demo-header,
  .header:has(.vibe-dropdown.active) .btn-demo-header,
  .header:has(.insights-dropdown.active) .btn-demo-header {
    border-color: #635bff;
    background: #635bff;
    color: #ffffff;
  }

  .header:hover .btn-demo-header:hover {
    background: #5149e7;
  }

  .services-dropdown,
  .solutions-dropdown,
  .industries-dropdown,
  .vibe-dropdown,
  .insights-dropdown {
    top: 70px;
    left: 0;
    right: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 34px max(32px, calc((100vw - var(--max-width)) / 2 + 32px));
    min-height: 310px;
    border-top: 0;
    border-bottom: 1px solid #e6ebf1;
    border-radius: 0;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
    transform: translateY(-8px);
    transform-origin: top center;
    will-change: opacity, transform;
    transition: opacity 0.24s ease, transform 0.34s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.34s;
  }

  .services-dropdown.active,
  .solutions-dropdown.active,
  .industries-dropdown.active,
  .vibe-dropdown.active,
  .insights-dropdown.active,
  .services-nav-item:hover .services-dropdown,
  .solutions-nav-item:hover .solutions-dropdown,
  .industries-nav-item:hover .industries-dropdown,
  .vibe-nav-item:hover .vibe-dropdown,
  .insights-nav-item:hover .insights-dropdown {
    transform: translateY(0);
    transition-delay: 0s;
  }

  .dropdown-column {
    min-width: 0;
    padding: 0 32px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-dropdown.active .dropdown-column,
  .solutions-dropdown.active .dropdown-column,
  .industries-dropdown.active .dropdown-column,
  .vibe-dropdown.active .dropdown-column,
  .insights-dropdown.active .dropdown-column,
  .services-nav-item:hover .dropdown-column,
  .solutions-nav-item:hover .dropdown-column,
  .industries-nav-item:hover .dropdown-column,
  .vibe-nav-item:hover .dropdown-column,
  .insights-nav-item:hover .dropdown-column {
    opacity: 1;
    transform: translateY(0);
  }

  .dropdown-column:nth-child(2) {
    transition-delay: 40ms;
  }

  .dropdown-column:nth-child(3) {
    transition-delay: 80ms;
  }

  .dropdown-column:nth-child(4) {
    transition-delay: 120ms;
  }

  .dropdown-column+.dropdown-column {
    border-left: 1px solid #e6ebf1;
  }

  .dropdown-header {
    padding: 0;
    margin: 0 0 18px;
    border: 0;
    color: #0a2540;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }

  .dropdown-list {
    gap: 11px;
  }

  .dropdown-link {
    color: #635bff;
    font-size: 0.86rem;
    font-weight: 500;
  }

  .dropdown-link:hover {
    color: #0a2540;
    transform: none;
  }
}

/* Industries page: sector support and delivery approach */
.industry-outcomes-legacy { display: none; }
.industry-outcomes-section { position: relative; overflow: hidden; padding: clamp(4.5rem, 7vw, 7.5rem) 0; background: #fff; }

.industry-outcomes-container { position: relative; z-index: 1; max-width: 1030px; }
.industry-outcomes-heading { text-align: center; margin-bottom: clamp(2.8rem, 5vw, 4.75rem); }
.industry-outcomes-heading span { display: block; margin-bottom: .85rem; color: #5f6474; font-size: .58rem; font-weight: 700; letter-spacing: .32em; }
.industry-outcomes-heading h2 { margin: 0; color: #12162b; font-size: clamp(1.8rem, 3.25vw, 2.75rem); font-weight: 600; letter-spacing: -.05em; line-height: 1.15; }
.industry-outcomes-list { border-top: 1px solid #edf0f5; }
.industry-outcome-row {
    display: grid;
    grid-template-columns: 90px minmax(225px, .9fr) minmax(350px, 1.22fr);
    gap: 1.5rem;
    align-items: center;
    position: relative;
}

/* Left column */
.industry-outcome-number {
  margin-top: 3.5rem;
    grid-column: 1;
    justify-self: center;
    align-self: start;
    color: #6b54ff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 28px;
    padding: 0;
}

.industry-outcome-icon {
 
    grid-column: 1;
    justify-self: center;
    align-self: center;

    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #f3f0ff;
    color: #6b54ff;
    font-size: 24px;
}

.industry-outcome-copy {
    border-left: 1px solid #e5e7ef;
    padding-left: 2rem;
}
.industry-outcome-copy { grid-column: 2; border-left: 1px solid #dfe3ed; padding-left: 1.45rem; }
.industry-outcome-copy h3 { margin: 0 0 .8rem; color: #1a1e31; font-size: clamp(.95rem, 1.3vw, 1.14rem); font-weight: 600; line-height: 1.15; }
.industry-outcome-copy ul { margin: 0 0 .8rem; padding: 0; color: #8991a3; list-style: none; font-size: .66rem; line-height: 1.6; }
.industry-outcome-copy li::before { content: '•'; margin-right: .45rem; color: #9a8cff; }
.industry-outcome-copy a { color: #765cff; font-size: .64rem; font-weight: 600; text-decoration: none; }
.industry-outcome-copy a i { margin-left: .35rem; }
.industry-outcome-row > img { grid-column: 3; width: 100%; height: 128px; border-radius: 10px; object-fit: cover; box-shadow: 0 8px 17px rgba(25, 29, 70, .06); }
@media (max-width: 720px) { .industry-outcomes-heading h2 br { display: none; } .industry-outcome-row { grid-template-columns: 58px 1fr; gap: .8rem; padding: 1.3rem 0; } .industry-outcome-number { padding-top: 0; } .industry-outcome-copy { grid-column: 2; padding-left: 1rem; } .industry-outcome-row > img { grid-column: 2; height: auto; aspect-ratio: 2.4; } }
.legacy-industry-outcomes { display: none; }
.industry-outcomes-section { position: relative; overflow: hidden; padding: clamp(4.5rem, 7vw, 7.5rem) 0; background: #fff; }

.industry-outcomes-container { position: relative; z-index: 1; max-width: 1030px; }
.industry-outcomes-heading { text-align: center; margin-bottom: clamp(2.8rem, 5vw, 4.75rem); }
.industry-outcomes-heading span { font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #888888;
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--spacing-xs);
}
.industry-outcomes-heading h2 { margin: 0; font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: #030214;
    line-height: 1.25;
    letter-spacing: normal; }
.industry-outcomes-list { border-top: 1px solid #edf0f5; }
.industry-outcome-row { display: grid; grid-template-columns: 50px 48px minmax(225px, .9fr) minmax(350px, 1.22fr); gap: 1.15rem; align-items: center; min-height: 160px; padding: 1rem 0; border-bottom: 1px solid #edf0f5; }
.industry-outcome-number { align-self: start; padding-top: 1.35rem; color: #6b54ff; font-size: .72rem; font-weight: 700; }
.industry-outcome-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: #f1efff; color: #8268ff; font-size: .8rem; }
.industry-outcome-copy { border-left: 1px solid #dfe3ed; padding-left: 1.45rem; }
.industry-outcome-copy h3 { margin: 0 0 .8rem; color: #1a1e31; font-size: clamp(.95rem, 1.3vw, 1.14rem); font-weight: 600; line-height: 1.15; }
.industry-outcome-copy ul { margin: 0 0 .8rem; padding: 0; color: #8991a3; list-style: none; font-size: .66rem; line-height: 1.6; }
.industry-outcome-copy li::before { content: '•'; margin-right: .45rem; color: #9a8cff; }
.industry-outcome-copy a { color: #765cff; font-size: .64rem; font-weight: 600; text-decoration: none; }
.industry-outcome-copy a i { margin-left: .35rem; }
.industry-outcome-row > img { width: 100%; height: 128px; border-radius: 10px; object-fit: cover; box-shadow: 0 8px 17px rgba(25, 29, 70, .06); }
@media (max-width: 720px) { .industry-outcomes-heading h2 br { display: none; } .industry-outcome-row { grid-template-columns: 32px 36px 1fr; gap: .7rem; padding: 1.3rem 0; } .industry-outcome-number { padding-top: 0; } .industry-outcome-copy { padding-left: 1rem; } .industry-outcome-row > img { grid-column: 3; height: auto; aspect-ratio: 2.4; } }
/* Keep the outcome number and icon together to the left of the divider. */
.industry-outcome-row { grid-template-columns: 99px minmax(225px, .9fr) minmax(350px, 1.22fr); gap: 1.4rem; }
.industry-outcome-number { grid-column: 1; grid-row: 1; align-self: start; justify-self: center; padding: 1.35rem 0 0; text-align: center; }
.industry-outcome-icon { grid-column: 1; grid-row: 1; align-self: start; justify-self: center; margin-top: 5rem; }
@media (max-width: 1350px){
  .industry-outcome-icon { grid-column: 1; grid-row: 1; align-self: start; justify-self: center; margin-top: 0rem; }
}
@media (max-width: 1344px){
  .industry-outcome-icon { grid-column: 1; grid-row: 1; align-self: start; justify-self: center; margin-top: 1.8rem; }
}
@media (max-width: 730px){
  .industry-outcome-icon { grid-column: 1; grid-row: 1; align-self: start; justify-self: center; margin-top: 0rem; }
}

.industry-outcome-copy { grid-column: 2; padding-left: 2.15rem; }
.industry-outcome-row > img { grid-column: 3; height: auto; aspect-ratio: auto; }
@media (min-width: 1025px) {
  .industry-outcome-copy h3 { font-size: 1.25rem; }
  .industry-outcome-copy ul { font-size: .82rem; line-height: 1.75; }
  .industry-outcome-copy a { font-size: .78rem; }
}
@media (max-width: 720px) { .industry-outcome-row { grid-template-columns: 58px 1fr; gap: .8rem; } .industry-outcome-copy, .industry-outcome-row > img { grid-column: 2; } .industry-outcome-copy { padding-left: 1rem; } }
.industry-support-section { padding: clamp(5rem, 9vw, 9rem) 0; background: #fff; }
.industry-support-layout { display: grid; grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); align-items: center; gap: clamp(2.75rem, 3vw, 7rem); }
.industry-support-eyebrow, .industry-approach-eyebrow { font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #888888;
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--spacing-xs); }
.industry-support-eyebrow { color: #888888; }
.industry-support-copy h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: #030214;
    line-height: 1.25;
    letter-spacing: normal;
    max-width: 600px; }
.industry-support-copy > p { max-width: 510px; margin: 2.8rem 0 4.5rem; color: #64748b; font-size: 0.85rem; line-height: 1.6; }
.industry-support-benefits { display: grid; grid-template-columns: repeat(3, 1fr); }
.industry-support-benefit { min-height: 220px; padding: 2.4rem 1.35rem 0; border-left: 2px solid #e0e4fb; position: relative; }
.industry-support-benefit:first-child { border-left: 0; padding-left: 0.35rem; }
.industry-support-benefit::before { content: ''; position: absolute; left: -5px; top: 40%; width: 9px; height: 9px; border-radius: 50%; background: #6d38f5; }
.industry-support-benefit:first-child::before { display: none; }
.industry-support-benefit > i { color: #6234f5; font-size: 2.85rem; margin-bottom: 1.55rem; }
.industry-support-benefit h3 { margin: 0 0 1rem; color: #6234f5; font-size: .8rem; font-weight: 700; line-height: 1.3; text-transform: uppercase; }
.industry-support-benefit p { margin: 0; color: #667085; font-size: .76rem; line-height: 1.65; }
.industry-support-mosaic { display: grid; grid-template-columns: 1fr 1.34fr; grid-template-rows: repeat(6, minmax(78px, 1fr)); gap: 6px; min-height: 557px; }
.industry-mosaic-card { overflow: hidden; position: relative; background: #111842; }
.industry-mosaic-card img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.85) contrast(1.05); transition: transform .35s ease; }
.industry-mosaic-card:hover img { transform: scale(1.04); }
.industry-mosaic-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9, 13, 76, .91), rgba(28, 28, 89, .08) 65%); }
.industry-mosaic-card span { position: absolute; z-index: 1; left: 1.7rem; bottom: 1.45rem; color: #fff; font-size: clamp(.94rem, 1.1vw, 1.1rem); font-weight: 500; }
.industry-mosaic-card span i { margin-right: .65rem; }
.industry-mosaic-healthcare { grid-row: span 3; }
.industry-mosaic-public, .industry-mosaic-finance, .industry-mosaic-tech { grid-column: 2; grid-row: span 2; }



.industry-support-section { 
  padding: clamp(5rem, 9vw, 9rem) 0; 
  background: #fff; 
}

.industry-support-layout { 
  display: grid; 
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr); 
  align-items: center; 
  gap: clamp(2.75rem, 3vw, 7rem); 
}

.industry-support-eyebrow, .industry-approach-eyebrow { 
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #888888;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--spacing-xs); 
}

.industry-support-eyebrow { color: #888888; }

.industry-support-copy h2 { 
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: #030214;
  line-height: 1.25;
  letter-spacing: normal;
  max-width: 600px; 
}

.industry-support-copy > p { 
  max-width: 510px; 
  margin: 2.8rem 0 4.5rem; 
  color: #64748b; 
  font-size: 0.85rem; 
  line-height: 1.6; 
}

.industry-support-benefits { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
}

.industry-support-benefit { 
  min-height: 220px; 
  padding: 2.4rem 1.35rem 0; 
  border-left: 2px solid #e0e4fb; 
  position: relative; 
}

.industry-support-benefit:first-child { 
  border-left: 0; 
  padding-left: 0.35rem; 
}

.industry-support-benefit::before { 
  content: ''; 
  position: absolute; 
  left: -5px; 
  top: 40%; 
  width: 9px; 
  height: 9px; 
  border-radius: 50%; 
  background: #6d38f5; 
}

.industry-support-benefit:first-child::before { display: none; }

.industry-support-benefit > i { 
  color: #6234f5; 
  font-size: 2.85rem; 
  margin-bottom: 1.55rem; 
}

.industry-support-benefit h3 { 
  margin: 0 0 1rem; 
  color: #6234f5; 
  font-size: .8rem; 
  font-weight: 700; 
  line-height: 1.3; 
  text-transform: uppercase; 
}

.industry-support-benefit p { 
  margin: 0; 
  color: #667085; 
  font-size: .76rem; 
  line-height: 1.65; 
}

.card-icon {
  margin-bottom: 15px;
  width: 69px;
  height: 69px;
  object-fit: contain;
  display: block;
}

/* --- THE MOSAIC GRID CONTROLS --- */
.industry-support-mosaic { 
  display: grid; 
  grid-template-columns: 1fr 1.34fr; 
  grid-template-rows: repeat(6, 1fr); /* Uses exact fractions */
  gap: 6px; 
  height: 580px; /* Crucial: Restricts images from blowing up the height */
  width: 100%;
}

.industry-mosaic-card { 
  overflow: hidden; 
  position: relative; 
  background: #111842; 
}

.industry-mosaic-card img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
  filter: saturate(.85) contrast(1.05); 
  transition: transform .35s ease; 
}

.industry-mosaic-card:hover img { 
  transform: scale(1.04); 
}

.industry-mosaic-card::after { 
  content: ''; 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(0deg, rgba(9, 13, 76, .91), rgba(28, 28, 89, .08) 65%); 
}

.industry-mosaic-card span { 
  position: absolute; 
  z-index: 1; 
  left: 1.7rem; 
  bottom: 1.45rem; 
  color: #fff; 
  font-size: clamp(.94rem, 1.1vw, 0.7rem); 
  font-weight: 500; 
  display: flex;
  align-items: center;
}

.industry-mosaic-card span i { 
  margin-right: .65rem; 
}

/* --- BALANCED GRID PLACEMENTS (Col 1 = 6 spans, Col 2 = 6 spans) --- */
.industry-mosaic-healthcare,
.industry-mosaic-enterprise { 
  grid-column: 1;
  grid-row: span 3; 
}

.industry-mosaic-public, 
.industry-mosaic-finance, 
.industry-mosaic-tech { 
  grid-column: 2; 
  grid-row: span 2; 
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
  .industry-support-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .industry-support-mosaic {
    height: 500px; /* Shorter on mobile devices */
  }
}



.industry-mosaic-enterprise { grid-column: 1; grid-row: span 3; }
.industry-approach-section {
  background-image: url(../assets/images/section4-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.industry-approach-top { min-height: 600px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 3rem; position: relative; }

.industry-approach-copy { position: relative; z-index: 1; }
.industry-approach-eyebrow { color: #fff; }
.industry-approach-copy h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: normal;
    max-width: 600px; }
.industry-approach-copy p { max-width: 690px; margin: 2.9rem 0 0; color: #ffffff; font-size: 0.85rem; line-height: 1.6; }
.industry-approach-art { width: min(100%, 490px); justify-self: center; position: relative; z-index: 1; filter: drop-shadow(0 20px 40px rgba(50, 4, 111, .55)); }
.industry-approach-steps { border-top: 1px solid rgba(222, 226, 255, .16); background: linear-gradient(90deg, rgba(8, 18, 61, .72), rgba(60, 29, 122, .48)); }
.industry-approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.industry-approach-grid article { min-height: 325px; padding: 2.2rem 1.3rem 2.5rem; border-left: 1px solid rgba(222, 226, 255, .14); }
.industry-approach-grid article:last-child { border-right: 1px solid rgba(222, 226, 255, .14); }
.industry-approach-grid i { display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 2rem; border: 1px solid rgba(206, 173, 255, .2); border-radius: 9px; color: #9d62ff; font-size: 1.45rem; background: rgba(122, 82, 194, .13); }
.industry-approach-grid h3 { margin: 0 0 1rem; font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff; line-height: 1.42; }
.industry-approach-grid p { margin: 0; font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6; }
.industry-approach-grid .btn { display: inline-flex; align-items: center; justify-content: center; margin-top: 1.4rem; padding: .65rem .8rem; border: 1px solid rgba(185, 148, 255, .55); border-radius: 6px; color: #d2baff; font-size: .72rem; font-weight: 600; line-height: 1.25; text-decoration: none; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.industry-approach-grid .btn:hover { border-color: #b994ff; background: #9d62ff; color: #ffffff; transform: translateY(-2px); }
.industry-approach-grid .btn:focus-visible { outline: 2px solid #ffffff; outline-offset: 3px; }
@media (max-width: 1024px) {
  .industry-approach-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .industry-approach-grid article { min-height: 285px; padding: 1.65rem .8rem 2rem; }
  .industry-approach-grid i { width: 46px; height: 46px; margin-bottom: 1.3rem; font-size: 1.2rem; }
  .industry-approach-grid h3 { margin-bottom: .75rem; font-size: .94rem; line-height: 1.32; }
  .industry-approach-grid p { font-size: .73rem; line-height: 1.5; }
}
/* 1. Make the card a vertical flex container */
.industry-approach-grid article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* keeps the button from stretching full width */
  min-height: 325px;
  padding: 2.2rem 1.3rem 2.5rem;
  border-left: 1px solid rgba(222, 226, 255, .14);
}

/* 2. Give the paragraph a bottom margin so there's always a gap above the button */
.industry-approach-grid p {
  margin: 0 0 1.4rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* 3. Push the button to the bottom of the card */
.industry-approach-grid .btn {
  margin-top: auto;          /* was: 1.4rem */
  /* keep all your existing button styles below this line */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .65rem .8rem;
  border: 1px solid rgba(185, 148, 255, .55);
  border-radius: 6px;
  color: #d2baff;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
@media (max-width: 840px) { .industry-support-layout { grid-template-columns: 1fr; } .industry-support-copy > p { margin-bottom: 3rem; } .industry-support-mosaic { max-width: 780px; width: 100%; margin: auto; min-height: 490px; } .industry-approach-grid { grid-template-columns: repeat(3, 1fr); } .industry-approach-grid article:nth-child(4) { border-left: 0; } }
/* Industry slider tabs: preserve room for both the icon and the full sector name on tablets and phones. */
@media (max-width: 1024px) {
  [data-purpose="tab-navigation"] > div { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .industry-tab { min-width: 0; padding: 1.15rem 1.25rem !important; gap: .75rem !important; }
  .industry-tab > div { flex: 0 0 2.5rem; }
  .industry-tab > span:last-child { min-width: 0; white-space: normal !important; overflow: visible !important; text-overflow: clip !important; line-height: 1.3; }
}
@media (max-width: 480px) {
  .industry-tab { padding: 1rem .75rem !important; gap: .01rem !important; }
  .industry-tab > div { width: 2.1rem !important; height: 2.1rem !important; flex-basis: 2.1rem; }
  .industry-tab > span:first-child { font-size: .65rem; }
  .industry-tab > span:last-child { font-size: .58rem; }
}
@media (max-width: 680px) { .industry-support-section { padding: 4.5rem 0; } .industry-support-eyebrow, .industry-approach-eyebrow { margin-bottom: 1.5rem; } .industry-support-copy > p { margin: 1.7rem 0 2.5rem; } .industry-support-benefits { grid-template-columns: 1fr; gap: 1rem; } .industry-support-benefit, .industry-support-benefit:first-child { min-height: 0; padding: 1.3rem 0 1.3rem 4.8rem; border-left: 0; border-top: 1px solid #e0e4fb; } .industry-support-benefit::before { display: none; } .industry-support-benefit > i { position: absolute; left: 0; top: 1.6rem; font-size: 2.2rem; } .industry-support-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(6, 82px); min-height: 0; } .industry-mosaic-card span { left: 0.09rem; bottom: 1rem; font-size: .65rem; } .industry-mosaic-card span i { display: none; } .industry-approach-top { min-height: 0; padding: 4.5rem 0; grid-template-columns: 1fr; } .industry-approach-top::after { display: none; } .industry-approach-copy p { margin-top: 1.6rem; } .industry-approach-art { width: min(90%, 360px); } .industry-approach-grid { grid-template-columns: 1fr; } .industry-approach-grid article, .industry-approach-grid article:nth-child(4) { min-height: 0; padding: 2rem 0; border: 0; border-bottom: 1px solid rgba(222, 226, 255, .14); } .industry-approach-grid article:last-child { border-right: 0; } .industry-approach-grid i { margin-bottom: 1.15rem; } }

/* Homepage card interaction system */
.outcome-card,
.architecture-card,
.proof-study-card,
.case-study-card {
  transition: transform .3s cubic-bezier(.2, .8, .2, 1),
    box-shadow .3s cubic-bezier(.2, .8, .2, 1),
    border-color .3s ease;
}

.outcome-card:hover,
.architecture-card:hover,
.proof-study-card:hover,
.case-study-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 92, 255, .24);
  box-shadow: 0 20px 40px rgba(35, 26, 82, .12);
}

.architecture-card img,
.proof-study-image img,
.case-study-card-image img {
  transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}

.architecture-card:hover img,
.proof-study-card:hover .proof-study-image img,
.case-study-card:hover .case-study-card-image img {
  transform: scale(1.04);
}

.capability-card {
  transition: transform .25s ease, background-color .25s ease;
}

.capability-card:hover {
  transform: translateX(6px);
}

.capability-card-icon {
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.capability-card:hover .capability-card-icon {
  transform: translateY(-3px);
  background: rgba(157, 98, 255, .14);
  box-shadow: 0 10px 22px rgba(83, 45, 169, .22);
}

/* CTA buttons: a refined light sweep adds a clear, premium hover response. */
:is(.btn-talk, .btn-services, .btn-capabilities, .capabilities-button,
  .architecture-button, .architecture-bottom-button, .btn-explore-all,
  .btn-watch-demo, .proof-outcomes-button, .btn-talk-expert,
  .btn-assess-readiness, .cta-link, .btn-demo-header) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.2, .8, .2, 1),
    box-shadow .25s cubic-bezier(.2, .8, .2, 1),
    border-color .25s ease, background-color .25s ease;
}

:is(.btn-talk, .btn-services, .btn-capabilities, .capabilities-button,
  .architecture-button, .architecture-bottom-button, .btn-explore-all,
  .btn-watch-demo, .proof-outcomes-button, .btn-talk-expert,
  .btn-assess-readiness, .cta-link, .btn-demo-header)::after {
  content: '';
  position: absolute;
  inset: -2px auto -2px -45%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-20deg) translateX(-180%);
  transition: transform .55s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
}

:is(.btn-talk, .btn-services, .btn-capabilities, .capabilities-button,
  .architecture-button, .architecture-bottom-button, .btn-explore-all,
  .btn-watch-demo, .proof-outcomes-button, .btn-talk-expert,
  .btn-assess-readiness, .cta-link, .btn-demo-header):hover {
  transform: translateY(-3px);
}

:is(.btn-talk, .btn-services, .btn-capabilities, .capabilities-button,
  .architecture-button, .architecture-bottom-button, .btn-explore-all,
  .btn-watch-demo, .proof-outcomes-button, .btn-talk-expert,
  .btn-assess-readiness, .cta-link, .btn-demo-header):hover::after {
  transform: skewX(-20deg) translateX(760%);
}

:is(.btn-talk, .btn-services, .btn-capabilities, .capabilities-button,
  .architecture-button, .architecture-bottom-button, .btn-explore-all,
  .btn-watch-demo, .proof-outcomes-button, .btn-talk-expert,
  .btn-assess-readiness, .cta-link, .btn-demo-header):focus-visible {
  outline: 3px solid rgba(147, 112, 255, .55);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .outcome-card,
  .architecture-card,
  .proof-study-card,
  .case-study-card,
  .capability-card,
  .capability-card-icon,
  .btn-talk,
  .btn-services,
  .btn-capabilities,
  .capabilities-button,
  .architecture-button,
  .architecture-bottom-button,
  .btn-explore-all,
  .btn-watch-demo,
  .proof-outcomes-button,
  .btn-talk-expert,
  .btn-assess-readiness,
  .cta-link,
  .btn-demo-header,
  .architecture-card img,
  .proof-study-image img,
  .case-study-card-image img {
    transition: none;
  }
}
