.contact-page {
  display: flex;
  flex-direction: column;
}

.contact-page .contact-details-area {
  order: 1;
  padding-top: 64px;
  padding-bottom: 0;
}

.contact-page .contact-cards-area {
  order: 2;
  padding-top: 80px;
}

.contact-page .contact-details-area .row {
  align-items: stretch;
}

.contact-page .contact-details-area .contact__form,
.contact-page .contact-details-area .contact__map {
  height: 100%;
}

.contact-page .contact-details-area .contact__map iframe {
  display: block;
}

.contact-page .contact-cards-area .row {
  perspective: 1200px;
}

.contact-page .contact-cards-area .contact__item {
  position: relative;
  transform: perspective(1000px) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
  box-shadow: 0 5px 0 rgba(0, 43, 55, 0.08), 0 10px 24px rgba(0, 43, 55, 0.08);
}

.contact-page .contact-cards-area .contact__item:hover {
  transform: perspective(1000px) translateY(-10px) rotateX(3deg) rotateY(-1deg);
  border-color: rgba(0, 164, 164, 0.35);
  box-shadow: 0 10px 0 rgba(0, 43, 55, 0.12), 0 24px 42px rgba(0, 43, 55, 0.2);
}

.contact-page .contact-cards-area .contact__item .icon {
  transform: translateZ(14px);
  transition: transform 350ms ease;
}

.contact-page .contact-cards-area .contact__item:hover .icon {
  transform: translateZ(24px) scale(1.04);
}

@media (max-width: 991px) {
  .contact-page .contact-details-area {
    padding-top: 40px;
  }

  .contact-page .contact-cards-area {
    padding-top: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-page .contact-cards-area .contact__item,
  .contact-page .contact-cards-area .contact__item .icon {
    transition: none;
  }

  .contact-page .contact-cards-area .contact__item:hover,
  .contact-page .contact-cards-area .contact__item:hover .icon {
    transform: none;
  }
}

.banner-inner__content h5 {
  --breadcrumb-x: 50%;
  --breadcrumb-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  padding: 10px 17px 10px 14px;
  color: var(--white);
  font-size: 0;
  line-height: 1;
  letter-spacing: 0;
  background: radial-gradient(circle at var(--breadcrumb-x) var(--breadcrumb-y), rgba(0, 168, 184, 0.5), transparent 38%), linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(1, 43, 55, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(1, 43, 55, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.banner-inner__content h5::after {
  position: absolute;
  content: "";
  inset: -120% -45%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 42%, rgba(255, 255, 255, 0.34) 50%, transparent 58%);
  transform: translateX(-55%) rotate(8deg);
  animation: breadcrumbShine 5s ease-in-out infinite;
}

.banner-inner__content h5::before {
  content: "\f015";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: var(--primary);
  font-family: "Font Awesome 6 Pro";
  font-size: 11px;
  font-weight: 900;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(1, 43, 55, 0.18);
  position: relative;
  z-index: 1;
}

.banner-inner__content h5 a,
.banner-inner__content h5 span {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.8px;
  text-decoration: none;
  transition: color 250ms ease, transform 250ms ease;
  position: relative;
  z-index: 1;
}

.banner-inner__content h5 .breadcrumb-orb {
  position: absolute;
  z-index: 0;
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.72;
  filter: blur(0.2px);
  box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.16), 0 0 18px rgba(0, 168, 184, 0.22);
  animation: breadcrumbOrbFloat 4.8s ease-in-out infinite;
}

.banner-inner__content h5 .breadcrumb-orb-1 {
  top: -17px;
  left: 34%;
  background: rgba(0, 168, 184, 0.28);
}

.banner-inner__content h5 .breadcrumb-orb-2 {
  right: 11%;
  bottom: -21px;
  width: 26px;
  height: 26px;
  background: rgba(224, 80, 16, 0.24);
  animation-delay: -1.6s;
}

.banner-inner__content h5 .breadcrumb-orb-3 {
  top: 8px;
  right: -12px;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.18);
  animation-delay: -3s;
}

@keyframes breadcrumbOrbFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(8px, -5px, 0) scale(1.12);
  }
}

