/* =========================================================
   Service Page Hero
   ========================================================= */

.outrightsystems-service-hero {
  position: relative;
  isolation: isolate;
  width: min(1500px, calc(100% - 40px));
  min-height: 550px;
  margin: 78px auto 0;
  overflow: hidden;
  border-radius: 12px;

  background-image: url("https://www.outrightsystems.org/wp-content/uploads/2026/08/service-hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
}

.outrightsystems-service-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;

  width: min(1350px, calc(100% - 100px));
  min-height: 430px;

  margin: 0 auto;
}

/* ---------------------------------------------------------
   Left content
   --------------------------------------------------------- */

.outrightsystems-service-hero__content {
  position: relative;
  z-index: 2;
  padding: 45px 0;
}

.outrightsystems-service-hero__title {
  max-width: 670px;

  margin: 0 0 20px;

  font-family: var(--font-poppins, "Poppins", Arial, sans-serif);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1.2px;

  color: #fff;
}

.outrightsystems-service-hero__description {
  max-width: 670px;

  margin: 0 0 30px;

  font-family: var(--font-poppins, "Poppins", Arial, sans-serif);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;

  color: rgb(255 255 255 / 0.78);
}

/* ---------------------------------------------------------
   Button
   --------------------------------------------------------- */

.outrightsystems-service-hero__button {
  display: inline-flex;
  align-items: center;
  gap: 16px;

  min-height: 42px;

  padding: 5px 7px 5px 15px;

  border-radius: 24px;

  background: #fff;

  color: #0753a8;

  font-family: var(--font-poppins, "Poppins", Arial, sans-serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;

  text-decoration: none;

  transition:
    transform 250ms ease,
    box-shadow 250ms ease;
}

.outrightsystems-service-hero__button:hover {
  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgb(0 40 100 / 0.22);

  color: #0753a8;
  text-decoration: none;
}

.outrightsystems-service-hero__button-arrow {
  display: grid;

  width: 38px;
  height: 30px;

  place-items: center;

  border-radius: 18px;

  background: #2678d8;

  color: #fff;

  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}

/* ---------------------------------------------------------
   Right image
   --------------------------------------------------------- */

.outrightsystems-service-hero__media {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 35px 0;
}

.outrightsystems-service-hero__media img {
  display: block;

  max-height: 410px;

  object-fit: contain;

  border-radius: 6px;
}

/* ---------------------------------------------------------
   Tablet
   --------------------------------------------------------- */

@media (max-width: 1000px) {
  .outrightsystems-service-hero {
    min-height: 500px;
  }

  .outrightsystems-service-hero__inner {
    width: min(90%, 800px);

    grid-template-columns: 1fr;

    padding: 50px 0;
  }

  .outrightsystems-service-hero__content {
    padding: 0;
  }

  .outrightsystems-service-hero__title {
    max-width: 700px;
  }

  .outrightsystems-service-hero__description {
    max-width: 650px;
  }

  .outrightsystems-service-hero__media {
    padding: 20px 0 0;
  }

  .outrightsystems-service-hero__media img {
    width: min(80%, 500px);
    max-height: 320px;
  }
}

/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */

@media (max-width: 600px) {
  .outrightsystems-service-hero {
    width: calc(100% - 20px);

    min-height: auto;

    margin-top: 20px;

    border-radius: 12px;
  }

  .outrightsystems-service-hero__inner {
    width: calc(100% - 40px);

    min-height: auto;

    padding: 45px 0 35px;
  }

  .outrightsystems-service-hero__content {
    padding: 0;
  }

  .outrightsystems-service-hero__title {
    margin-bottom: 18px;

    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.7px;
  }

  .outrightsystems-service-hero__description {
    margin-bottom: 25px;

    font-size: 14px;
    line-height: 1.5;
  }

  .outrightsystems-service-hero__button {
    font-size: 13px;
  }

  .outrightsystems-service-hero__media {
    padding: 35px 0 0;
  }

  .outrightsystems-service-hero__media img {
    width: 100%;
    max-height: 260px;
  }
}

/* ---------------------------------------------------------
   Reduced motion
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .outrightsystems-service-hero__button {
    transition: none;
  }
}

/* =========================================================
   Why Businesses
   ========================================================= */
.why-businesses {
  max-width: 1550px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 72px 20px 82px;
  background:
    radial-gradient(circle at 50% 112%, rgb(77 155 236 / 0.7), transparent 42%),
    linear-gradient(145deg, #02185e 0%, #083f9b 58%, #075bb2 100%);
  color: #fff;
  font-family: var(--font-poppins, "Poppins", Arial, sans-serif);
}
.why-businesses__inner {
  width: min(100%, 930px);
  margin: 0 auto;
  text-align: center;
}
.why-businesses__badge {
  display: inline-block;
  margin: 0 0 13px;
  padding: 4px 14px;
  border: 1px solid rgb(255 255 255 / 0.34);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.12);
  color: #fff;
  font-size: 11px;
  line-height: 1.2;
}
.why-businesses__title {
  max-width: 610px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(28px, 3.3vw, 44px);
  font-weight: 600;
  line-height: 1.08;
}
.why-businesses__description {
  max-width: 670px;
  margin: 14px auto 0;
  color: rgb(255 255 255 / 0.78);
  font-size: 14px;
  line-height: 1.55;
}
.why-businesses__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
  text-align: left;
}
.why-businesses--items-4 .why-businesses__grid,
.why-businesses--items-1 .why-businesses__grid,
.why-businesses--items-2 .why-businesses__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 630px;
  margin-right: auto;
  margin-left: auto;
}
.why-businesses__card {
  min-height: 180px;
  padding: 20px;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 9px;
  background: linear-gradient(
    145deg,
    rgb(129 171 235 / 0.48),
    rgb(64 127 205 / 0.44)
  );
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.1),
    0 12px 30px rgb(0 19 83 / 0.12);
}
.why-businesses__icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 15px;
  place-items: center;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.18);
}
.why-businesses__icon img {
  display: block;
  width: 31px;
  height: 31px;
  object-fit: contain;
}
.why-businesses__card-title {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}
.why-businesses__card-description {
  margin: 9px 0 0;
  color: rgb(255 255 255 / 0.78);
  font-size: 17px;
  line-height: 1.5;
}
@media (max-width: 700px) {
  .why-businesses {
    padding: 55px 18px 62px;
  }
  .why-businesses__grid,
  .why-businesses--items-4 .why-businesses__grid,
  .why-businesses--items-1 .why-businesses__grid,
  .why-businesses--items-2 .why-businesses__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }
  .why-businesses__card {
    min-height: 0;
  }
}

