/* ===================================
   EON SPARK - MINIMALIST CSS STYLES
   Design Style: Minimalist
   ================================== */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #1D3557;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1D3557;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  margin-bottom: 16px;
}

p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #1D3557;
}

a {
  color: #E63946;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #C62936;
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 600;
  color: #1D3557;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 4px solid #E63946;
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: #1D3557;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* HEADER */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #F1FAEE;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1D3557;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.main-nav a:hover {
  color: #E63946;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #E63946;
  color: #FFFFFF;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
}

.mobile-menu-toggle:hover {
  background-color: #C62936;
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  z-index: 1999;
  transition: right 0.4s ease;
  padding: 80px 20px 20px 20px;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #1D3557;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #E63946;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1D3557;
  padding: 12px 0;
  border-bottom: 1px solid #F1FAEE;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #E63946;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: #E63946;
  color: #FFFFFF;
  border-color: #E63946;
}

.btn-primary:hover {
  background-color: #C62936;
  border-color: #C62936;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #1D3557;
  border-color: #1D3557;
}

.btn-secondary:hover {
  background-color: #1D3557;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 53, 87, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}

/* SECTIONS */
section {
  padding: 80px 0;
  margin-bottom: 0;
}

section:nth-child(even) {
  background-color: #F1FAEE;
}

.subheadline {
  font-size: 18px;
  color: #1D3557;
  margin-bottom: 24px;
  opacity: 0.8;
}

/* HERO SECTION */
.hero {
  background-color: #FFFFFF;
  text-align: center;
  padding: 100px 0;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #1D3557;
}

.hero .subheadline {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 32px auto;
}

.trust-badge,
.urgency,
.guarantee {
  margin-top: 24px;
  font-size: 14px;
  color: #1D3557;
  opacity: 0.7;
}

/* BREADCRUMB */
.breadcrumb {
  font-size: 14px;
  margin-bottom: 24px;
  color: #1D3557;
  opacity: 0.7;
}

.breadcrumb a {
  color: #1D3557;
}

.breadcrumb a:hover {
  color: #E63946;
}

/* CARDS & GRIDS */
.benefits-grid,
.service-cards,
.stats-grid,
.steps-grid,
.values-grid,
.options-grid,
.info-grid,
.tools-list,
.resource-grid,
.article-grid,
.story-grid,
.suggestions-grid,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: space-between;
}

.benefit-card,
.service-card,
.stat,
.step,
.value-card,
.option-card,
.info-section,
.tool-category,
.resource-card,
.article-card,
.story-card,
.suggestion-card,
.contact-item,
.program-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 24px;
  position: relative;
}

.benefit-card:hover,
.service-card:hover,
.option-card:hover,
.resource-card:hover,
.article-card:hover,
.story-card:hover,
.suggestion-card:hover,
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-card img,
.option-card img,
.contact-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.benefit-card h3,
.service-card h3,
.value-card h3,
.option-card h3,
.resource-card h3,
.article-card h3,
.story-card h3,
.suggestion-card h3,
.program-card h2 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1D3557;
}

.benefit-card p,
.service-card p,
.value-card p,
.option-card p,
.resource-card p,
.article-card p,
.story-card p,
.suggestion-card p,
.program-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #1D3557;
  margin-bottom: 16px;
}

/* PRICE */
.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #E63946;
  margin: 20px 0;
}

.payment-plan {
  font-size: 14px;
  color: #1D3557;
  opacity: 0.7;
  margin-bottom: 20px;
}

/* PROGRAM CARDS */
.program-card {
  flex: 1 1 100%;
  border-left: 4px solid #E63946;
}

.program-card.featured {
  border-left-color: #1D3557;
  background-color: #F1FAEE;
}

.tagline {
  font-size: 14px;
  color: #E63946;
  font-weight: 600;
  margin-bottom: 12px;
}

/* STATS */
.stat {
  text-align: center;
  padding: 24px;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.stat strong {
  display: block;
  font-size: 48px;
  font-family: 'Montserrat', sans-serif;
  color: #E63946;
  margin-bottom: 8px;
}

.stat span {
  display: block;
  font-size: 14px;
  color: #1D3557;
}

/* STEPS */
.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #E63946;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
}

.step h3 {
  margin-bottom: 8px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* TESTIMONIALS */
.testimonials {
  background-color: #F1FAEE;
}

.testimonial-slider,
.testimonial-card {
  margin: 40px 0;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #1D3557;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 600;
  color: #1D3557;
  margin-top: 16px;
}

.testimonial-card blockquote {
  font-size: 18px;
  line-height: 1.7;
  color: #1D3557;
  border-left: 4px solid #E63946;
  padding-left: 20px;
  margin: 0 0 16px 0;
}

/* PAIN POINTS */
.pain-points {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.pain-points li {
  padding: 16px 16px 16px 48px;
  margin-bottom: 16px;
  background-color: #F1FAEE;
  border-left: 4px solid #E63946;
  position: relative;
}

.pain-points li:before {
  content: "✗";
  position: absolute;
  left: 16px;
  color: #E63946;
  font-size: 20px;
}

.transition {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #E63946;
  margin-top: 32px;
}

/* CREDENTIALS */
.credentials-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.credentials-list li {
  padding: 12px 12px 12px 40px;
  margin-bottom: 12px;
  position: relative;
}

.credentials-list li:before {
  content: "✓";
  position: absolute;
  left: 12px;
  color: #E63946;
  font-size: 18px;
  font-weight: 700;
}

/* STORY CARDS */
.story-card .industry {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #E63946;
  font-weight: 600;
  margin-bottom: 8px;
}

.story-card .result {
  font-size: 18px;
  font-weight: 700;
  color: #1D3557;
  margin: 16px 0;
}

.story-card .program {
  font-size: 14px;
  color: #1D3557;
  opacity: 0.7;
  margin-top: 16px;
}

/* RESOURCES */
.resource-card .type {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #E63946;
  font-weight: 600;
  margin-bottom: 12px;
}

.category-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}

.category-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  background-color: #FFFFFF;
  border: 2px solid #E63946;
  color: #E63946;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.category-nav a:hover {
  background-color: #E63946;
  color: #FFFFFF;
}

