/* ==========================================================================
   SerpClix /click-quality/ — Click Quality Report page styles
   Layers on top of vnext/seo/css/seo_landing.css.
   All cq- prefixed to avoid collisions.
   ========================================================================== */

.cq-section { padding: 88px 0; }
.cq-section-light { background: #f7f9fb; }

@keyframes cqFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.cq-anim-up { animation: cqFadeUp 0.6s ease-out both; }
.cq-anim-d1 { animation: cqFadeUp 0.6s ease-out 0.08s both; }
.cq-anim-d2 { animation: cqFadeUp 0.6s ease-out 0.16s both; }
.cq-anim-d3 { animation: cqFadeUp 0.6s ease-out 0.24s both; }
.cq-anim-d4 { animation: cqFadeUp 0.6s ease-out 0.32s both; }

/* shared section heads */
.cq-section-center { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.cq-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, rgba(42,157,143,0.08), rgba(42,157,143,0.04));
  border: 1px solid rgba(42,157,143,0.12);
  border-radius: 20px; padding: 5px 16px;
  color: #2a9d8f;
  font-family: 'Poppins', system-ui, sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 18px;
}
.cq-section-title {
  font-family: 'Poppins', system-ui, sans-serif; font-size: 36px; font-weight: 800;
  line-height: 1.2; letter-spacing: -0.8px; margin-bottom: 14px; color: #1a2b3c;
}
.cq-section-subtitle { font-size: 17px; line-height: 1.75; color: #4a5d72; }

/* ===== HERO ===== */
.cq-hero {
  padding: 84px 0 72px;
  background: linear-gradient(170deg, #e8f5f0 0%, #f0faf6 40%, #fef9ed 100%);
  text-align: center;
}
.cq-hero h1 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 52px; font-weight: 800; line-height: 1.1; letter-spacing: -2px;
  max-width: 800px; margin: 0 auto 18px; color: #1a2b3c;
}
.cq-hero h1 .cq-highlight { color: #2a9d8f; }
.cq-hero-sub {
  font-size: 18px; line-height: 1.7; color: #4a5d72;
  max-width: 620px; margin: 0 auto;
}

/* ===== STAT GRID ===== */
.cq-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin: 56px auto 0;
}
.cq-stat-card {
  background: #ffffff;
  border: 1px solid #dde4eb;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26,43,60,0.06);
  padding: 28px 24px;
  text-align: left;
}
.cq-stat-value {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 40px; font-weight: 800; letter-spacing: -1.5px; line-height: 1.1;
  color: #1a2b3c;
}
.cq-stat-value .cq-unit { font-size: 20px; font-weight: 700; color: #7b8e9e; letter-spacing: 0; margin-left: 2px; }
.cq-stat-label {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 14px; font-weight: 700; line-height: 1.4;
  margin: 10px 0 6px; color: #1a2b3c;
}
.cq-stat-note { font-size: 13px; line-height: 1.5; color: #7b8e9e; }

/* ===== MEASUREMENT BLOCKS ===== */
.cq-measure-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cq-measure-card {
  background: #ffffff;
  border: 1px solid #dde4eb;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26,43,60,0.06);
  padding: 32px;
}
.cq-measure-card h3 {
  font-family: 'Poppins', system-ui, sans-serif; font-size: 18px; font-weight: 700;
  line-height: 1.3; margin-bottom: 12px; color: #1a2b3c; text-align: left;
}
.cq-measure-card p { font-size: 15px; line-height: 1.7; color: #4a5d72; margin-bottom: 10px; text-align: left; }
.cq-measure-card p:last-child { margin-bottom: 0; }
.cq-measure-figure {
  display: inline-block;
  background: #edf8f7; border: 1px solid #d4efec;
  border-radius: 8px;
  padding: 3px 10px;
  color: #228478; font-weight: 600; font-size: 14px;
}
.cq-measure-detail {
  border-top: 1px solid #eaeff4;
  margin-top: 16px; padding-top: 14px;
  font-size: 13px; line-height: 1.6; color: #7b8e9e; text-align: left;
}

/* ===== VERIFY BAND (dark) ===== */
.cq-verify-band { background: #1a2b3c; }
.cq-verify-band .cq-section-title { color: #ffffff; }
.cq-verify-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.cq-verify-inner .cq-section-subtitle { color: #8fa3b8; margin-bottom: 32px; }
.cq-verify-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cq-btn-primary {
  font-size: 14px; font-weight: 700; color: #1a2b3c;
  background: #ffd600; padding: 12px 24px;
  border-radius: 8px; border: none; cursor: pointer;
  font-family: 'Poppins', system-ui, sans-serif; text-transform: uppercase; letter-spacing: 0.3px;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.cq-btn-primary:hover { background: #ffe033; color: #1a2b3c; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,214,0,0.3); text-decoration: none; }
.cq-btn-secondary {
  font-size: 14px; font-weight: 600; color: #228478;
  padding: 12px 24px; border-radius: 8px;
  border: 1px solid #d4efec; background: #edf8f7; cursor: pointer;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.cq-btn-secondary:hover { background: #d4efec; color: #228478; text-decoration: none; }

/* ===== FAQ ===== */
.cq-faq-list { max-width: 760px; margin: 0 auto; }
.cq-faq-item {
  background: #ffffff;
  border: 1px solid #dde4eb;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26,43,60,0.06);
  padding: 24px 28px;
  margin-bottom: 16px;
}
.cq-faq-item h3 { font-family: 'Poppins', system-ui, sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #1a2b3c; text-align: left; }
.cq-faq-item p { font-size: 15px; line-height: 1.7; color: #4a5d72; text-align: left; margin: 0; }
.cq-faq-item p a { color: #228478; font-weight: 600; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .cq-hero h1 { font-size: 38px; letter-spacing: -1px; }
  .cq-stats-grid { grid-template-columns: 1fr 1fr; }
  .cq-measure-grid { grid-template-columns: 1fr; }
  .cq-section { padding: 64px 0; }
}
@media (max-width: 600px) {
  .cq-hero { padding: 64px 0 56px; }
  .cq-hero h1 { font-size: 32px; }
  .cq-stats-grid { grid-template-columns: 1fr; }
  .cq-section-title { font-size: 28px; }
}
