/*
 * seo-reporting-templates.css
 * Scoped to .is-seo-reporting-page
 * SEO Reporting Templates — Niraj Raut
 */

/* ── Shared container ───────────────────────────── */
.is-seo-reporting-page .sr-wrap {
  max-width: min(1100px, 100% - 48px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.is-seo-reporting-page .sr-hero {
  background: var(--ink);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.admin-bar.is-seo-reporting-page .sr-hero { padding-top: 172px; }

.is-seo-reporting-page .sr-hero-glow {
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,98,12,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.is-seo-reporting-page .sr-hero-inner {
  position: relative; z-index: 1;
  max-width: 780px; margin: 0 auto;
}

.is-seo-reporting-page .sr-h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 24px 0 20px;
}
.is-seo-reporting-page .sr-h1-dim   { display: block; color: rgba(255,255,255,0.38); font-weight: 300; font-style: italic; }
.is-seo-reporting-page .sr-h1-white { display: block; color: #fff; }
.is-seo-reporting-page .sr-h1-fire  { display: block; color: var(--fire); }

.is-seo-reporting-page .sr-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  max-width: 620px; margin: 0 auto 40px;
}

.is-seo-reporting-page .sr-hero-stats {
  display: inline-flex; align-items: center; gap: 32px;
  flex-wrap: wrap; justify-content: center;
}
.is-seo-reporting-page .sr-stat {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.is-seo-reporting-page .sr-stat strong {
  font-family: var(--ff-head);
  font-size: 1.8rem; font-weight: 900; color: var(--fire);
  line-height: 1;
}
.is-seo-reporting-page .sr-stat span {
  font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .09em;
  color: rgba(255,255,255,0.38);
}
.is-seo-reporting-page .sr-stat-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.1); flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   CARDS SECTION
═══════════════════════════════════════════ */
.is-seo-reporting-page .sr-cards-section {
  background: var(--mist);
  padding: 100px 0 120px;
}

.is-seo-reporting-page .sr-section-header {
  text-align: center;
  max-width: 640px; margin: 0 auto 64px;
}
.is-seo-reporting-page .sr-section-h {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900; color: var(--ink);
  margin: 14px 0 16px; letter-spacing: -0.025em;
}
.is-seo-reporting-page .sr-section-sub {
  font-size: 1rem;
  color: rgba(13,30,53,0.6);
  line-height: 1.7; margin: 0;
}

/* ── Cards grid ─────────────────────────────── */
.is-seo-reporting-page .sr-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Individual card ───────────────────────── */
.is-seo-reporting-page .sr-card {
  background: #fff;
  border: 1px solid var(--line2);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.is-seo-reporting-page .sr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(8,17,31,0.10);
}

/* Top accent bar */
.is-seo-reporting-page .sr-card-accent {
  height: 3px;
  background: var(--fire);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.is-seo-reporting-page .sr-card:hover .sr-card-accent {
  transform: scaleX(1);
}

.is-seo-reporting-page .sr-card-inner {
  padding: 28px 28px 28px;
  display: flex; flex-direction: column;
  flex: 1;
}

/* Card top row: icon + badge */
.is-seo-reporting-page .sr-card-top {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

/* Icon box */
.is-seo-reporting-page .sr-card-icon {
  width: 60px; height: 60px;
  background: rgba(240,98,12,0.08);
  border: 1px solid rgba(240,98,12,0.15);
  border-radius: var(--r1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; line-height: 1;
  flex-shrink: 0;
}

/* Badge pill */
.is-seo-reporting-page .sr-card-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(240,98,12,0.08);
  border: 1px solid rgba(240,98,12,0.2);
  border-radius: 30px;
  font-size: .67rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--fire);
}
.is-seo-reporting-page .sr-card-badge--popular {
  background: var(--fire);
  border-color: var(--fire);
  color: #fff;
}

/* Card title */
.is-seo-reporting-page .sr-card-title {
  font-family: var(--ff-head);
  font-size: 1.2rem; font-weight: 800;
  color: var(--ink);
  margin: 0 0 12px; letter-spacing: -0.02em;
  line-height: 1.25;
}

/* Card description */
.is-seo-reporting-page .sr-card-desc {
  font-size: .9rem;
  color: rgba(13,30,53,0.65);
  line-height: 1.65;
  margin: 0 0 22px;
}

/* What's included */
.is-seo-reporting-page .sr-card-includes {
  flex: 1;
  margin-bottom: 24px;
}
.is-seo-reporting-page .sr-card-includes-label {
  font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--fire);
  margin: 0 0 10px;
}
.is-seo-reporting-page .sr-card-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.is-seo-reporting-page .sr-card-list li {
  font-size: .855rem;
  color: rgba(13,30,53,0.75);
  line-height: 1.45;
  padding-left: 22px;
  position: relative;
}
.is-seo-reporting-page .sr-card-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--fire);
  font-weight: 700; font-size: .8rem;
}

/* Card button */
.is-seo-reporting-page .sr-card-btn {
  display: block; width: 100%;
  padding: 12px 20px;
  border: 2px solid var(--fire);
  border-radius: var(--r1);
  background: transparent;
  color: var(--fire);
  font-size: .87rem; font-weight: 700;
  text-align: center; text-decoration: none;
  letter-spacing: .01em;
  transition: background .2s, color .2s;
  margin-top: auto;
}
.is-seo-reporting-page .sr-card:hover .sr-card-btn {
  background: var(--fire);
  color: #fff;
}

/* ═══════════════════════════════════════════
   HOW TO USE
═══════════════════════════════════════════ */
.is-seo-reporting-page .sr-how {
  background: var(--chalk);
  padding: 100px 0;
}

.is-seo-reporting-page .sr-how-header {
  text-align: center;
  max-width: 580px; margin: 0 auto 60px;
}
.is-seo-reporting-page .sr-how-h {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900; color: var(--ink);
  margin: 14px 0 16px; letter-spacing: -0.025em;
}
.is-seo-reporting-page .sr-how-sub {
  font-size: 1rem;
  color: rgba(13,30,53,0.6);
  line-height: 1.7; margin: 0;
}

/* Steps */
.is-seo-reporting-page .sr-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.is-seo-reporting-page .sr-step {
  text-align: center;
}
.is-seo-reporting-page .sr-step-num {
  font-family: var(--ff-head);
  font-size: 4rem; font-weight: 900;
  color: var(--fire);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.9;
}
.is-seo-reporting-page .sr-step-title {
  font-family: var(--ff-head);
  font-size: 1.15rem; font-weight: 800;
  color: var(--ink);
  margin: 0 0 12px; letter-spacing: -0.015em;
}
.is-seo-reporting-page .sr-step-desc {
  font-size: .9rem;
  color: rgba(13,30,53,0.6);
  line-height: 1.7; margin: 0;
}

/* ═══════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════ */
.is-seo-reporting-page .sr-faq {
  background: var(--mist);
  padding: 100px 0;
}

.is-seo-reporting-page .sr-faq-header {
  text-align: center;
  margin-bottom: 52px;
}
.is-seo-reporting-page .sr-faq-h {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900; color: var(--ink);
  margin: 14px 0 0; letter-spacing: -0.025em;
}

.is-seo-reporting-page .sr-faq-list {
  max-width: 740px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}

.is-seo-reporting-page .sr-faq-item {
  border-bottom: 1px solid var(--line2);
}
.is-seo-reporting-page .sr-faq-item:first-child {
  border-top: 1px solid var(--line2);
}

.is-seo-reporting-page .sr-faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 4px;
  background: transparent; border: none; cursor: pointer;
  font-family: var(--ff-body);
  font-size: 1rem; font-weight: 700;
  color: var(--ink);
  text-align: left;
  transition: color .2s;
}
.is-seo-reporting-page .sr-faq-q:hover {
  color: var(--fire);
}