.banner-inner__content h5.is-active {
  box-shadow: 0 12px 30px rgba(1, 43, 55, 0.2), 0 0 0 4px rgba(255, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

@keyframes breadcrumbShine {
  0%, 35% {
    transform: translateX(-55%) rotate(8deg);
  }

  65%, 100% {
    transform: translateX(55%) rotate(8deg);
  }
}

.banner-inner__content h5 span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 11px;
  background: var(--accent);
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  box-sizing: content-box;
}

.banner-inner__content h5 a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.banner-inner__content h1,
.banner-inner__content h2 {
  font-size: 60px;
  line-height: 72px;
}

.strategy-call-page .banner-inner__content {
  max-width: 900px;
}

.strategy-call-page .banner-inner__content h1,
.strategy-call-page .banner-inner__content h2 {
  margin-bottom: 0;
  color: var(--white);
  font-family: "SF Pro Display", "Inter", sans-serif;
  font-size: clamp(42px, 4vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  word-spacing: 0.08em;
  -webkit-font-smoothing: antialiased;
  white-space: nowrap;
}

@media (max-width: 575px) {
  .banner-inner__content h1,
  .banner-inner__content h2 {
    font-size: 35px;
    line-height: 45px;
  }

  .banner-inner__content h5 {
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 12px 8px 10px;
  }

  .banner-inner__content h5::after {
    animation-duration: 6s;
  }

  .banner-inner__content h5::before {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }

  .banner-inner__content h5 a,
  .banner-inner__content h5 span {
    font-size: 10px;
    letter-spacing: 1.35px;
  }

  .strategy-call-page .banner-inner__content {
    max-width: 100%;
  }

  .strategy-call-page .banner-inner__content h1,
  .strategy-call-page .banner-inner__content h2 {
    font-size: clamp(38px, 10vw, 56px);
    line-height: 1.12;
    letter-spacing: 0;
    word-spacing: 0.04em;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .banner-inner__content h5::after,
  .banner-inner__content h5 .breadcrumb-orb {
    animation: none;
  }
}

.banner-inner-area {
  --banner-x: 50%;
  --banner-y: 45%;
  position: relative;
  isolation: isolate;
  background-color: var(--secondary);
  background-image: linear-gradient(135deg, rgba(0, 126, 143, 0.68), rgba(0, 160, 160, 0.82) 48%, rgba(0, 125, 143, 0.72));
}

.banner-inner-area .banner-bg-effects {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.banner-inner-area .banner-bg-effects::before {
  position: absolute;
  content: "";
  inset: 0;
  background: radial-gradient(circle at var(--banner-x) var(--banner-y), rgba(105, 238, 235, 0.42), transparent 25%), radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.12), transparent 22%), linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.08) 48%, transparent 72%);
  opacity: 0.95;
  transition: background 300ms ease;
}

.banner-inner-area .banner-bg-effects::after {
  position: absolute;
  content: "";
  inset: -20%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 82px 82px;
  opacity: 0.18;
  transform: perspective(600px) rotateX(58deg) translateY(18%);
  transform-origin: center bottom;
  animation: bannerGridDrift 18s linear infinite;
}

.banner-inner-area .banner-bg-orb {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 0.72;
  mix-blend-mode: screen;
  filter: blur(0.2px);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.14), 0 0 50px rgba(0, 238, 238, 0.2);
  animation: bannerOrbFloat 9s ease-in-out infinite;
}

.banner-inner-area .banner-bg-orb-1 {
  top: -120px;
  left: 8%;
  width: 290px;
  height: 290px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.16), rgba(0, 168, 184, 0.08) 48%, transparent 70%);
}

.banner-inner-area .banner-bg-orb-2 {
  top: 12%;
  right: 9%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 35% 35%, rgba(224, 80, 16, 0.22), rgba(224, 80, 16, 0.04) 55%, transparent 72%);
  animation-delay: -3s;
}

.banner-inner-area .banner-bg-orb-3 {
  bottom: -160px;
  left: 40%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at 48% 35%, rgba(0, 214, 214, 0.18), transparent 68%);
  animation-delay: -6s;
}

.banner-inner-area .banner-bg-orb-4 {
  right: 34%;
  bottom: 12%;
  width: 74px;
  height: 74px;
  background: rgba(255, 255, 255, 0.08);
  animation-delay: -1.5s;
}