.download-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}

.download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.download-item .format {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #E63946;
  font-weight: 600;
  padding: 4px 12px;
  background-color: #F1FAEE;
  border-radius: 4px;
}

/* ARTICLE CARDS */
.article-card .category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #E63946;
  font-weight: 600;
  margin-top: 16px;
  display: inline-block;
}

.article-card .read-time {
  font-size: 12px;
  color: #1D3557;
  opacity: 0.6;
  margin-left: 12px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
}

.faq-item {
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 4px;
  border-left: 4px solid #E63946;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 15px;
  margin-bottom: 0;
}

/* CONTACT PAGE */
.contact-methods {
  justify-content: center;
}

.contact-item {
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 100px 0 60px 0;
}

.success-icon {
  margin-bottom: 24px;
}

.success-icon img {
  width: 80px;
  height: 80px;
}

.note,
.alternative,
.disclaimer,
.no-pressure {
  font-size: 14px;
  color: #1D3557;
  opacity: 0.7;
  margin-top: 24px;
}

.return-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}

.return-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  background-color: #FFFFFF;
  border: 2px solid #1D3557;
  color: #1D3557;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.return-links a:hover {
  background-color: #1D3557;
  color: #FFFFFF;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 80px 0;
}

.legal-content h1 {
  margin-bottom: 32px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 16px;
}

/* FOOTER */
footer {
  background-color: #1D3557;
  color: #F1FAEE;
  padding: 60px 0 24px 0;
  margin-top: 80px;
}

footer h4 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
}

footer p,
footer a {
  color: #F1FAEE;
  font-size: 14px;
  line-height: 1.8;
}

footer a:hover {
  color: #FFFFFF;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 calc(33.333% - 48px);
  min-width: 250px;
}

.footer-section img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(241, 250, 238, 0.2);
  font-size: 14px;
  color: #F1FAEE;
  opacity: 0.7;
}

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1D3557;
  color: #F1FAEE;
  padding: 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.active {
  transform: translateY(0);
}

#cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

#cookie-banner p {
  flex: 1 1 400px;
  margin: 0;
  font-size: 14px;
  color: #F1FAEE;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

#accept-cookies {
  background-color: #E63946;
  color: #FFFFFF;
}

#accept-cookies:hover {
  background-color: #C62936;
}

#reject-cookies {
  background-color: transparent;
  color: #F1FAEE;
  border: 2px solid #F1FAEE;
}

#reject-cookies:hover {
  background-color: #F1FAEE;
  color: #1D3557;
}

#cookie-settings {
  background-color: transparent;
  color: #F1FAEE;
  border: 2px solid #F1FAEE;
}

#cookie-settings:hover {
  background-color: #F1FAEE;
  color: #1D3557;
}

/* COOKIE MODAL */
#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(29, 53, 87, 0.9);
  z-index: 2001;
  overflow-y: auto;
  padding: 20px;
}

#cookie-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-content h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F1FAEE;
  border-radius: 4px;
}

.cookie-category h3 {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  flex: 1 1 auto;
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#save-preferences {
  background-color: #E63946;
  color: #FFFFFF;
}

#save-preferences:hover {
  background-color: #C62936;
}

#close-modal {
  background-color: #1D3557;
  color: #FFFFFF;
}

#close-modal:hover {
  background-color: #142840;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 40px; }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Sections */
  section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .stat,
  .step,
  .value-card,
  .option-card,
  .info-section,
  .resource-card,
  .article-card,
  .story-card,
  .suggestion-card,
  .contact-item {
    flex: 1 1 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons a,
  .cta-buttons button {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  #cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Steps */
  .step {
    flex: 1 1 100%;
  }
  
  .download-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .hero h1 { font-size: 32px; }
  
  .price { font-size: 28px; }
  
  section {
    padding: 40px 0;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .benefit-card,
  .service-card,
  .value-card,
  .option-card,
  .resource-card,
  .article-card,
  .story-card,
  .suggestion-card,
  .program-card {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* ACCESSIBILITY */
:focus {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  #cookie-banner,
  #cookie-modal,
  .cta-buttons {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }
}

/* SMOOTH ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card,
.service-card,
.stat,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.featured-stat {
  font-size: 20px;
  font-weight: 600;
  color: #E63946;
  margin-top: 24px;
}

.social-proof {
  font-size: 14px;
  color: #1D3557;
  opacity: 0.7;
  margin-top: 24px;
}