/* Services page intro — simple, matches site typography */
.services-page-intro {
  padding-top: 48px;
  padding-bottom: 0;
}

.services-page-intro .container-small {
  max-width: 800px;
}

.services-page-intro .h2-heading {
  margin-bottom: 24px;
}

.services-page-lead {
  color: var(--neutral--600);
  line-height: 1.75;
  margin: 0 0 48px;
}

/* ---- About Us (home) ---- */
.section-about {
  padding: 0 5% 72px;
}

.section-about .content-block {
  background: linear-gradient(180deg, var(--neutral--100) 0%, var(--main--white) 100%);
  border: 1px solid var(--neutral--200);
  padding: 0;
}

.section-about .content-inner {
  border: none;
  padding: 56px 40px;
  max-width: 1100px;
}

.about-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.about-eyebrow {
  display: inline-block;
  border: 1px solid var(--neutral--900);
  border-radius: var(--radius--rounded);
  color: var(--neutral--900);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 500;
  color: var(--neutral--900);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
}

.about-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--neutral--600);
  margin: 0;
  text-align: left;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-highlight {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary--dark);
  background: var(--primary--light);
  padding: 6px 12px;
  border-radius: var(--radius--rounded);
}

.about-image-col {
  position: relative;
}

.about-image-frame {
  border-radius: var(--radius--20);
  overflow: hidden;
  box-shadow: 0 20px 48px -12px #3a55a533;
  border: 1px solid var(--neutral--200);
}

.about-port-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-image-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(7, 11, 15, 0.72);
  backdrop-filter: blur(8px);
  color: var(--main--white);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius--rounded);
}

/* ---- Our Services / apps (home + service page) ---- */
.section-apps {
  padding: 0 5% 64px;
}

.section-apps .content-block {
  background-color: var(--neutral--100);
  border: none;
}

.section-apps .content-inner {
  border-left: 1px dashed #c7cdd4b8;
  border-right: 1px dashed #c7cdd4b8;
  padding: 48px 40px 56px;
  max-width: 1000px;
}

.apps-header {
  margin-bottom: 40px;
}

.apps-header .badge {
  margin-bottom: 16px;
}

.apps-brand-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.apps-brand-row img:first-child {
  width: 48px;
  height: auto;
}

.apps-brand-row img:last-child {
  width: 110px;
  height: auto;
}

.apps-tagline {
  margin: 0;
  max-width: 520px;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.section-apps .service-card {
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.section-apps .service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 56px -12px #070b0f1a;
}

.section-apps .service-card::after {
  display: none;
}

.section-about .mark,
.section-apps .mark {
  display: none;
}

@media (max-width: 991px) {
  .section-about .content-inner,
  .section-apps .content-inner {
    padding: 40px 20px 48px;
  }

  .about-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image-col {
    order: -1;
  }

  .apps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 479px) {
  .section-about,
  .section-apps {
    padding-left: 4%;
    padding-right: 4%;
  }

  .apps-brand-row img:last-child {
    width: 96px;
  }
}
