/* Services page ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Figma node 1027:5455 (PP Telegraf + Urbanist) */

@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,400;0,600;0,700;1,400&display=swap");

:root {
  --svc-black: #1e1e1e;
  --svc-bg-light: #f4f4f2;
  --svc-bg-section: #ebe9e4;
  --svc-purple: #8b44f5;
  --svc-blue: #2563eb;
  --svc-white: #f9fafb;
  --svc-pad-x: min(133px, 8vw);
  --svc-max: 1657px;
  --svc-radius-lg: 32px;
  --svc-radius-md: 24px;
  --font-urbanist: "Urbanist", system-ui, sans-serif;
  /* Figma exact sizes (px) */
  --fs-hero-line: 149.322px;
  --fs-badge: 31.998px;
  --fs-kicker-lg: 34.664px;
  --fs-kicker-sm: 26px;
  --fs-h2-64: 64px;
  --fs-h2-lh: 66.8px;
  --fs-about-right: 85.327px;
  --fs-body-32: 31.998px;
  --fs-body-24: 24px;
  --fs-body-21: 21.332px;
  --fs-tab-active: 26px;
  --fs-tab-inactive: 24px;
  --fs-stat-num: 63.995px;
  --fs-stat-lbl: 23.998px;
  --fs-card-title-36: 36px;
  --fs-glass-18: 18px;
  --fs-glass-20: 20px;
  --fs-btn-txt: 20px;
  --fs-footer-cta: 26.66px;
  --fs-usp-h2: 85.327px;
  --lh-usp-h2: 89.06px;
  --ls-usp-h2: -0.8533px;
  --fs-usp-pill: 31.998px;
  --svc-pill-cta-fs: clamp(18px, 1.45vw, 26.66px);
  --svc-why-card-radius: 42.663px;
}

html,
body {
  background: var(--svc-bg-light);
}

/* --- Nav active --- */
.n-links a.active {
  color: var(--svc-blue);
  opacity: 1;
}

/* Purple / blue pill overrides */
.pill--mag.pill--purple {
  --pill-accent: var(--svc-purple);
}

.pill--mag.pill--svc-blue {
  --pill-accent: var(--svc-blue);
}

/* ========== SEC: HERO ========== */
#sec-hero {
  margin-top: 0;
  padding-top: 0;
  background: #ffffff;
}

.svc-hero-wrap {
  position: relative;
  min-height: 1011px;
  border-radius: 31.998px;
  margin: 0;
  overflow: hidden;
  background: var(--svc-black);
  border: 14px solid #ffffff;
  box-sizing: border-box;
}

.svc-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.svc-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.54);
}

.svc-hero__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

#navbar {
  position: fixed;
  left: 50%;
  top: 22px;
  transform: translateX(-50%);
  z-index: 9500;
  width: min(1653.208px, calc(100% - 64px));
  max-width: 1653.208px;
  margin: 0;
  padding: 14px 18px;
  border-radius: 20px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, top 0.28s ease;
}

#navbar.stuck {
  top: 12px;
  box-shadow: none;
}

#navbar.nav-light {
  background: rgba(249, 250, 251, 0.94);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

#navbar .n-logo {
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 1;
  color: var(--svc-white);
}

#navbar .n-links {
  gap: 21.332px;
}

#navbar .n-links a {
  font-size: clamp(19px, 1.65vw, 32px);
  color: var(--svc-white);
  letter-spacing: -0.01em;
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  overflow: hidden;
  height: 1.1em;
  transition: color 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

#navbar .n-links a span {
  display: block;
  transform: translateY(0%);
  transition: transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1);
}

#navbar .n-links a::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 100%;
  color: currentColor;
  transform: translateY(0%);
  transition: transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1);
}

#navbar .n-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s ease;
}

#navbar .n-links a.active {
  color: var(--svc-blue);
}

#navbar.nav-light .n-logo,
#navbar.nav-light .n-links a {
  color: #282828;
}

#navbar.nav-light .svc-menu-cta__txt {
  color: #282828;
}

.svc-menu-cta__dot,
.svc-menu-cta__dot svg,
.svc-menu-cta__txt,
.svc-hero-inline-cta__dot,
.svc-hero-inline-cta__dot svg,
.svc-hero-inline-cta__txt {
  transition: transform 0.28s ease, box-shadow 0.28s ease, letter-spacing 0.28s ease, color 0.28s ease, background 0.28s ease;
}

.svc-menu-cta {
  --svc-menu-dot: 63.995px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px 0 0;
  min-height: var(--svc-menu-dot);
  border-radius: 999px;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}

.svc-menu-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: var(--svc-menu-dot);
  height: var(--svc-menu-dot);
  border-radius: 999px;
  background: var(--svc-blue);
  z-index: 0;
  transition: width 0.46s cubic-bezier(0.65, 0.05, 0.36, 1), border-radius 0.46s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.svc-menu-cta__dot {
  width: var(--svc-menu-dot);
  height: var(--svc-menu-dot);
  border-radius: 50%;
  background: transparent;
  color: var(--svc-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.svc-menu-cta__dot svg {
  width: 37.331px;
  height: 37.331px;
}

.svc-menu-cta__txt {
  font-size: var(--svc-pill-cta-fs);
  line-height: 1;
  color: var(--svc-white);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.svc-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1653.208px;
  margin: 0 auto;
  padding: 377.31px 0 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.svc-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 13.332px 31.998px;
  border-radius: 31.998px;
  background: #404040;
  color: var(--svc-white);
  font-size: clamp(18px, 1.95vw, var(--fs-badge));
  letter-spacing: -0.32px;
  line-height: normal;
  margin-bottom: 27.998px;
}

.svc-hero-stage {
  position: relative;
  width: 100%;
  height: 406.636px;
}

.svc-hero__titles {
  position: absolute;
  left: 0;
  top: 0;
  width: 1191.91px;
  font-size: clamp(3rem, 7.5vw, var(--fs-hero-line));
  line-height: 126.657px;
  letter-spacing: -1.49px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--svc-white);
}

.svc-hero__titles .line-wrap {
  overflow: hidden;
  display: block;
}

.svc-hero__titles .line-inner {
  display: block;
  transform: translateY(0%);
}

.svc-hero__desc {
  position: absolute;
  left: 1040px;
  top: 115.99px;
  width: 613.287px;
  margin: 0;
  font-size: clamp(18px, 2vw, var(--fs-badge));
  letter-spacing: -0.32px;
  line-height: normal;
  color: rgba(249, 250, 251, 0.95);
  opacity: 1;
}

.svc-hero-inline-cta {
  --svc-hero-dot: 91.266px;
  --svc-hero-fill: var(--svc-purple);
  position: absolute;
  left: 739.94px;
  top: 303.98px;
  width: 334.641px;
  height: 91.266px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  opacity: 1;
}

.svc-hero-inline-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: var(--svc-hero-dot);
  height: var(--svc-hero-dot);
  border-radius: 999px;
  background: var(--svc-hero-fill);
  z-index: 0;
  transition: width 0.46s cubic-bezier(0.65, 0.05, 0.36, 1), border-radius 0.46s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.svc-hero-inline-cta__dot {
  width: var(--svc-hero-dot);
  height: var(--svc-hero-dot);
  border-radius: 50%;
  background: transparent;
  color: var(--svc-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.svc-hero-inline-cta__dot svg {
  width: 53.331px;
  height: 53.331px;
}

.svc-hero-inline-cta__txt {
  margin-left: 10px;
  font-size: var(--svc-pill-cta-fs);
  line-height: normal;
  color: var(--svc-white);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

@media (hover: hover) {
  #navbar .n-links a:hover {
    transform: translateY(-1px);
  }

  #navbar .n-links a:hover span {
    transform: translateY(-100%);
  }

  #navbar .n-links a:hover::before {
    transform: translateY(-100%);
  }

  #navbar .n-links a:hover::after,
  #navbar .n-links a.active::after {
    transform: scaleX(1);
  }

  #navbar.nav-light .n-links a:hover {
    color: var(--svc-blue);
  }

  .svc-menu-cta:hover .svc-menu-cta__dot {
    transform: translateX(2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.38);
  }

  .svc-menu-cta:hover::before {
    width: 100%;
    border-radius: 999px;
  }

  .svc-menu-cta:hover .svc-menu-cta__dot svg {
    transform: translateX(2px);
  }

  .svc-menu-cta:hover .svc-menu-cta__txt {
    letter-spacing: 0;
  }

  #navbar.nav-light .svc-menu-cta:hover .svc-menu-cta__txt {
    color: var(--svc-white);
  }

  .svc-hero-inline-cta:hover .svc-hero-inline-cta__dot {
    transform: translateX(2px) scale(1.03);
    box-shadow: 0 10px 26px rgba(139, 68, 245, 0.42);
  }

  .svc-hero-inline-cta:hover::before {
    width: 100%;
    border-radius: 999px;
  }

  .svc-hero-inline-cta:hover .svc-hero-inline-cta__dot svg {
    transform: translateX(2px);
  }

  .svc-hero-inline-cta:hover .svc-hero-inline-cta__txt {
    letter-spacing: -0.02em;
  }
}

@media (max-width: 1440px) {
  .svc-hero-wrap {
    min-height: max(800px, 92vh);
  }

  .svc-hero__inner {
    padding-top: clamp(240px, 29vw, 377.31px);
    padding-left: 32px;
    padding-right: 32px;
  }

  .svc-hero-stage {
    height: auto;
    min-height: 430px;
  }

  .svc-hero__titles {
    position: relative;
    width: 100%;
    max-width: 930px;
    line-height: 0.9;
  }

  .svc-hero__desc {
    position: relative;
    left: auto;
    top: auto;
    width: min(613.287px, 100%);
    margin-top: 24px;
    opacity: 1;
  }

  .svc-hero-inline-cta {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: 91.266px;
    margin-top: 16px;
  }
}

@media (max-width: 991px) {
  .svc-menu-cta {
    --svc-menu-dot: 48px;
  }

  #navbar {
    top: 10px;
    width: calc(100% - 32px);
    flex-wrap: wrap;
    row-gap: 14px;
    padding: 10px 12px;
  }

  #navbar.stuck {
    top: 6px;
  }

  #navbar .n-logo {
    font-size: 34px;
  }

  #navbar .n-links {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
  }

  #navbar .n-links a {
    font-size: 18px;
  }

  .svc-menu-cta__dot {
    width: 48px;
    height: 48px;
  }

  .svc-menu-cta__dot svg {
    width: 26px;
    height: 26px;
  }

  .svc-menu-cta__txt,
  .svc-mini-cta__txt,
  .svc-hww2-card-cta__txt,
  .svc-hero-inline-cta__txt {
    font-size: 16px;
  }

  .svc-hero__inner {
    padding-top: 200px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .svc-badge {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .svc-hero__titles {
    font-size: clamp(3rem, 12.8vw, 149.322px);
  }

  .svc-hero-inline-cta {
    --svc-hero-dot: 64px;
    height: 64px;
    margin-top: 12px;
  }

  .svc-hero-inline-cta__dot {
    width: 64px;
    height: 64px;
  }

  .svc-hero-inline-cta__dot svg {
    width: 36px;
    height: 36px;
  }

}

/* ========== Shared: container ========== */
.svc-shell {
  max-width: var(--svc-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--svc-pad-x);
  padding-right: var(--svc-pad-x);
}

/* ========== Kicker ========== */
.svc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}

.svc-kicker__ic {
  width: 59px;
  height: 23px;
  flex-shrink: 0;
}

.svc-kicker__ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.svc-kicker__txt--lg {
  font-size: clamp(22px, 2.2vw, var(--fs-kicker-lg));
  letter-spacing: -0.3466px;
  color: var(--svc-black);
}

.svc-kicker__txt--sm {
  font-size: clamp(18px, 1.8vw, var(--fs-kicker-sm));
  letter-spacing: -0.26px;
  color: var(--svc-black);
}