.banner-inner-area .banner-inner__content {
  position: relative;
  z-index: 2;
}

@keyframes bannerOrbFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -14px, 0) scale(1.08);
  }
}

@keyframes bannerGridDrift {
  0% {
    transform: perspective(600px) rotateX(58deg) translate3d(0, 18%, 0);
  }

  100% {
    transform: perspective(600px) rotateX(58deg) translate3d(0, 8%, 0);
  }
}

@media (max-width: 767px) {
  .banner-inner-area .banner-bg-orb-1 {
    left: -100px;
  }

  .banner-inner-area .banner-bg-orb-2 {
    right: -90px;
  }

  .banner-inner-area .banner-bg-orb-3 {
    left: 20%;
  }

  .banner-inner-area .banner-bg-effects::after {
    background-size: 58px 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .banner-inner-area .banner-bg-orb,
  .banner-inner-area .banner-bg-effects::after {
    animation: none;
  }
}

.book-demo__image {
  position: relative;
  display: block;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  transform: perspective(1200px) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 350ms ease, box-shadow 350ms ease;
  box-shadow: 0 8px 0 rgba(0, 43, 55, 0.12), 0 22px 42px rgba(0, 43, 55, 0.2);
}

.book-demo__image::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  z-index: 1;
  pointer-events: none;
  background-image: url("/vc-themes/images/bg/element-1.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 320px auto;
  opacity: 1;
}

.book-demo__image::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 320px;
  height: 320px;
  z-index: 1;
  pointer-events: none;
  background-image: url("/vc-themes/images/bg/element-3.png");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 320px auto;
  opacity: 1;
}

.book-demo__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.book-demo__right-item {
  height: 100%;
}

.book-demo__right-item .contact__form {
  height: 100%;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(0, 43, 55, 0.12);
  transition: transform 350ms ease, box-shadow 350ms ease;
  box-shadow: 0 8px 0 rgba(0, 43, 55, 0.1), 0 22px 42px rgba(0, 43, 55, 0.16);
  position: relative;
}

.book-demo__right-item .contact__form:hover {
  box-shadow: 0 14px 0 rgba(0, 43, 55, 0.14), 0 30px 54px rgba(0, 43, 55, 0.24);
}

.book-demo__right-item .contact__form form select.strategy-service-select {
  width: 100%;
  height: 54px;
  line-height: 52px;
  padding: 0 45px 0 20px;
  background-color: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--paragraph);
  font-family: "SF Pro Display", sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
  cursor: pointer;
  position: relative;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 18px) center;
  background-size: 16px 16px;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.book-demo__right-item .contact__form form select.strategy-service-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(227, 86, 42, 0.15);
}

.book-demo__right-item .contact__form form select.strategy-service-select option {
  color: #1a1a1a;
  background-color: #ffffff;
  padding: 12px 16px;
  font-size: 16px;
}

.book-demo__right-item .contact__form form select.strategy-service-select option[disabled] {
  color: #8c8c8c;
}

.book-demo__right-item .contact__form form .nice-select.strategy-service-select {
  display: none !important;
}

