/* =============== Home Client Logos (static row) =============== */
.home_client .home-client-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 0;
}

.home_client .home-client-logos__item {
  display: block;
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  flex: 1 1 0;
}

@media (max-width: 991px) {
  .home_client .home-client-logos {
    gap: 20px;
    padding: 22px 0;
  }

  .home_client .home-client-logos__item {
    height: 32px;
    max-width: 120px;
  }
}

@media (max-width: 767px) {
  .home_client .home-client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 28px 20px;
    padding: 24px 16px;
    overflow: visible;
    max-width: 100%;
  }

  .home_client .home-client-logos__item {
    height: 36px;
    width: calc((100% - 40px) / 3);
    max-width: 120px;
    object-fit: contain;
    flex: 0 0 auto;
  }
}

/* =============== Home Banner Awards =============== */
.banner-awards {
  position: absolute;
  left: 50%;
  bottom: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 32px);
  pointer-events: none;
}

.home_banner .home_banner_content {
  padding-bottom: 88px;
}

.banner-awards__logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  pointer-events: auto;
}

.banner-awards__dot {
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

@media (max-width: 767px) {
  .banner-awards {
    bottom: 52px;
    gap: 12px;
  }

  .home_banner .home_banner_content {
    padding-bottom: 88px;
  }

  .banner-awards__logo {
    height: 32px;
    max-width: 56px;
  }
}

/* =============== UX Consultation CTA =============== */
.ux-consultation-cta {
  position: relative;
  overflow: hidden;
  padding: 32px 24px;
  border-radius: 12px;
  background-color: #eaeaff;
  gap: 24px;
}

.ux-consultation-cta__frame {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .ux-consultation-cta__frame {
    width: 180px;
    height: auto;
  }
}

.ux-consultation-cta__text {
  position: relative;
  z-index: 1;
  max-width: 681px;
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  color: #0e131f;
}

.ux-consultation-cta .btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .ux-consultation-cta {
    padding: 56px 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .ux-consultation-cta__frame {
    width: 50%;
    height: auto;
  }

  .ux-consultation-cta__text {
    font-size: 20px;
    font-weight: 600;
    max-width: 100%;
  }

  .ux-consultation-cta .btn {
    width: 100%;
  }
}

/* =============== Core Services Accordion =============== */
.core-services-section.f1_section {
  padding: 80px 0 !important;
  background: #0a0b14 !important;
}

.core-services-section__title {
  margin: 0 auto 40px;
  max-width: 900px;
  font-size: 44px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-align: center;
}

.core-services-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.core-services-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 24px;
  padding-bottom: 16px;
}

.core-services-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.core-services-item__trigger:focus,
.core-services-item__trigger:focus-visible {
  outline: none;
  box-shadow: none;
}

.core-services-item__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.core-services-item__title {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0;
  color: #e7e7e9;
}

.core-services-item__subtitle {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0;
  color: #e7e7e9;
}

.core-services-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid #cfd0d2;
  border-radius: 50%;
  box-sizing: border-box;
}

.core-services-item__icon::before,
.core-services-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #cfd0d2;
  transform: translate(-50%, -50%);
}

.core-services-item__icon::before {
  width: 14px;
  height: 1.5px;
}