/* ========== SEC 01: About Our Company ========== */
#sec-01-about-company {
  background: var(--svc-bg-light);
  color: var(--svc-black);
  padding: 96px 0 80px;
}

#sec-01-about-company .svc-shell {
  width: min(1657.208px, calc(100vw - 266.646px));
  max-width: 1657.208px;
  padding-left: 0;
  padding-right: 0;
}

.svc-ac-head {
  display: flex;
  gap: 150.655px;
  align-items: start;
  margin-bottom: 39.997px;
  width: 100%;
}

.svc-ac-head .svc-kicker {
  flex: 0 0 auto;
  min-width: max-content;
  margin-bottom: 0;
}

#sec-01-about-company .svc-kicker {
  flex-wrap: nowrap;
}

#sec-01-about-company .svc-kicker__txt--lg {
  white-space: nowrap;
}

.svc-ac-h1 {
  font-size: clamp(2rem, 5vw, var(--fs-about-right));
  line-height: 89.06px;
  letter-spacing: -0.8533px;
  text-transform: uppercase;
  font-weight: 400;
  flex: 0 0 1137.248px;
  width: 1137.248px;
  max-width: 1137.248px;
  margin: 0;
}

.svc-ac-body {
  width: 1137.248px;
  max-width: 1137.248px;
  margin-left: auto;
  padding-left: 0;
  font-size: clamp(17px, 2vw, var(--fs-body-32));
  letter-spacing: -0.32px;
  line-height: normal;
  margin-bottom: 66.662px;
}

.svc-card {
  position: relative;
  border-radius: 31.998px;
  overflow: hidden;
  min-height: 533.293px;
  height: 533.293px;
}

.svc-card--media .svc-card__ph {
  position: absolute;
  inset: 0;
}

.svc-card--media .svc-card__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: grayscale(0.15) brightness(0.55); */
}

.svc-card__glass {
  position: absolute;
  border-radius: 26.665px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(13.332px);
  -webkit-backdrop-filter: blur(13.332px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-card--a .svc-card__glass {
  left: 35.997px;
  right: 35.997px;
  top: 66.662px;
  bottom: 26.665px;
  padding: 66.662px;
}

.svc-card--b .svc-card__glass {
  left: 35.997px;
  right: 35.997px;
  top: 66.662px;
  bottom: 26.665px;
  padding: 66.662px 53.329px;
  justify-content: center;
}

.svc-card__glass p {
  font-size: clamp(1.2rem, 2.35vw, 47.996px);
  line-height: normal;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  color: var(--svc-bg-light);
  margin: 0;
  text-align: left;
}

.svc-card--cta {
  background: var(--svc-purple);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 57.329px;
  padding: 66.662px 35.997px 26.665px;
  width: 393.304px;
}

.svc-card--cta .svc-cta-title {
  font-size: clamp(2rem, 3.7vw, 63.995px);
  line-height: normal;
  letter-spacing: -0.64px;
  text-transform: uppercase;
  color: var(--svc-bg-light);
  width: 245.315px;
}

.svc-card--cta .svc-cta-deco {
  position: absolute;
  top: -1.333px;
  right: 0;
  width: 393.304px;
  max-width: none;
  pointer-events: none;
}

.svc-card--cta .svc-cta-arrow {
  position: absolute;
  bottom: 26.665px;
  right: 35.997px;
  width: 87.993px;
  height: 87.993px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-card--cta .svc-cta-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.svc-ac-cards {
  position: relative;
  display: grid;
  grid-template-columns: 738.611px 467.965px 393.304px;
  gap: 28.664px;
  align-items: center;
  width: 100%;
}

@media (max-width: 991px) {
  #sec-01-about-company .svc-shell {
    width: calc(100% - 32px);
    max-width: none;
  }

  .svc-ac-head {
    flex-direction: column;
    gap: 20px;
  }

  .svc-ac-head .svc-kicker,
  .svc-ac-h1,
  .svc-ac-body {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .svc-ac-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .svc-card,
  .svc-card--cta {
    width: 100%;
    height: auto;
    min-height: 420px;
  }

  .svc-ac-body {
    margin-left: 0;
    margin-bottom: 26px;
  }

  .svc-card--a .svc-card__glass,
  .svc-card--b .svc-card__glass {
    left: 20px;
    right: 20px;
    top: 32px;
    bottom: 20px;
    padding: 28px;
  }

  .svc-card--cta .svc-cta-deco {
    width: 52%;
  }
}

/* ========== SEC 02: iOS Services / Component 1 ========== */
#sec-02-ios-services {
  background: var(--svc-bg-light);
  padding: 66.662px 0;
}

#sec-02-ios-services .svc-shell {
  width: min(1655.875px, calc(100vw - 266.646px));
  max-width: 1655.875px;
  padding-left: 0;
  padding-right: 0;
}

.svc-ios-head {
  display: flex;
  gap: 150.655px;
  align-items: flex-start;
  margin-bottom: 66.662px;
  width: 100%;
}

.svc-ios-head .svc-kicker {
  flex: 0 0 326.642px;
  margin-bottom: 0;
}

.svc-ios-kicker-txt {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 34.664px;
  font-weight: 400;
  letter-spacing: -0.3466px;
  white-space: nowrap;
  color: var(--svc-black);
  line-height: normal;
}

.svc-ios-h2 {
  font-size: clamp(2rem, 5vw, 85.33px);
  line-height: 89.06px;
  letter-spacing: -0.8533px;
  text-transform: uppercase;
  width: 1178.578px;
  max-width: 1178.578px;
  margin: 0;
  color: var(--svc-black);
}

.svc-ios-body {
  display: flex;
  gap: 142.656px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.svc-ios-nav {
  width: 334.641px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  min-height: 410.636px;
  padding-right: 0;
}

.svc-ios-nav button {
  background: none;
  border: none;
  text-align: left;
  padding: 15.999px 0 14px;
  cursor: pointer;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.26px;
  color: var(--svc-black);
  border-bottom: none;
  transition: color 0.22s ease, transform 0.22s ease;
  width: max-content;
  position: relative;
}

.svc-ios-nav button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s ease;
}

.svc-ios-nav button.is-active {
  color: var(--svc-purple);
  font-size: 26px;
  letter-spacing: -0.26px;
}

.svc-ios-nav button.is-active::after {
  transform: scaleX(1);
}

@media (hover: hover) {
  .svc-ios-nav button:hover {
    transform: translateX(2px);
    color: #8b44f5;
  }
  .svc-ios-nav button:hover::after {
    transform: scaleX(1);
  }
}

.svc-ios-viewport {
  width: 1178.578px;
  height: 410.636px;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
}

.svc-ios-track {
  position: absolute;
  left: 0;
  top: 0;
  width: 1178.578px;
  will-change: transform;
}

.svc-ios-card {
  height: 410.636px;
  background: #fff;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 510.628px;
  gap: 0;
  padding: 15.999px 15.999px 15.999px 66.662px;
  align-items: stretch;
  margin-bottom: 117.324px;
  position: relative;
  box-shadow: none;
}

.svc-ios-card:last-child {
  margin-bottom: 0;
}

.svc-ios-card__deco {
  position: absolute;
  left: -42.66px;
  top: 0;
  width: 210.651px;
  height: 81.327px;
  pointer-events: none;
}

.svc-ios-card__copy {
  padding: 53.329px 0 26.665px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
}

.svc-ios-card__copy p {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 31.998px;
  font-weight: 400;
  letter-spacing: -0.32px;
  color: #282828;
  margin: 0;
  max-width: 531.96px;
  line-height: normal;
}

.svc-ios-card__media {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  height: calc(100% - 15.999px);
  align-self: start;
  margin-bottom: 15.999px;
}

.svc-ios-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Figma-style circle + text CTA used in 5511/5513 */
.svc-mini-cta {
  --svc-mini-dot: 63.995px;
  --svc-mini-fill: var(--svc-purple);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7.999px;
  min-height: var(--svc-mini-dot);
  padding: 0 12px 0 0;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  width: fit-content;
  transition: transform 0.26s ease;
}

.svc-mini-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: var(--svc-mini-dot);
  height: var(--svc-mini-dot);
  border-radius: 999px;
  background: var(--svc-mini-fill);
  z-index: 0;
  transition: width 0.46s cubic-bezier(0.65, 0.05, 0.36, 1), border-radius 0.46s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.svc-mini-cta__dot {
  width: var(--svc-mini-dot);
  height: var(--svc-mini-dot);
  border-radius: 60px;
  background: transparent;
  color: #f9fafb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.svc-mini-cta__dot svg {
  width: 37.331px;
  height: 37.331px;
  transition: transform 0.28s ease;
}

.svc-mini-cta__txt {
  font-size: var(--svc-pill-cta-fs);
  letter-spacing: -0.266px;
  line-height: normal;
  text-transform: uppercase;
  color: #282828;
  position: relative;
  z-index: 1;
  transition: letter-spacing 0.28s ease, color 0.28s ease;
}

.svc-mini-cta--light .svc-mini-cta__txt {
  color: var(--svc-white);
}

@media (hover: hover) {
  .svc-mini-cta:hover {
    transform: translateY(-1px);
  }

  .svc-mini-cta:hover .svc-mini-cta__dot {
    transform: translateX(2px) scale(1.04);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  .svc-mini-cta:hover::before {
    width: 100%;
    border-radius: 999px;
  }

  .svc-mini-cta:hover .svc-mini-cta__dot svg {
    transform: translateX(2px);
  }

  .svc-mini-cta:hover .svc-mini-cta__txt {
    letter-spacing: -0.12px;
  }
}

/* ========== SEC 03: About banner (Premier iOS) ========== */
#sec-03-about-banner {
  position: relative;
  width: min(1653.208px, calc(100vw - 270.646px));
  border-radius: 21.332px;
  margin: 133.323px auto 0;
  overflow: hidden;
  min-height: 681.282px;
}

.svc-ab-bg {
  position: absolute;
  inset: 0;
  border-radius: 21.332px;
  overflow: hidden;
}

.svc-ab-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-ab-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(92.23deg,
      rgb(30, 30, 30) 23.19%,
      rgba(65, 66, 68, 0.73) 64.82%,
      rgba(65, 66, 68, 0) 99.1%),
    linear-gradient(90deg, rgba(74, 74, 74, 0.2) 0%, rgba(74, 74, 74, 0.2) 100%);
}

.svc-ab-inner {
  position: relative;
  z-index: 2;
  padding: 53.329px 52.66px;
  min-height: 681.282px;
  overflow: hidden;
}

.svc-ab-title {
  font-size: clamp(2.1rem, 4vw, 63.995px);
  line-height: 61.329px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--svc-white);
  max-width: 819.938px;
  margin-bottom: 32px;
}

.svc-ab-desc {
  font-size: 21.332px;
  line-height: normal;
  color: var(--svc-white);
  max-width: 753.276px;
  margin-bottom: 32px;
  text-transform: capitalize;
}

.svc-ab-stats {
  position: absolute;
  left: 52.66px;
  right: 52.66px;
  bottom: 53.329px;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  column-gap: 94.66px;
  align-items: end;
}

.svc-ab-stat-num {
  font-size: 63.995px;
  line-height: 74.661px;
  color: var(--svc-white);
  display: block;
  text-align: center;
}

.svc-ab-stat-lbl {
  font-size: 23.998px;
  text-transform: uppercase;
  color: var(--svc-white);
  display: block;
  text-align: center;
}

