/* ════════════════════════════════════════════════════════
   SEO PAGE — seo.css
   All new section styles. Reuses pp-hero, pp-img-badge,
   pp-overview-divider, pp-quick-stats, pp-btn-* from style.css.
   ════════════════════════════════════════════════════════ */

/* ── OVERVIEW ─────────────────────────────────────────── */
.seo-overview {
  background: #ffffff;
  padding: 80px 0 90px;
}
.seo-overview-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.seo-ov-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f7fb;
  border-radius: 16px;
  padding: 40px 32px;
}
.seo-ov-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.seo-ov-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: #060d1a;
  line-height: 1.15;
  margin: 0 0 4px;
}
.seo-ov-heading span { color: var(--blue, #11a0e6); }
.seo-ov-body p {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.97rem;
  line-height: 1.8;
  color: #4a5568;
  margin: 0 0 14px;
}
.seo-ov-body p:last-child { margin-bottom: 0; }

/* ── FEATURES (dark) ──────────────────────────────────── */
.seo-feats {
  position: relative;
  background: #060d1a;
  padding: 90px 0 110px;
}
.seo-feats-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(17,160,230,.08) 0%, transparent 55%);
  pointer-events: none;
}
.seo-feats-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.seo-feats-head {
  text-align: center;
  margin-bottom: 52px;
}
.seo-feats-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #e8eeff;
  line-height: 1.15;
}
.seo-feats-heading span { color: var(--blue, #11a0e6); }
.seo-feats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.seo-feat-card {
  background: #0d1625;
  border: 1px solid rgba(17,160,230,.12);
  border-radius: 12px;
  padding: 32px 26px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.seo-feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue, #11a0e6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.seo-feat-card:hover { border-color: rgba(17,160,230,.35); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.4); }
.seo-feat-card:hover::before { transform: scaleX(1); }
.seo-feat-icon {
  width: 48px; height: 48px;
  background: rgba(17,160,230,.08);
  border: 1px solid rgba(17,160,230,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue, #11a0e6);
  margin-bottom: 18px;
}
.seo-feat-icon svg { width: 26px; height: 26px; }
.seo-feat-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #e8eeff;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.seo-feat-desc {
  font-family: 'Exo 2', sans-serif;
  font-size: .84rem;
  line-height: 1.7;
  color: rgba(204,214,246,.55);
}
/* cut to white content */
.seo-feats-cut {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 70px;
  background: #ffffff;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* ── LONG-FORM CONTENT (white) ────────────────────────── */
.seo-content-section {
  background: #ffffff;
  padding: 80px 0 72px;
}
.seo-content-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}
/* Each block: image left + text right */
.seo-content-block {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
}
/* Alternate: odd blocks flip image to right */
.seo-content-block:nth-child(even) { direction: rtl; }
.seo-content-block:nth-child(even) > * { direction: ltr; }

.seo-cb-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: stretch;
}
.seo-cb-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.seo-cb-text {}
.seo-content-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #060d1a;
  margin: 0 0 14px;
  line-height: 1.2;
}
.seo-content-divider {
  width: 48px; height: 3px;
  background: var(--blue, #11a0e6);
  border-radius: 2px;
  margin-bottom: 20px;
}
.seo-content-body p {
  font-family: 'Exo 2', sans-serif;
  font-size: .97rem;
  line-height: 1.8;
  color: #4a5568;
  margin: 0 0 14px;
}
.seo-content-body p:last-child { margin-bottom: 0; }

/* ── RELATED PRODUCTS (dark) ──────────────────────────── */
.seo-related {
  position: relative;
  background: #060d1a;
  padding: 90px 0 80px;
}
.seo-related-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 60%, rgba(17,160,230,.06) 0%, transparent 50%);
  pointer-events: none;
}
.seo-related-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.seo-related-head { text-align: center; margin-bottom: 52px; }
.seo-related-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #e8eeff;
}
.seo-related-heading span { color: var(--blue, #11a0e6); }
.seo-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.seo-rel-card {
  background: #0d1625;
  border: 1px solid rgba(17,160,230,.12);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.seo-rel-card:hover { border-color: rgba(17,160,230,.35); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.4); }
.seo-rel-img {
  background: #111e33;
  padding: 24px;
  display: flex; align-items: center; justify-content: center;
  height: 160px;
}
.seo-rel-img img { max-width: 100%; max-height: 110px; object-fit: contain; }
.seo-rel-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 4px; }
.seo-rel-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: .72rem; font-weight: 700;
  color: var(--blue, #11a0e6); opacity: .7;
  letter-spacing: .1em;
}
.seo-rel-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: .98rem; font-weight: 700;
  color: #e8eeff;
  text-transform: uppercase; letter-spacing: .02em;
}
.seo-rel-sub {
  font-family: 'Exo 2', sans-serif;
  font-size: .78rem;
  color: rgba(204,214,246,.5);
}

/* ── CTA BANNER ───────────────────────────────────────── */
.seo-cta-section {
  background: linear-gradient(135deg, #060d1a 0%, #0d1f3c 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.seo-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(17,160,230,.12) 0%, transparent 70%);
  pointer-events: none;
}
.seo-cta-inner { position: relative; max-width: 680px; margin: 0 auto; }
.seo-cta-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700; color: #fff;
  margin: 0 0 14px; line-height: 1.15;
}
.seo-cta-sub {
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem; color: rgba(255,255,255,.7);
  margin: 0 0 32px; line-height: 1.6;
}
.seo-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.seo-cta-btns .pp-btn-secondary {
  color: var(--blue, #11a0e6);
  border-color: var(--blue, #11a0e6);
}

/* ── FAQ ──────────────────────────────────────────────── */
.seo-faq-section {
  background: #f4f7fb;
  padding: 80px 0 90px;
}
.seo-faq-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}
.seo-faq-head { text-align: center; margin-bottom: 44px; }
.seo-faq-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #060d1a;
}
.seo-faq-heading span { color: var(--blue, #11a0e6); }
.seo-faq-list { display: flex; flex-direction: column; gap: 14px; }
.seo-faq-item {
  background: #ffffff;
  border: 1px solid rgba(6,13,26,.08);
  border-radius: 10px;
  padding: 4px 22px;
}
.seo-faq-item summary {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: #060d1a;
  padding: 18px 28px 18px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.seo-faq-item summary::-webkit-details-marker { display: none; }
.seo-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--blue, #11a0e6);
  transition: transform .2s ease;
}
.seo-faq-item[open] summary::after { transform: rotate(45deg); }
.seo-faq-item p {
  font-family: 'Exo 2', sans-serif;
  font-size: .93rem;
  line-height: 1.75;
  color: #4a5568;
  margin: 0 0 20px;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .seo-related-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-content-block { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .seo-overview-container { grid-template-columns: 1fr; gap: 40px; }
  .seo-feats-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-content-block {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .seo-content-block:nth-child(even) { direction: ltr; }
  .seo-cb-img-wrap { min-height: 220px; }
}
@media (max-width: 600px) {
  .seo-overview-container,
  .seo-feats-container,
  .seo-content-container,
  .seo-related-container { padding: 0 20px; }
  .seo-feats-grid { grid-template-columns: 1fr; }
  .seo-related-grid { grid-template-columns: 1fr; }
}