.core-services-item__icon::after {
  width: 1.5px;
  height: 14px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.core-services-item.is-open .core-services-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.core-services-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.core-services-item.is-open .core-services-item__panel {
  grid-template-rows: 1fr;
}

.core-services-item__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  overflow: hidden;
  min-height: 0;
  padding-top: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    padding-top 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.core-services-item.is-open .core-services-item__body {
  padding-top: 24px;
  opacity: 1;
  transform: translateY(0);
}

.core-services-item__body p {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  letter-spacing: 0;
  color: #b7b8bc;
}

@media (max-width: 991px) {
  .core-services-item__title {
    font-size: 24px;
  }

  .core-services-item__subtitle {
    font-size: 16px;
  }

  .core-services-item__body {
    gap: 24px;
  }

  .core-services-item__body p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .core-services-section.f1_section {
    padding: 48px 0 !important;
  }

  .core-services-section__title {
    margin-bottom: 40px;
    font-size: 28px;
    text-align: center;
  }

  .core-services-item {
    padding-top: 24px;
    padding-bottom: 16px;
  }

  .core-services-item__trigger {
    align-items: flex-start;
    gap: 16px;
  }

  .core-services-item__icon {
    margin-top: 2px;
  }

  .core-services-item__title {
    font-size: 20px;
  }

  .core-services-item__subtitle {
    font-size: 14px;
  }

  .core-services-item.is-open .core-services-item__body {
    padding-top: 16px;
  }

  .core-services-item__body {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .core-services-item__body p {
    font-size: 14px;
  }
}

/* =============== Build Future Light =============== */
.build-future--light {
  background: #ffffff !important;
}

.build-future--light .build-future__title {
  color: #0e131f;
}

.build-future--light .build-future__lead {
  color: #0e131f;
  max-width: 820px;
}

.build-future--light .build-future-img {
  margin-top: 40px;
  margin-bottom: 60px;
}

.build-future--light .build-future-img img {
  width: 100%;
  border-radius: 0;
}

.build-future--light .build-future__cta {
  margin-top: 0;
}

@media (max-width: 767px) {
  .build-future--light .build-future-img {
    margin-top: 28px;
    margin-bottom: 60px;
  }
}

/* =============== Enterprise UX Across Industries =============== */
.industries-section.f1_section {
  padding: 80px 0 !important;
  overflow: hidden;
}

.industries-section__header {
  margin-bottom: 56px;
  text-align: left;
}

.industries-section__title {
  margin: 0 0 24px;
  font-size: 44px;
  font-weight: 300;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-align: left;
}

.industries-section__lead {
  margin: 0;
  max-width: 1200px;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: #ffffff;
  text-align: left;
}

.industries-slider {
  padding-left: max(16px, calc((100vw - 1280px) / 2));
}

.industries-swiper {
  overflow: visible;
}

.industries-swiper .swiper-slide {
  width: 282px;
  height: 278px;
}

.industry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  height: 278px;
  padding: 32px 24px;
  border-radius: 15px;
  border: none;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(255, 255, 255, 0.15) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-sizing: border-box;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

.industry-card__icon,
.industry-card__title,
.industry-card__logos {
  position: relative;
  z-index: 1;
}

.industry-card__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0;
  flex-shrink: 0;
}

.industry-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  color: #ffffff;
  max-width: 200px;
}

.industry-card__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  width: 100%;
}

.industry-card__logos img {
  max-width: 100px;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  .industries-section.f1_section {
    padding: 48px 0 !important;
  }

  .industries-section__title {
    font-size: 32px;
  }

  .industries-section__lead {
    font-size: 16px;
  }

  .industries-section__header {
    margin-bottom: 32px;
  }

  .industries-slider {
    padding-left: 16px;
  }

  .industries-swiper .swiper-slide {
    width: 260px;
  }
}

/* =============== Why Partner with f1studioz =============== */
.partner-section.f1_section {
  padding: 80px 0 !important;
  background: #f7f7fb;
  position: relative;
  overflow: hidden;
}

.partner-section::before,
.partner-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.35;
}

.partner-section::before {
  top: -120px;
  left: -80px;
  background: rgba(255, 0, 117, 0.25);
}

.partner-section::after {
  bottom: -140px;
  right: -100px;
  background: rgba(52, 52, 237, 0.22);
}

.partner-section .container {
  position: relative;
  z-index: 1;
}

.partner-section__title {
  margin: 0 auto 40px;
  max-width: 640px;
  font-size: 44px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #0e131f;
  text-align: center;
}

.partner-swiper {
  overflow: visible;
  margin: 0;
}

.partner-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 24px 32px 40px;
  border-radius: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(52, 52, 237, 0.06);
  box-sizing: border-box;
}

.partner-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.partner-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-card__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.partner-card__heading {
  margin: 0;
  font-size: 18px;
  font-weight: 600 !important;
  line-height: 140% !important;
  color: #262b35;
}

.partner-card__text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 144%;
  letter-spacing: -0.02em;
  color: #3e424c;
}

.partner-pagination {
  display: none;
}

/* Desktop: 2-column grid (disable Swiper transform) */
@media (min-width: 768px) {
  .partner-section__grid.swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    transform: none !important;
  }

  .partner-swiper .swiper-slide {
    width: auto !important;
    height: auto;
    margin: 0 !important;
  }
}

