/* ============================================
   Services Page Styles
   ============================================ */

:root {
  --site-max-width: 1920px;
}


/* ============================================
   强制Services页面header使用深色文字（适应白色背景）
   ============================================ */
.services-page .main-header:not(.sticky) {
  background: transparent;
}

.services-page .main-header:not(.sticky) .nav__link,
.services-page .main-header:not(.sticky) .header-lang-toggle,
.services-page .main-header:not(.sticky) .header-fullscreen-toggle {
  color: #000000 !important;
}

.services-page .main-header:not(.sticky) .logo-img {
  filter: none !important;
}

.services-page .main-header:not(.sticky) .hamburger__line {
  background: #242424 !important;
}

/* ============================================
   Title Focus Animation - 对焦动画
   ============================================ */
.title-focus-animate {
  opacity: 0;
  filter: blur(10px);
  transform: scale(0.975);
  transition: opacity 0.5s ease-out, filter 0.5s ease-out, transform 0.5s ease-out;
}

.title-focus-animate.in-view {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/* ============================================
   Shared Layout Utilities
   ============================================ */
.sv-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 50px;
}

.sv-eyebrow {
  display: inline-block;
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sv-section-title {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  color: #000000;
  margin: 0;
  letter-spacing: -0.02em;
}

/* ============================================
   Hero Section - 使用Company页面样式
   ============================================ */
.services-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  z-index: 10;
}

.services-hero__pixel-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background: #ffffff;
}

.services-hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 50px 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}

/* ============================================
   Left Content - Title & Description
   ============================================ */
.services-hero__left {
  flex: 1;
  max-width: 680px;
}

.services-hero__title {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.4;
  color: #111111;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.services-hero__desc {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #666666;
  margin: 0 0 32px 0;
  max-width: 560px;
}

/* Buttons */
.services-hero__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 深色圆角矩形按钮 */
.services-hero .btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 28px;
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #111;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.services-hero .btn-solid:hover {
  background: #333;
}

.services-hero .btn-solid:active {
  transform: scale(0.98);
}

/* 黑色边框按钮 */
.services-hero .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 28px;
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  background: transparent;
  border: 1.5px solid #111;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.services-hero .btn-outline:hover {
  background: #111;
  color: #fff;
}

.services-hero .btn-outline:active {
  transform: scale(0.98);
}

/* ============================================
   Right Content - Stats & Tags
   ============================================ */
.services-hero__right {
  flex-shrink: 0;
  width: 630px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 30px;
}

/* Stats Text */
.services-hero__stats-text {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin: 0 0 20px 0;
  letter-spacing: 0.02em;
}

.services-hero__stats-text strong {
  font-weight: 600;
  color: #111111;
}

/* 服务项目滚动 */
.services-hero__services {
  width: 100%;
  overflow: hidden;
  margin-bottom: -30px;
  padding-top: 6px;
  margin-top: -6px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.services-hero__services-track {
  display: flex;
  width: max-content;
  animation: servicesMarquee 30s linear infinite;
}

.services-hero__services-content {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
}

.services-hero__service-item {
  display: inline-block;
  padding: 10px 20px;
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.services-hero__service-item:hover {
  background: #111111;
  color: #ffffff;
  transform: translateY(-2px);
}

@keyframes servicesMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1200px) {
  .services-hero__container {
    padding: 0 40px 60px;
    gap: 40px;
  }
  
  .services-hero__title {
    font-size: 36px;
  }
  
  .services-hero__right {
    width: 400px;
  }
}

/* iPad 适配 (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .services-hero {
    padding-top: 120px;
  }

  .services-hero__container {
    padding: 0 32px 60px;
    gap: 40px;
  }

  .services-hero__title {
    font-size: 36px;
  }

  .sv-container {
    padding: 0 32px;
  }

  .sv-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .services-hero {
    min-height: 80vh;
    padding-top: 120px;
  }
  
  .services-hero__container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px 50px;
    gap: 50px;
  }
  
  .services-hero__left {
    max-width: 100%;
  }
  
  .services-hero__title {
    font-size: 32px;
  }
  
  .services-hero__desc {
    max-width: 100%;
  }
  
  .services-hero__right {
    width: 100%;
    max-width: 100%;
    flex-shrink: 1;
  }
}

@media (max-width: 768px) {
  .services-hero {
    min-height: 80vh;
    padding-top: 100px;
  }

  .services-hero__container {
    padding: 0 20px 40px;
    gap: 36px;
  }
  
  .services-hero__title {
    font-size: 26px;
    margin-bottom: 16px;
  }
  
  .services-hero__desc {
    font-size: 14px;
    margin-bottom: 24px;
  }
  
  .services-hero__buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  
  .services-hero .btn-solid,
  .services-hero .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .services-hero__stats-text {
    font-size: 13px;
  }

  .services-hero__service-item {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .services-hero {
    min-height: 80vh;
    padding-top: 80px;
  }
  
  .services-hero__container {
    padding: 0 16px 24px;
    gap: 28px;
  }
  
  .services-hero__title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .services-hero__desc {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .services-hero .btn-solid,
  .services-hero .btn-outline {
    height: 40px;
    font-size: 13px;
    border-radius: 6px;
  }

  .services-hero__stats-text {
    font-size: 12px;
  }

  .services-hero__service-item {
    padding: 7px 14px;
    font-size: 12px;
  }

  .services-hero__services {
    margin-bottom: -20px;
  }
}

/* ============================================
   Statement Section - 服务优势宣言
   ============================================ */
.sv-statement {
  position: relative;
  z-index: 10;
  background: #000000;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sv-statement__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.sv-statement__text {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.sv-statement__text strong {
  font-weight: 600;
  color: #ffffff;
}

.sv-statement__link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.sv-statement__link:hover {
  opacity: 0.6;
}

/* ============================================
   Services Grid - 服务卡片网格
   ============================================ */
.sv-services {
  position: relative;
  z-index: 10;
  background: #ffffff;
  padding: 100px 0;
}

.sv-services__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 56px;
}

