html, body{
  overflow-x: hidden;
}

.solutionsHero{
  width: 100svw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  background: transparent;
  height: 40svh;
  margin-bottom: 5rem;
}

/* Title styling */
.automationTitle{
  margin: 0;
  font-weight: 550 !important;
  line-height: 1.1 !important;
  color: #0F5E8B;
}

/* IMPORTANT: keep spans inline (prevents weird stacking) */
.automationTitle span{
  display: inline;
}

/* Accent colors + italic like your reference */
.automationTitle .accent{
  color: var(--c-blue-800);
  font-style: italic;
  font-weight: 800;
}

.automationTitle .accentLight{
  color: var(--c-sky-200);
  font-style: italic;
  font-weight: 800;
}

/* If you still have the old gradient class somewhere, neutralize it */
.gradient-text{
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: inherit !important;
  display: inline !important;
}

/* Poster headline look */
.posterTitle{
  margin: 0;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--text);
  font-size: clamp(2.8rem, 6.2vw, 5.4rem);
}

.posterTitle .line{
  display: block;
}

.automationTitle.posterTitle{
  font-family: "Nexa", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

/* Underline "Accelerate" like the image */
.posterTitle .u{
  position: relative;
  display: inline-block;
}

.posterTitle .u::after{
  content: "";
  position: absolute;
  left: 0;
  width: 100%;

  /* thinner + closer to baseline */
  height: 0.15em;
  bottom: 0.06em;

  /* less rounded (image is almost square ends) */
  border-radius: 2px;

  background: var(--c-blue-500);
}

/* Highlight "Eliminate" like the image (flatter + less padding) */
.posterTitle .hl{
  display: inline-block;
  background: var(--c-sky-100);

  /* reduce the “pill” look */
  padding: 0.04em 0.14em;
  border-radius: 0.06em;

  /* reduce extra height compared to your screenshot */
  line-height: 1;
}

blue-hero-1{
  color: #1b658e;
}

blue-hero-2{
  color: #2a88b5;
}

blue-hero-3{
  color: #33a3d0;
}

blue-hero-4{
  color: #19648e;
}

.solutionsHeadline{
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.02;
  font-weight: 700;
  color: var(--text);
  text-align: left;
}

.solutionsHeadline .dark-blue{
  color: var(--c-blue-800); 
  font-weight: 500;
}

.solutionsHeadline .blue{
  color: var( --c-blue-500); 
  font-weight: 500;
}

.solutionsHeadline .light-blue{
  color: var(--c-sky-200); 
  font-weight: 500;
}

.hero-underlined{
  text-decoration: underline;
  text-decoration-color: #48a0f6;
  text-underline-offset: 2px;
  text-decoration-thickness: 10px;
}

.hero-higlighted{
  background: #5ec2ea9d;
  padding: .22em .12em .05rem .05rem;
}



.heroBrand{
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.2rem;
}

.heroBrandIcon{
  width: 44px;
  height: 44px;
  display: block;
}

.heroBrandText{
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--c-blue-800);
  font-size: 1.1rem;
}

.heroTitle{
  grid-area: copy;
  max-width: 560px;
}

.heroTitle h1{
  margin: 0;
  font-size: clamp(2.4rem, 3.6vw, 3.35rem);
  line-height: 1.04;
  font-weight: 600;
  color: var(--text);
}

.heroTitle .hl{
  display: inline-block;
  background: rgba(85, 170, 255, 0.25);
  padding: 0 .22em;
}

.heroTitle, .heroSubtitle {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: .5rem;
    text-align: center;
    color: var(--c-blue-800);
}


.heroSubtitle{
  grid-area: sub;
  max-width: 560px;
  text-align: left;
  margin-top: 0.35rem;
}

.heroSubtitle h3{
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(15,94,139,0.9);
}


.heroBubbles{
  grid-area: bubbles;
  justify-self: end;

  position: relative;
  width: min(560px, 100%);
  height: 340px;

  /* margin-right: 110px; */
  transform: translateX(-24px);
}