@media (max-width: 767px) {
  .partner-section.f1_section {
    padding: 48px 0 56px !important;
    background: #ffffff;
    overflow: hidden;
  }

  .partner-section::before {
    top: 38%;
    left: 50%;
    width: 280px;
    height: 280px;
    transform: translateX(-50%);
    background: rgba(255, 120, 180, 0.35);
    opacity: 0.55;
    filter: blur(70px);
  }

  .partner-section::after {
    display: none;
  }

  .partner-section .container {
    padding-left: 16px;
    padding-right: 0;
    max-width: 100%;
  }

  .partner-section__title {
    margin: 0 0 32px;
    padding-right: 16px;
    max-width: 358px;
    font-size: 28px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.02em;
    text-align: left;
  }

  .partner-swiper {
    overflow: visible;
  }

  .partner-section__grid.swiper-wrapper {
    display: flex;
    gap: 0;
  }

  .partner-swiper .swiper-slide {
    width: 78% !important;
    height: auto;
    box-sizing: border-box;
  }

  .partner-card {
    gap: 16px;
    min-height: auto;
    padding: 24px 20px;
    border-radius: 24px;
    border: none;
    box-shadow: 0 6px 28px rgba(38, 43, 53, 0.08);
  }

  .partner-card__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .partner-card__heading {
    font-size: 18px;
    font-weight: 600 !important;
    line-height: 140% !important;
    color: #262b35;
  }

  .partner-card__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 144%;
    letter-spacing: -0.02em;
    color: #3e424c;
  }

  .partner-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
    padding-right: 16px;
  }

  .partner-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    background: #f0d4e4;
    opacity: 1;
  }

  .partner-pagination .swiper-pagination-bullet-active {
    background: #6b4eff;
  }
}

/* =============== Modern UX Tools Orbit =============== */
.tools-orbit-section.f1_section {
  padding: 0 !important;
  background: #f8f8fb;
  overflow: hidden;
}

.tools-orbit {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.tools-orbit__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
  margin: 75px auto 0;
  padding: 0 24px;
  text-align: center;
}

.tools-orbit__title {
  margin: 0 0 12px;
  font-size: 44px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #0e131f;
}

.tools-orbit__title .text-gradient,
.tools-orbit__title-line {
  display: block;
}

.tools-orbit__lead {
  margin: 0 0 24px;
  max-width: 498px;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.02em;
  color: #0e131f;
}

