.page-header {
  padding: 80px 0 60px;
  background-color: var(--clr-bg-dark);
  text-align: center;
}

.page-title {
  color: var(--clr-text-inverse);
  font-size: 42px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-subtitle {
  color: var(--clr-text-inverse);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-page {
  background-color: var(--clr-bg-light);
  padding: 60px 0 80px;
}

.tech-capabilities {
  background-color: var(--clr-bg-dark);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-base);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  margin-bottom: 70px;
}

.tech-cap-header {
  background-color: var(--clr-accent);
  padding: 20px 30px;
  text-align: center;
}

.tech-cap-header h2 {
  color: var(--clr-text-inverse);
  font-size: 22px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-cap-body {
  display: flex;
  padding: 40px;
}

.tech-group {
  flex: 1;
}

.tech-group-title {
  color: var(--clr-text-inverse);
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.tech-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.tech-stat-item {
  flex: 1;
}

.tech-stat-val {
  color: var(--clr-text-inverse);
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
}

.tech-stat-val span {
  font-size: 20px;
  color: var(--clr-accent);
  font-weight: 600;
}

.tech-stat-label {
  color: #a0a5aa;
  font-size: 15px;
  line-height: 1.4;
}

.tech-divider {
  width: 1px;
  background-color: var(--clr-border-dark);
  margin: 0 40px;
}

.seo-services-block {
  margin-bottom: 60px;
}

.seo-services-block .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.seo-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.seo-service-card {
  background-color: var(--clr-bg-white);
  padding: 40px;
  border-radius: 8px;
  border-left: 4px solid var(--clr-accent);
  box-shadow: var(--shadow-base);
}

.seo-service-title {
  font-size: 22px;
  color: var(--clr-bg-dark);
  margin-bottom: 15px;
}

.seo-service-desc {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.seo-service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.seo-service-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--clr-text-main);
  line-height: 1.5;
}

.seo-service-list li::before {
  content: "•";
  color: var(--clr-accent);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  line-height: 1.2;
}



.unfound-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--clr-bg-dark);
  padding: 40px 50px;
  border-radius: 8px;
  gap: 40px;
}

.unfound-content {
  flex-grow: 1;
}

.unfound-title {
  color: var(--clr-text-inverse);
  font-size: 24px;
  margin-bottom: 15px;
}

.unfound-desc {
  color: var(--clr-text-muted);
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
  max-width: 700px;
}

.unfound-action {
  flex-shrink: 0;
}

.unfound-action .btn {
  margin-left: 20px;
}

@media (max-width: 992px) {
  .tech-cap-body {
    flex-direction: column;
    gap: 40px;
  }
  .tech-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .seo-services-grid {
    grid-template-columns: 1fr;
  }
  .unfound-cta {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  

  .unfound-action .btn {
    margin-bottom: 10px;
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .page-header {
    padding: 60px 0 80px;
  }
  .page-title {
    font-size: 28px;
  }
  .tech-capabilities {
    margin-top: -20px;
  }
  .tech-stats {
    flex-direction: column;
    gap: 25px;
  }
  .tech-stat-val {
    font-size: 38px;
  }
  .tech-cap-header h2 {
    font-size: 18px;
  }
  .seo-service-card {
    padding: 30px 20px;
  }
  .unfound-title {
    font-size: 20px;
  }
  .unfound-action .btn {
    width: 100%;
  }
}

.seo-services-block {
  margin-bottom: 60px;
}

.seo-services-block .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.seo-blocks-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.seo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.seo-row-text {
  order: 1;
}

.seo-row-visual {
  order: 2;
  position: relative;
  width: 100%;
  padding-top: 65%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-base);
  background-color: var(--clr-border-light);
}

.seo-row.reverse .seo-row-text {
  order: 2;
}

.seo-row.reverse .seo-row-visual {
  order: 1;
}

.seo-row-visual img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.seo-row:hover .seo-row-visual img {
  transform: scale(1.03);
}

.seo-row-title {
  font-size: 26px;
  color: var(--clr-bg-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.seo-row-desc {
  font-size: 16px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
}

.seo-row-desc strong {
  color: var(--clr-bg-dark);
  font-weight: 700;
}

.seo-row-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.seo-row-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--clr-text-main);
  line-height: 1.5;
}

.seo-row-list li::before {
  content: "•";
  color: var(--clr-accent);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .seo-row {
    gap: 30px;
  }
  .seo-row-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .seo-blocks-wrapper {
    gap: 50px;
  }
  .seo-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .seo-row-text,
  .seo-row.reverse .seo-row-text {
    order: 2;
  }
  .seo-row-visual,
  .seo-row.reverse .seo-row-visual {
    order: 1;
  }
  .seo-row-visual {
    padding-top: 56.25%;
  }
}

@media (max-width: 576px) {
  .seo-row-title {
    font-size: 20px;
  }
  .seo-row-desc {
    font-size: 15px;
  }
}
