/* =========================================================================
   BAD REVIEW BUSTERS — CORE DESIGN SYSTEM
   "Neon-on-black, Ghostbusters-inspired reputation management"
   ========================================================================= */

/* -----------------------------------
   1. CSS CUSTOM PROPERTIES
   ----------------------------------- */
:root {
  /* Brand Colors */
  --slimer-green: #32ff00;
  --slimer-green-dim: rgba(50, 255, 0, 0.15);
  --proton-blue: #00d4ff;
  --caution-yellow: #fdb924;
  --caution-yellow-bar: #eab308;
  --ghost-red: #dc2626;
  --ghost-white: #f8f9fa;

  /* Backgrounds */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-input: #1e1e1e;
  --bg-glass: rgba(255, 255, 255, 0.05);
  --bg-glass-hover: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(255, 255, 255, 0.1);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;

  /* Typography */
  --font-display: 'Bungee', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --radius: 12px;
  --radius-sm: 8px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
}

/* -----------------------------------
   2. RESET & BASE
   ----------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* -----------------------------------
   3. TYPOGRAPHY
   ----------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  color: var(--text-secondary);
}

strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* Themed accent text */
.accent-green {
  color: var(--slimer-green);
}
.accent-blue {
  color: var(--proton-blue);
}
.accent-yellow {
  color: var(--caution-yellow);
}

/* -----------------------------------
   4. LAYOUT
   ----------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-lg {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slimer-green);
  margin-bottom: 0.75rem;
}

/* -----------------------------------
   5. NAVIGATION
   ----------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.nav-logo-text .accent-green {
  text-shadow: 0 0 12px rgba(50, 255, 0, 0.5);
}

.nav-logo-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ghost-red);
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  background: var(--slimer-green);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  box-shadow: 0 0 12px rgba(50, 255, 0, 0.3);
  transition: all var(--transition);
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(50, 255, 0, 0.6);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Nav Drawer */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-mobile a:hover {
  color: var(--text-primary);
}

.nav-mobile .nav-cta {
  text-align: center;
  margin-top: 0.5rem;
}

/* -----------------------------------
   6. HERO
   ----------------------------------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem 4rem;
  max-width: 900px;
}

.hero-badge {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--ghost-red);
  border: 6px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #fff;
  animation: pulse-glow 2.5s infinite ease-in-out;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Proton Stream Background Animation */
.proton-stream {
  position: absolute;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--proton-blue), var(--slimer-green), transparent);
  filter: blur(2px);
  opacity: 0.4;
  animation: stream 4s infinite linear;
  z-index: 1;
}

.proton-stream:nth-child(1) {
  top: 25%;
  animation-delay: 0s;
}
.proton-stream:nth-child(2) {
  top: 55%;
  animation-delay: 1.5s;
}
.proton-stream:nth-child(3) {
  top: 75%;
  animation-delay: 0.7s;
}

/* -----------------------------------
   7. BUTTONS
   ----------------------------------- */
.btn-primary {
  display: inline-block;
  background: var(--slimer-green);
  color: #000;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(50, 255, 0, 0.4);
  transition: all var(--transition);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(50, 255, 0, 0.7);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--slimer-green);
  color: var(--slimer-green);
  box-shadow: 0 0 15px rgba(50, 255, 0, 0.2);
}

.btn-lg {
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
}

/* -----------------------------------
   8. CARDS
   ----------------------------------- */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition), background var(--transition);
}

.glass-card:hover {
  border-color: rgba(50, 255, 0, 0.2);
  background: var(--bg-glass-hover);
}