.book-demo__image:hover {
  transform: perspective(1200px) translateY(-8px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 14px 0 rgba(0, 43, 55, 0.16), 0 30px 54px rgba(0, 43, 55, 0.26);
}

.book-demo__image:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

/* Keep the FAQ columns aligned with the site's wide desktop content area. */
.faq-two-area > .container {
  width: calc(100% - 240px);
  max-width: 1660px;
}

.faq-two-area .faq-two__wrp {
  max-width: none;
}

.faq-two-area {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.faq-two-area::before {
  position: absolute;
  content: "";
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  opacity: 1;
}

.faq-two-area::before {
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background-image: url("/vc-themes/images/bg/element-1.png");
  background-position: top right;
  background-size: 320px auto;
}

.faq-two-area > .container {
  position: relative;
  z-index: 1;
}

.case-studies-area {
  background-color: var(--background);
}

.case-studies-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.case-studies-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-studies-intro h2 {
  max-width: 600px;
  margin: 0;
  color: var(--primary);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.case-studies-intro h2 span {
  color: var(--accent);
}

.case-studies-intro > p {
  max-width: 390px;
  margin: 0 0 4px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.case-study-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(1, 43, 55, 0.06);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.case-study-card:hover {
  border-color: rgba(224, 80, 16, 0.38);
  box-shadow: 0 18px 38px rgba(1, 43, 55, 0.12);
  transform: translateY(-6px);
}

.case-study-card__image {
  position: relative;
  display: block;
  height: 280px;
  overflow: hidden;
  background: var(--primary);
}

.case-study-card__image::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 300px;
  height: 280px;
  z-index: 1;
  pointer-events: none;
  background-image: url("/vc-themes/images/bg/element-1.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 300px auto;
  opacity: 0.3;
}

.case-study-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.case-study-card:hover .case-study-card__image img {
  transform: scale(1.05);
}

.case-study-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 30px 30px;
}

.case-study-card__category {
  margin-bottom: 13px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-study-card h3 {
  max-width: 500px;
  margin: 0;
  color: var(--primary);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.18;
}

.case-study-card__body > p {
  margin: 14px 0 25px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.case-study-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 21px;
  border-top: 1px solid var(--border);
}

.case-study-card__result {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.case-study-card__result strong {
  color: var(--primary);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.case-study-card__result span {
  color: var(--text);
  font-size: 12px;
  line-height: 1.2;
}

.case-study-card__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(224, 80, 16, 0.42);
  transition: color 250ms ease, border-color 250ms ease;
}

.case-study-card__link i {
  color: var(--accent);
  transition: transform 250ms ease;
}

.case-study-card__link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.case-study-card__link:hover i {
  transform: translateX(4px);
}

.services-directory-area {
  background: linear-gradient(180deg, var(--background) 0%, var(--white) 100%);
  perspective: 1400px;
}

.services-directory__intro {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.services-directory__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-directory__intro h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.services-directory__intro h2 span {
  color: var(--accent);
}

.services-directory__intro p {
  max-width: 600px;
  margin: 22px auto 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.services-directory__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.service-directory-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 8px 0 rgba(1, 43, 55, 0.08), 0 18px 34px rgba(1, 43, 55, 0.08);
  transform: perspective(900px) translateZ(0) rotateX(0) rotateY(0);
  transform-style: preserve-3d;
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.service-directory-card::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 150px;
  top: -78px;
  right: -50px;
  z-index: -1;
  background: rgba(0, 160, 160, 0.1);
  border-radius: 50%;
  transition: transform 350ms ease, background-color 350ms ease;
}

.service-directory-card::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 300px;
  height: 300px;
  z-index: -1;
  pointer-events: none;
  background-image: url("/vc-themes/images/bg/element-2.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 300px auto;
  opacity: 0.9;
}

.service-directory-card:hover {
  border-color: rgba(224, 80, 16, 0.42);
  box-shadow: 0 14px 0 rgba(1, 43, 55, 0.12), 0 30px 54px rgba(1, 43, 55, 0.18);
  transform: perspective(900px) translateY(-10px) translateZ(12px) rotateX(2deg) rotateY(-2deg);
}

.service-directory-card:hover::after {
  background: rgba(224, 80, 16, 0.14);
  transform: scale(1.35);
}

.service-directory-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.service-directory-card__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary), var(--tertiary));
  border-radius: 18px;
  box-shadow: 0 8px 16px rgba(0, 160, 160, 0.24);
  font-size: 27px;
  transform: translateZ(18px);
  transition: transform 350ms ease, background 350ms ease;
}

.service-directory-card:hover .service-directory-card__icon {
  background: linear-gradient(135deg, var(--accent), #f47b42);
  transform: translateZ(30px) rotate(-4deg) scale(1.06);
}

.service-directory-card__acronym {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-directory-card h3 {
  margin: 28px 0 12px;
  color: var(--primary);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.18;
  transform: translateZ(12px);
}

.service-directory-card p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.service-directory-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  transition: color 250ms ease;
}

.service-directory-card__link i {
  color: var(--accent);
  transition: transform 250ms ease;
}

.service-directory-card__link:hover {
  color: var(--accent);
}

.service-directory-card__link:hover i {
  transform: translateX(5px);
}

.team-directory-area .team__image::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 220px;
  height: 260px;
  z-index: 1;
  pointer-events: none;
  background-image: url("/vc-themes/images/bg/element-2.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 220px auto;
  opacity: 1;
}

@media (max-width: 991px) {
  .services-directory__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .services-directory__grid {
    grid-template-columns: 1fr;
  }

  .service-directory-card {
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-directory-card,
  .service-directory-card::after,
  .service-directory-card__icon,
  .service-directory-card__link,
  .service-directory-card__link i {
    transition: none;
  }

  .service-directory-card:hover,
  .service-directory-card:hover .service-directory-card__icon {
    transform: none;
  }
}

@media (max-width: 991px) {
  .case-studies-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .case-studies-intro > p {
    max-width: 600px;
  }
}

@media (max-width: 767px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .case-study-card__image {
    height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-study-card,
  .case-study-card__image img,
  .case-study-card__link,
  .case-study-card__link i {
    transition: none;
  }

  .case-study-card:hover {
    transform: none;
  }
}

@media (max-width: 1399px) {
  .faq-two-area > .container {
    width: calc(100% - 48px);
  }
}

@media (max-width: 991px) {
  .faq-two-area > .container {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .book-demo__image {
    margin-top: 20px;
    min-height: 360px;
  }

  .book-demo__image img {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .book-demo__image,
  .book-demo__image img,
  .book-demo__right-item .contact__form {
    transition: none;
  }

  .book-demo__image:hover,
  .book-demo__right-item .contact__form:hover,
  .book-demo__image:hover img {
    transform: none;
    filter: none;
  }
}

/* Extend the homepage hero image area down toward the services heading. */
@media (min-width: 1200px) {
  .hm-hero {
    min-height: 720px;
  }
}

/* About page introduction */
.about-page-intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 82px 0 88px;
  background: var(--background);
}

.about-page-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
  gap: 52px;
}

.about-page-intro__content {
  min-width: 0;
}

.about-page-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0 0 18px;
  padding: 6px 14px;
  border-radius: 10px;
  color: var(--secondary);
  background: rgba(18, 78, 82, 0.08);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-page-intro__content h1 {
  max-width: 720px;
  margin: 0;
  color: var(--primary);
  font-size: clamp(30px, 2.55vw, 46px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.about-page-intro__description {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
}

.about-page-intro__description + .about-page-intro__description {
  margin-top: 11px;
}

.about-page-intro__values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
  perspective: 1200px;
}

.about-page-intro__card {
  min-height: 190px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  padding: 20px 18px 21px;
  background: var(--white);
  border: 1px solid rgba(0, 160, 160, 0.16);
  border-radius: 15px;
  box-shadow: 0 7px 0 rgba(0, 160, 160, 0.14), 0 15px 28px rgba(1, 43, 55, 0.1);
  transform: translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-page-intro__card:hover {
  border-color: rgba(224, 80, 16, 0.45);
  box-shadow: 0 14px 0 rgba(0, 160, 160, 0.16), 0 30px 48px rgba(1, 43, 55, 0.18);
  transform: translateY(-9px) rotateX(2deg) rotateY(-2deg);
}

.about-page-intro__card-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 168, 184, 0.4);
  border-radius: 15px;
  color: var(--secondary);
  background: var(--white);
  box-shadow: 0 6px 0 rgba(0, 160, 160, 0.16), 0 13px 25px rgba(1, 43, 55, 0.13);
  font-size: 26px;
  transform: translateZ(20px);
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.about-page-intro__card:hover .about-page-intro__card-icon {
  color: var(--white);
  border-color: var(--secondary);
  background: var(--secondary);
  box-shadow: 0 8px 0 rgba(1, 43, 55, 0.24), 0 18px 30px rgba(1, 43, 55, 0.2);
  transform: translateZ(30px) translateY(-3px) scale(1.04);
}

.about-page-intro__card h2 {
  margin: 2px 0 10px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  transform: translateZ(14px);
}

.about-page-intro__card > div {
  min-width: 0;
  flex: 1 1 auto;
}

.about-page-intro__card p {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
  transform: translateZ(10px);
}

.about-page-intro__card p + p {
  margin-top: 10px;
}

.about-page-intro__image {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 20px;
  background: var(--primary);
  box-shadow: 0 16px 0 rgba(1, 43, 55, 0.09), 0 28px 48px rgba(1, 43, 55, 0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-page-intro__image img {
  width: 100%;
  height: 470px;
  display: block;
  object-fit: cover;
}

.about-page-intro__image:hover {
  box-shadow: 0 21px 0 rgba(1, 43, 55, 0.09), 0 34px 56px rgba(1, 43, 55, 0.2);
  transform: translateY(-7px);
}

.about-page-intro__image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 190px;
  height: 190px;
  z-index: 2;
  pointer-events: none;
  background-image: url("/vc-themes/images/bg/element-1.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 190px auto;
}

@media (max-width: 991px) {
  .about-page-intro {
    padding: 68px 0 78px;
  }

  .about-page-intro__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-page-intro__image,
  .about-page-intro__image img {
    min-height: 380px;
    height: 380px;
  }
}

@media (max-width: 575px) {
  .about-page-intro {
    padding: 58px 0 70px;
  }

  .about-page-intro__eyebrow {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .about-page-intro__content h1 {
    font-size: 32px;
  }

  .about-page-intro__description {
    font-size: 16px;
  }

  .about-page-intro__card p {
    font-size: 16px;
  }

  .about-page-intro__values {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-page-intro__card {
    gap: 16px;
  }

  .about-page-intro__image,
  .about-page-intro__image img {
    min-height: 310px;
    height: 310px;
  }

  .about-page-intro__image::after {
    width: 125px;
    height: 125px;
    background-size: 125px auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page-intro__card,
  .about-page-intro__card-icon,
  .about-page-intro__image {
    transition: none;
  }

  .about-page-intro__card:hover,
  .about-page-intro__image:hover {
    transform: none;
  }
}

/* Why Us image decoration */
.about-why-image {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 24px;
  background: var(--primary);
  box-shadow: 0 15px 0 rgba(1, 43, 55, 0.08), 0 24px 42px rgba(1, 43, 55, 0.14);
}

.about-why-image img {
  width: 100%;
  display: block;
  border-radius: inherit;
}

.about-why-image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 220px;
  height: 220px;
  z-index: 2;
  pointer-events: none;
  background-image: url("/vc-themes/images/bg/element-3.png");
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 220px auto;
}

.about-why-area .section-header h2 {
  font-size: clamp(34px, 3.1vw, 52px);
  line-height: 1.1;
}

.about-why-area .section-header p {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.65;
}

.about-why-area .about__right-item {
  max-width: 680px;
}

@media (max-width: 575px) {
  .about-why-image::after {
    width: 150px;
    height: 150px;
    background-size: 150px auto;
  }
}

/* About page value cards */
.about-services-area {
  padding-top: 20px;
}

.about-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.about-service-card {
  max-width: none;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 28px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 9px 0 rgba(0, 160, 160, 0.14), 0 18px 35px rgba(1, 43, 55, 0.1);
  transform: translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-service-card:hover {
  border-color: rgba(224, 80, 16, 0.45);
  box-shadow: 0 15px 0 rgba(0, 160, 160, 0.16), 0 30px 48px rgba(1, 43, 55, 0.18);
  transform: translateY(-9px) rotateX(2deg) rotateY(-2deg);
}

.about-service-card .service__icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px !important;
  border: 1px solid rgba(0, 168, 184, 0.38);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 7px 0 rgba(0, 160, 160, 0.16), 0 15px 28px rgba(1, 43, 55, 0.13);
  transform: translateZ(18px);
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-service-card .service__icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.about-service-card:hover .service__icon {
  border-color: var(--secondary);
  background: rgba(0, 168, 184, 0.08);
  box-shadow: 0 10px 0 rgba(1, 43, 55, 0.2), 0 21px 32px rgba(1, 43, 55, 0.18);
  transform: translateZ(30px) translateY(-4px) scale(1.04);
}

.about-service-card h3 {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  transform: translateZ(12px);
}

.about-service-card > p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  transform: translateZ(8px);
}

.about-service-card .explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 25px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
}

.about-service-card .explore-btn i {
  color: var(--accent);
  transition: transform 0.25s ease;
}

.about-service-card .explore-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .about-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .about-services__grid {
    grid-template-columns: 1fr;
  }

  .about-service-card {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-service-card,
  .about-service-card .service__icon,
  .about-service-card .explore-btn i {
    transition: none;
  }

  .about-service-card:hover,
  .about-service-card:hover .service__icon {
    transform: none;
  }
}

/* SEO service page */
.seo-service-page {
  --seo-card-shadow: rgba(1, 43, 55, 0.14);
  overflow: hidden;
  background: var(--background);
  color: var(--text);
}

.seo-service-page .container {
  position: relative;
  z-index: 1;
}

.seo-service-hero {
  padding: 88px 0 82px;
  background: linear-gradient(135deg, var(--background) 0%, #ffffff 100%);
}

.seo-service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 64px;
  align-items: center;
}

.seo-service-eyebrow {
  margin: 0 0 16px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.seo-service-hero h1,
.seo-service-heading h2,
.seo-service-cta h2 {
  margin: 0;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.seo-service-hero h1 {
  max-width: 650px;
  font-size: clamp(38px, 4.5vw, 66px);
  line-height: 1.04;
}

.seo-service-hero__lead {
  max-width: 650px;
  margin: 28px 0 16px;
  color: var(--primary);
  font-size: 21px;
  line-height: 1.55;
}

.seo-service-hero__text {
  max-width: 650px;
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
}

.seo-service-hero__image {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 24px;
  background: #dfe7e8;
  box-shadow: 0 10px 0 rgba(1, 43, 55, 0.1), 0 24px 45px rgba(1, 43, 55, 0.18);
}

.seo-service-hero__image::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 210px;
  height: 230px;
  background: url('/vc-themes/images/bg/element-1.png') top right / contain no-repeat;
  content: "";
  pointer-events: none;
}

.seo-service-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.seo-service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  margin-top: 30px;
  padding: 13px 24px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent);
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.seo-service-button:hover {
  color: var(--primary);
  background: #ff6a16;
  box-shadow: 0 6px 0 rgba(1, 43, 55, 0.2), 0 14px 25px rgba(1, 43, 55, 0.16);
  transform: translateY(-3px);
}

.seo-service-button i {
  transition: transform 0.25s ease;
}

.seo-service-button:hover i {
  transform: translateX(4px);
}

.seo-service-block,
.seo-other-services {
  padding: 92px 0 100px;
}

.seo-service-block {
  background: var(--white);
}

.seo-service-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.seo-service-heading h2 {
  font-size: clamp(31px, 3.5vw, 50px);
  line-height: 1.08;
}

.seo-service-heading > p:last-child {
  max-width: 700px;
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.7;
}

.seo-service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.seo-service-card,
.seo-process-card,
.seo-other-service-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(0, 168, 184, 0.2);
  border-radius: 20px;
  transform: translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.seo-service-card::after,
.seo-process-card::after,
.seo-other-service-card::after {
  position: absolute;
  right: -32px;
  bottom: -32px;
  z-index: -1;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: rgba(0, 168, 184, 0.1);
  content: "";
  transition: transform 0.3s ease, background 0.3s ease;
}

.seo-service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 165px;
  height: 180px;
  background: url('/vc-themes/images/bg/element-1.png') top right / contain no-repeat;
  content: "";
  pointer-events: none;
}

.seo-service-card {
  display: flex;
  min-height: 286px;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  box-shadow: 0 8px 0 rgba(0, 168, 184, 0.12), 0 18px 34px var(--seo-card-shadow);
}

.seo-service-card:hover,
.seo-process-card:hover,
.seo-other-service-card:hover {
  border-color: rgba(0, 168, 184, 0.55);
  box-shadow: 0 11px 0 rgba(0, 168, 184, 0.18), 0 25px 42px rgba(1, 43, 55, 0.2);
  transform: translateY(-9px) rotateX(2deg) rotateY(-1deg);
}

.seo-service-card:hover::after,
.seo-process-card:hover::after,
.seo-other-service-card:hover::after {
  background: rgba(0, 168, 184, 0.18);
  transform: scale(1.25);
}

.seo-service-card__icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border-radius: 15px;
  background: var(--secondary);
  box-shadow: 0 7px 0 rgba(1, 43, 55, 0.2), 0 14px 25px rgba(0, 168, 184, 0.2);
  color: var(--white);
  font-size: 25px;
  transform: translateZ(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-service-card:hover .seo-service-card__icon {
  box-shadow: 0 9px 0 rgba(1, 43, 55, 0.22), 0 18px 30px rgba(0, 168, 184, 0.25);
  transform: translateZ(30px) translateY(-3px) scale(1.05);
}

.seo-service-card h3,
.seo-process-card h3 {
  margin: 0 0 13px;
  color: var(--primary);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.2;
  transform: translateZ(12px);
}

.seo-service-card p,
.seo-process-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  transform: translateZ(8px);
}

.seo-service-process {
  padding: 92px 0 100px;
  background: var(--primary);
}

.seo-service-heading--light h2 {
  color: var(--white);
}

.seo-service-heading--light > p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.seo-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.seo-process-card {
  min-height: 245px;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 0 rgba(0, 168, 184, 0.2), 0 18px 35px rgba(0, 0, 0, 0.16);
}

.seo-process-card > span {
  display: block;
  margin-bottom: 35px;
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.seo-process-card h3 {
  color: var(--white);
}

.seo-process-card p {
  color: rgba(255, 255, 255, 0.76);
}

.seo-service-cta {
  padding: 58px 0;
  background: var(--secondary);
}

.seo-service-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.seo-service-cta h2 {
  color: var(--white);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.1;
}

.seo-service-cta__inner > div > p:last-child {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.seo-service-button--light {
  flex: 0 0 auto;
  border-color: var(--white);
  background: var(--white);
  color: var(--primary);
}

.seo-service-button--light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--primary);
}

.seo-other-services {
  background: var(--background);
}

.seo-other-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.seo-other-service-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  padding: 25px;
  background: var(--white);
  box-shadow: 0 7px 0 rgba(0, 168, 184, 0.11), 0 15px 30px var(--seo-card-shadow);
  color: var(--primary);
}

.seo-other-service-card:hover {
  color: var(--primary);
}

.seo-other-service-card > i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border: 1px solid rgba(0, 168, 184, 0.35);
  border-radius: 13px;
  color: var(--secondary);
  font-size: 21px;
  transform: translateZ(18px);
}

.seo-other-service-card > span {
  max-width: 220px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  transform: translateZ(10px);
}

.seo-other-service-card > b {
  margin-top: auto;
  color: var(--accent);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  text-align: right;
  transition: transform 0.25s ease;
}

.seo-other-service-card:hover > b {
  transform: translateX(6px);
}

@media (max-width: 1199px) {
  .seo-service-hero__grid {
    gap: 42px;
  }

  .seo-service-hero__image {
    height: 380px;
  }

  .seo-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-other-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .seo-service-hero__grid {
    grid-template-columns: 1fr;
  }

  .seo-service-hero__image {
    height: 360px;
  }

  .seo-service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .seo-service-hero,
  .seo-service-block,
  .seo-service-process,
  .seo-other-services {
    padding: 62px 0 70px;
  }

  .seo-service-hero__image {
    height: 300px;
    border-radius: 18px;
  }

  .seo-service-hero__lead {
    font-size: 18px;
  }

  .seo-service-cards,
  .seo-process-grid,
  .seo-other-services__grid {
    grid-template-columns: 1fr;
  }

  .seo-service-card,
  .seo-process-card {
    min-height: 0;
  }

  .seo-service-cta {
    padding: 48px 0;
  }

  .seo-service-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seo-service-button,
  .seo-service-button i,
  .seo-service-card,
  .seo-service-card__icon,
  .seo-process-card,
  .seo-other-service-card,
  .seo-other-service-card > b,
  .seo-service-card::before,
  .seo-service-card::after,
  .seo-process-card::after,
  .seo-other-service-card::after {
    transition: none;
  }

  .seo-service-button:hover,
  .seo-service-card:hover,
  .seo-process-card:hover,
  .seo-other-service-card:hover,
  .seo-service-card:hover .seo-service-card__icon,
  .seo-other-service-card:hover > b {
    transform: none;
  }
}