/* ========== Frame 1027:5478 desktop rhythm ========== */
@media (min-width: 1200px) {
  #sec-01-about-company {
    min-height: 1349.275px;
  }

  #sec-02-ios-services {
    min-height: 789.621px;
    margin-top: 0;
  }

  #sec-03-about-banner {
    min-height: 681.282px;
    margin-top: 133.323px;
  }

  #sec-04-innovative {
    min-height: 1013.974px;
    margin-top: 133.323px;
    padding: 66.662px 0;
    display: flex;
    align-items: center;
  }

  #sec-05-portfolio {
    min-height: 970.593px;
    margin-top: 133.323px;
    padding: 66.662px 0;
    display: flex;
    align-items: center;
  }

  #sec-06-sprint {
    min-height: 670.976px;
    margin-top: 133.323px;
    padding: 0;
    display: flex;
    align-items: center;
  }

  #sec-07-awards {
    min-height: 761.622px;
    margin-top: 133.323px;
    padding: 66.662px 0;
    display: flex;
    align-items: center;
  }

  #sec-08-industries {
    min-height: 1187.974px;
    margin-top: 133.323px;
    padding: 66.662px 0;
    display: flex;
    align-items: center;
  }

  #sec-09-core {
    min-height: 1857.237px;
    margin-top: 133.323px;
  }

  #sec-10-usp {
    min-height: 1013.974px;
    margin-top: 133.323px;
    padding: 66.662px 0;
  }

  #sec-11-why {
    min-height: 1105.607px;
    margin-top: 133.323px;
    padding: 66.662px 0;
    display: flex;
    align-items: center;
  }

  #sec-12-clients {
    min-height: 1204.919px;
    margin-top: 133.323px;
    padding: 66.662px 0;
    display: flex;
    align-items: center;
  }

  #sec-13-hww {
    min-height: 717.974px;
    margin-top: 133.323px;
    padding: 0;
    display: flex;
    align-items: center;
  }

  #sec-14-faq {
    min-height: 1841.266px;
    margin-top: 133.323px;
    padding: 66.662px 0;
  }

  #sec-15-blog {
    min-height: 835.895px;
    margin-top: 133.323px;
    padding: 66.662px 0;
    display: flex;
    align-items: center;
  }

  #sec-16-about-cta {
    min-height: 452.977px;
    margin-top: 133.323px;
    padding: 52px var(--svc-pad-x);
  }
}

@media (max-width: 1700px) {

  #sec-02-ios-services .svc-shell,
  #sec-03-about-banner {
    width: calc(100% - 64px);
    max-width: none;
  }

  .svc-ios-head {
    gap: 32px;
  }

  .svc-ios-h2 {
    width: auto;
    max-width: none;
    flex: 1 1 auto;
  }

  .svc-ios-body {
    gap: 24px;
  }

  .svc-ios-viewport {
    width: auto;
    flex: 1;
  }

  .svc-ios-track {
    width: 100%;
  }

  .svc-ios-card {
    grid-template-columns: minmax(360px, 1fr) minmax(360px, 510.628px);
  }
}

@media (max-width: 991px) {

  #sec-02-ios-services .svc-shell,
  #sec-03-about-banner {
    width: calc(100% - 32px);
  }

  #sec-03-about-banner {
    margin-top: 44px;
  }

  .svc-ios-head {
    flex-direction: column;
    gap: 20px;
  }

  .svc-ios-head .svc-kicker {
    flex: 0 0 auto;
  }

  .svc-ios-h2 {
    font-size: clamp(2rem, 10vw, 56px);
    line-height: 1.05;
  }

  .svc-ios-body {
    flex-direction: column;
  }

  .svc-ios-nav {
    width: 100%;
    min-height: 0;
  }

  .svc-ios-nav button,
  .svc-ios-nav button.is-active {
    font-size: 24px;
    letter-spacing: -0.24px;
    padding: 16px 0;
  }

  .svc-ios-card {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 520px;
    margin-bottom: 24px;
    padding: 18px;
  }

  .svc-ios-card__deco {
    left: -12px;
    width: 120px;
    height: 46px;
  }

  .svc-ios-card__copy {
    padding: 30px 10px 10px;
    gap: 22px;
  }

  .svc-ios-card__copy p {
    font-size: 26px;
    max-width: none;
  }

  .svc-ios-card__media {
    min-height: 250px;
  }

  .svc-ab-inner {
    min-height: 0;
    padding: 32px 20px;
  }

  .svc-ab-title {
    max-width: 100%;
    font-size: clamp(2rem, 7vw, 48px);
    line-height: 1.08;
  }

  .svc-ab-desc {
    max-width: 100%;
    font-size: 18px;
    margin-bottom: 24px;
  }

  .svc-ab-stats {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 20px;
    margin-top: 28px;
  }

  .svc-ab-stat-num {
    font-size: 44px;
    line-height: 1;
  }

  .svc-ab-stat-lbl {
    font-size: 16px;
  }

  .svc-mini-cta__dot {
    width: var(--svc-mini-dot);
    height: var(--svc-mini-dot);
  }

  .svc-mini-cta__dot svg {
    width: 28px;
    height: 28px;
  }

  .svc-mini-cta__txt,
  .svc-hww2-card-cta__txt,
  .svc-hero-inline-cta__txt {
    font-size: 16px;
  }

  .svc-mini-cta {
    --svc-mini-dot: 52px;
  }
}

/* ========== SEC 04: Innovative stack ========== */
#sec-04-innovative {
  background: var(--svc-bg-light);
  padding: 50px 0;
}

#sec-04-innovative .svc-shell {
  width: min(1719.855px, calc(100vw - 200px));
  max-width: 1719.855px;
  padding-left: 0;
  padding-right: 0;
}

.svc-inn-row {
  display: grid;
  grid-template-columns: 814.605px 640px;
  gap: 92px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.svc-inn-copy {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  max-width: 814.605px;
}

.svc-inn-h2 {
  font-size: clamp(2rem, 5vw, 64px);
  line-height: var(--fs-h2-lh);
  letter-spacing: -0.64px;
  text-transform: uppercase;
  max-width: 611px;
  margin: 0;
  color: var(--svc-black);
}

.svc-inn-p {
  font-family: var(--font-urbanist);
  font-size: 31.998px;
  letter-spacing: -0.32px;
  color: var(--svc-black);
  margin: 0;
  max-width: 100%;
  line-height: normal;
}

.svc-card-stack {
  position: relative;
  height: 730px;
  width: 640px;
  max-width: 640px;
  margin-left: 0;
  justify-self: start;
}

.svc-fan-wrap {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-fan-wrap--op {
  left: 112px;
  top: 54px;
  width: 510px;
  height: 640px;
  z-index: 2;
}

.svc-fan-wrap--fd {
  left: 176px;
  top: -20px;
  width: 520px;
  height: 650px;
  z-index: 3;
}

.svc-fan-wrap--sp {
  left: 146px;
  top: 34px;
  width: 465px;
  height: 615px;
  z-index: 4;
}

.svc-fan-wrap--es {
  left: 28px;
  top: 66px;
  width: 565px;
  height: 680px;
  z-index: 5;
}

#sec-04-innovative .svc-kicker__txt--sm {
  font-size: 26px;
  letter-spacing: -0.26px;
  white-space: nowrap;
}

#sec-04-innovative .svc-mini-cta--compact {
  --svc-mini-dot: 63.995px;
}

#sec-04-innovative .svc-mini-cta--compact .svc-mini-cta__dot svg {
  width: 37.331px;
  height: 37.331px;
}

#sec-04-innovative .svc-mini-cta--compact .svc-mini-cta__txt {
  font-size: 26.66px;
  letter-spacing: -0.266px;
}

.svc-fan-card {
  position: relative;
  width: 430px;
  height: 572px;
  background: var(--svc-black);
  border-radius: 24px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  padding: 34px 44px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  transform-origin: center;
  justify-content: center;
  cursor: pointer;
  will-change: transform, opacity;
  transition: box-shadow 0.24s ease, background-color 0.28s ease;
}

.svc-fan-card--op {
  transform: rotate(-8.37deg);
}

.svc-fan-card--fd {
  transform: rotate(8.71deg);
}

.svc-fan-card--sp {
  transform: rotate(-2.91deg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.svc-fan-card--es {
  transform: rotate(-15.77deg);
}

.svc-fan-card[data-fan-state="straight"] {
  background: #8b44f5;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
}

.svc-fan-card--es h3 {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-weight: 400;
}

.svc-fan-card--es p {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
}

.svc-fan-card h3 {
  font-family: var(--font-urbanist);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  color: var(--svc-bg-light);
  margin: 0;
  line-height: 1.04;
}

.svc-fan-card p {
  font-family: var(--font-urbanist);
  font-size: 26px;
  letter-spacing: -0.24px;
  color: var(--svc-bg-light);
  margin: 0;
  line-height: 1.16;
  max-width: 330px;
}

.svc-fan-ic {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.svc-mini-cta--compact .svc-mini-cta__dot {
  width: var(--svc-mini-dot);
  height: var(--svc-mini-dot);
}

.svc-mini-cta--compact .svc-mini-cta__dot svg {
  width: 28px;
  height: 28px;
}

.svc-mini-cta--compact .svc-mini-cta__txt {
  font-size: var(--svc-pill-cta-fs);
  letter-spacing: -0.2px;
  color: #282828;
}

.svc-mini-cta--compact {
  --svc-mini-dot: 63.995px;
}

@media (max-width: 1200px) {
  #sec-04-innovative .svc-shell {
    width: calc(100% - 64px);
    max-width: none;
  }

  .svc-inn-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .svc-card-stack {
    margin: 60px auto 0;
    width: min(640px, 100%);
    max-width: 100%;
    height: 700px;
  }

  .svc-fan-wrap {
    transform: scale(0.82);
    transform-origin: center;
  }
}

/* ========== SEC 05: Portfolio ========== */
#sec-05-portfolio {
  background: var(--svc-bg-light);
  padding: 66.662px 0;
}

#sec-05-portfolio .svc-shell {
  width: min(1655.875px, calc(100vw - 266.646px));
  max-width: 1655.875px;
  padding-left: 0;
  padding-right: 0;
}

.svc-port-row {
  display: grid;
  grid-template-columns: 634.619px 885.266px;
  gap: 136.656px;
  align-items: center;
}

.svc-port-copy {
  max-width: 885.266px;
}

.svc-port-h2 {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 85.327px);
  line-height: 89.06px;
  letter-spacing: -0.8533px;
  text-transform: uppercase;
  color: #1e1e1e;
  margin: 0 0 39.997px;
}

.svc-port-p {
  font-size: 31.998px;
  letter-spacing: -0.32px;
  line-height: normal;
  color: var(--svc-black);
  margin-bottom: 39.997px;
  max-width: 885px;
}

.svc-port-img {
  border-radius: 26.665px;
  overflow: hidden;
  min-height: 837.27px;
  height: 837.27px;
  background: #ececec;
  box-shadow: 0 5.333px 41.33px rgba(0, 0, 0, 0.15);
}

.svc-port-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  #sec-05-portfolio .svc-shell {
    width: calc(100% - 32px);
    max-width: none;
  }

  .svc-port-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .svc-port-img {
    min-height: 520px;
    height: auto;
  }

  .svc-port-h2 {
    font-size: clamp(2rem, 10vw, 56px);
    line-height: 1.04;
  }

  .svc-port-p {
    font-size: 22px;
  }
}

/* ========== SEC 06: Sprint CTA ========== */
#sec-06-sprint {
  background: var(--svc-bg-light);
  padding: 0;
}

.svc-sprint-frame {
  width: min(1653.208px, 100%);
  margin: 0 auto;
  background: #222;
  border-radius: 31.998px;
  display: flex;
  align-items: stretch;
  gap: 15.999px;
  padding-left: 66.662px;
  overflow: hidden;
  min-height: 670.976px;
}

.svc-sprint-row {
  display: grid;
  grid-template-columns: 1fr 648px;
  gap: 48px;
  align-items: center;
}

.svc-sprint-copy {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 31.998px;
  padding: 66.662px 0;
}

.svc-sprint-copy .svc-kicker__txt--lg {
  color: var(--svc-white);
}

.svc-sprint-h2 {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 63.995px);
  line-height: 75.728px;
  letter-spacing: -0.64px;
  text-transform: uppercase;
  color: var(--svc-white);
  margin: 0;
  max-width: 871.934px;
}