.caution-border {
  border-image: repeating-linear-gradient(-45deg, var(--caution-yellow), var(--caution-yellow) 10px, #000 10px, #000 20px) 20;
  border-width: 5px;
  border-style: solid;
}

/* Feature / Service Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: rgba(50, 255, 0, 0.3);
  transform: translateY(-4px);
}

.feature-card .icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--slimer-green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--slimer-green);
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* -----------------------------------
   9. MARQUEE BAR
   ----------------------------------- */
.marquee {
  background: var(--caution-yellow-bar);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.marquee-content {
  display: inline-flex;
  gap: 3rem;
  animation: scroll-left 20s linear infinite;
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-style: italic;
  color: #000;
}

/* -----------------------------------
   10. STAT BAND
   ----------------------------------- */
.stat-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--slimer-green);
  text-shadow: 0 0 20px rgba(50, 255, 0, 0.3);
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* -----------------------------------
   11. PROCESS STEPS
   ----------------------------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 2rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -1rem;
  left: 2rem;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--slimer-green);
  background: var(--bg-primary);
  padding: 0 0.5rem;
  text-shadow: 0 0 15px rgba(50, 255, 0, 0.4);
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.process-step p {
  font-size: 0.95rem;
}

/* -----------------------------------
   12. PRICING CARDS
   ----------------------------------- */

/* --- Billing Toggle Switch --- */
.billing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.billing-toggle {
  display: inline-flex;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  padding: 5px;
  position: relative;
}

.billing-option {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 1.75rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.billing-option:hover {
  color: var(--text-secondary);
}

.billing-option.active {
  background: var(--slimer-green);
  color: #000;
}

.save-badge {
  background: rgba(50, 255, 0, 0.15);
  color: var(--slimer-green);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
}

.billing-option.active .save-badge {
  background: rgba(0, 0, 0, 0.18);
  color: #000;
}

/* --- Intro Offer Pill --- */
.intro-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(50, 255, 0, 0.12), rgba(50, 255, 0, 0.04));
  border: 1px solid rgba(50, 255, 0, 0.3);
  color: var(--slimer-green);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* --- Price Display (with renewal line) --- */
.pricing-price .price-line {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}

.pricing-price .price-renew {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.pricing-price .price-renew strong {
  color: var(--slimer-green);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  border-color: rgba(50, 255, 0, 0.2);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--slimer-green);
  margin: 1rem 0 0.5rem;
}

.pricing-card .price-suffix {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card ul {
  margin: 1.5rem 0;
}

.pricing-card ul li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card ul li i {
  color: var(--slimer-green);
  font-size: 0.85rem;
}

.pricing-card.featured {
  border-color: var(--slimer-green);
  box-shadow: 0 0 30px rgba(50, 255, 0, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--slimer-green);
  color: #000;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  white-space: nowrap;
}

/* -----------------------------------
   13. FORMS
   ----------------------------------- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-input);
  border: 2px solid #3a3a3a;
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  transition: border-color var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--slimer-green);
  box-shadow: 0 0 10px rgba(50, 255, 0, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkbox (Clickwrap Agreement) */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1rem 0;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--slimer-green);
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.checkbox-group label a {
  color: var(--slimer-green);
  text-decoration: underline;
}

/* -----------------------------------
   14. ROI CALCULATOR
   ----------------------------------- */
.roi-calculator {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
}

.roi-calculator-inner {
  display: grid;
  grid-template-columns: 1fr;
}

.roi-inputs {
  padding: 2.5rem;
}

.roi-results {
  padding: 2.5rem;
  background: rgba(50, 255, 0, 0.04);
  border-top: 1px solid var(--border-subtle);
  display: none;
}

.roi-results.active {
  display: block;
}

.roi-slider-group {
  margin-bottom: 1.75rem;
}

.roi-slider-group label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.roi-slider-group label .value {
  color: var(--slimer-green);
  font-family: var(--font-display);
  font-size: 1rem;
}

.roi-slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: #2a2a2a;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--slimer-green);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(50, 255, 0, 0.4);
}

.roi-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--slimer-green);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 10px rgba(50, 255, 0, 0.4);
}

.roi-result-big {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--ghost-red);
  text-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
  margin: 0.5rem 0;
}

.roi-breakdown {
  margin: 1.5rem 0;
}