.heroBubbles .bubble{
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroBubbles .bubble--big{
  width: 330px;
  height: 330px;
  right: 40px;
  top: -30;
  background: rgba(160, 220, 245, 0.95);
  z-index: 1;
  
}


.heroBubbles .bubble--mid{
  width: 240px;
  height: 240px;
  left: 10px;
  top: 85px;
  background: rgba(70, 150, 235, 0.95);
  z-index: 3;
}


.heroBubbles .bubble--small{
  width: 185px;
  height: 185px;
  left: 185px;
  top: 230px;
  background: rgba(30, 120, 190, 0.95);
  z-index: 4;
  overflow: visible;
}


.bubbleText{
  text-align: center;
  font-weight: 800;
  padding: 0 12%;
}

.bubbleSmall{
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.bubbleNum{
  font-size: 4.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 900
}

.bubbleLabel{
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0.35rem;
}


.bubbleText--light{ color: var(--bg); }
.bubbleNum--white{ color: var(--bg); }
.bubbleLabel--white{ color: var(--bg); }

.bubbleText--dark{ color: var(--c-blue-800); }
.bubbleNum--dark{ color:var(--c-blue-800); font-weight: 900; font-size: 4.7rem; }
.bubbleLabel--dark{ color: var(--c-blue-800); font-weight: 800; }


.bubbleImg{
  width: 103%;
  height: 103%;
  object-fit: contain;
  display: block;
  overflow: visible;
}

.bubbleNum{
  transition: transform 125ms ease;
}
.bubbleNum[data-ran="true"]{
  transform: scale(1.02);
}


@media (max-width: 980px){
  .solutionsHero{
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "copy"
      "bubbles"
      "sub";
    row-gap: 1.25rem;
  }

  .heroBubbles{
    justify-self: start;
    margin-right: 0;
  }
}


/* =========================
   Solutions Page (standalone)
   ========================= */

/* Safety + consistency */
/* *, *::before, *::after { box-sizing: border-box; } */

.howItWorksSolutions,
.featuresSolutions,
.bannerContactSolutions{
  width: 100%;
}

.featuresSolutions{
  margin-top: 5rem;
}

/* =========================
   HOW IT WORKS (Title)
   ========================= */


.sectionTitle.howItWorksTitle{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;

  display: flex;
  align-items: center;          /* same level */
  justify-content: space-between;
  gap: 3rem;

  text-align: left;
}

.sectionTitle.howItWorksTitle h2{
  margin: 0;
  line-height: 1.05;
  font-weight: 800;
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);

  position: relative;
  padding-left: 16px; /* space for bar */
  flex: 0 0 auto;
}

.sectionTitle.howItWorksTitle h2::before{
  content: "";
  position: absolute;
  left: -7;
  /* top: .15em;
  bottom: .15em; */
  width: 10px;
  height: 90px;
  background: var(--c-blue-500);
}

.sectionTitle.howItWorksTitle p{
  margin: 0;
  max-width: 640px;
  line-height: 1.6;
  /* font-size: clamp(.95rem, 1.15vw, 1.05rem); */
  color: var(--text-muted);
}

/* =========================
   HOW IT WORKS (Steps)
   ========================= */

.howItWorksSolutionsContainer{
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 3.5rem 0 0;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3.5rem;
}


/* left graphic */
.howItWorksSolutionsGraphic{
  width: 32%;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.howItWorksSolutionsGraphic img{
  width: 100%;
  height: auto;
  display: block;
}

/* right grid */
.howItWorksSolutionsSteps{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 2.2rem;
  width: fit-content;
  margin: 0 auto;
}

.hiwStepsRow{
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
}

.hiwStepsRow:first-child{
  width: 100%;
}

.hiwStepsRow:last-child{
  width: 100%;
}


/* card */
.hiwStep{
  padding: 1.85rem 2rem;      /* was 1.35rem 1.45rem */
  width: 300px;
  height: 280px;

  /* box-shadow: 0 14px 34px rgba(10,10,10,0.07); */
  background: #f6f6f8;

  display: flex;
  flex-direction: column;
  gap: 1rem;                  /* was .8rem */

  transition: transform .18s ease, box-shadow .18s ease;
  overflow: hidden;
}

.hiwStep:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(10,10,10,0.11);
}

/* header row: icon + title */
.hiwStepHeader{
  display: flex;
  align-items: center;
  gap: .9rem;
}

.hiwStepHeader img{
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

.hiwStepHeader h3{
  margin: 0;
  font-size: 2.55rem;         /* was 1.35rem */
  /* font-weight: 900; */
  color: var(--c-blue-800);
}

.hiwStepContent{
  font-size: 1rem;         /* was .95rem */
  line-height: 1.6;
  color: rgba(0,0,0,0.70);
}

/* =========================
   FEATURES SECTION (FINAL - keep only this)
   ========================= */


.featuresSolutions .sectionHeaderSubtitle{
  text-align: right;
}

.secondary-accent-button{
  background-color: #308ec5;
  border: 1px solid #308ec5;
  padding: .75rem 1.25rem;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
}

/* top/bottom divider lines (if you use them) */
.featuresSolutions .sectionLine{
  width: 100%;
  height: 1px;
  /* background: rgba(0,0,0,0.12); */
}

/* HEADER ROW: Features (left) + CTA (right) */
.featuresHeaderRow{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.8rem 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.featuresTitle h2{
  margin: 0;
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  font-weight: 800;
  position: relative;
  padding-left: 16px;
}

/* left vertical bar */
.featuresTitle h2::before{
  content: "";
  position: absolute;
  left: -7;
  width: 10px;
  height: 40px;
  background: var(--c-blue-500);
}

/* CTA area on the right */
.featuresHeaderCTA{
  display: flex;
  flex-direction: column;   
  align-items: flex-end;    
  gap: .9rem;               
}

.featuresHeaderCTA p{
  margin: 0;
  font-size: .95rem;
  color: var(--text-muted);
}

/* CONTENT ROW */
.featuresInner{
  width: 100%;
  /* max-width: 1200px;
  margin: 0 auto; */
  padding: 3rem 0 0;

  display: flex;
  align-items: center;
  justify-content: flex-start; /* closer than space-between */
  gap: 1rem;                  /* makes image closer to list */
}

/* LIST (image icon inside each li) */
.featuresList{
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 9dvw;
}

.featuresList ul{
  margin: 0;
  padding: 0;
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 1.65rem;
}

.featuresList li{
  display: flex;
  align-items: center;
  gap: 1.15rem;

  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-style: italic;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.2;
}

.featuresList li img{
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  object-fit: contain;
  display: block;
}

/* IMAGE (bleed to the right edge of the viewport) */
.featuresGraphic{
  position: relative;
  flex: 1 1 auto;

  display: flex;
  justify-content: flex-end;
  align-items: center;

  margin-right: calc(50% - 50vw); /* pushes image to screen edge */
}

.featuresGraphic::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;

  /* how wide the fade is */
  width: clamp(180px, 22vw, 360px);

  /* white -> transparent fade */
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    rgba(255,255,255,0.92) 35%,
    rgba(255,255,255,0) 100%
  );

  pointer-events: none;
  z-index: 2; /* above the image */
}

.featuresGraphic img{
  width: min(1050px, 68vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.15));
  position: relative;
  z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 1200px){
  .howItWorksSolutionsSteps{
    width: 100%;
    padding: 0 1.5rem;
    box-sizing: border-box;
  }

  .hiwStepsRow{
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .hiwStep{
    flex-shrink: 0;
  }
  .heroBubbles{
    margin-right: 0 !important;
    transform: translateX(0);
  }
  .automationTitle{
    margin-left: 2rem !important;
  }
}

@media (max-width: 900px){
  .featuresHeaderRow{
    flex-direction: column;
    align-items: flex-start;
  }

  .featuresHeaderCTA{
    width: 100%;
    justify-content: space-between;
  }

  .featuresInner{
    flex-direction: column;
    align-items: flex-start;
  }

  .featuresGraphic{
    margin-right: 0; /* stop bleeding on mobile */
    width: 100%;
    justify-content: center;
  }

  .featuresGraphic img{
    width: min(820px, 95%);
  }
}

@media (max-width: 450px){
  .solutionsHero{
    margin-bottom: 0 !important;
  }
  .solutionsHero .posterTitle{
    font-size: 2rem !important;
    margin-left: 1.5rem !important;
  }
  .heroTitle{
    margin-left: 1rem;
  }
  .solutionsHeadline{
    font-size: 2rem !important;
  }
  .heroBubbles{
    height: 60%;
    transform: translateX(0);
  }
  .bubble--big{
    width: 160px !important;
    height: 160px !important;
    right: 10px !important;
    top: -10px !important;
  }
  .bubbleNum--dark{
    font-size: 2.2rem !important;
  }
  .bubbleLabel--dark{
    font-size: 1rem !important;
  }
  .bubble--mid{
    width: 120px !important;
    height: 120px !important;
    top: 110px !important;
  }
  .bubbleLabel--white,
  .bubbleSmall{
    font-size: 1rem !important;
  }
  .bubbleNum--white{
    font-size: 2.2rem !important;
  }
  .bubble--small{
    width: 95px !important;
    height: 95px !important;
    top: 140px !important;
    left: 120px !important;
  }
  .howItWorksSolutionsSteps{
    width: 95%;
    padding: 0;
  }
  
  .hiwStepsRow{
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .hiwStep{
    width: 100% !important;
    height: auto !important;
  }
  
  .featuresList{
    margin-left: 10% !important;
    width: 80%;
  }
  .featuresGraphic{
    display: none;
  }
}
