/* ══════════════════════════════════════════════════════
   PAGE-SPECIFIC: Mugshot Suppression Service
   All classes prefixed supp- to avoid conflicts.

   IMPORTANT: The @font-face declaration, .supp-hero,
   .supp-hero-grid, and .supp-hero-visual CLS-critical styles
   are declared in the inline <style> block inside
   mugshot-suppression-service.php <head> so they are
   available before any external CSS loads.
   ══════════════════════════════════════════════════════ */


/* ══════════════════════
   HERO
══════════════════════ */
.supp-hero {
  background:
    radial-gradient(ellipse 70% 60% at 80% 80%, rgba(13,27,110,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(202,239,69,0.12) 0%, transparent 55%),
    linear-gradient(150deg, #020c1b 0%, #041427 55%, #020c1b 100%);
  padding: 100px 0 70px;
  margin-top: -76px; /* Pull background up behind fixed nav */
  padding-top: 176px; /* 76px nav + 100px original padding */
  min-height: 745px;
  contain: layout; /* prevents hero reflow from affecting elements below */
}

.supp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.supp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(202,239,69,0.12);
  border: 1px solid rgba(202,239,69,0.35);
  color: #caef45;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 18px;
  width: fit-content;
}

.supp-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}

.supp-hero h1 span { color: #caef45; }

.supp-hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 540px;
  min-height: 6em; /* reserves ~4 lines so font-swap can't shift elements below */
}

.supp-hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.supp-stat {
  text-align: center;
  background: rgba(202,239,69,0.08);
  border: 1px solid rgba(202,239,69,0.2);
  border-radius: 10px;
  padding: 16px 22px;
}

.supp-stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #caef45;
  line-height: 1;
  margin-bottom: 4px;
}

.supp-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.supp-hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* ══════════════════════
   BUTTONS
   (hover kept consistent with brand color)
══════════════════════ */
.supp-btn-primary {
  background: linear-gradient(135deg, #caef45 0%, #b8e020 100%);
  color: #0a1628 !important;
  padding: 14px 30px;
  border-radius: 7px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  transition: background 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(202,239,69,0.28);
}

.supp-btn-primary:hover {
  background: linear-gradient(135deg, #b8e020 0%, #a8d010 100%);
  color: #0a1628 !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(202,239,69,0.4);
}

.supp-btn-outline {
  border: 2px solid rgba(202,239,69,0.4);
  color: #caef45 !important;
  padding: 14px 30px;
  border-radius: 7px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  background: transparent;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.18s ease;
  text-decoration: none;
}

.supp-btn-outline:hover {
  border-color: rgba(202,239,69,0.9);
  background: rgba(202,239,69,0.1);
  color: #caef45 !important;
  transform: translateY(-3px);
}


/* ══════════════════════
   HERO VISUAL CARDS
   min-height reserves space → prevents CLS
══════════════════════ */
.supp-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 340px;        /* reserves space before font loads → prevents CLS */
  contain: layout style;    /* nothing inside can affect outside layout */
  overflow: hidden;         /* clips any internal shift within the reserved box */
  position: relative;
}

/* ══════════════════════════════════════════════════════════════════
   BROWSER MOCKUP - Modern Google Search Results Widget
   ══════════════════════════════════════════════════════════════════ */

.browser-mockup {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.browser-mockup:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.browser-header {
  background: #f1f3f4;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
}

.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27c93f; }

.browser-url {
  flex: 1;
  background: #ffffff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 10px;
  color: #5f6368;
  font-family: 'Sora', sans-serif;
  border: 1px solid #dfe1e5;
}

.browser-content {
  padding: 14px 16px;
  background: #ffffff;
}

.search-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 10px;
}

.search-label.success {
  color: #059669;
}

.search-result {
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease;
}

.search-result:last-of-type {
  margin-bottom: 0;
}

