.osa-services-section,
.osa-services-section * {
  box-sizing: border-box;
}

.osa-services-section {
  width: 100%;
  padding: 96px 32px 92px;
  font-family: inherit;
  color: #111111;
}

.osa-services-header {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: 80px;
  align-items: start;
}

.osa-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  background: #ffffff;
  color: #555555;
  border-radius: 7px;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 22px;
}

.osa-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #555555;
}

.osa-services-header h2 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -2px;
  color: #111111;
}

.osa-services-header-right {
  max-width: 520px;
}

.osa-services-header-right p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: #555555;
  font-weight: 400;
}

.osa-services-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-width: 126px;
  height: 54px;
  padding: 0 28px;
  background: #00a651;
  color: #ffffff !important;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 0.2s ease, background 0.2s ease;
}

.osa-services-button:hover,
.osa-services-button:focus {
  background: #009647;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.osa-accordion {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.osa-service-item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.osa-service-item:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.035);
}

.osa-service-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 28px 42px;
  display: grid;
  grid-template-columns: 56px minmax(220px, 1fr) 40px;
  gap: 28px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: #111111;
}

.osa-service-number {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  border-radius: 50%;
  color: #222222;
  font-size: 14px;
  font-weight: 500;
}

.osa-service-title {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.05;
  letter-spacing: -1px;
  font-weight: 400;
  color: #111111;
}

.osa-service-icon {
  width: 22px;
  height: 22px;
  position: relative;
  justify-self: end;
}

.osa-service-icon::before,
.osa-service-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.7px;
  background: #333333;
  transform: translate(-50%, -50%);
  border-radius: 99px;
  transition: transform 0.2s ease;
}

.osa-service-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.osa-service-item.is-open .osa-service-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.osa-service-panel {
  padding: 0 42px 34px 126px;
}

.osa-service-panel-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(300px, 1.25fr);
  gap: 60px;
  align-items: start;
}

.osa-service-panel-text p {
  margin: 0;
  max-width: 460px;
  font-size: 14px;
  line-height: 1.55;
  color: #555555;
}

.osa-service-pillars h4 {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
}

.osa-pillar-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.osa-pillar-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 18px;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  background: #ffffff;
  color: #444444;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.osa-empty {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  color: #555555;
}

@media (max-width: 980px) {
  .osa-services-section {
    padding: 72px 24px 70px;
  }

  .osa-services-header {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 42px;
  }

  .osa-services-header-right {
    max-width: 680px;
  }

  .osa-service-toggle {
    grid-template-columns: 52px 1fr 34px;
    padding: 24px 26px;
    gap: 18px;
  }

  .osa-service-panel {
    padding: 0 26px 30px 96px;
  }

  .osa-service-panel-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 620px) {
  .osa-services-section {
    padding: 60px 18px;
  }

  .osa-services-header h2 {
    font-size: 34px;
    letter-spacing: -1.4px;
  }

  .osa-services-header-right p {
    font-size: 16px;
  }

  .osa-services-button {
    width: 100%;
  }

  .osa-service-toggle {
    grid-template-columns: 46px 1fr 26px;
    padding: 22px 18px;
    gap: 14px;
  }

  .osa-service-number {
    width: 46px;
    height: 46px;
    font-size: 13px;
  }

  .osa-service-title {
    font-size: 24px;
  }

  .osa-service-panel {
    padding: 0 18px 26px 78px;
  }

  .osa-pillar-list span {
    white-space: normal;
    line-height: 1.2;
  }
}