.svc-sprint-p {
  font-family: var(--font-urbanist);
  font-size: 31.998px;
  line-height: normal;
  letter-spacing: -0.32px;
  color: var(--svc-white);
  margin: 0;
  max-width: 871.934px;
}

.svc-sprint-media {
  width: 647.951px;
  min-width: 647.951px;
  border-top-right-radius: 31.998px;
  border-bottom-right-radius: 31.998px;
  overflow: hidden;
  position: relative;
}

.svc-sprint-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
}

@media (max-width: 991px) {
  .svc-sprint-frame {
    width: calc(100% - 32px);
    padding-left: 20px;
    min-height: 0;
    flex-direction: column;
    gap: 20px;
  }

  .svc-sprint-copy {
    padding: 28px 0 0;
    gap: 18px;
  }

  .svc-sprint-h2 {
    font-size: clamp(2rem, 10vw, 56px);
    line-height: 1.05;
  }

  .svc-sprint-p {
    font-size: 22px;
  }

  .svc-sprint-media {
    width: 100%;
    min-width: 0;
    min-height: 320px;
    border-radius: 0 0 24px 24px;
  }
}

/* ========== SEC 07: Awards ========== */
#sec-07-awards {
  background: var(--svc-bg-light);
  padding: 66.662px 0;
}

#sec-07-awards .svc-shell {
  width: min(1653.208px, calc(100vw - 266.646px));
  max-width: 1653.208px;
  padding-left: 0;
  padding-right: 0;
}

.svc-aw-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 85.327px;
  width: 100%;
}

.svc-aw-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 61.329px;
  width: 1281.237px;
  max-width: 100%;
}

.svc-aw-title {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: clamp(3rem, 7vw, 125.324px);
  line-height: 107.992px;
  letter-spacing: 0;
  margin: 0;
  color: var(--svc-black);
  text-transform: uppercase;
  text-align: center;
}

.svc-aw-sub {
  font-size: 26.665px;
  line-height: normal;
  max-width: 1281px;
  margin: 0;
  color: #282828;
  text-align: center;
  text-transform: capitalize;
}

.svc-aw-cta .svc-mini-cta__txt {
  color: #282828;
}

.svc-aw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 66.662px;
  max-width: 1653px;
  margin: 0;
  width: 100%;
}

.svc-aw-cell {
  background: #fafafa;
  border-radius: 26.665px;
  min-height: 94.557px;
  padding: 26.665px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.svc-aw-cell--thin {
  padding: 26.665px 13.332px;
}

.svc-aw-cell .pic {
  width: 100%;
  max-width: 267.313px;
  height: 41.227px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-aw-cell--thin .pic {
  width: 100%;
  max-width: 262.647px;
  height: 41.33px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-aw-cell img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center;
  display: block;
}

.svc-aw-cell--thin img {
  height: 100%;
}

.svc-aw-clutch {
  font-family: var(--font-urbanist);
  font-size: 41px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #253746;
}

@media (max-width: 768px) {
  #sec-07-awards .svc-shell {
    width: calc(100% - 32px);
  }

  .svc-aw-wrap {
    gap: 40px;
  }

  .svc-aw-head {
    gap: 28px;
  }

  .svc-aw-title {
    font-size: clamp(2.2rem, 12vw, 76px);
    line-height: 1;
  }

  .svc-aw-sub {
    font-size: 18px;
  }

  .svc-aw-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .svc-aw-cell {
    padding: 16px;
    border-radius: 16px;
  }

  .svc-aw-cell .pic,
  .svc-aw-cell--thin .pic {
    width: min(100%, 180px);
    height: 30px;
  }

  .svc-aw-clutch {
    font-size: 28px;
  }
}

/* ========== SEC 08: Industries long ========== */
#sec-08-industries {
  background: var(--svc-bg-light);
  padding: 66.662px 0;
}

#sec-08-industries .svc-shell {
  width: min(1653.208px, calc(100vw - 266.646px));
  max-width: 1653.208px;
  padding-left: 0;
  padding-right: 0;
}

.svc-ind2-wrap {
  display: flex;
  align-items: center;
  gap: 160px;
  width: 100%;
}

.svc-ind2-copy {
  width: 799.94px;
  flex-shrink: 0;
}

#sec-08-industries .svc-kicker {
  margin-bottom: 30px;
}

.svc-ind2-h2 {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 85.327px);
  line-height: 89.06px;
  letter-spacing: -0.8533px;
  max-width: 799.94px;
  margin: 0 0 52px;
  text-transform: uppercase;
  color: #1e1e1e;
}

.svc-ind2-p {
  font-size: 23.998px;
  letter-spacing: -0.24px;
  line-height: normal;
  max-width: 799.94px;
  margin-bottom: 46px;
  color: #1e1e1e;
}

.svc-ind2-acc {
  width: 719.946px;
  display: flex;
  flex-direction: column;
  gap: 13.332px;
}

.svc-ind2-item {
  background: #1e1e1e;
  border-radius: 24px;
  box-shadow: 0 5.333px 39.997px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: background 0.46s ease;
}

.svc-ind2-trigger {
  width: 100%;
  border: none;
  background: transparent;
  color: #f4f4f2;
  display: flex;
  align-items: center;
  gap: 10.666px;
  padding: 26.665px 39.997px;
  text-align: left;
  cursor: pointer;
}

.svc-ind2-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.svc-ind2-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.88;
  transition: transform 0.38s ease, filter 0.38s ease, opacity 0.38s ease;
}

.svc-ind2-label {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 32px;
  line-height: normal;
  letter-spacing: -0.32px;
  color: currentColor;
  transition: transform 0.38s ease;
}

.svc-ind2-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.58s ease, opacity 0.42s ease, padding 0.42s ease;
  padding: 0 39.997px;
}

.svc-ind2-panel p {
  margin: 0;
  font-family: var(--font-urbanist);
  font-size: 20px;
  line-height: normal;
  letter-spacing: -0.12px;
  color: #282828;
}

.svc-ind2-item.is-open {
  background: #f9fafb;
  position: relative;
}

.svc-ind2-item.is-open::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 92px;
  height: 40px;
  background:
    linear-gradient(145deg, transparent 44%, #c8125f 45%) left / 50% 100% no-repeat,
    linear-gradient(145deg, transparent 44%, #c8125f 45%) right / 50% 100% no-repeat;
}

.svc-ind2-item.is-open .svc-ind2-trigger {
  color: #282828;
  padding-bottom: 8px;
}

.svc-ind2-item.is-open .svc-ind2-label {
  transform: translateX(2px);
}

.svc-ind2-item.is-open .svc-ind2-icon img {
  filter: brightness(0.22);
  opacity: 0.84;
}

.svc-ind2-item.is-open .svc-ind2-panel {
  max-height: 230px;
  opacity: 1;
  padding: 0 39.997px 26.665px;
}

@media (max-width: 1200px) {
  #sec-08-industries .svc-shell {
    width: calc(100% - 64px);
    max-width: none;
  }

  .svc-ind2-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .svc-ind2-copy,
  .svc-ind2-acc {
    width: 100%;
  }
}

@media (max-width: 991px) {
  #sec-08-industries .svc-shell {
    width: calc(100% - 32px);
  }

  .svc-ind2-h2 {
    font-size: clamp(2rem, 10vw, 64px);
    line-height: 1.05;
  }

  .svc-ind2-p {
    font-size: 22px;
  }

  .svc-ind2-trigger {
    padding: 18px 20px;
  }

  .svc-ind2-label {
    font-size: 24px;
  }

  .svc-ind2-panel,
  .svc-ind2-item.is-open .svc-ind2-panel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .svc-ind2-panel p {
    font-size: 18px;
  }
}

/* ========== SEC 09: Core expertise header + slides ========== */
#sec-09-core {
  background: var(--svc-bg-light);
  padding: 66.662px 0;
  position: relative;
  overflow-x: clip;
}

#sec-09-core .svc-shell {
  width: min(1919.855px, 100%);
  max-width: 1919.855px;
  padding: 0 133.323px;
}

.svc-core-head {
  display: flex;
  align-items: flex-start;
  gap: 150.655px;
  width: 100%;
  margin-bottom: 39.997px;
}

.svc-core-kicker {
  flex: 0 0 391.995px;
  padding: 13.332px 0;
}

.svc-core-kicker .svc-kicker__ic {
  width: 58.662px;
  height: 22.665px;
}

.svc-core-kicker .svc-kicker__ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.svc-core-kicker .svc-kicker__txt--lg {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 34.664px;
  letter-spacing: -0.3466px;
  line-height: normal;
}

.svc-core-h2 {
  flex: 1 1 auto;
  margin: 0;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: clamp(2.5rem, 5vw, 85.327px);
  line-height: 89.06px;
  letter-spacing: -0.8533px;
  text-transform: uppercase;
  color: #1e1e1e;
}

.svc-core-intro {
  padding-left: 542.65px;
  width: 100%;
  margin-bottom: 66.662px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 39.997px;
}

.svc-core-intro p {
  margin: 0;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 31.998px;
  line-height: normal;
  letter-spacing: -0.32px;
  color: #1e1e1e;
}

.svc-core-canvas {
  width: min(1919.855px, 100%);
  max-width: 1919.855px;
  padding: 0 133.323px 66.662px;
  margin: 0 auto;
  position: relative;
  isolation: isolate;
}

.svc-core-stack {
  position: relative;
  min-height: 803.939px;
}

.svc-ce-slide {
  position: relative;
  width: 100%;
  min-height: 803.939px;
  border-radius: 24px;
  overflow: hidden;
  padding: 39.997px;
}

.svc-ce-slide__bg {
  position: absolute;
  inset: 0;
}

.svc-ce-slide__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-ce-slide__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 24px;
}

.svc-ce-glass {
  position: relative;
  z-index: 2;
  backdrop-filter: blur(13.332px);
  -webkit-backdrop-filter: blur(13.332px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 66.662px;
  display: flex;
  flex-direction: column;
  gap: 21.332px;
  align-items: flex-end;
}

.svc-ce-glass h3 {
  width: 100%;
  margin: 0;
  font-family: "pp_telegrafultrabold", "pp_telegrafregular", system-ui, sans-serif;
  font-size: 32px;
  line-height: normal;
  letter-spacing: -0.32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #f4f4f2;
}

.svc-ce-glass>p.lead {
  margin: 0;
  width: 100%;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 24px;
  line-height: normal;
  letter-spacing: -0.24px;
  color: #f4f4f2;
}

.svc-ce-pillrow {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15.999px;
}

.svc-ce-pill {
  display: flex;
  align-items: flex-start;
  gap: 26.665px;
  width: max-content;
  max-width: 100%;
  background: rgba(244, 244, 242, 0.2);
  border-radius: 24px;
  padding: 15.999px 26.665px;
}

.svc-ce-pill strong {
  font-family: "pp_telegrafultrabold", "pp_telegrafregular", system-ui, sans-serif;
  font-size: 26.66px;
  line-height: normal;
  letter-spacing: -0.2666px;
  color: #1e1e1e;
  font-weight: 700;
  white-space: nowrap;
}

.svc-ce-pill span {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 24px;
  line-height: normal;
  letter-spacing: -0.24px;
  color: #1e1e1e;
  white-space: nowrap;
}

.svc-ce-foot {
  width: 100%;
  margin: 0;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 26.66px;
  line-height: normal;
  letter-spacing: -0.2666px;
  text-align: right;
  color: #f4f4f2;
}

.svc-core-slide-cta {
  margin-top: 4px;
}

.svc-core-slide-cta .svc-mini-cta__txt {
  color: #f9fafb;
}

.svc-ce-slide--urban h3,
.svc-ce-slide--urban .svc-ce-pill strong {
  font-family: var(--font-urbanist);
  font-weight: 600;
}

.svc-ce-slide--urban>.svc-ce-glass>p.lead,
.svc-ce-slide--urban .svc-ce-pill span,
.svc-ce-slide--urban .svc-ce-foot {
  font-family: var(--font-urbanist);
  font-weight: 400;
}

@media (min-width: 992px) {
  .svc-core-stack [data-core-card] {
    position: absolute;
    inset: 0;
  }
}

@media (max-width: 1700px) {

  #sec-09-core .svc-shell,
  .svc-core-canvas {
    padding-left: 32px;
    padding-right: 32px;
  }

  .svc-core-head {
    gap: 66px;
  }

  .svc-core-kicker {
    flex-basis: 300px;
  }

  .svc-core-h2 {
    line-height: 1.05;
  }

  .svc-core-intro {
    padding-left: clamp(0px, 24vw, 440px);
  }

  .svc-ce-pill {
    width: 100%;
    flex-wrap: wrap;
  }

  .svc-ce-pill span {
    white-space: normal;
  }
}

@media (max-width: 991px) {
  #sec-09-core {
    padding: 48px 0;
  }

  #sec-09-core .svc-shell,
  .svc-core-canvas {
    padding-left: 16px;
    padding-right: 16px;
  }

  .svc-core-head {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
  }

  .svc-core-kicker {
    flex-basis: auto;
    padding: 0;
  }

  .svc-core-kicker .svc-kicker__txt--lg {
    font-size: 24px;
  }

  .svc-core-intro {
    padding-left: 0;
    margin-bottom: 28px;
    gap: 22px;
  }

  .svc-core-intro p {
    font-size: 20px;
  }

  .svc-ce-slide {
    min-height: 0;
    padding: 16px;
    position: relative !important;
  }

  .svc-ce-glass {
    padding: 22px 16px;
    gap: 16px;
  }

  .svc-ce-glass h3 {
    font-size: 26px;
  }

  .svc-ce-glass>p.lead {
    font-size: 18px;
  }

  .svc-ce-pill strong {
    font-size: 20px;
  }

  .svc-ce-pill span {
    font-size: 18px;
  }

  .svc-ce-foot {
    font-size: 20px;
  }
}