.search-result.negative {
  background: rgba(248, 113, 113, 0.08);
  border-left: 3px solid #f87171;
}

.search-result.positive {
  background: rgba(202, 239, 69, 0.08);
  border-left: 3px solid #caef45;
}

.search-result:hover {
  background: rgba(0, 0, 0, 0.04);
}

.result-number {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.search-result.negative .result-number {
  background: rgba(248, 113, 113, 0.2);
  color: #dc2626;
}

.search-result.positive .result-number {
  background: rgba(202, 239, 69, 0.3);
  color: #0a1628;
}

.result-content {
  flex: 1;
  min-width: 0;
}

.result-title {
  font-size: 12px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 2px;
  line-height: 1.3;
}

.result-url {
  font-size: 10px;
  color: #059669;
  font-family: 'Sora', sans-serif;
}

.search-result.negative .result-url {
  color: #dc2626;
}

.result-badge {
  font-size: 8px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.result-badge.danger {
  background: rgba(248, 113, 113, 0.15);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.result-badge.success {
  background: rgba(202, 239, 69, 0.2);
  color: #0a1628;
  border: 1px solid rgba(202, 239, 69, 0.4);
}

.suppressed-note {
  margin-top: 10px;
  padding: 8px 10px;
  background: rgba(202, 239, 69, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #0a1628;
  line-height: 1.4;
}

.suppressed-note svg {
  flex-shrink: 0;
  color: #059669;
}

/* Transformation Arrow */
.transformation-arrow {
  text-align: center;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.transformation-arrow svg {
  color: #caef45;
  filter: drop-shadow(0 2px 4px rgba(202, 239, 69, 0.3));
  width: 32px;
  height: 32px;
}

.transformation-arrow span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.7);
}

/* Old styles kept for backwards compatibility */

.supp-vis-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(6px);
  transition: border-color 0.3s;
}

.supp-vis-card:hover { border-color: rgba(202,239,69,0.4); }

.supp-vis-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(202,239,69,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.supp-vis-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 2px;
}

.supp-vis-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.supp-vis-tag {
  margin-left: auto;
  background: rgba(202,239,69,0.15);
  border: 1px solid rgba(202,239,69,0.3);
  color: #caef45;
  font-size: 0.7rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}


/* ══════════════════════
   SHARED SECTION STYLES
══════════════════════ */
.supp-section { padding: 80px 0; }
.supp-section-alt { background: #f8fafc; }
.supp-section-dark { background: #0a2540; }

.supp-section-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #caef45;
  margin-bottom: 10px;
}

.supp-section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #0a2540;
  line-height: 1.25;
  margin-bottom: 14px;
}

.supp-section-dark .supp-section-title { color: #fff; }
.supp-section-dark .supp-section-label { color: #caef45; }

.supp-section-sub {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 680px;
}

.supp-section-dark .supp-section-sub { color: rgba(255, 255, 255, 0.65); }
.supp-text-center { text-align: center; }
.supp-text-center .supp-section-sub { margin: 0 auto; }


/* ══════════════════════════════════════════════════════════════════
   SECTIONS - COMMON STYLES
   ══════════════════════════════════════════════════════════════════ */

.supp-section-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.7);
  max-width: 800px;
  margin: 0 auto 48px;
}

.supp-section-dark .supp-section-lead {
  color: rgba(255,255,255,0.7);
}

/* ══════════════════════════════════════════════════════════════════
   PROBLEM SECTION - INFOGRAPHIC STYLE
   ══════════════════════════════════════════════════════════════════ */

.problem-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.problem-infographic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.infographic-col {
  text-align: center;
  padding: 32px 24px;
  background: #ffffff;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
}

.infographic-col:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.infographic-col.solution-col {
  border-color: #caef45;
  background: linear-gradient(180deg, rgba(202, 239, 69, 0.05) 0%, #ffffff 100%);
}

.infographic-col.solution-col:hover {
  box-shadow: 0 12px 40px rgba(202, 239, 69, 0.2);
}

/* Visual Charts & Illustrations */
.infographic-visual {
  margin: 0 auto 24px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ═══ REDESIGNED CHART - Better 0.3% visibility ═══ */
.visual-chart-redesign {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-comparison {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.chart-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.chart-bar-new {
  width: 65px;
  border-radius: 8px 8px 0 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.chart-bar-new.big {
  height: 140px;
  background: linear-gradient(180deg, #f87171 0%, #dc2626 100%);
}

.chart-bar-new.small {
  height: 30px;
  background: linear-gradient(180deg, #94a3b8 0%, #64748b 100%);
  align-items: center;
}

.chart-percent {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.chart-percent-small {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.chart-bottom-label {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.chart-vs {
  font-size: 16px;
  font-weight: 800;
  color: #94a3b8;
  font-family: 'Sora', sans-serif;
  align-self: center;
  padding: 0 8px;
}

/* ═══ MINI SEARCH RESULTS - Column 2 ═══ */
.mini-search-results {
  width: 100%;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mini-search-header {
  background: #f8f9fa;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e5e7eb;
}

.mini-search-header span {
  font-size: 12px;
  color: #5f6368;
  font-family: 'Sora', sans-serif;
}

.mini-result {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f3f4f6;
}

.mini-result:last-of-type {
  border-bottom: none;
}

.mini-result.blocked {
  background: rgba(248, 113, 113, 0.05);
}

.mini-result-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mini-result-text {
  flex: 1;
  text-align: left;
  min-width: 0;
}

.mini-title {
  font-size: 11px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 2px;
  line-height: 1.3;
}

.mini-url {
  font-size: 9px;
  color: #dc2626;
  font-family: 'Sora', sans-serif;
}

.mini-result svg {
  flex-shrink: 0;
}

.cannot-remove-badge {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  font-size: 10px;
  font-weight: 700;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-top: 2px solid rgba(220, 38, 38, 0.2);
}

/* ═══ FIXED PAGE STACK - Column 3 ═══ */
.visual-pages-fixed {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  position: relative;
  padding: 20px 0 0 0;
  justify-content: center;
}

.page-stack-fixed {
  width: 130px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.page-stack-fixed.page-1 {
  border-color: #caef45;
  background: linear-gradient(135deg, rgba(202, 239, 69, 0.15) 0%, #ffffff 100%);
}

.page-stack-fixed.page-10 {
  border-color: #f87171;
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.08) 0%, #ffffff 100%);
  opacity: 0.5;
  transform: scale(0.95);
}

.page-divider-fixed {
  color: #94a3b8;
  margin: 4px 0;
}

.success-checkmark {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(5, 150, 105, 0.3));
}

/* Page badge and lines - shared by both old and new */
.page-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-badge.positive {
  background: rgba(202, 239, 69, 0.25);
  color: #0a1628;
  border: 1px solid #caef45;
}

.page-badge.negative {
  background: rgba(248, 113, 113, 0.2);
  color: #dc2626;
  border: 1px solid #f87171;
}

.page-line {
  height: 7px;
  border-radius: 3px;
  margin-bottom: 5px;
}

.page-line:last-child {
  margin-bottom: 0;
}

.page-line.positive {
  background: linear-gradient(90deg, #caef45 0%, rgba(202, 239, 69, 0.3) 100%);
}

.page-line.negative {
  background: linear-gradient(90deg, #f87171 0%, rgba(248, 113, 113, 0.2) 100%);
}

/* OLD STYLES - Keep for backwards compatibility */

/* Icon Badges */
.infographic-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.infographic-icon.problem {
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.15) 0%, rgba(220, 38, 38, 0.05) 100%);
  color: #dc2626;
}

.infographic-icon.barrier {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.15) 0%, rgba(249, 115, 22, 0.05) 100%);
  color: #f97316;
}

.infographic-icon.solution {
  background: linear-gradient(135deg, rgba(202, 239, 69, 0.3) 0%, rgba(202, 239, 69, 0.1) 100%);
  color: #0a1628;
}

/* Solution column - remove icon, center content vertically */
.solution-col .infographic-icon {
  display: none; /* Hide the icon for solution column */
}

.solution-col {
  display: flex;
  flex-direction: column;
}

.solution-col .infographic-visual {
  margin-bottom: 24px; /* Maintain same spacing even without icon */
}

.solution-col h3 {
  margin-top: 72px; /* Compensate for removed icon (56px height + 16px margin-bottom) */
}

.infographic-col h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.3;
}

.infographic-col p {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
}

.infographic-col p strong {
  color: #111827;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .problem-infographic {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .infographic-visual {
    height: 160px;
  }
}

/* OLD PROBLEM GRID STYLES - Keep for backwards compatibility */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.problem-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.problem-card:hover {
  border-color: #caef45;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: rgba(248,113,113,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f87171;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.problem-card p {
  color: rgba(0,0,0,0.7);
  line-height: 1.7;
}

.solution-highlight {
  background: linear-gradient(135deg, rgba(202,239,69,0.1) 0%, rgba(202,239,69,0.05) 100%);
  border: 2px solid #caef45;
  margin-top: 40px;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
}

.solution-highlight h3 {
  font-size: 1.5rem;
  color: #0a1628;
  margin-bottom: 12px;
}

.solution-highlight p {
  font-size: 1.1rem;
  color: rgba(0,0,0,0.8);
}

/* ══════════════════════════════════════════════════════════════════
   PROCESS SECTION - 3-PHASE WORKFLOW (REDESIGNED)
   ══════════════════════════════════════════════════════════════════ */

.process-workflow {
  margin-top: 60px;
  position: relative;
}

.process-phase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

.process-phase.reverse {
  direction: rtl;
}

.process-phase.reverse > * {
  direction: ltr;
}

.process-visual {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phase-animation {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* ═══ PHASE 1: Content Creation Animation ═══ */
.content-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 280px;
}

.content-piece {
  background: rgba(202, 239, 69, 0.1);
  border: 1px solid rgba(202, 239, 69, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInRight 0.6s ease-out forwards;
  animation-delay: var(--delay);
  opacity: 0;
  transform: translateX(-30px);
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.content-piece svg {
  flex-shrink: 0;
}

.content-piece span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.creation-counter {
  background: linear-gradient(135deg, rgba(202, 239, 69, 0.2) 0%, rgba(202, 239, 69, 0.05) 100%);
  border: 2px solid #caef45;
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  margin-top: 12px;
}

.counter-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #caef45;
  font-family: 'Sora', sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}

.counter-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══ PHASE 2: Authority Building Network ═══ */
.authority-network {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto;
}

.network-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #caef45 0%, #b8e020 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 0 20px rgba(202, 239, 69, 0.4);
  z-index: 2;
}

.network-center svg {
  color: #0a1628;
}

.network-center span {
  font-size: 10px;
  font-weight: 700;
  color: #0a1628;
  text-align: center;
}

.network-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(var(--angle));
  animation: pulse 2s ease-in-out infinite;
  animation-delay: calc(var(--angle) / 360 * 2s);
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.node-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, rgba(202, 239, 69, 0.6) 0%, rgba(202, 239, 69, 0.1) 100%);
  transform-origin: left center;
}

.node-dot {
  position: absolute;
  top: 50%;
  left: calc(50% + 90px);
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #caef45;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(202, 239, 69, 0.6);
}

.authority-meter {
  text-align: center;
  margin-top: 20px;
}

.meter-bar {
  width: 200px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto 8px;
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #caef45 0%, #059669 100%);
  border-radius: 4px;
  width: 0%;
  animation: fillMeter 3s ease-out forwards;
}

@keyframes fillMeter {
  to { width: 85%; }
}

.meter-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══ PHASE 3: Ranking Chart & Timeline ═══ */
.ranking-chart {
  width: 100%;
  max-width: 300px;
}

.chart-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 0 10px;
}

.progress-line {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 3px;
  background: rgba(202, 239, 69, 0.2);
  z-index: 0;
}

.progress-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #caef45 0%, #059669 100%);
  animation: progressLine 2s ease-out forwards;
}

@keyframes progressLine {
  to { width: 100%; }
}

.timeline-point {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.point-dot {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.timeline-point.active .point-dot {
  background: #caef45;
  border-color: #caef45;
  box-shadow: 0 0 12px rgba(202, 239, 69, 0.6);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.timeline-point span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.ranking-positions {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 20px;
}

.position-indicator {
  text-align: center;
}

.position-num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.position-indicator.negative .position-arrow {
  font-size: 24px;
  color: #f87171;
  animation: bounceDown 1s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.position-indicator.positive .position-checkmark {
  font-size: 32px;
  color: #059669;
  animation: checkPop 0.6s ease-out;
}

@keyframes checkPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.monitoring-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(202, 239, 69, 0.8);
  border: 1px solid rgba(5, 150, 105, 0.3);
  color: #000504;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 16px;
}

/* ═══ Process Content (Text Side) ═══ */
.process-content {
  padding: 20px 0;
}

.phase-number {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.number-circle {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #caef45 0%, #b8e020 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0a1628;
  font-family: 'Sora', sans-serif;
  box-shadow: 0 4px 12px rgba(202, 239, 69, 0.3);
}

.phase-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  font-family: 'Sora', sans-serif;
}

.process-content p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
}

.phase-stats {
  display: flex;
  gap: 24px;
}

.phase-stat {
  text-align: center;
}

.phase-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #caef45;
  font-family: 'Sora', sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}

.phase-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══ Connector Arrow ═══ */
.process-connector {
  text-align: center;
  margin: 20px 0;
}

.process-connector svg {
  animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ═══ Responsive ═══ */
@media (max-width: 900px) {
  .process-phase,
  .process-phase.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    direction: ltr;
  }
  
  .process-visual {
    order: -1;
  }
}

/* ══════════════════════════════════════════════════════════════════
   WHAT WE SUPPRESS - 6 ITEM GRID
   ══════════════════════════════════════════════════════════════════ */

.suppress-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.suppress-item {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.suppress-item:hover {
  border-color: #caef45;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.suppress-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(202,239,69,0.15) 0%, rgba(202,239,69,0.05) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #0a1628;
}

.suppress-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.suppress-item p {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   COMPARISON TABLE - REMOVAL VS SUPPRESSION
   ══════════════════════════════════════════════════════════════════ */

.comparison-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.comparison-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 36px;
  transition: all 0.3s ease;
}

.comparison-card.best {
  border-color: #caef45;
  background: linear-gradient(135deg, rgba(202,239,69,0.05) 0%, #fff 100%);
}

.comparison-badge {
  display: inline-block;
  background: #caef45;
  color: #0a1628;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.comparison-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
  color: rgba(0,0,0,0.75);
  line-height: 1.6;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-check {
  color: #7f962b;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.comparison-x {
  color: #f87171;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════
   TIMELINE - 4 STEPS
   ══════════════════════════════════════════════════════════════════ */

.timeline-container {
  max-width: 900px;
  margin: 48px auto 0;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 32px;
  top: 64px;
  bottom: 64px;
  width: 2px;
  background: rgba(202,239,69,0.3);
}

.timeline-step {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #caef45 0%, #b8e020 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0a1628;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(202,239,69,0.3);
  position: relative;
  z-index: 1;
}

.timeline-content {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
}

.timeline-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.timeline-duration {
  font-size: 0.85rem;
  color: #caef45;
  font-weight: 600;
  margin-bottom: 12px;
}

.timeline-content p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════════
   WHY IT WORKS - STATS & VISUALS
   ══════════════════════════════════════════════════════════════════ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.stat-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: #caef45;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.stat-large {
  font-size: 3rem;
  font-weight: 800;
  color: #caef45;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.stat-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   CTA BAND - BEFORE FAQ
   ══════════════════════════════════════════════════════════════════ */

.supp-cta-band-section {
  padding: 0;
  margin: 80px 0;
}

.supp-cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #020c1b 0%, #1a3a6e 40%, #020c1b 100%);
  border-radius: 24px;
  padding: 64px 56px;
  border: 1px solid rgba(202, 239, 69, 0.2);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.supp-cta-band::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(202, 239, 69, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.supp-cta-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #caef45;
  margin-bottom: 12px;
  display: block;
}

.supp-cta-band h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 20px;
}

.supp-cta-band h2 span {
  color: #caef45;
}

.supp-cta-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.supp-cta-stat-val {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
}

.supp-cta-stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

.supp-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  min-width: 200px;
  position: relative;
  z-index: 1;
}

.supp-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #caef45;
  color: #0a1628;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.supp-cta-btn:hover {
  background: #b8e020;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(202, 239, 69, 0.4);
  color: #0a1628;
  text-decoration: none;
}

.supp-cta-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

/* Hero visual enhancement styles */
.supp-visual-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  display: block;
}

.supp-visual-page {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.supp-visual-page.before {
  border-left: 3px solid #f87171;
}

.supp-visual-page.after {
  border-left: 3px solid #caef45;
}

.supp-visual-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.supp-visual-result:last-child {
  margin-bottom: 0;
}

.supp-visual-position {
  background: rgba(202,239,69,0.2);
  color: #caef45;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  min-width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.supp-visual-arrow {
  text-align: center;
  color: #caef45;
  font-size: 2rem;
  font-weight: 700;
  margin: 16px 0;
}

/* Hero CTA button for in-page use */
.supp-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #caef45 0%, #b8e020 100%);
  color: #0a1628;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(202,239,69,0.3);
}

.supp-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(202,239,69,0.4);
  text-decoration: none;
  color: #0a1628;
}

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 900px) {
  .supp-hero-grid        { grid-template-columns: 1fr; }
  .supp-hero-visual      { display: none; }
  .supp-hero             { padding: 100px 0 60px; margin-top: -76px; padding-top: 176px; }
  .problem-grid          { grid-template-columns: 1fr; }
  .comparison-container  { grid-template-columns: 1fr; }
  .process-grid          { grid-template-columns: 1fr 1fr; }
  .suppress-grid         { grid-template-columns: 1fr 1fr; }
  .stats-grid            { grid-template-columns: 1fr 1fr; }
  .proof-container       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .supp-section          { padding: 60px 0; }
  .supp-hero             { padding: 70px 0 50px; margin-top: -76px; padding-top: 146px; min-height: auto; }
  .supp-hero-lead        { min-height: 0; } /* remove height reservation on small screens */
  .process-grid          { grid-template-columns: 1fr; }
  .suppress-grid         { grid-template-columns: 1fr; }
  .stats-grid            { grid-template-columns: 1fr; }
  .supp-hero-stats       { gap: 16px; }
  .proof-container       { grid-template-columns: 1fr 1fr; }
  .supp-cta-band         { grid-template-columns: 1fr; padding: 40px 24px; }
}


/* ══════════════════════════════════════════════════════════════
   FOOTER TOUCH TARGET FIX — Google PageSpeed mobile requirement
   Min 48×48px touch area for footer copyright links
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .copyright-sec ul { display: flex; flex-wrap: wrap; gap: 4px; }
  .copyright-sec ul li { display: block; }
  .copyright-sec ul li a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px !important;
    font-size: 14px;
  }
}