/* =========================================================
   Steps - Business Discovery
   ========================================================= */
.steps-business-discovery {
  padding: 78px 20px;
  background: #f5f8fd;
  color: #0b3479;
  font-family: var(--font-poppins, "Poppins", Arial, sans-serif);
}
.steps-business-discovery__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.35fr);
  align-items: start;
  gap: 20px;
  width: min(100%, 1280px);
  margin: 0 auto;
}
.steps-business-discovery__intro {
  padding-top: 1px;
}
.steps-business-discovery__badge {
  display: inline-block;
  margin: 0 0 28px;
  padding: 7px 24px;
  border-radius: 999px;
  background: #d3ddeb;
  color: #0d3d85;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
}
.steps-business-discovery__title {
  max-width: 410px;
  margin: 0;
  font-size: 43px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -1.5px;
}
.steps-business-discovery__title-dark {
  color: #09357b;
}
.steps-business-discovery__title-light {
  color: #8198bc;
}
.steps-business-discovery__description {
  max-width: 360px;
  margin: 18px 0 0;
  color: #7b94bc;
  font-size: 18px;
  line-height: 1.42;
}
.steps-business-discovery__steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.steps-business-discovery__step {
  width: 100%;
}
.steps-business-discovery__step-button {
  display: block;
  width: var(--step-width, 100%);
  min-height: 54px;
  padding: 14px 25px;
  border: 0;
  border-radius: 0;
  background: #b9d4fe;
  color: #08347c;
  font: inherit;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.steps-business-discovery__step-button:hover,
.steps-business-discovery__step-button:focus-visible {
  background: #9ec4fb;
  transform: translateX(5px);
  outline: none;
}
.steps-business-discovery__step:nth-child(1) {
  --step-width: 42%;
}
.steps-business-discovery__step:nth-child(2) {
  --step-width: 56%;
}
.steps-business-discovery__step:nth-child(3) {
  --step-width: 73%;
}
.steps-business-discovery__step:nth-child(4) {
  --step-width: 86%;
}
.steps-business-discovery__step:nth-child(5) {
  --step-width: 96%;
}
.steps-business-discovery__step:nth-child(6) {
  --step-width: 100%;
}
.steps-business-discovery__step-content {
  width: 100%;
  padding: 10px 25px 1px;
  color: #466aa7;
}
.steps-business-discovery__step-content p {
  max-width: 610px;
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}
.steps-business-discovery__step:not(.is-active)
  .steps-business-discovery__step-content {
  display: none;
}
.steps-business-discovery__step.is-active
  .steps-business-discovery__step-button {
  background: #a9cbff;
}
@media (max-width: 850px) {
  .steps-business-discovery__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps-business-discovery__description {
    margin-top: 22px;
  }
  .steps-business-discovery__title,
  .steps-business-discovery__description {
    max-width: 680px;
  }
}
@media (max-width: 550px) {
  .steps-business-discovery__title {
    font-size: 24px;
  }
  .steps-business-discovery {
    padding: 55px 18px;
  }
  .steps-business-discovery__badge {
    margin-bottom: 20px;
  }
  .steps-business-discovery__step-button,
  .steps-business-discovery__step-content {
    width: 100%;
  }
  .steps-business-discovery__step-button {
    padding: 13px 17px;
    font-size: 15px;
  }
  .steps-business-discovery__step-content {
    padding: 10px 17px 1px;
  }
}

/* =========================================================
   Why Businesses Choose
   ========================================================= */
.why-businesses-choose {
  padding: 74px 20px 88px;
  background: #f5f8fd;
  color: #0b3479;
  font-family: var(--font-poppins, "Poppins", Arial, sans-serif);
  text-align: center;
}
.why-businesses-choose__inner {
  width: min(100%, 760px);
  margin: 0 auto;
}
.why-businesses-choose__badge {
  display: inline-block;
  margin: 0 0 20px;
  padding: 7px 24px;
  border-radius: 999px;
  background: #d3ddeb;
  color: #0d3d85;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
}
.why-businesses-choose__title {
  margin: 0;
  font-size: clamp(31px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1.5px;
}
.why-businesses-choose__title-muted,
.why-businesses-choose__title-strong {
  display: block;
}
.why-businesses-choose__title-muted {
  color: #8198bc;
}
.why-businesses-choose__title-strong {
  color: #07347b;
}
.why-businesses-choose__description {
  max-width: 700px;
  margin: 22px auto 0;
  color: #7892bc;
  font-size: 16px;
  line-height: 1.42;
}
@media (max-width: 550px) {
  .why-businesses-choose {
    padding: 55px 18px 62px;
  }
  .why-businesses-choose__description {
    font-size: 15px;
  }
}

/* Bottom message within Steps: Business Discovery. */
.steps-business-discovery__bottom {
  width: min(100%, 960px);
  margin: 112px auto 0;
  text-align: center;
}
.steps-business-discovery__bottom-title {
  margin: 0;
  font-size: clamp(31px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1.5px;
}
.steps-business-discovery__bottom-title-light,
.steps-business-discovery__bottom-title-dark {
  display: block;
}
.steps-business-discovery__bottom-title-light {
  color: #8198bc;
}
.steps-business-discovery__bottom-title-dark {
  color: #07347b;
}
.steps-business-discovery__bottom-description {
  max-width: 1000px;
  margin: 22px auto 0;
  color: #7892bc;
  font-size: 20px;
  line-height: 1.42;
}
@media (max-width: 550px) {
  .steps-business-discovery__bottom {
    margin-top: 70px;
  }
  .steps-business-discovery__bottom-description {
    font-size: 15px;
  }
}

/* =========================================================
   Four Card Feature
   ========================================================= */
.four-card-feature {
  max-width: 1550px;
  margin: 0 auto;
  padding: 68px 20px;
  background: radial-gradient(
    circle at 50% 48%,
    #1d5eab 0%,
    #0d3d86 48%,
    #011640 100%
  );
  font-family: var(--font-poppins, "Poppins", Arial, sans-serif);
}
.four-card-feature__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 304px));
  justify-content: center;
  gap: 42px 68px;
  width: min(100%, 760px);
  margin: 0 auto;
}
.four-card-feature__card {
  position: relative;
  min-height: 270px;
  padding: 26px 24px 24px;
  overflow: hidden;
}
.four-card-feature__card--blue {
  background: #1263f7;
  color: #fff;
}
.four-card-feature__card--white {
  background: #fff;
  color: #07357f;
}
.four-card-feature__top-line {
  display: flex;
  align-items: center;
  height: 2px;
  margin-bottom: 24px;
  border-top: 1px dotted currentColor;
  opacity: 0.9;
}
.four-card-feature__top-line span {
  width: 5px;
  height: 5px;
  margin-left: auto;
  background: currentColor;
}
.four-card-feature__icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
}
.four-card-feature__card--blue .four-card-feature__icon {
  background: #fff;
}
.four-card-feature__card--white .four-card-feature__icon {
  background: #07357f;
}
.four-card-feature__icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.four-card-feature__title {
  max-width: 260px;
  margin: 0;
  color: inherit;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.9px;
}
.four-card-feature__text {
  max-width: 205px;
  margin: 13px 0 0;
  color: inherit;
  font-size: 12px;
  line-height: 1.16;
}
@media (max-width: 600px) {
  .four-card-feature {
    padding: 45px 18px;
  }
  .four-card-feature__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 320px;
  }
  .four-card-feature__card {
    min-height: 250px;
  }
}