/* ========== SEC 10: USP Section (Figma 1027:5656) ========== */
#sec-10-usp {
  position: relative;
  background: var(--svc-bg-light);
  padding: 66.662px 0;
}

#sec-10-usp .svc-shell {
  width: min(1919.855px, 100%);
  max-width: 1919.855px;
  padding: 0 133.323px;
}

.svc-usp-wrap {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 91.993px;
}

/* USP: pill board only (no left copy column) — full width, same drag + drop animation */
.svc-usp-wrap.svc-usp-wrap--board-full {
  justify-content: stretch;
  gap: 0;
}

.svc-usp-wrap.svc-usp-wrap--board-full .svc-usp-board-col {
  width: 100%;
  flex: 1 1 auto;
  max-width: none;
}

.svc-usp-wrap.svc-usp-wrap--board-full .svc-usp-panel {
  width: 100%;
  max-width: none;
}

.svc-usp-copy {
  width: 814.605px;
  flex: 0 0 814.605px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 39.997px;
}

.svc-usp-kicker {
  margin: 0;
  padding: 13.332px 0;
}

.svc-usp-kicker .svc-kicker__ic {
  width: 58.662px;
  height: 22.665px;
}

.svc-usp-kicker .svc-kicker__ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.svc-usp-kicker .svc-kicker__txt--lg {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 34.664px;
  line-height: normal;
  letter-spacing: -0.3466px;
}

.svc-usp-h2 {
  width: 814.605px;
  margin: 0;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 85.327px);
  line-height: 89.06px;
  letter-spacing: -0.8533px;
  text-transform: uppercase;
  color: #1e1e1e;
  font-weight: 400;
}

.svc-usp-lead {
  width: 100%;
  margin: 0;
  font-family: var(--font-urbanist);
  font-size: 31.998px;
  letter-spacing: -0.32px;
  line-height: normal;
  color: #1e1e1e;
}

.svc-usp-board-col {
  width: 746.61px;
  flex: 0 0 746.61px;
  display: flex;
}

.svc-usp-panel {
  position: relative;
  border: 1.333px solid #222;
  border-radius: 31.998px;
  background: var(--svc-bg-light);
  overflow: hidden;
  width: 746.61px;
  min-height: 879.875px;
  height: 879.875px;
  touch-action: none;
  cursor: grab;
  box-sizing: border-box;
}

.svc-usp-panel.dragging {
  cursor: grabbing;
}

.svc-usp-pill-field {
  position: absolute;
  inset: 0;
  will-change: transform;
  user-select: none;
}

.svc-usp-pill-wrap {
  position: absolute;
  left: var(--u);
  top: var(--v);
  transform: translate(-50%, -50%);
}

.svc-usp-pill-float {
  display: block;
  will-change: transform;
}

.svc-usp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(var(--rot, 0deg));
  min-height: 75.994px;
  padding: 15.999px 31.998px;
  border-radius: 31.998px;
  background: #f9fafb;
  box-shadow: 0 5.333px 39.997px rgba(0, 0, 0, 0.1);
  font-size: clamp(16px, 2.2vw, var(--fs-usp-pill));
  letter-spacing: -0.32px;
  white-space: nowrap;
  font-weight: 400;
  line-height: 1.1;
}

@media (max-width: 1700px) {
  #sec-10-usp .svc-shell {
    padding-left: 32px;
    padding-right: 32px;
  }

  .svc-usp-wrap {
    gap: 42px;
  }

  .svc-usp-copy,
  .svc-usp-board-col {
    width: calc((100% - 42px) / 2);
    flex: 1 1 0;
  }

  .svc-usp-h2 {
    width: 100%;
    line-height: 1.05;
  }

  .svc-usp-panel {
    width: 100%;
  }

  .svc-usp-wrap.svc-usp-wrap--board-full .svc-usp-board-col {
    width: 100% !important;
    flex: 1 1 auto !important;
    max-width: none !important;
  }

  .svc-usp-wrap.svc-usp-wrap--board-full .svc-usp-panel {
    width: 100% !important;
    max-width: none !important;
  }
}

@media (max-width: 991px) {
  #sec-10-usp {
    padding: 48px 0;
  }

  #sec-10-usp .svc-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .svc-usp-wrap {
    flex-direction: column;
    gap: 24px;
  }

  .svc-usp-copy,
  .svc-usp-board-col {
    width: 100%;
    flex: 1 1 auto;
  }

  .svc-usp-wrap.svc-usp-wrap--board-full {
    gap: 0;
  }

  .svc-usp-wrap.svc-usp-wrap--board-full .svc-usp-board-col {
    width: 100%;
    max-width: none;
  }

  .svc-usp-wrap.svc-usp-wrap--board-full .svc-usp-panel {
    width: 100%;
    max-width: none;
  }

  .svc-usp-kicker {
    padding: 0;
  }

  .svc-usp-kicker .svc-kicker__txt--lg {
    font-size: 24px;
  }

  .svc-usp-h2 {
    font-size: clamp(2rem, 10vw, 64px);
  }

  .svc-usp-lead {
    font-size: 22px;
  }

  .svc-usp-panel {
    min-height: 560px;
    height: 560px;
  }

  .svc-usp-pill {
    font-size: 20px;
    min-height: 62px;
    padding: 12px 24px;
  }
}

/* ========== SEC 11: Why choose ========== */
#sec-11-why {
  background: var(--svc-bg-light);
  padding: 66.662px 0;
}

#sec-11-why .svc-shell {
  width: min(1919.855px, 100%);
  max-width: 1919.855px;
  padding: 0 133.323px;
}

.svc-why2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 39.997px;
}

.svc-why2-head {
  display: flex;
  align-items: flex-start;
  gap: 199.985px;
  width: 100%;
}

.svc-why2-kicker {
  flex: 0 0 326.642px;
  padding: 13.332px 0;
  margin: 0;
}

.svc-why2-kicker .svc-kicker__ic {
  width: 58.662px;
  height: 22.665px;
}

.svc-why2-kicker .svc-kicker__ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.svc-why2-kicker .svc-kicker__txt--lg {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 34.664px;
  line-height: normal;
  letter-spacing: -0.3466px;
  white-space: nowrap;
}

.svc-why2-h2 {
  flex: 1 1 auto;
  margin: 0;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: clamp(2.5rem, 5vw, 85.327px);
  line-height: 89.06px;
  letter-spacing: -0.8533px;
  text-transform: uppercase;
  color: #1e1e1e;
  font-weight: 400;
}

.svc-why2-intro {
  padding-left: 526.627px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 39.997px;
}

.svc-why2-intro p {
  margin: 0;
  width: 1137.248px;
  max-width: 100%;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 31.998px;
  line-height: normal;
  letter-spacing: -0.32px;
  color: #1e1e1e;
}

.svc-why2-cards {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 0;
}

.svc-why2-stats,
.svc-why2-detail {
  background: #222;
  min-height: 477.297px;
}

.svc-why2-stats {
  flex: 0 0 555.958px;
  width: 555.958px;
  border-radius: var(--svc-why-card-radius);
  padding: 0;
  position: relative;
}

.svc-why2-stats-grid {
  width: 471.964px;
  max-width: calc(100% - 52px);
  margin: 66.662px auto;
  display: grid;
  grid-template-columns: repeat(2, 213.317px);
  justify-content: center;
  gap: 34px 30px;
}

.svc-why2-stats-grid>div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-why2-stats strong {
  display: block;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 63.995px;
  line-height: normal;
  letter-spacing: -3.8397px;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
}

.svc-why2-stats span {
  display: block;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 21.332px;
  line-height: normal;
  letter-spacing: 1.2799px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.svc-why2-detail {
  flex: 1 1 0;
  min-width: 0;
  border-radius: var(--svc-why-card-radius);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 47.996px;
  padding: 66.662px 72px;
  overflow: hidden;
}

.svc-why2-detail-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.svc-why2-ic {
  width: 94.66px;
  height: 94.66px;
  border-radius: 15.999px;
  background: rgba(139, 68, 245, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.svc-why2-ic img {
  width: 58.662px;
  height: 58.662px;
  object-fit: contain;
}

.svc-why2-detail h3 {
  margin: 0;
  width: 100%;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 26.665px;
  line-height: normal;
  letter-spacing: -1.3332px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 400;
}

.svc-why2-detail p {
  margin: 0;
  width: 100%;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 21.332px;
  line-height: normal;
  letter-spacing: -0.64px;
  text-transform: none;
  color: #fff;
}

@media (max-width: 1400px) {
  #sec-11-why .svc-shell {
    padding-left: 32px;
    padding-right: 32px;
  }

  .svc-why2-head {
    gap: 66px;
  }

  .svc-why2-h2 {
    line-height: 1.05;
  }

  .svc-why2-intro {
    padding-left: clamp(0px, 29vw, 500px);
  }

  .svc-why2-stats {
    flex-basis: 460px;
    width: 460px;
  }

  .svc-why2-stats-grid {
    max-width: calc(100% - 32px);
    margin-top: 38px;
    margin-bottom: 38px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .svc-why2-stats strong {
    font-size: clamp(38px, 4vw, 56px);
    letter-spacing: -2px;
  }

  .svc-why2-stats span {
    font-size: 16px;
    letter-spacing: 0.8px;
  }

  .svc-why2-detail {
    padding: 40px 32px;
    gap: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  #sec-11-why {
    padding: 48px 0;
  }

  #sec-11-why .svc-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .svc-why2 {
    gap: 24px;
  }

  .svc-why2-head {
    flex-direction: column;
    gap: 18px;
  }

  .svc-why2-kicker {
    padding: 0;
    flex-basis: auto;
  }

  .svc-why2-kicker .svc-kicker__txt--lg {
    font-size: 24px;
  }

  .svc-why2-h2 {
    font-size: clamp(2rem, 10vw, 64px);
  }

  .svc-why2-intro {
    padding-left: 0;
    gap: 24px;
  }

  .svc-why2-intro p {
    font-size: 22px;
  }

  .svc-why2-stats {
    width: 100%;
    flex-basis: auto;
    min-height: 0;
  }

  .svc-why2-stats-grid {
    width: 100%;
    margin: 24px auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
  }

  .svc-why2-stats strong {
    font-size: 42px;
    letter-spacing: -1.6px;
  }

  .svc-why2-stats span {
    font-size: 14px;
    letter-spacing: 0.8px;
  }

  .svc-why2-detail {
    padding: 24px 20px;
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .svc-why2-detail h3 {
    font-size: 22px;
    letter-spacing: -0.8px;
  }

  .svc-why2-detail p {
    font-size: 17px;
    line-height: 1.4;
  }
}

/* ========== SEC 12: Our Client ========== */
#sec-12-clients {
  background: var(--svc-bg-light);
  padding: 66.662px 0;
}

#sec-12-clients .svc-shell {
  width: min(1919.855px, 100%);
  max-width: 1919.855px;
  padding: 0 133.323px;
}

.svc-cl-head {
  width: 1281.237px;
  max-width: 100%;
  margin: 0 auto 66.662px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 53.329px;
}

.svc-cl-title {
  margin: 0;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: clamp(3rem, 7vw, 125.324px);
  line-height: 107.992px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #282828;
  font-weight: 400;
  text-align: center;
}

.svc-cl-desc {
  margin: 0;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 26.665px;
  line-height: normal;
  letter-spacing: -0.1px;
  color: #282828;
  text-align: center;
  text-transform: capitalize;
}

.svc-honey {
  width: 1583.88px;
  max-width: 100%;
  height: 697.281px;
  margin: 0 auto;
  position: relative;
  perspective: 1200px;
}

.svc-honey-cell {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 214.65px;
  height: 222.65px;
  border-radius: 26.665px;
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.svc-honey-cell::before,
.svc-honey-cell::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}

.svc-honey-cell::before {
  top: 0;
  height: 111.992px;
  background: #c9d9e9;
}

.svc-honey-cell::after {
  top: 111.992px;
  height: 110.658px;
  background: #ededed;
}

.svc-honey-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;
}