.sv-services__grid {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: stretch;
}

.sv-services__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
  height: 86vh;
}

/* ============================================
   Service Card
   ============================================ */
.sv-card {
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  flex: 1 1 0;
  min-height: 0;
  cursor: default;
  position: relative;
  transition: background 0.3s ease;
}

.sv-card:hover {
  background: #efefef;
}


.sv-card__image {
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
  flex: 0 0 180px;
}

.sv-card__pixel-bg {
  position: relative;
  background: #e8e8e8;
}

.sv-card__pixel-bg canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 悬停按钮：clip-path + translate + blur 高级入场 */
.sv-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: #000000;
  color: #ffffff;
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  white-space: nowrap;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  filter: blur(4px);
  transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    margin-top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.05s,
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s,
    filter 0.35s ease 0.05s;
  box-sizing: border-box;
}

.sv-card:hover .sv-card__btn {
  max-height: 48px;
  opacity: 1;
  margin-top: 10px;
  transform: translateY(0);
  filter: blur(0);
  pointer-events: auto;
}


.sv-card__body {
  padding: 14px 18px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.sv-card__header {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.sv-card__index {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.sv-card__title {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  line-height: 1.4;
}

.sv-card__desc {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.7;
  margin: 0;
}

.sv-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}

.sv-card__tags span {
  display: inline-block;
  padding: 4px 10px;
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  background: #ffffff;
  border-radius: 4px;
  transition: background 0.2s ease;
}


/* ============================================
   Approach Section - 服务方式对比
   ============================================ */
.sv-approach {
  position: relative;
  z-index: 10;
  background: #f5f5f5;
  padding: 100px 0;
  color: #000000;
}

.sv-approach__inner {
  background: #111111;
  border-radius: 24px;
  padding: 64px 56px;
}

.sv-approach__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}

.sv-approach__header .sv-eyebrow {
  color: rgba(255, 255, 255, 0.45);
}

.sv-approach__header .sv-section-title {
  color: #ffffff;
}

.sv-approach__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.sv-approach__card {
  border-radius: 16px;
  padding: 36px;
  background: #ffffff;
}

.sv-approach__card--ours {
  background: #ffffff;
}

.sv-approach__card--others {
  background: #ffffff;
}

.sv-approach__card-label {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 4px;
}

.sv-approach__card-label--ours {
  background: #000000;
  color: #ffffff;
}

.sv-approach__card-label--others {
  background: rgba(0, 0, 0, 0.07);
  color: rgba(0, 0, 0, 0.4);
}

.sv-approach__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sv-approach__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.sv-approach__card--ours .sv-approach__list li {
  color: #000000;
}

.sv-approach__card--others .sv-approach__list li {
  color: rgba(0, 0, 0, 0.45);
}

.sv-approach__card--ours .sv-approach__list li strong {
  color: #000000;
  font-weight: 600;
}

.sv-check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #000000;
}

.sv-cross-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(0, 0, 0, 0.2);
}