/* Orbit center at top edge; clip keeps only the lower half (true half-circles) */
.tools-orbit__stage {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: min(1600px, 145vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  clip-path: inset(46% -30% -40% -30%);
  -webkit-clip-path: inset(46% -30% -40% -30%);
  pointer-events: none;
}

.tools-orbit__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(79, 46, 222, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  /* Strict half-circle stroke — no upper arc */
  clip-path: inset(50% 0 0 0);
  -webkit-clip-path: inset(50% 0 0 0);
}

.tools-orbit__ring--1 {
  width: 32%;
  height: 32%;
}

.tools-orbit__ring--2 {
  width: 50%;
  height: 50%;
}

.tools-orbit__ring--3 {
  width: 70%;
  height: 70%;
}

.tools-orbit__ring--4 {
  width: 90%;
  height: 90%;
}

.tools-orbit__track {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Arc 1 has no icons — tracks start at arc 2 */
.tools-orbit__track--2 {
  width: 50%;
  height: 50%;
  animation: tools-track-spin 90s linear infinite;
}

.tools-orbit__track--3 {
  width: 70%;
  height: 70%;
  animation: tools-track-spin 120s linear infinite reverse;
}

.tools-orbit__track--4 {
  width: 90%;
  height: 90%;
  animation: tools-track-spin 150s linear infinite;
}

.tools-orbit__slot {
  position: absolute;
  inset: 0;
  transform: rotate(var(--a, 0deg));
}

.tools-orbit__planet {
  position: absolute;
  top: 0;
  left: 50%;
  width: 180px;
  height: 180px;
  margin: 0;
  transform: translate(-50%, -50%) rotate(calc(0deg - var(--a, 0deg)));
  animation: tools-track-spin-counter 90s linear infinite;
}

.tools-orbit__track--3 .tools-orbit__planet {
  animation: tools-track-spin-counter-rev 120s linear infinite;
}

.tools-orbit__track--4 .tools-orbit__planet {
  animation-duration: 150s;
}

.tools-orbit__planet picture {
  display: block;
  width: 100%;
  height: 100%;
}

.tools-orbit__planet img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tools-orbit__planet--lg {
  width: 260px;
  height: 200px;
}

.tools-orbit__planet--md {
  width: 200px;
  height: 200px;
}

/* Mobile-only icon slots hidden on desktop */
.tools-orbit__slot--mob {
  display: none;
}

@keyframes tools-track-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes tools-track-spin-counter {
  from { transform: translate(-50%, -50%) rotate(calc(0deg - var(--a, 0deg))) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(calc(0deg - var(--a, 0deg))) rotate(-360deg); }
}

@keyframes tools-track-spin-counter-rev {
  from { transform: translate(-50%, -50%) rotate(calc(0deg - var(--a, 0deg))) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(calc(0deg - var(--a, 0deg))) rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .tools-orbit__track,
  .tools-orbit__planet {
    animation: none !important;
  }
}

@media (max-width: 991px) {
  .tools-orbit {
    height: 620px;
  }

  .tools-orbit__stage {
    width: min(900px, 140vw);
    max-width: none;
  }

  .tools-orbit__title {
    font-size: 32px;
  }

  .tools-orbit__lead {
    font-size: 16px;
  }

  .tools-orbit__planet {
    width: 150px;
    height: 150px;
  }

  .tools-orbit__planet--lg {
    width: 220px;
    height: 170px;
  }

  .tools-orbit__planet--md {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 767px) {
  .tools-orbit-section.f1_section {
    padding: 0 !important;
    background: #ffffff;
    overflow: hidden;
  }

  .tools-orbit {
    height: 600px;
    max-height: 600px;
    padding-bottom: 90px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .tools-orbit__content {
    max-width: 380px;
    margin-top: 60px;
    padding: 0 16px;
  }

  .tools-orbit__title {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.02em;
  }

  .tools-orbit__lead {
    margin: 0;
    max-width: 358px;
    font-size: 14px;
    font-weight: 400;
    line-height: 144%;
    letter-spacing: -0.02em;
    color: #3e424c;
  }

  /* 3 arcs only — hide empty innermost ring */
  .tools-orbit__ring--1 {
    display: none;
  }

  .tools-orbit__stage {
    top: 150px;
    /* Must fit outer ring (inner + 400px diameter) */
    width: max(175vw, 760px);
    max-width: none;
    transform: translate(-50%, -50%);
    clip-path: none !important;
    -webkit-clip-path: none !important;
    overflow: visible !important;
    --arc-gap: 100px;
    --arc-inner-w: 43%;
    --arc-inner-h: 45%;
  }

  .tools-orbit__ring,
  .tools-orbit__track {
    top: 46%;
  }

  .tools-orbit__ring {
    border-color: rgba(111, 86, 214, 0.22);
    border-width: 1px;
  }

  /* Inner arc — full round */
  .tools-orbit__ring.tools-orbit__ring--2 {
    width: var(--arc-inner-w);
    height: var(--arc-inner-h);
    border-radius: 50%;
    clip-path: none !important;
    -webkit-clip-path: none !important;
    overflow: visible;
  }

  .tools-orbit__track--2 {
    width: var(--arc-inner-w);
    height: var(--arc-inner-h);
  }

  /* Middle = inner + 100px radius (200px diameter) */
  .tools-orbit__ring--3,
  .tools-orbit__track--3 {
    width: calc(var(--arc-inner-w) + (var(--arc-gap) * 2));
    height: calc(var(--arc-inner-h) + (var(--arc-gap) * 2));
  }

  /* Outer = middle + 100px radius */
  .tools-orbit__ring--4,
  .tools-orbit__track--4 {
    width: calc(var(--arc-inner-w) + (var(--arc-gap) * 4));
    height: calc(var(--arc-inner-h) + (var(--arc-gap) * 4));
  }

  /* Outer arcs half-bowl; inner stays full */
  .tools-orbit__ring--3,
  .tools-orbit__ring--4 {
    clip-path: inset(50% 0 0 0);
    -webkit-clip-path: inset(50% 0 0 0);
  }

  /* Freeze into the static mobile composition */
  .tools-orbit__track,
  .tools-orbit__planet {
    animation: none !important;
  }

  .tools-orbit__slot--desk {
    display: none;
  }

  .tools-orbit__slot--mob {
    display: block;
  }

  /*
    Chip SVGs include shadow padding — use larger boxes (no CSS scale,
    which blurs icons on mobile).
  */
  .tools-orbit__planet {
    width: 200px;
    height: 200px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .tools-orbit__planet--lg {
    width: 220px;
    height: 200px;
  }

  .tools-orbit__planet--md {
    width: 220px;
    height: 200px;
  }

  .tools-orbit__planet img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: none;
    image-rendering: -webkit-optimize-contrast;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

/* =============== Enterprise Client Engagement Experience =============== */
.client-engagement-section.f1_section {
  padding: 80px 0 !important;
}

.client-engagement-section__header {
  margin-bottom: 56px;
  text-align: left;
}

.client-engagement-section__title {
  margin: 0 0 24px;
  font-size: 44px;
  font-weight: 300;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-align: left;
}

.client-engagement-section__lead {
  margin: 0;
  max-width: 100%;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: #ffffff;
  text-align: left;
}

.client-engagement-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 48px;
  row-gap: 56px;
}

.client-engagement-item {
  text-align: left;
}

.client-engagement-item__logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 20px;
}

.client-engagement-item__name {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  color: #ffffff;
}

.client-engagement-item__desc {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #cfd0d2;
}

@media (max-width: 991px) {
  .client-engagement-section__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
    row-gap: 40px;
  }
}

@media (max-width: 767px) {
  .client-engagement-section.f1_section {
    padding: 48px 0 !important;
  }

  .client-engagement-section__header {
    margin-bottom: 32px;
  }

  .client-engagement-section__title {
    font-size: 32px;
  }

  .client-engagement-section__lead {
    font-size: 16px;
  }

  .client-engagement-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 0;
  }

  .client-engagement-item {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  /* Visual order: Siemens, Deutsche, Tata, Emirates, NASDAQ, Home Depot */
  .client-engagement-item:nth-child(3) {
    order: 4;
    border-bottom: none;
    padding-bottom: 0;
  }

  .client-engagement-item:nth-child(4) {
    order: 3;
    border-bottom: none;
    padding-bottom: 0;
  }

  .client-engagement-item:nth-child(1),
  .client-engagement-item:nth-child(2) {
    padding-top: 0;
  }

  .client-engagement-item__logo {
    height: 28px;
    max-width: 120px;
    margin-bottom: 16px;
  }

  .client-engagement-item__name {
    font-size: 16px;
  }

  .client-engagement-item__desc {
    font-size: 13px;
  }
}

/* =============== Industry Recognition and Awards =============== */
.awards-section.f1_section {
  padding: 80px 0 !important;
}

.awards-section__header {
  margin-bottom: 56px;
  text-align: left;
}

.awards-section__title {
  margin: 0 0 24px;
  font-size: 44px;
  font-weight: 300;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: left;
}

.awards-section__lead {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: #cfd0d2;
  text-align: left;
}

.awards-section__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.awards-row {
  display: grid;
  grid-template-columns: 52fr 48fr;
  gap: 20px;
  align-items: start;
}

.awards-row--alt {
  grid-template-columns: 48fr 52fr;
}

.awards-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
  width: 100%;
}

.awards-card--wide {
  aspect-ratio: 52 / 25;
}

.awards-card--narrow {
  aspect-ratio: 48 / 25;
}

.awards-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

.awards-mobile {
  display: none;
}

.awards-title-break {
  display: none;
}

@media (max-width: 767px) {
  .awards-section.f1_section {
    padding: 48px 0 !important;
    overflow: hidden;
  }

  .awards-section__header {
    margin-bottom: 32px;
  }

  .awards-section__title {
    font-size: 32px;
  }

  .awards-title-break {
    display: inline;
  }

  .awards-section__lead {
    font-size: 16px;
  }

  .awards-section__grid {
    display: none;
  }

  .awards-mobile {
    display: block;
  }

  .awards-swiper {
    overflow: visible;
  }

  .awards-swiper .swiper-slide {
    width: 82%;
  }

  .awards-mobile .awards-card {
    aspect-ratio: 3 / 4;
    border-radius: 24px;
    background: #0b0d17;
  }

  .awards-mobile .awards-card img {
    border-radius: 24px;
    object-fit: cover;
  }

  .awards-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }

  .awards-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.28);
    opacity: 1;
  }

  .awards-pagination .swiper-pagination-bullet-active {
    background: #4f2ede;
  }
}

/* Scroll offset for sticky header when jumping to form */
#lead_generation {
  scroll-margin-top: 96px;
}

@media (max-width: 767px) {
  .faq_section.f1_section {
    padding-bottom: 0 !important;
  }
}
