.seo-body {
  background: #0A0A0A;
  color: var(--text-primary);
}

.seo-shell {
  min-height: 100vh;
}

.seo-hero {
  position: relative;
  overflow: hidden;
  padding: 128px 24px 72px;
  background: #e4d5b7;
  color: #2b2013;
  box-shadow: inset 0 0 140px rgba(43, 32, 19, 0.28);
}

.seo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(140, 63, 45, 0.12), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(43, 32, 19, 0.14), transparent 36%);
  pointer-events: none;
}

.seo-hero__inner,
.seo-section__inner,
.seo-footer__inner {
  width: min(1080px, calc(100vw - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.seo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(43, 32, 19, 0.7);
}

.seo-breadcrumbs a:hover {
  color: #8c3f2d;
}

.seo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(43, 32, 19, 0.16);
  background: rgba(255, 255, 255, 0.26);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.seo-kicker__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8c3f2d;
}

.seo-title {
  margin: 0 0 14px;
  font-family: "Cinzel", serif;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: 1px;
}

.seo-title__hindi {
  display: block;
  margin-top: 10px;
  font-family: var(--font-hindi);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  letter-spacing: 0;
}

.seo-subtitle {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.9;
  color: rgba(43, 32, 19, 0.82);
}

.seo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.seo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(43, 32, 19, 0.12);
  background: rgba(255, 255, 255, 0.28);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.seo-section {
  padding: 72px 0;
}

.seo-section--dark {
  background: #000;
  color: var(--text-primary);
}

.seo-section--paper {
  background: #f7f3eb;
  color: #2b2013;
}

.seo-section--tone {
  background: linear-gradient(180deg, #000 0%, #141414 100%);
}

.seo-section__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.seo-section__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}

.seo-section__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.seo-section--paper .seo-section__line {
  background: rgba(43, 32, 19, 0.16);
}

.seo-section__title {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  font-family: var(--font-hindi);
  font-weight: 700;
}

.seo-section__title--mono {
  font-family: var(--font-mono);
  font-weight: 700;
}

.seo-copy {
  max-width: 760px;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.95;
  color: var(--text-secondary);
}

.seo-section--paper .seo-copy {
  color: #5a4634;
}

.seo-grid {
  display: grid;
  gap: 20px;
}

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

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

.seo-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 24px;
}

.seo-section--paper .seo-card {
  border-color: rgba(43, 32, 19, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

.seo-card__eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.seo-card__title {
  margin: 0 0 10px;
  font-family: var(--font-hindi);
  font-size: 26px;
  line-height: 1.1;
}

.seo-card__title--mono {
  font-family: var(--font-mono);
  font-size: 18px;
}

.seo-card__text {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.seo-section--paper .seo-card__text {
  color: #5a4634;
}

.seo-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.seo-section--paper .seo-list {
  color: #5a4634;
}

.seo-facts {
  display: grid;
  gap: 12px;
}

.seo-fact {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 12px;
}

.seo-section--paper .seo-fact {
  border-bottom-color: rgba(43, 32, 19, 0.1);
}

.seo-fact strong {
  color: var(--text-primary);
}

.seo-section--paper .seo-fact strong {
  color: #2b2013;
}

.seo-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
}

.seo-link-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-link-card {
  display: block;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(43, 32, 19, 0.1);
  background: rgba(255, 255, 255, 0.82);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.seo-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(140, 63, 45, 0.36);
}

.seo-link-card__title {
  margin: 0 0 8px;
  font-family: var(--font-hindi);
  font-size: 24px;
  color: #2b2013;
}

.seo-link-card__meta {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8c3f2d;
}

.seo-link-card__desc {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.75;
  color: #5a4634;
}

.seo-faq {
  display: grid;
  gap: 16px;
}

.seo-faq details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px 18px;
}

.seo-section--paper .seo-faq details {
  border-color: rgba(43, 32, 19, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

.seo-faq summary {
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.seo-faq summary::-webkit-details-marker {
  display: none;
}

.seo-faq p {
  margin: 12px 0 0;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.seo-section--paper .seo-faq p {
  color: #5a4634;
}

.seo-table {
  width: 100%;
  border-collapse: collapse;
}

.seo-table th,
.seo-table td {
  padding: 14px 0;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 12px;
}

.seo-table th {
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.seo-footer {
  padding: 28px 0 40px;
  background: #000;
}

.seo-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.seo-footer__links a:hover {
  color: var(--text-primary);
}

@media (max-width: 960px) {
  .seo-grid--3,
  .seo-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .seo-grid--2,
  .seo-grid--3,
  .seo-link-grid {
    grid-template-columns: 1fr;
  }

  .seo-hero {
    padding-top: 112px;
  }

  .seo-card,
  .seo-link-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .seo-hero__inner,
  .seo-section__inner,
  .seo-footer__inner {
    width: min(1080px, calc(100vw - 28px));
  }

  .seo-title {
    font-size: 34px;
  }

  .seo-title__hindi {
    font-size: 26px;
  }

  .seo-subtitle {
    font-size: 14px;
  }
}
