.services-page {
      padding-top: 72px;
    }
    .services-hero {
      position: relative;
      overflow: hidden;
      min-height: 420px;
      aspect-ratio: 3 / 1;
      display: flex;
      align-items: center;
      padding: 80px 56px 70px;
    }
    .services-hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .services-hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      display: block;
    }
    .services-hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.55) 40%, rgba(10, 10, 10, 0.2) 70%, rgba(10, 10, 10, 0.05) 100%);
    }
    .services-hero-content {
      position: relative;
      z-index: 1;
    }
    .services-hero h1 {
      font-family: 'Inter', sans-serif;
      font-size: 2.6rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 20px;
      max-width: 700px;
      line-height: 1.25;
      text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
    }
    .services-hero p {
      color: rgba(255, 255, 255, 0.75);
      font-size: 1.05rem;
      font-weight: 300;
      max-width: 640px;
      line-height: 1.8;
      text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
    }
    .services-hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
      z-index: 1;
    }

    .services-section {
      padding: 80px 56px;
      background: #fff;
      max-width: 980px;
      margin: 0 auto;
    }
    .category {
      border-top: 2px solid var(--border);
      margin-bottom: 0;
      scroll-margin-top: 110px;
    }
    .category:last-child {
      border-bottom: 2px solid var(--border);
    }
    .category-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 32px 0;
      cursor: pointer;
      user-select: none;
    }
    .category-header:hover .category-title {
      color: var(--blue);
    }
    .category-title {
      font-family: 'Inter', sans-serif;
      font-size: 1.5rem;
      font-weight: 650;
      letter-spacing: -0.02em;
      color: var(--black);
      transition: color 0.2s;
    }
    .category-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #f3f5f7;
      border: 1px solid rgba(17,17,17,.08);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s, transform 0.3s, border-color 0.2s;
    }
    .category-icon svg {
      transition: transform 0.3s;
    }
    .category.open .category-icon {
      background: var(--blue);
      border-color: var(--blue);
    }
    .category.open .category-icon svg {
      transform: rotate(45deg);
    }
    .category.open .category-icon svg path {
      stroke: #fff;
    }
    .category-body {
      display: none;
      padding-bottom: 24px;
    }
    .category.open .category-body {
      display: block;
    }

    .service-item {
      border-top: 1px solid var(--border);
      margin-left: 24px;
      scroll-margin-top: 120px;
    }
    .service-item:last-child {
      border-bottom: 1px solid var(--border);
    }
    .service-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      cursor: pointer;
      user-select: none;
    }
    .service-header:hover .service-title {
      color: var(--blue);
    }
    .service-title {
      font-size: 0.98rem;
      font-weight: 450;
      color: #3f3f3f;
      letter-spacing: -0.01em;
      transition: color 0.2s;
    }
    .service-arrow {
      font-size: 1rem;
      color: #aaa;
      transition: transform 0.3s, color 0.2s;
      flex-shrink: 0;
      margin-left: 16px;
    }
    .service-item.open .service-arrow {
      transform: rotate(90deg);
      color: var(--blue);
    }
    .service-item.open .service-title {
      color: var(--blue);
      font-weight: 550;
    }
    .service-body {
      display: none;
      padding: 0 0 20px 0;
      max-width: 760px;
    }
    .service-item.open .service-body {
      display: block;
    }
    .service-body p {
      font-size: 0.92rem;
      color: #555;
      line-height: 1.8;
      margin-bottom: 16px;
    }
    .service-body h4 {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--black);
      margin: 20px 0 10px;
    }
    .service-body ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .service-body ul li {
      font-size: 0.88rem;
      color: #555;
      line-height: 1.7;
      padding: 4px 0 4px 16px;
      position: relative;
    }
    .service-body ul li::before {
      content: '-';
      position: absolute;
      left: 0;
      color: var(--blue);
    }

    .services-cta {
      background: var(--black);
      padding: 60px 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }
    .services-cta h2 {
      font-family: 'Inter', sans-serif;
      font-size: 1.8rem;
      font-weight: 600;
      color: #fff;
      max-width: 500px;
    }
    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      color: var(--black);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      padding: 14px 28px;
      border-radius: 2px;
      white-space: nowrap;
      transition: background 0.2s, color 0.2s;
      flex-shrink: 0;
    }
    .cta-btn:hover {
      background: var(--blue);
      color: #fff;
    }

    @media (max-width: 900px) {
      .services-hero {
        padding: 56px 24px 48px;
        aspect-ratio: 4 / 3;
      }
      .services-hero h1 {
        font-size: 1.8rem;
      }
      .services-section {
        padding: 48px 24px;
      }
      .services-cta {
        padding: 48px 24px;
        flex-direction: column;
        align-items: flex-start;
      }
      .service-item {
        margin-left: 0;
      }
    }
    @media (max-width: 600px) {
      .services-hero h1 {
        font-size: 1.55rem;
      }
      .services-hero p,
      .service-body p,
      .service-body ul li {
        font-size: 0.88rem;
        line-height: 1.7;
      }
      .services-section {
        padding: 36px 20px;
      }
      .category-header,
      .service-header {
        gap: 14px;
      }
      .category-title {
        font-size: 1.1rem;
      }
      .service-title {
        font-size: 0.88rem;
        line-height: 1.5;
      }
      .services-cta {
        padding: 40px 20px;
      }
      .services-cta h2 {
        font-size: 1.5rem;
      }
    }