.roi-breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.roi-breakdown-row:last-child {
  border-bottom: none;
}

.roi-breakdown-row .label {
  color: var(--text-secondary);
}

.roi-breakdown-row .value {
  color: var(--text-primary);
  font-weight: 600;
}

/* -----------------------------------
   15. FAQ ACCORDION
   ----------------------------------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--slimer-green);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--transition);
  color: var(--slimer-green);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding var(--transition);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* -----------------------------------
   16. CTA SECTION
   ----------------------------------- */
.cta-section {
  text-align: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-section-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* -----------------------------------
   17. BLOG
   ----------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: rgba(50, 255, 0, 0.3);
  transform: translateY(-4px);
}

.blog-card-header {
  height: 8px;
}

.blog-card-body {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slimer-green);
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card p {
  font-size: 0.9rem;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.blog-card .read-more {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--slimer-green);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition-fast);
}

.blog-card:hover .read-more {
  gap: 0.75rem;
}

/* Article Layout */
.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-body h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
}

.article-body h3 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.article-body p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--text-secondary);
}

.article-body ul li,
.article-body ol li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.article-body ol li {
  list-style: decimal;
}

.article-body strong {
  color: var(--text-primary);
}

.article-body blockquote {
  border-left: 4px solid var(--slimer-green);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--slimer-green-dim);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}

.article-body blockquote p {
  color: var(--text-primary);
}

.article-body .stat-callout {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

.article-body .stat-callout .big-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--slimer-green);
}

/* -----------------------------------
   18. LEGAL TEXT
   ----------------------------------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.legal-content .last-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin: 2.5rem 0 1rem;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 2rem 0 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 1.5rem 1.5rem;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.legal-content ol li {
  list-style: decimal;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.legal-content strong {
  color: var(--text-primary);
}

/* -----------------------------------
   19. FOOTER
   ----------------------------------- */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 1.5rem 2rem;
  background: var(--bg-primary);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--slimer-green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--slimer-green);
}

/* Deerflow Branding Badge */
.deerflow-badge {
  position: fixed;
  bottom: 16px;
  right: 16px;
  font-size: 0.7rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 0.3rem 0.7rem;
  opacity: 0.5;
  transition: all var(--transition);
  z-index: 50;
  text-decoration: none;
}

.deerflow-badge:hover {
  opacity: 1;
  border-color: var(--slimer-green);
  color: var(--slimer-green);
}

/* -----------------------------------
   20. UTILITIES
   ----------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-3 { margin-bottom: 3rem; }
.hidden { display: none; }
.bg-secondary { background: var(--bg-secondary); }
.bg-tertiary { background: var(--bg-tertiary); }
.full-width { width: 100%; }

.divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 3rem 0;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.breadcrumbs a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--slimer-green);
}

.breadcrumbs .separator {
  margin: 0 0.5rem;
  color: var(--text-muted);
}

/* Alert/Notice Box */
.notice-box {
  background: rgba(253, 185, 36, 0.08);
  border: 1px solid rgba(253, 185, 36, 0.2);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.notice-box strong {
  color: var(--caution-yellow);
}

/* -----------------------------------
   21. ANIMATIONS
   ----------------------------------- */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(50, 255, 0, 0.4); }
  50% { box-shadow: 0 0 40px rgba(50, 255, 0, 0.8); }
}

@keyframes stream {
  0% { transform: translateX(-50%) translateY(0); }
  100% { transform: translateX(0%) translateY(30px); }
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fade-in-up 0.6s ease-out forwards;
}

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* -----------------------------------
   22. RESPONSIVE
   ----------------------------------- */
@media (min-width: 768px) {
  .roi-calculator-inner {
    grid-template-columns: 1fr 1fr;
  }

  .roi-results {
    border-top: none;
    border-left: 1px solid var(--border-subtle);
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-mobile.active {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-content {
    padding: 4rem 1.5rem 3rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