/* Stats Row */
.sv-approach__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.sv-approach__stat {
  background: transparent;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.sv-approach__stat:first-child {
  border-left: none;
}

.sv-approach__stat-num {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  min-height: 1.1em;
}

.sv-approach__stat-label {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  min-height: 1.4em;
  overflow: hidden;
  white-space: nowrap;
}

/* ============================================
   Clients Section - 客户Logo滚动
   ============================================ */
.sv-clients {
  position: relative;
  z-index: 10;
  background: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.sv-clients__header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 40px;
}

.sv-clients__desc {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  margin: 0;
}

.sv-clients__marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.sv-clients__track {
  display: flex;
  width: max-content;
  animation: svClientsMarquee 35s linear infinite;
}

.sv-clients__logo {
  height: 80px;
  width: auto;
  opacity: 0.35;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
  padding: 0 20px;
}

.sv-clients__logo:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

@keyframes svClientsMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   CTA Section - 行动召唤
   ============================================ */
.sv-cta {
  position: relative;
  z-index: 10;
  background: #f5f5f5;
  padding: 100px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: var(--footer-h, 80vh);
}

.sv-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.sv-cta__title {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.sv-cta__desc {
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.45);
  margin: 0;
  max-width: 480px;
  line-height: 1.7;
}

.sv-cta__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.sv-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 36px;
  font-family: 'Noto Sans SC', 'Source Han Sans CN', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.sv-cta__btn--primary {
  background: #000000;
  color: #ffffff;
  border: none;
}

.sv-cta__btn--primary:hover {
  background: #333333;
}

.sv-cta__btn--outline {
  background: transparent;
  color: #000000;
  border: 1.5px solid rgba(0, 0, 0, 0.25);
}

.sv-cta__btn--outline:hover {
  background: #000000;
  color: #ffffff;
}

.sv-cta__btn:active {
  transform: scale(0.98);
}

/* ============================================
   Responsive - 响应式
   ============================================ */
@media (max-width: 1400px) {
  .sv-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .sv-container {
    padding: 0 40px;
  }

  .sv-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sv-approach__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .sv-approach__layout {
    grid-template-columns: 1fr;
  }

  .sv-section-title {
    font-size: 28px;
  }

  .sv-cta__title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .sv-container {
    padding: 0 24px;
  }

  .sv-cta {
    margin-bottom: var(--footer-h, 70vh);
  }

  .sv-statement {
    padding: 40px 0;
  }

  .sv-statement__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .sv-statement__text {
    font-size: 16px;
  }

  .sv-services {
    padding: 60px 0;
  }

  .sv-services__header {
    margin-bottom: 36px;
  }

  .sv-services__grid {
    flex-direction: column;
    border-radius: 12px;
  }

  .sv-services__col {
    height: auto;
    min-height: 0;
  }

  .sv-card {
    flex: 0 0 auto;
    height: auto;
  }

  .sv-card__body {
    min-height: auto;
    overflow: visible;
    flex: 0 0 auto;
  }

  .sv-card__image {
    flex: 0 0 140px;
  }

  .sv-approach {
    padding: 60px 0;
  }

  .sv-approach__inner {
    padding: 40px 24px;
    border-radius: 16px;
  }

  .sv-approach__layout {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }

  .sv-approach__card {
    padding: 24px;
  }

  .sv-approach__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .sv-approach__stat {
    padding: 24px;
  }

  .sv-approach__stat-num {
    font-size: 30px;
  }

  .sv-clients {
    padding: 50px 0;
  }

  .sv-clients__header {
    flex-direction: column;
    gap: 8px;
  }

  .sv-cta {
    padding: 60px 0;
  }

  .sv-cta__title {
    font-size: 26px;
  }

  .sv-cta__buttons {
    flex-direction: column;
    width: 100%;
  }

  .sv-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .sv-container {
    padding: 0 16px;
  }

  .sv-section-title {
    font-size: 22px;
  }

  .sv-eyebrow {
    font-size: 11px;
  }

  .sv-statement {
    padding: 32px 0;
  }

  .sv-statement__text {
    font-size: 15px;
  }

  .sv-services {
    padding: 48px 0;
  }

  .sv-services__header {
    margin-bottom: 28px;
  }

  .sv-card__image {
    flex: 0 0 120px;
  }

  .sv-card__body {
    padding: 12px 14px 10px;
  }

  .sv-card__title {
    font-size: 14px;
  }

  .sv-approach {
    padding: 48px 0;
  }

  .sv-approach__inner {
    padding: 28px 16px;
    border-radius: 12px;
  }

  .sv-approach__header {
    margin-bottom: 32px;
  }

  .sv-approach__card {
    padding: 20px;
  }

  .sv-approach__card-label {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .sv-approach__list li {
    font-size: 13px;
    gap: 10px;
  }

  .sv-approach__stats {
    grid-template-columns: 1fr 1fr;
  }

  .sv-approach__stat {
    padding: 20px 16px;
  }

  .sv-approach__stat-num {
    font-size: 26px;
  }

  .sv-approach__stat-label {
    font-size: 12px;
  }

  .sv-clients {
    padding: 40px 0;
  }

  .sv-clients__logo {
    height: 60px;
  }

  .sv-cta {
    padding: 48px 0;
  }

  .sv-cta__title {
    font-size: 22px;
  }

  .sv-cta__desc {
    font-size: 14px;
  }

  .sv-cta__btn {
    height: 44px;
    font-size: 14px;
    padding: 0 24px;
  }
}
