/* ==========================================================================
   Crawl & Technical Audit — Page Specific Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   Section 1: Hero Banner (Centered Big Mac Browser Window Showcase)
   -------------------------------------------------------------------------- */
.feature-hero-banner {
  position: relative;
  width: 100%;
  padding: 160px 0 0;
  background: radial-gradient(circle at 85% 25%, rgba(168, 85, 247, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 15% 75%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #090514 0%, #16082c 50%, #0c0517 100%);
  text-align: center;
  overflow: hidden;
}

.feature-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-browser-frame {
  max-width: 1040px;
  margin: 40px auto 0;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  background: rgba(14, 9, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.7), 0 0 50px rgba(134, 14, 223, 0.25);
  text-align: left;
}

.hero-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.browser-dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.browser-dots i:nth-child(1) {
  background: #ff5f57;
}

.browser-dots i:nth-child(2) {
  background: #febc2e;
}

.browser-dots i:nth-child(3) {
  background: #28c840;
}

.browser-address {
  margin-left: 12px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: monospace;
}

.hero-dashboard-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------
   Section 2: What This Stage Fixes — Modern Aligned Metric Grid
   -------------------------------------------------------------------------- */
.fix-impact-card {
  background: var(--color-card, #ffffff);
  border: 1px solid var(--color-border, rgba(0, 0, 0, 0.08));
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.fix-impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(134, 14, 223, 0.12);
  border-color: var(--color-primary, #860edf);
}

.fix-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary, #860edf);
  background: rgba(134, 14, 223, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  width: fit-content;
}

.fix-stat-num {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #860edf 0%, #4f008a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fix-stat-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--color-heading, #111111);
  margin-bottom: 8px;
}

.fix-stat-desc {
  font-size: 0.92rem;
  color: var(--color-body, #555555);
  line-height: 1.55;
  margin-bottom: 20px;
}

.fix-metric-bar {
  height: 6px;
  border-radius: 4px;
  background: rgba(134, 14, 223, 0.12);
  position: relative;
  overflow: hidden;
}

.fix-metric-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #860edf, #a855f7);
}

/* --------------------------------------------------------------------------
   Section 5: Scope Boundary Component
   -------------------------------------------------------------------------- */
/* .scope-boundary-card {
  background: var(--color-card, #ffffff);
  border-radius: 28px;
  border: 1px solid var(--color-border, rgba(0, 0, 0, 0.08));
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
} */

.scope-rule-card {
  background: var(--color-white);
  border: 1px solid var(--color-border, rgba(0, 0, 0, 0.06));
  border-radius: 20px;
  padding: 30px 24px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.scope-rule-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.08);
}

.scope-rule-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.scope-rule-icon svg {
  width: 22px;
  height: 22px;
}

.scope-rule-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ef4444;
  margin-bottom: 8px;
  display: block;
}

.scope-rule-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-heading, #111111);
  margin-bottom: 10px;
}

.scope-rule-desc {
  font-size: 0.92rem;
  color: var(--color-body, #555555);
  line-height: 1.55;
  margin: 0;
}

.scope-footer-note {
  background: var(--color-white);
  border: 1px dashed rgba(134, 14, 223, 0.2);
  border-radius: 14px;
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--color-body, #555555);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.scope-footer-note .note-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #860edf;
  background: rgba(134, 14, 223, 0.12);
  padding: 4px 12px;
  border-radius: 20px;
}