.svc-honey-logo {
  display: block;
  object-fit: contain;
  transition: transform 0.32s ease;
  filter: brightness(0) saturate(100%);
  -webkit-filter: brightness(0) saturate(100%);
}

@media (hover: hover) {
  .svc-honey-cell:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
  }

  .svc-honey-cell:hover .svc-honey-logo {
    transform: scale(1.04);
  }
}

.svc-honey-logo--avvo {
  width: 150.655px;
  height: 43.997px;
}

.svc-honey-logo--google {
  width: 150.655px;
  height: 49.33px;
}

.svc-honey-logo--yelp,
.svc-honey-logo--bbb {
  width: 126.657px;
  height: 49.33px;
}

@media (max-width: 1700px) {
  #sec-12-clients .svc-shell {
    padding-left: 32px;
    padding-right: 32px;
  }

  .svc-cl-head {
    margin-bottom: 42px;
    gap: 30px;
  }

  .svc-cl-title {
    line-height: 1.02;
  }

  .svc-cl-desc {
    font-size: 22px;
  }

  .svc-honey {
    height: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
  }

  .svc-honey-cell {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 214.65px;
    height: 222.65px;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  #sec-12-clients {
    padding: 48px 0;
  }

  #sec-12-clients .svc-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .svc-cl-head {
    gap: 20px;
    margin-bottom: 28px;
  }

  .svc-cl-title {
    font-size: clamp(2.2rem, 12vw, 64px);
    line-height: 1.05;
  }

  .svc-cl-desc {
    font-size: 18px;
  }

  .svc-honey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .svc-honey-cell {
    max-width: 100%;
    height: 188px;
  }

  .svc-honey-cell::before {
    height: 94px;
  }

  .svc-honey-cell::after {
    top: 94px;
    height: 94px;
  }

  .svc-honey-logo--avvo {
    width: 120px;
    height: 35px;
  }

  .svc-honey-logo--google {
    width: 120px;
    height: 39px;
  }

  .svc-honey-logo--yelp,
  .svc-honey-logo--bbb {
    width: 100px;
    height: 39px;
  }
}

/* ========== SEC 13: How we work ========== */
#sec-13-hww {
  background: var(--svc-bg-light);
  padding: 66.662px 0;
}

#sec-13-hww .svc-shell {
  width: min(1919.855px, 100%);
  max-width: 1919.855px;
  padding: 0 133.323px;
}

.svc-hww2-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 107.992px;
}

.svc-hww2-copy {
  width: 658.617px;
  flex: 0 0 658.617px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 39.997px;
}

.svc-hww2-h2 {
  margin: 0;
  width: 607.954px;
  max-width: 100%;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: clamp(3rem, 7.5vw, 133.323px);
  line-height: 107.992px;
  letter-spacing: -2.6665px;
  text-transform: capitalize;
  color: #282828;
  font-weight: 400;
}

.svc-hww2-p {
  margin: 0;
  width: 678.615px;
  max-width: 100%;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 26px;
  line-height: normal;
  letter-spacing: -0.2px;
  color: #282828;
  text-transform: capitalize;
}

.svc-hww2-steps {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15.999px;
}

.svc-hww2-step {
  width: 100%;
  border: none;
  border-radius: 21.332px;
  background: #f9fafb;
  color: #282828;
  padding: 21.332px;
  display: flex;
  align-items: center;
  gap: 10.666px;
  text-align: left;
  cursor: pointer;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 21.332px;
  line-height: normal;
  transition: background 0.28s ease, color 0.28s ease;
}

@media (hover: hover) {
  .svc-hww2-step:hover {
    background: rgba(139, 68, 245, 0.12);
  }

  .svc-hww2-step.on:hover {
    background: linear-gradient(90deg, #8b44f5 0%, #7f3ff3 100%);
  }
}

.svc-hww2-step.on {
  background: linear-gradient(90deg, #8b44f5 0%, #7f3ff3 100%);
  color: #f9fafb;
}

.svc-hww2-step span:first-child {
  width: 30px;
  flex-shrink: 0;
}

.svc-hww2-viewport {
  width: 886.6px;
  height: 495.963px;
  flex: 0 0 886.6px;
  overflow: hidden;
  position: relative;
}

.svc-hww2-track {
  display: flex;
  flex-direction: column;
  gap: 66.662px;
  will-change: transform;
}

.svc-hww2-card {
  position: relative;
  width: 886.6px;
  height: 495.963px;
  border-radius: 21.332px;
  overflow: hidden;
  padding: 66.662px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.svc-hww2-card__bg {
  position: absolute;
  inset: 0;
}

.svc-hww2-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.svc-hww2-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 32, 32, 0.6);
}

.svc-hww2-card__body {
  position: relative;
  z-index: 2;
  width: 753.276px;
  display: flex;
  flex-direction: column;
  gap: 39.997px;
}

.svc-hww2-card__body h3 {
  margin: 0;
  width: 691.948px;
  max-width: 100%;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 53.329px;
  line-height: 53.329px;
  letter-spacing: -0.4px;
  text-transform: capitalize;
  color: #f9fafb;
  font-weight: 400;
}

.svc-hww2-card__body p {
  margin: 0;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 23.998px;
  line-height: 30.664px;
  letter-spacing: -0.2px;
  text-transform: capitalize;
  color: #f9fafb;
}

.svc-hww2-card-cta {
  --svc-hww-dot: 39.997px;
  --svc-hww-fill: #f9fafb;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: var(--svc-hww-dot);
  padding: 0 8px 0 0;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  width: fit-content;
  transition: transform 0.24s ease;
}

.svc-hww2-card-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: var(--svc-hww-dot);
  height: var(--svc-hww-dot);
  border-radius: 999px;
  background: var(--svc-hww-fill);
  z-index: 0;
  transition: width 0.44s cubic-bezier(0.65, 0.05, 0.36, 1), border-radius 0.44s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.svc-hww2-card-cta__dot {
  width: var(--svc-hww-dot);
  height: var(--svc-hww-dot);
  border-radius: 49.996px;
  background: transparent;
  color: #8b44f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.svc-hww2-card-cta__dot svg {
  width: 23.332px;
  height: 23.332px;
  transition: transform 0.24s ease;
}

.svc-hww2-card-cta__txt {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: var(--svc-pill-cta-fs);
  line-height: normal;
  color: #f9fafb;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  transition: letter-spacing 0.24s ease;
}

@media (hover: hover) {
  .svc-hww2-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  }

  .svc-hww2-card:hover .svc-hww2-card__bg img {
    transform: scale(1.04);
  }

  .svc-hww2-card-cta:hover {
    transform: translateY(-1px);
  }

  .svc-hww2-card-cta:hover .svc-hww2-card-cta__dot {
    transform: translateX(2px);
    box-shadow: 0 8px 18px rgba(255, 255, 255, 0.26);
  }

  .svc-hww2-card-cta:hover::before {
    width: 100%;
    border-radius: 999px;
  }

  .svc-hww2-card-cta:hover .svc-hww2-card-cta__dot svg {
    transform: translateX(1px);
  }

  .svc-hww2-card-cta:hover .svc-hww2-card-cta__txt {
    letter-spacing: 0.2px;
    color: #8b44f5;
  }
}

@media (max-width: 1700px) {
  #sec-13-hww .svc-shell {
    padding-left: 32px;
    padding-right: 32px;
  }

  .svc-hww2-wrap {
    gap: 32px;
  }

  .svc-hww2-copy {
    width: calc((100% - 32px) * 0.43);
    flex: 1 1 0;
  }

  .svc-hww2-p {
    font-size: 24px;
  }

  .svc-hww2-viewport {
    width: calc((100% - 32px) * 0.57);
    flex: 1 1 0;
  }

  .svc-hww2-card {
    width: 100%;
    padding: 36px;
  }

  .svc-hww2-card__body {
    width: 100%;
    gap: 24px;
  }

  .svc-hww2-card__body h3 {
    width: 100%;
    font-size: 42px;
    line-height: 1.03;
  }

  .svc-hww2-card__body p {
    font-size: 20px;
    line-height: 1.35;
  }
}

@media (max-width: 991px) {
  #sec-13-hww {
    padding: 48px 0;
  }

  #sec-13-hww .svc-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .svc-hww2-wrap {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .svc-hww2-copy,
  .svc-hww2-viewport {
    width: 100%;
    flex: 1 1 auto;
  }

  .svc-hww2-h2 {
    font-size: clamp(2.4rem, 16vw, 82px);
    line-height: 0.95;
    letter-spacing: -1px;
  }

  .svc-hww2-p {
    font-size: 20px;
  }

  .svc-hww2-step {
    font-size: 18px;
    padding: 16px;
  }

  .svc-hww2-viewport {
    height: 420px;
  }

  .svc-hww2-card {
    height: 420px;
    padding: 20px 16px;
  }

  .svc-hww2-track {
    gap: 24px;
  }

  .svc-hww2-card__body h3 {
    font-size: 32px;
  }

  .svc-hww2-card__body p {
    font-size: 17px;
    line-height: 1.35;
  }
}

/* ========== SEC 14: FAQ ========== */
#sec-14-faq {
  background: var(--svc-bg-light);
  padding: 66.662px 0;
}

#sec-14-faq .svc-shell {
  width: min(1919.855px, 100%);
  max-width: 1919.855px;
  padding: 0 133.323px;
}

.svc-faq-kicker {
  margin: 0 0 66.662px;
}

.svc-faq-kicker .svc-kicker__ic {
  width: 58.662px;
  height: 22.665px;
}

.svc-faq-kicker .svc-kicker__ic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.svc-faq-kicker .svc-kicker__txt--lg {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 34.664px;
  line-height: normal;
  letter-spacing: -0.3466px;
}

