.services-main {
  padding: 20px 0 10px;
}

.services-hero-section {
  padding: 20px 0 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

body.dark-theme .services-hero-section {
  background: linear-gradient(180deg, #031027 0%, #04152e 100%);
}

.services-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: rgba(37, 99, 235, 0.06);
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

body.dark-theme .service-chip {
  color: #56ccff;
  border-color: rgba(86, 204, 255, 0.22);
  background: rgba(86, 204, 255, 0.06);
}

.services-hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  color: #13203a;
}

.services-hero-copy h1 span {
  color: #2563eb;
}

body.dark-theme .services-hero-copy h1 {
  color: #f2f7ff;
}

body.dark-theme .services-hero-copy h1 span {
  color: #56ccff;
}

.services-hero-desc {
  margin: 14px 0 0;
  font-size: 22px;
  line-height: 1.45;
  color: #475569;
  font-weight: 600;
}

body.dark-theme .services-hero-desc {
  color: #d7e6ff;
}

.services-mini-features {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.services-mini-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  font-size: 14px;
  line-height: 1.5;
  min-width: 160px;
  font-weight: 600;
}

body.dark-theme .services-mini-item {
  color: #d8e8ff;
}

.mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.14);
  flex-shrink: 0;
}

body.dark-theme .mini-icon {
  background: rgba(24, 121, 255, 0.16);
  border: 1px solid rgba(58, 176, 255, 0.22);
}

.services-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.service-hero-media img,
.solution-media img,
.result-chart-wrap img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

body.dark-theme .service-hero-media img,
body.dark-theme .solution-media img,
body.dark-theme .result-chart-wrap img {
  box-shadow: 0 18px 38px rgba(0,0,0,0.24);
}

.service-section {
  padding: 26px 0;
}

.section-title {
  margin: 0 0 22px;
  text-align: center;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 900;
  color: #12213e;
}

.section-title span {
  color: #2563eb;
}

body.dark-theme .section-title {
  color: #ffffff;
}

body.dark-theme .section-title span {
  color: #56ccff;
}

.problem-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.problem-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.problem-card,
.pricing-card,
.result-small,
.result-large {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(205, 216, 232, 0.9);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

body.dark-theme .problem-card,
body.dark-theme .pricing-card,
body.dark-theme .result-small,
body.dark-theme .result-large {
  background: rgba(255,255,255,0.04);
  border-color: rgba(90, 129, 196, 0.18);
}

.problem-icon,
.solution-check {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-weight: 900;
  flex-shrink: 0;
}

body.dark-theme .problem-icon,
body.dark-theme .solution-check {
  color: #56ccff;
  background: rgba(86, 204, 255, 0.08);
}

.problem-card h3,
.solution-item h4,
.pricing-card h3 {
  color: #13203a;
}

body.dark-theme .problem-card h3,
body.dark-theme .solution-item h4,
body.dark-theme .pricing-card h3 {
  color: #f2f7ff;
}

.problem-card p,
.solution-item p,
.pricing-sub,
.problem-note,
.result-small li {
  color: #5d6f89;
  line-height: 1.7;
}

body.dark-theme .problem-card p,
body.dark-theme .solution-item p,
body.dark-theme .pricing-sub,
body.dark-theme .problem-note,
body.dark-theme .result-small li {
  color: #c7d8ef;
}

.problem-note {
  text-align: center;
  font-size: 20px;
  margin-top: 16px;
  font-weight: 700;
}

.solution-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pricing-card {
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ea5ff, #2dd4ff);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pricing-card.popular {
  border-color: rgba(37, 99, 235, 0.42);
}

.pricing-price {
  margin-top: 18px;
  font-size: 52px;
  font-weight: 900;
  color: #13203a;
  text-align: center;
}

body.dark-theme .pricing-price {
  color: #f2f7ff;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #334155;
  line-height: 1.6;
}

.pricing-card li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
}

body.dark-theme .pricing-card li {
  color: #dbe9ff;
}

body.dark-theme .pricing-card li::before {
  color: #56ccff;
}

.pricing-btn {
  width: 100%;
  margin-top: 18px;
}

.btn-purple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 14px;
  background: linear-gradient(90deg, #4353ff, #7934ff);
  color: #ffffff;
  font-weight: 800;
}

.result-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  gap: 18px;
}

.result-small h3 {
  text-align: center;
}

.before-box h3 {
  color: #ef4444;
}

.after-box h3 {
  color: #16a34a;
}

.result-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.result-stats div {
  text-align: center;
}

.result-stats strong {
  display: block;
  font-size: 38px;
  color: #2563eb;
}

.result-stats span {
  display: block;
  margin-top: 4px;
  color: #5d6f89;
  font-size: 14px;
  font-weight: 800;
}

body.dark-theme .result-stats strong {
  color: #56ccff;
}

body.dark-theme .result-stats span {
  color: #c7d8ef;
}

@media (max-width: 1200px) {
  .services-hero-grid,
  .solution-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .problem-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .services-hero-actions {
    flex-direction: column;
  }

  .services-hero-actions .btn {
    width: 100%;
  }
}