/* =========================================================
   Why Business Choose Before Footer
   ========================================================= */
/* =========================================================
   Why Business Choose Before Footer
   Matches supplied reference design
   Dynamic PHP structure preserved
   ========================================================= */

.why-business-choose-before-footer {
  position: relative;
  overflow: hidden;
  padding: 60px 0 22px;
  /* background: #f4f7fb; */
  font-family: var(--font-poppins, "Poppins", Arial, sans-serif);
}

/* Main visual area */
.why-business-choose-before-footer__inner {
  position: relative;
  isolation: isolate;
  width: min(100%, 1550px);
  min-height: 500px;
  margin: 0 auto;
  padding: 62px 5% 145px;
  overflow: visible;
}

/* Left blue gradient */
.why-business-choose-before-footer__inner::before {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 54%;
  height: 100%;
  content: "";
  background:
    radial-gradient(
      circle at 50% 100%,
      #b8edff 0%,
      rgba(184, 237, 255, 0.35) 28%,
      transparent 58%
    ),
    linear-gradient(180deg, #06176b 0%, #07399f 45%, #0876e5 72%, #65c9f5 100%);
}

/* Large soft blue glow on right */
.why-business-choose-before-footer__inner::after {
  position: absolute;
  z-index: -1;
  top: -80px;
  right: -170px;
  width: 760px;
  height: 760px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(100, 155, 225, 0.55) 0%,
    rgba(120, 170, 230, 0.4) 25%,
    rgba(155, 190, 235, 0.25) 45%,
    rgba(190, 215, 242, 0.12) 62%,
    transparent 78%
  );
  pointer-events: none;
}