.svc-faq-title {
  margin: 0 0 66.662px;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 85.327px);
  line-height: 0.999;
  letter-spacing: -3.4131px;
  text-transform: uppercase;
  color: #282828;
  max-width: 1653.208px;
}

.svc-faq2 {
  width: 1653.208px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.svc-faq2-item {
  border-bottom: 1.333px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 39.997px;
}

.svc-faq2-item+.svc-faq2-item {
  padding-top: 39.997px;
}

.svc-faq2-trigger {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 26.665px;
  padding: 0;
  text-align: left;
}

.svc-faq2-star {
  width: 43.997px;
  height: 43.997px;
  flex-shrink: 0;
}

.svc-faq2-star img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.svc-faq2-q {
  flex: 1 1 auto;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 53.329px;
  line-height: 0.99;
  letter-spacing: -2.1332px;
  color: #282828;
}

.svc-faq2-arr {
  width: 31.998px;
  height: 31.998px;
  flex-shrink: 0;
}

.svc-faq2-arr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.26s ease;
}

.svc-faq2-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-left: 70.662px;
  transition: max-height 0.32s ease, opacity 0.24s ease, margin-top 0.24s ease;
  margin-top: 0;
}

.svc-faq2-panel p {
  margin: 0;
  width: 1529.218px;
  max-width: 100%;
  font-family: "pp_telegrafultralight", "pp_telegrafregular", system-ui, sans-serif;
  font-size: 26.665px;
  line-height: normal;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #282828;
}

.svc-faq2-item.is-open .svc-faq2-q {
  color: #8b44f5;
}

.svc-faq2-item.is-open .svc-faq2-arr img {
  transform: rotate(180deg);
}

.svc-faq2-item.is-open .svc-faq2-panel {
  max-height: 320px;
  opacity: 1;
  margin-top: 26.665px;
}

@media (max-width: 1700px) {
  #sec-14-faq .svc-shell {
    padding-left: 32px;
    padding-right: 32px;
  }

  .svc-faq-kicker {
    margin-bottom: 36px;
  }

  .svc-faq-title {
    margin-bottom: 36px;
    line-height: 1.04;
    letter-spacing: -1.2px;
  }

  .svc-faq2-q {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .svc-faq2-panel p {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  #sec-14-faq {
    padding: 48px 0;
  }

  #sec-14-faq .svc-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .svc-faq-kicker {
    margin-bottom: 20px;
  }

  .svc-faq-kicker .svc-kicker__txt--lg {
    font-size: 24px;
  }

  .svc-faq-title {
    margin-bottom: 28px;
    font-size: clamp(2rem, 10vw, 64px);
    line-height: 1.03;
    letter-spacing: -1px;
  }

  .svc-faq2-item {
    padding-bottom: 20px;
  }

  .svc-faq2-item+.svc-faq2-item {
    padding-top: 20px;
  }

  .svc-faq2-trigger {
    gap: 14px;
  }

  .svc-faq2-star {
    width: 24px;
    height: 24px;
  }

  .svc-faq2-q {
    font-size: 20px;
    letter-spacing: -0.3px;
    line-height: 1.2;
  }

  .svc-faq2-arr {
    width: 22px;
    height: 22px;
  }

  .svc-faq2-panel {
    padding-left: 38px;
  }

  .svc-faq2-panel p {
    font-size: 15px;
    line-height: 1.4;
  }

  .svc-faq2-item.is-open .svc-faq2-panel {
    margin-top: 14px;
    max-height: 420px;
  }
}

/* ========== SEC 15: Blog ========== */
#sec-15-blog {
  background: var(--svc-bg-light);
  padding: 66.662px 0;
}

#sec-15-blog .svc-shell {
  width: min(1919.855px, 100%);
  max-width: 1919.855px;
  padding: 0 133.323px;
}

.svc-bl2-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90.66px;
  margin-bottom: 66.662px;
  flex-wrap: wrap;
  gap: 24px;
}

.svc-bl2-title {
  margin: 0;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: clamp(2.2rem, 5vw, 85.327px);
  line-height: 0.999;
  letter-spacing: -3.4131px;
  text-transform: uppercase;
  color: #282828;
}

.svc-bl2-nav {
  display: flex;
  align-items: center;
  gap: 26.696px;
}

.svc-bl2-btn {
  width: 85.327px;
  height: 85.327px;
  border: none;
  border-radius: 50%;
  background: #282828;
  color: #f9fafb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.svc-bl2-btn svg {
  width: 31.998px;
  height: 31.998px;
  transition: transform 0.24s ease;
}

.svc-bl2-track-wrap {
  overflow: hidden;
  width: 1621.211px;
  max-width: 100%;
}

.svc-bl-track {
  display: flex;
  gap: 34.422px;
  will-change: transform;
}

.svc-bl2-card {
  flex: 0 0 540.919px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 29.505px;
  transition: transform 0.32s ease;
}

.svc-bl2-thumb {
  width: 540.919px;
  height: 350.122px;
  border-radius: 29.505px;
  overflow: hidden;
  background: #282828;
}

.svc-bl2-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.svc-bl2-meta {
  display: flex;
  align-items: flex-start;
  gap: 19.67px;
}

.svc-bl2-chip {
  min-height: 52.125px;
  border: 0.983px solid #282828;
  border-radius: 9.835px;
  padding: 14.752px 29.505px;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 19.67px;
  line-height: normal;
  text-transform: uppercase;
  color: #282828;
}

.svc-bl2-time {
  min-height: 52.125px;
  padding: 14.752px 29.505px;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 21.332px;
  line-height: normal;
  text-transform: uppercase;
  color: #282828;
}

.svc-bl2-copy {
  margin: 0;
  width: 540.919px;
  max-width: 100%;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 21.332px;
  line-height: 27.998px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #282828;
}

@media (hover: hover) {
  .svc-bl2-btn:hover {
    transform: translateY(-2px);
    background: #8b44f5;
    box-shadow: 0 10px 26px rgba(139, 68, 245, 0.35);
  }

  .svc-bl2-btn:hover svg {
    transform: scale(1.08);
  }

  .svc-bl2-card:hover {
    transform: translateY(-4px);
  }

  .svc-bl2-card:hover .svc-bl2-thumb img {
    transform: scale(1.04);
  }
}

@media (max-width: 1700px) {
  #sec-15-blog .svc-shell {
    padding-left: 32px;
    padding-right: 32px;
  }

  .svc-bl2-head {
    margin-bottom: 42px;
  }

  .svc-bl2-btn {
    width: 70px;
    height: 70px;
  }

  .svc-bl-track {
    gap: 24px;
  }

  .svc-bl2-card {
    flex-basis: 460px;
    gap: 22px;
  }

  .svc-bl2-thumb {
    width: 460px;
    height: 300px;
  }

  .svc-bl2-copy {
    width: 460px;
    font-size: 18px;
    line-height: 1.35;
  }
}

@media (max-width: 991px) {
  #sec-15-blog {
    padding: 48px 0;
  }

  #sec-15-blog .svc-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .svc-bl2-head {
    height: auto;
    margin-bottom: 28px;
  }

  .svc-bl2-title {
    font-size: clamp(2rem, 10vw, 64px);
    letter-spacing: -1px;
  }

  .svc-bl2-nav {
    gap: 14px;
  }

  .svc-bl2-btn {
    width: 56px;
    height: 56px;
  }

  .svc-bl2-btn svg {
    width: 24px;
    height: 24px;
  }

  .svc-bl-track {
    gap: 14px;
  }

  .svc-bl2-card {
    flex: 0 0 calc(100vw - 42px);
    max-width: 400px;
    gap: 14px;
  }

  .svc-bl2-thumb {
    width: 100%;
    height: 230px;
  }

  .svc-bl2-meta {
    gap: 8px;
    flex-wrap: wrap;
  }

  .svc-bl2-chip,
  .svc-bl2-time {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 14px;
  }

  .svc-bl2-copy {
    width: 100%;
    font-size: 15px;
    line-height: 1.35;
  }
}

/* ========== SEC 16: About inline CTA ========== */
#sec-16-about-cta {
  position: relative;
  width: min(1781.214px, calc(100vw - 266.646px));
  margin: 100px auto;
  border-radius: 21.332px;
  overflow: hidden;
  min-height: 452.977px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 79.994px 53.329px;
}

.svc-aicta-bg {
  position: absolute;
  inset: 0;
  border-radius: 21.332px;
  overflow: hidden;
}

.svc-aicta-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-aicta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, 0.7);
  border-radius: 21.332px;
}

.svc-aicta-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 39.997px;
}

.svc-aicta-h {
  margin: 0;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 85.327px);
  line-height: 61.329px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--svc-white);
}

.svc-aicta-p {
  margin: 0;
  width: 991.925px;
  max-width: 100%;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 21.332px;
  color: var(--svc-white);
  line-height: normal;
  text-transform: capitalize;
}

.svc-aicta-cta .svc-mini-cta__txt {
  color: #f9fafb;
}

.svc-aicta-cta {
  --svc-mini-fill: #2563eb;
}

@media (max-width: 1700px) {
  #sec-16-about-cta {
    width: calc(100vw - 64px);
    padding: 56px 28px;
  }

  .svc-aicta-h {
    line-height: 1.04;
  }
}

@media (max-width: 991px) {
  #sec-16-about-cta {
    width: calc(100vw - 32px);
    padding: 32px 16px;
    min-height: 360px;
  }

  .svc-aicta-inner {
    gap: 20px;
  }

  .svc-aicta-h {
    font-size: clamp(2rem, 10vw, 56px);
    line-height: 1.06;
  }

  .svc-aicta-p {
    font-size: 16px;
  }
}

/* ========== SEC 17: Footer (1027:6077) ========== */
#svc-footer {
  background: #282828;
  border-top-left-radius: 74.047px;
  border-top-right-radius: 74.047px;
  padding: 133.419px 133.419px 53.367px;
  display: flex;
  flex-direction: column;
  gap: 60.038px;
}

.svc-ft2-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.svc-ft2-brand {
  width: 550.352px;
  display: flex;
  flex-direction: column;
  gap: 40.026px;
}

.svc-ft2-logo {
  margin: 0;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 115.372px;
  line-height: normal;
  text-transform: uppercase;
  color: #f9fafb;
}

.svc-ft2-desc {
  margin: 0;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 26.684px;
  line-height: 36.023px;
  text-transform: uppercase;
  color: #fafafa;
}

.svc-ft2-links {
  display: flex;
  gap: 103.066px;
}

.svc-ft2-col {
  width: 250.16px;
  display: flex;
  flex-direction: column;
  gap: 13.332px;
}

.svc-ft2-col-title {
  margin: 0 0 13.332px;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 26.684px;
  line-height: normal;
  text-transform: uppercase;
  color: #fafafa;
}

.svc-ft2-col a {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 24.015px;
  line-height: 53.367px;
  text-transform: uppercase;
  color: #f9fafb;
  text-decoration: none;
  transition: color 0.24s ease, opacity 0.24s ease;
}