.is-seo-reporting-page .sr-faq-icon {
  font-size: 1.4rem; font-weight: 300;
  color: var(--fire);
  line-height: 1; flex-shrink: 0;
  transition: transform .25s var(--ease);
}
.is-seo-reporting-page .sr-faq-item--open .sr-faq-icon {
  transform: rotate(45deg);
}

.is-seo-reporting-page .sr-faq-a {
  padding: 0 4px 22px;
}
.is-seo-reporting-page .sr-faq-a p {
  font-size: .95rem;
  color: rgba(13,30,53,0.65);
  line-height: 1.75; margin: 0;
}
.is-seo-reporting-page .sr-faq-a a {
  color: var(--fire);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.is-seo-reporting-page .sr-faq-a a:hover {
  color: var(--fire2);
}

/* ═══════════════════════════════════════════
   CTA
═══════════════════════════════════════════ */
.is-seo-reporting-page .sr-cta {
  background: var(--ink2);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.is-seo-reporting-page .sr-cta-inner {
  max-width: 620px; margin: 0 auto;
}
.is-seo-reporting-page .sr-cta-h {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: #fff;
  margin: 16px 0 16px; letter-spacing: -0.025em;
}
.is-seo-reporting-page .sr-cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7; margin: 0 0 36px;
}
.is-seo-reporting-page .sr-cta-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — 900px (2-column grid)
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .is-seo-reporting-page .sr-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .is-seo-reporting-page .sr-steps {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 480px; margin: 0 auto;
  }
  .is-seo-reporting-page .sr-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    text-align: left;
    align-items: start;
  }
  .is-seo-reporting-page .sr-step-num {
    font-size: 3rem; margin-bottom: 0;
    padding-top: 2px;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .is-seo-reporting-page .sr-hero        { padding: 110px 0 60px; }
  .is-seo-reporting-page .sr-cards-section { padding: 72px 0 88px; }
  .is-seo-reporting-page .sr-how         { padding: 72px 0; }
  .is-seo-reporting-page .sr-faq         { padding: 72px 0; }
  .is-seo-reporting-page .sr-cta         { padding: 72px 0; }
  .is-seo-reporting-page .sr-section-header { margin-bottom: 44px; }
  .is-seo-reporting-page .sr-how-header  { margin-bottom: 44px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — 600px (1-column grid)
═══════════════════════════════════════════ */
@media (max-width: 600px) {
  .is-seo-reporting-page .sr-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .is-seo-reporting-page .sr-hero-stats  { gap: 20px; }
  .is-seo-reporting-page .sr-stat-sep    { display: none; }
  .is-seo-reporting-page .sr-card-inner  { padding: 22px 22px 22px; }
  .is-seo-reporting-page .sr-step {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }
  .is-seo-reporting-page .sr-step-num { font-size: 2.4rem; }
  .is-seo-reporting-page .sr-faq-q   { font-size: .93rem; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — 480px
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .is-seo-reporting-page .sr-hero        { padding: 96px 0 56px; }
  .is-seo-reporting-page .sr-card-top    { flex-direction: column; align-items: flex-start; gap: 10px; }
  .is-seo-reporting-page .sr-cta         { padding: 60px 0; }
  .is-seo-reporting-page .sr-cta-actions { flex-direction: column; align-items: stretch; }
  .is-seo-reporting-page .sr-cta-actions .btn-primary,
  .is-seo-reporting-page .sr-cta-actions .btn-ghost { text-align: center; justify-content: center; }
}
