/* ============ SEO SERVICE PAGE (matches CRO style) ============ */

.service-page {
  background: var(--neutral-color);
  color: var(--text-color);
}

/* HERO */
.service-hero {
  padding: 6rem 1.5rem 4rem;
  background: var(--neutral-color);
}

.service-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.service-hero__content h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
  color: var(--primary-color);
  margin: 0 0 1rem 0;
}

.service-hero__lead {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
  max-width: 56ch;
}

.service-hero__bullets {
  margin: 0 0 1.75rem 0;
  padding-left: 1.2rem;
}

.service-hero__bullets li {
  margin: 0.5rem 0;
  line-height: 1.5;
}

.service-hero__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.75rem;
}

.service-hero__micro {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.85;
}

.service-hero__media img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

/* Buttons (reuse your existing btn styles if you have them) */
.btn.btn-primary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.btn.btn-outline {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn.btn-outline:hover {
  background: var(--primary-color);
  color: var(--neutral-color);
}

/* WHY (anti fluff) */
.seo-why {
  background: var(--primary-color);
  padding: 4rem 1.5rem;
  color: var(--neutral-color);
}

.seo-why__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.seo-why__title h2 {
  margin: 0 0 0.75rem 0;
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
}

.seo-why__title p {
  margin: 0;
  opacity: 0.9;
  max-width: 70ch;
}

.seo-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.seo-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.25rem;
}

.seo-card h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.05rem;
  color: var(--neutral-color);
}

.seo-card p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
}

/* PROCESS */
.service-process {
  padding: 5rem 1.5rem;
}

.service-process__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.service-process__header h2 {
  margin: 0 0 0.5rem 0;
  font-size: clamp(1.9rem, 2.4vw, 2.6rem);
  color: var(--primary-color);
}

.service-process__header p {
  margin: 0;
  max-width: 72ch;
  line-height: 1.6;
}

.service-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.35);
}

.process-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--primary-color);
  background: var(--accent-yellow);
  border: 2px solid rgba(31, 46, 45, 0.15);
  flex: 0 0 auto;
}

.process-card h3 {
  margin: 0 0 0.5rem 0;
  color: var(--primary-color);
  font-size: 1.05rem;
}

.process-card p {
  margin: 0;
  line-height: 1.55;
}

/* AREAS */
.seo-areas {
  padding: 5rem 1.5rem;
}

.seo-areas__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.seo-areas__header h2 {
  margin: 0 0 0.5rem 0;
  font-size: clamp(1.9rem, 2.4vw, 2.6rem);
  color: var(--primary-color);
}

.seo-areas__header p {
  margin: 0;
  max-width: 72ch;
  line-height: 1.6;
}

.seo-areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.area-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.35);
}

.area-card h3 {
  margin: 0 0 0.5rem 0;
  color: var(--primary-color);
  font-size: 1.05rem;
}

.area-card p {
  margin: 0;
  line-height: 1.55;
}

/* CTA */
.service-cta {
  background: var(--accent-blue);
  padding: 4rem 1.5rem;
}

.service-cta__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 1rem;
}

.service-cta__inner h2 {
  margin: 0;
  color: var(--primary-color);
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
}

.service-cta__inner p {
  margin: 0;
  color: var(--primary-color);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .seo-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .seo-areas__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding-top: 7.5rem; /* space for header */
  }

  .service-hero__inner {
    grid-template-columns: 1fr;
  }

  .service-hero__media {
    order: -1;
  }

  .seo-why__grid,
  .service-process__grid,
  .seo-areas__grid {
    grid-template-columns: 1fr;
  }

  .service-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .service-hero__cta .btn {
    width: 100%;
    text-align: center;
  }
}