.svc-ft2-mid {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.svc-ft2-hq {
  display: flex;
  align-items: flex-start;
  gap: 13.332px;
}

.svc-ft2-hq-dot {
  width: 60.612px;
  height: 60.612px;
  border-radius: 388.538px;
  background: #f9fafb;
  padding: 15.542px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-ft2-hq-dot img {
  width: 29.529px;
  height: 29.529px;
  object-fit: contain;
}

.svc-ft2-hq-title {
  margin: 10.006px 0 13.342px;
  font-family: "pp_telegrafultrabold", "pp_telegrafregular", system-ui, sans-serif;
  font-size: 36.023px;
  line-height: 50.032px;
  letter-spacing: -1.4409px;
  text-transform: uppercase;
  color: #f9fafb;
}

.svc-ft2-hq-text {
  margin: 0;
  padding-left: 13.332px;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 26.684px;
  line-height: 36.023px;
  text-transform: uppercase;
  color: #f9fafb;
}

.svc-ft2-call {
  display: inline-flex;
  align-items: center;
  gap: 15.999px;
  text-decoration: none;
  transition: transform 0.24s ease;
}

.svc-ft2-call-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-transform: uppercase;
}

.svc-ft2-call-copy small {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 24.015px;
  line-height: 40.026px;
  color: #f9fafb;
}

.svc-ft2-call-copy strong {
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 36.023px;
  line-height: 40.026px;
  letter-spacing: -1.4409px;
  font-weight: 400;
  color: #f9fafb;
}

.svc-ft2-call-dot {
  width: 77.994px;
  height: 77.994px;
  border-radius: 500px;
  background: #f9fafb;
  padding: 19.998px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.svc-ft2-call-dot img {
  width: 37.997px;
  height: 37.997px;
  object-fit: contain;
}

.svc-ft2-line {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.svc-ft2-bot {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 79.994px;
}

.svc-ft2-bot>p,
.svc-ft2-bot-r>p {
  margin: 0;
  font-family: "pp_telegrafregular", system-ui, sans-serif;
  font-size: 26.665px;
  line-height: normal;
  text-transform: uppercase;
  color: #f9fafb;
}

.svc-ft2-bot-r {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 47.996px;
}

.svc-ft2-social {
  display: flex;
  align-items: center;
  gap: 17.519px;
}

.svc-ft2-social a {
  width: 36.49px;
  height: 36.28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.svc-ft2-social a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.24s ease;
}

.svc-ft2-ig-ring {
  position: absolute;
  inset: 0;
}

.svc-ft2-ig-core {
  position: absolute;
  left: 9.17px;
  top: 9.61px;
  width: 17.825px !important;
  height: 17.723px !important;
}

@media (hover: hover) {
  .svc-ft2-col a:hover {
    color: #8b44f5;
    opacity: 1;
  }

  .svc-ft2-call:hover {
    transform: translateY(-2px);
  }

  .svc-ft2-call:hover .svc-ft2-call-dot {
    transform: translateX(2px);
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.24);
  }

  .svc-ft2-social a:hover {
    transform: translateY(-2px);
  }

  .svc-ft2-social a:hover img {
    transform: scale(1.06);
  }
}

@media (max-width: 1700px) {
  #svc-footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .svc-ft2-top {
    gap: 32px;
  }

  .svc-ft2-brand {
    width: 40%;
  }

  .svc-ft2-logo {
    font-size: 84px;
  }

  .svc-ft2-desc,
  .svc-ft2-hq-text,
  .svc-ft2-bot>p,
  .svc-ft2-bot-r>p {
    font-size: 20px;
    line-height: 1.35;
  }

  .svc-ft2-links {
    gap: 56px;
  }

  .svc-ft2-col a {
    font-size: 20px;
    line-height: 1.8;
  }

  .svc-ft2-call-copy strong {
    font-size: 29px;
  }
}

@media (max-width: 991px) {
  #svc-footer {
    border-top-left-radius: 34px;
    border-top-right-radius: 34px;
    padding: 48px 16px 24px;
    gap: 28px;
  }

  .svc-ft2-top,
  .svc-ft2-mid,
  .svc-ft2-bot,
  .svc-ft2-bot-r {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .svc-ft2-brand,
  .svc-ft2-links,
  .svc-ft2-col {
    width: 100%;
  }

  .svc-ft2-logo {
    font-size: 62px;
  }

  .svc-ft2-desc {
    font-size: 16px;
    line-height: 1.4;
  }

  .svc-ft2-links {
    gap: 22px;
  }

  .svc-ft2-col-title {
    font-size: 20px;
  }

  .svc-ft2-col a {
    font-size: 16px;
    line-height: 1.6;
  }

  .svc-ft2-hq {
    gap: 10px;
  }

  .svc-ft2-hq-dot {
    width: 46px;
    height: 46px;
    padding: 11px;
  }

  .svc-ft2-hq-dot img {
    width: 22px;
    height: 22px;
  }

  .svc-ft2-hq-title {
    margin: 0 0 6px;
    font-size: 28px;
    line-height: 1.1;
  }

  .svc-ft2-hq-text {
    padding-left: 0;
    font-size: 16px;
    line-height: 1.35;
  }

  .svc-ft2-call {
    gap: 10px;
  }

  .svc-ft2-call-copy small {
    font-size: 16px;
    line-height: 1.2;
  }

  .svc-ft2-call-copy strong {
    font-size: 26px;
    line-height: 1.2;
  }

  .svc-ft2-call-dot {
    width: 56px;
    height: 56px;
    padding: 14px;
  }

  .svc-ft2-call-dot img {
    width: 28px;
    height: 28px;
  }

  .svc-ft2-bot>p,
  .svc-ft2-bot-r>p {
    font-size: 15px;
  }

  .svc-ft2-social {
    gap: 10px;
  }
}

/* ===================Responsive ===================*/
/* / / 1600-1700px / / */
@media screen and (min-width: 1601px) and (max-width: 1700px) {
  section[id^="sec-"] .svc-shell {
    width: calc(100% - 80px) !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #navbar {
    width: calc(100% - 80px);
  }

  .svc-inn-row,
  .svc-ios-body,
  .svc-core-head,
  .svc-usp-wrap,
  .svc-hww2-wrap {
    gap: 40px !important;
  }
}

/* / / 1500-1600px / / */
@media screen and (min-width: 1500px) and (max-width: 1600px) {
  section[id^="sec-"] .svc-shell {
    width: calc(100% - 64px) !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #navbar {
    width: calc(100% - 64px);
  }

  .svc-hero__titles,
  .svc-ios-h2,
  .svc-ind2-h2,
  .svc-core-h2,
  .svc-why2-h2 {
    line-height: 1.04 !important;
  }

  .svc-ac-head,
  .svc-ios-head,
  .svc-core-head,
  .svc-why2-head {
    gap: 56px !important;
  }
}

/* / / 1300-1366-1500 / / */
@media screen and (min-width: 1300px) and (max-width: 1499px) {
  section[id^="sec-"] .svc-shell {
    width: calc(100% - 56px) !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #navbar {
    width: calc(100% - 56px);
  }

  .svc-ac-head,
  .svc-ios-head,
  .svc-core-head,
  .svc-why2-head {
    flex-direction: column !important;
    gap: 24px !important;
  }

  .svc-ac-body,
  .svc-core-intro,
  .svc-why2-intro {
    padding-left: 0 !important;
    width: 100% !important;
  }

  .svc-inn-row,
  .svc-ind2-wrap,
  .svc-usp-wrap,
  .svc-hww2-wrap {
    gap: 28px !important;
  }
}

/* / / 1100-1200px / / */
@media screen and (min-width: 1100px) and (max-width: 1299px) {
  section[id^="sec-"] .svc-shell {
    width: calc(100% - 48px) !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #navbar {
    width: calc(100% - 48px);
  }

  .svc-ios-body,
  .svc-ind2-wrap,
  .svc-usp-wrap,
  .svc-hww2-wrap {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 24px !important;
  }

  .svc-ios-nav,
  .svc-ios-viewport,
  .svc-ind2-copy,
  .svc-ind2-acc,
  .svc-usp-copy,
  .svc-usp-board-col,
  .svc-hww2-copy,
  .svc-hww2-viewport {
    width: 100% !important;
    flex: 1 1 auto !important;
  }

  .svc-why2-cards {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .svc-why2-stats,
  .svc-why2-detail {
    width: 100% !important;
    flex-basis: auto !important;
  }
}

/* / / Ipad PRO / */
@media screen and (min-width: 1000px) and (max-width: 1100px) {
  section[id^="sec-"] .svc-shell {
    width: calc(100% - 40px) !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #navbar {
    width: calc(100% - 40px);
    top: 8px;
  }

  .svc-ac-head,
  .svc-ios-head,
  .svc-core-head,
  .svc-why2-head,
  .svc-ft2-top,
  .svc-ft2-mid,
  .svc-ft2-bot,
  .svc-ft2-bot-r {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }

  .svc-honey {
    height: auto !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .svc-honey-cell {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 214.65px;
    margin: 0 auto;
  }
}

/* / / Ipad - 768px and Landspace Mode : 820px / / */
@media screen and (min-width: 100px) and (max-width: 949px) {
  section[id^="sec-"] .svc-shell {
    width: calc(100% - 32px) !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #navbar {
    width: calc(100% - 24px);
    padding: 10px 12px;
  }

  .svc-ac-head,
  .svc-ios-head,
  .svc-ios-body,
  .svc-inn-row,
  .svc-port-row,
  .svc-ind2-wrap,
  .svc-core-head,
  .svc-usp-wrap,
  .svc-why2-head,
  .svc-why2-cards,
  .svc-hww2-wrap,
  .svc-ft2-top,
  .svc-ft2-mid,
  .svc-ft2-bot,
  .svc-ft2-bot-r {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .svc-ac-body,
  .svc-core-intro,
  .svc-why2-intro {
    padding-left: 0 !important;
    width: 100% !important;
  }

  .svc-ios-nav,
  .svc-ios-viewport,
  .svc-usp-copy,
  .svc-usp-board-col,
  .svc-hww2-copy,
  .svc-hww2-viewport,
  .svc-why2-stats,
  .svc-why2-detail,
  .svc-ft2-brand,
  .svc-ft2-links,
  .svc-ft2-col {
    width: 100% !important;
    flex: 1 1 auto !important;
  }

  .svc-honey {
    height: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .svc-honey-cell {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: none !important;
    height: 180px !important;
  }
}

@media screen and (min-width: 100px) and (max-width: 602px) {
  .svc-hero__inner {
    padding-top: 188px !important;
  }

  .svc-hero__titles,
  .svc-ac-h1,
  .svc-ios-h2,
  .svc-ind2-h2,
  .svc-core-h2,
  .svc-why2-h2,
  .svc-faq-title,
  .svc-bl2-title {
    letter-spacing: -0.8px !important;
    line-height: 1.06 !important;
  }

  .svc-bl2-card {
    max-width: 100% !important;
  }

  .svc-bl2-chip,
  .svc-bl2-time {
    font-size: 12px !important;
  }
}

/* / / Mobile View / / */
@media screen and (min-width: 100px) and (max-width: 550px) {
  .svc-menu-cta {
    --svc-menu-dot: 44px !important;
  }

  #navbar .n-logo {
    font-size: 28px !important;
  }

  #navbar .n-links a {
    font-size: 14px !important;
  }

  .svc-menu-cta__txt,
  .svc-mini-cta__txt,
  .svc-hww2-card-cta__txt,
  .svc-hero-inline-cta__txt {
    font-size: 14px !important;
  }

  .svc-menu-cta__dot,
  .svc-mini-cta__dot {
    width: 44px !important;
    height: 44px !important;
  }

  .svc-mini-cta {
    --svc-mini-dot: 44px !important;
  }

  .svc-menu-cta__dot svg,
  .svc-mini-cta__dot svg {
    width: 22px !important;
    height: 22px !important;
  }

  .svc-faq2-q {
    font-size: 18px !important;
  }

  .svc-ft2-logo {
    font-size: 48px !important;
  }
}

/* Global benchmark arrow for all services-style CTAs */
.svc-menu-cta__dot svg,
.svc-mini-cta__dot svg,
.svc-hero-inline-cta__dot svg,
.svc-hww2-card-cta__dot svg {
  width: 24px !important;
  height: 24px !important;
}

.svc-menu-cta__dot svg path,
.svc-mini-cta__dot svg path,
.svc-hero-inline-cta__dot svg path,
.svc-hww2-card-cta__dot svg path {
  stroke-width: 2.2 !important;
}

/* ========== Anim hooks ========== */
[data-anim="fade-up"] {
  opacity: 0;
  transform: translateY(48px);
}

[data-anim="fade-up"].is-inview {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

@media (max-width: 768px) {
  .svc-hero-wrap {
    border-radius: 20px;
  }

  .svc-bl-card {
    flex: 0 0 88%;
  }
}