/* =========================================================
   INTRO
   ========================================================= */

.why-business-choose-before-footer__intro {
  position: relative;
  z-index: 2;
  width: 50%;
  max-width: 540px;
}

.why-business-choose-before-footer__badge {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.why-business-choose-before-footer__title {
  max-width: 520px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1.4px;
}

.why-business-choose-before-footer__description {
  max-width: 490px;
  margin: 28px 0 0;
  color: #b5c7e7;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.18;
}

/* =========================================================
   BENEFITS WHITE BOX
   ========================================================= */

.why-business-choose-before-footer__benefits {
  position: absolute;
  z-index: 5;
  right: 5%;
  bottom: 40px;

  width: min(72%, 1000px);

  margin: 0;
  padding: 25px 38px 25px 42px;

  background: #ffffff;
  box-shadow: none;
}

/* Blue strip on right */
.why-business-choose-before-footer__benefits::after {
  position: absolute;
  top: 0;
  right: -10px;

  width: 10px;
  height: 100%;

  content: "";

  background: linear-gradient(
    to bottom,
    #071d8d 0%,
    #0932ad 35%,
    #168fe0 70%,
    #8ee9ff 100%
  );
}

.why-business-choose-before-footer__benefit {
  display: flex;
  align-items: flex-start;
  gap: 8px;

  margin: 0 0 11px;
  padding: 0;

  color: #2e5797;
}

.why-business-choose-before-footer__benefit:last-child {
  margin-bottom: 0;
}

.why-business-choose-before-footer__benefit::before {
  flex: 0 0 auto;

  width: 4px;
  height: 4px;

  margin-top: 8px;

  content: "";
  border-radius: 50%;
  background: #2e5797;
}

.why-business-choose-before-footer__benefit-icon {
  display: none;
}

.why-business-choose-before-footer__benefit > div {
  flex: 1;
  min-width: 0;
}

.why-business-choose-before-footer__benefit h3 {
  display: inline;

  margin: 0;

  color: #2e5797;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

.why-business-choose-before-footer__benefit p {
  display: inline;

  margin: 0;

  color: #2e5797;
  font-size: 15px;
  line-height: 1.45;
}

/*
 * If your dynamic point contains only the text
 * and no benefit title, it still looks like a bullet.
 */
.why-business-choose-before-footer__benefit p:only-child {
  display: block;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */

.why-business-choose-before-footer__testimonials {
  position: relative;
  z-index: 10;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;

  width: min(100%, 1375px);

  margin: 34px auto 0;
  padding: 0 38px;
}

.why-business-choose-before-footer__testimonial {
  min-height: 134px;

  padding: 14px 18px 17px;

  background: #ffffff;
  border: 1px solid #7196df;
  border-radius: 15px;

  box-sizing: border-box;
}

/* Person row */
.why-business-choose-before-footer__person {
  display: flex;
  align-items: center;
  gap: 9px;

  min-height: 42px;
}

.why-business-choose-before-footer__person img {
  flex: 0 0 29px;

  width: 29px;
  height: 29px;

  object-fit: cover;

  border-radius: 50%;
  border: 1px solid #91a9d4;
}

.why-business-choose-before-footer__person > div {
  min-width: 0;
}

.why-business-choose-before-footer__person h3 {
  margin: 0;

  color: #071c65;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.15;
}

.why-business-choose-before-footer__person p {
  max-width: 150px;

  margin: 3px 0 0;

  color: #7892c3;
  font-size: 10px;
  line-height: 1.15;
}

/* Testimonial text */
.why-business-choose-before-footer__testimonial blockquote {
  margin: 27px 0 0;

  color: #6880b2;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.25;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
  .why-business-choose-before-footer__inner {
    min-height: 450px;
    padding-left: 6%;
    padding-right: 6%;
  }

  .why-business-choose-before-footer__inner::before {
    width: 65%;
  }

  .why-business-choose-before-footer__intro {
    width: 60%;
  }

  .why-business-choose-before-footer__benefits {
    right: 5%;
    width: 78%;
  }

  .why-business-choose-before-footer__testimonials {
    padding: 0 20px;
    gap: 14px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {
  .why-business-choose-before-footer {
    padding: 40px 18px 50px;
  }

  .why-business-choose-before-footer__inner {
    min-height: 0;
    padding: 45px 25px 190px;
  }

  .why-business-choose-before-footer__inner::before {
    width: 100%;
  }

  .why-business-choose-before-footer__inner::after {
    display: none;
  }

  .why-business-choose-before-footer__intro {
    width: 100%;
    max-width: 100%;
  }

  .why-business-choose-before-footer__title {
    font-size: clamp(25px, 7vw, 34px);
  }

  .why-business-choose-before-footer__description {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.35;
  }

  .why-business-choose-before-footer__benefits {
    right: 20px;
    bottom: 25px;

    width: calc(100% - 40px);

    padding: 20px 25px;
  }

  .why-business-choose-before-footer__benefit h3,
  .why-business-choose-before-footer__benefit p {
    font-size: 13px;
  }

  .why-business-choose-before-footer__testimonials {
    grid-template-columns: 1fr;

    width: 100%;

    margin-top: 25px;
    padding: 0;

    gap: 15px;
  }

  .why-business-choose-before-footer__testimonial {
    min-height: 125px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {
  .why-business-choose-before-footer__inner {
    padding: 38px 20px 200px;
  }

  .why-business-choose-before-footer__title {
    font-size: 27px;
  }

  .why-business-choose-before-footer__description {
    font-size: 12px;
  }

  .why-business-choose-before-footer__benefits {
    right: 15px;
    width: calc(100% - 30px);
    padding: 17px 20px;
  }
}

/* =========================================================
   Parser Introduction
   ========================================================= */
.parser-introduction {
  width: 100%;
  padding: 34px 20px;
  overflow: hidden;
  /* background: #f7f9fc; */
  font-family: var(--font-poppins, "Poppins", Arial, sans-serif);
  text-align: center;
}
.parser-introduction__inner {
  max-width: 1600px;
  margin: 0 auto;
}
.parser-introduction__title {
  margin: 0;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.7px;
}
.parser-introduction__title--primary {
  font-size: clamp(25px, 3vw, 44px);
  margin-top: 30px;
}
.parser-introduction__title--secondary {
  margin-top: 35px;
  font-size: clamp(25px, 3vw, 44px);
}
.parser-introduction__title-muted,
.parser-introduction__title-strong {
  display: block;
}
.parser-introduction__title-muted {
  color: #7f98bc;
}
.parser-introduction__title-strong {
  color: #003b7d;
}
.parser-introduction__intro-copy,
.parser-introduction__why-copy,
.parser-introduction__image-grid {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
.parser-introduction__intro-copy {
  margin-top: 13px;
}
.parser-introduction__copy {
  color: #7890b0;
  font-size: 19px;
  font-weight: 400;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.35;
}
.parser-introduction__copy--spaced {
  margin-top: 12px;
}
.parser-introduction__why-copy {
  margin-top: 16px;
}
.parser-introduction__image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}
.parser-introduction__image-wrap {
  overflow: hidden;
  border-radius: 5px;
}
.parser-introduction__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 600px) {
  .parser-introduction {
    padding: 32px 16px;
  }
  .parser-introduction__image-grid {
    grid-template-columns: 1fr;
  }
  .parser-introduction__image {
    height: auto;
  }
}

/* =========================================================
   Service FAQ Accordion
   ========================================================= */
.service-reveal {
  opacity: 0;
  transform: translateY(64px);
  transition:
    opacity 820ms ease-out,
    transform 920ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--service-reveal-delay, 0ms);
}
.service-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .service-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.service-faq {
  background: #fff;
  color: #052e73;
  font-family: var(--font-poppins, "Poppins", Arial, sans-serif);
}
.service-faq__inner {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  padding-top: 40px;
}
.service-faq__header {
  text-align: center;
}
.service-faq__title {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.055em;
}
.service-faq__title > span,
.service-faq__title > strong {
  display: block;
}
.service-faq__title > span {
  color: #052e73;
}
.service-faq__title > strong {
  font-weight: 500;
  color: #c6d1e1;
}
.service-faq__copy {
  max-width: 48rem;
  margin: 1.5rem auto 0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.45;
  letter-spacing: -0.025em;
  color: rgb(5 46 115 / 0.88);
}
.service-faq__list {
  display: grid;
  max-width: 51.5rem;
  margin: clamp(3.5rem, 6vw, 2rem) auto 0;
  padding: 0;
  gap: 1.5rem;
}
.service-faq__item {
  overflow: hidden;
  border-radius: 0.625rem;
  background: linear-gradient(90deg, #052b6b 0%, #0a55d1 100%);
  box-shadow: 0 0.45rem 1.25rem rgb(5 46 115 / 0.08);
  color: #fff;
  transition:
    box-shadow 360ms ease,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}
.service-faq__trigger {
  display: grid;
  width: 100%;
  min-height: 4rem;
  align-items: center;
  padding: 0.7rem 1.25rem;
  border: 0;
  background: transparent;
  grid-template-columns: 2.25rem minmax(0, 1fr) 1.5rem;
  gap: 1rem;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.service-faq__trigger:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}
.service-faq__number,
.service-faq__arrow {
  display: grid;
  place-items: center;
}
.service-faq__number {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #fff;
  color: #052e73;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 0.25rem 0.75rem rgb(1 18 52 / 0.14);
}
.service-faq__question {
  font-size: clamp(0.875rem, 1.05vw, 1rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.025em;
}
.service-faq__arrow {
  width: 1.5rem;
  height: 1.5rem;
}
.service-faq__chevron {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 460ms cubic-bezier(0.4, 0, 0.2, 1);
}
.service-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 560ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 360ms ease;
}
.service-faq__panel-inner {
  min-height: 0;
  overflow: hidden;
}
.service-faq__panel p {
  max-width: 70ch;
  margin: 0;
  padding: 0 4rem 1.25rem 4.5rem;
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgb(255 255 255 / 0.82);
  transform: translateY(-0.35rem);
  transition: transform 560ms cubic-bezier(0.4, 0, 0.2, 1);
}
.service-faq__item.is-open {
  box-shadow: 0 0.8rem 2rem rgb(5 46 115 / 0.16);
}
.service-faq__item.is-open .service-faq__panel {
  grid-template-rows: 1fr;
  opacity: 1;
}
.service-faq__item.is-open .service-faq__panel p {
  transform: translateY(0);
}
.service-faq__item.is-open .service-faq__chevron {
  transform: rotate(135deg);
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .service-faq__item:hover {
    box-shadow: 0 0.9rem 2.25rem rgb(5 46 115 / 0.18);
    transform: translateY(-0.15rem);
  }
}
@media (max-width: 639px) {
  .service-faq__inner {
    width: min(100% - 32px, 1200px);
    padding-block: 4.5rem;
  }
  .service-faq__title {
    font-size: clamp(2.05rem, 10vw, 2.75rem);
  }
  .service-faq__copy {
    margin-top: 1.25rem;
  }
  .service-faq__list {
    margin-top: 3rem;
    gap: 1rem;
  }
  .service-faq__trigger {
    min-height: 4.25rem;
    padding: 0.75rem 1rem;
    grid-template-columns: 2rem minmax(0, 1fr) 1.25rem;
    gap: 0.75rem;
  }
  .service-faq__number {
    width: 2rem;
    height: 2rem;
    font-size: 0.85rem;
  }
  .service-faq__question {
    font-size: 0.84rem;
  }
  .service-faq__panel p {
    padding: 0 1.25rem 1.25rem 3.75rem;
    font-size: 0.78rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .service-faq__item,
  .service-faq__panel,
  .service-faq__panel p,
  .service-faq__chevron {
    transition: none;
  }
}
