/* Modern B2B Landing Page Styles
******************************************************************************* */

/* Global Font Settings */
body {
  font-family: 'Inter', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

/* Fixed Navbar at Top */
nav.layout-navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;

}

nav.layout-navbar .navbar.landing-navbar {
  margin-block-start: 0 !important;
}

nav.layout-navbar .navbar.landing-navbar .navbar-nav .nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
}

nav.layout-navbar .navbar.landing-navbar .navbar-brand {
  font-size: 0.9rem;
}

@media (max-width: 991.98px) {
  
  
  nav.layout-navbar .navbar.landing-navbar .navbar-nav .nav-link {
    font-size: 0.9rem;
  }
}


/* Hero Section */
.hero-modern {
  background: #E8F7EE;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 6rem 0;
}

.hero-background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  opacity: 0;
}

.hero-content {
  color: #222B45;
  z-index: 2;
  position: relative;
}

.badge-modern {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(37, 211, 102, 0.2);
  margin-bottom: 1.5rem;
  gap: 0.5rem;
}

.badge-modern i {
  font-size: 1rem;
  color: #25D366;
}

.badge-modern .badge-text {
  color: #25D366;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-title-modern {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: #222B45;
  margin-bottom: 1.5rem;
  font-family: 'Outfit', sans-serif;
}

.hero-title-modern .gradient-text {
  background: linear-gradient(135deg, #25D366 0%, #1DA955 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: #222B45;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-modern-primary {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-modern-primary:hover {
  background: #1DA955;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: white;
}

.btn-modern-outline {
  background: transparent;
  color: #25D366;
  border-color: #25D366;
}

.btn-modern-outline:hover {
  background: #25D366;
  color: white;
  transform: translateY(-2px);
}

.btn-modern-light {
  background: white;
  color: #25D366;
}

.btn-modern-light:hover {
  background: #f8f9fa;
  color: #1DA955;
  transform: translateY(-2px);
}

.btn-modern-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-modern-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.hero-stats {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(37, 211, 102, 0.2);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #25D366;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: #8F9BB3;
  margin-top: 0.5rem;
}

.hero-visual {
  position: relative;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  top: 50%;
  right: -5%;
  animation-delay: 1s;
}

.floating-card.card-3 {
  bottom: 15%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.card-content {
  flex: 1;
}

.card-title {
  font-weight: 600;
  color: #222B45;
  margin-bottom: 0.25rem;
}

.card-subtitle {
  font-size: 0.875rem;
  color: #8F9BB3;
}

.hero-dashboard-preview {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  z-index: 1;
  animation: pulse-scale 4s ease-in-out infinite;
}

@keyframes pulse-scale {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.hero-shape-bottom {
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  min-height: 80px;
  color: white;
  z-index: 1;
  overflow: hidden;
}

.hero-shape-bottom svg {
  width: 100%;
  height: 100%;
  min-height: 80px;
  display: block;
  transform: scaleY(1);
  transform-origin: bottom;
}

@media (max-width: 991.98px) {
  .hero-shape-bottom {
    min-height: 60px;
  }
  
  .hero-shape-bottom svg {
    min-height: 60px;
  }
}

@media (max-width: 575.98px) {
  .hero-shape-bottom {
    min-height: 40px;
  }
  
  .hero-shape-bottom svg {
    min-height: 40px;
  }
}

/* Features Section */
.features-modern {
  padding: 6rem 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #222B45;
  font-family: 'Outfit', sans-serif;
}

.section-description {
  font-size: 1rem;
  color: #8F9BB3;
  max-width: 600px;
}

.feature-card-modern {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #25D366, #1DA955);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card-modern:hover::before {
  transform: scaleX(1);
}

.feature-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: #25D366;
}

.feature-icon-wrapper {
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.bg-primary-light {
  background: rgba(37, 211, 102, 0.1);
}

.bg-success-light {
  background: rgba(29, 169, 85, 0.1);
}

.bg-info-light {
  background: rgba(0, 201, 255, 0.1);
}

.bg-warning-light {
  background: rgba(255, 179, 0, 0.1);
}

.bg-danger-light {
  background: rgba(246, 78, 96, 0.1);
}

.bg-secondary-light {
  background: rgba(143, 155, 179, 0.1);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222B45;
  margin-bottom: 1rem;
  font-family: 'Outfit', sans-serif;
}

.feature-description {
  color: #8F9BB3;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-link {
  color: #25D366;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.feature-link:hover {
  color: #1DA955;
  transform: translateX(5px);
}

/* Anti-Block Protection Section */
.anti-block-modern {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.anti-block-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.anti-block-content {
  position: relative;
  z-index: 2;
}

.anti-block-features {
  margin-top: 2rem;
}

.anti-block-item {
  transition: all 0.3s ease;
}

.anti-block-item:hover {
  transform: translateX(10px);
}

.anti-block-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.anti-block-text h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222B45;
  margin-bottom: 0.75rem;
}

.anti-block-visual {
  position: relative;
  padding: 2rem 0;
}

.protection-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.protection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #25D366, #1DA955);
}

.protection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.protection-card.card-1 {
  animation: slideInLeft 0.6s ease-out;
}

.protection-card.card-2 {
  animation: slideInRight 0.6s ease-out 0.2s both;
}

.card-header-protection {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #222B45;
}

.card-header-protection i {
  font-size: 1.5rem;
}

.card-body-protection {
  padding: 0;
}

.message-count {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(29, 169, 85, 0.1) 100%);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.count-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: #25D366;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.count-label {
  display: block;
  font-size: 1rem;
  color: #8F9BB3;
  font-weight: 600;
}

.arrow-down {
  text-align: center;
  margin: 1rem 0;
  color: #25D366;
  font-size: 2rem;
  animation: bounce 2s infinite;
}

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

.distribution-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  font-size: 0.95rem;
}

.dist-item i {
  font-size: 1.5rem;
  width: 32px;
  text-align: center;
}

.dist-item span {
  flex: 1;
  color: #8F9BB3;
}

.dist-item strong {
  color: #222B45;
  font-weight: 700;
}

.dist-item.bg-warning-light {
  background: rgba(255, 179, 0, 0.1) !important;
  border-left: 3px solid #FFB300;
}

.protection-stats {
  display: flex;
  gap: 1.5rem;
  justify-content: space-around;
}

.stat-item-protection {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.stat-icon-protection {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(37, 211, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  font-size: 1.5rem;
}

.stat-info-protection {
  flex: 1;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #25D366;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label-small {
  font-size: 0.875rem;
  color: #8F9BB3;
  font-weight: 600;
}

.bg-gradient-light {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Stats Section */
.stats-modern {
  padding: 4rem 0;
  background: linear-gradient(135deg, #25D366 0%, #1DA955 100%);
  color: white;
}

.stats-modern .stat-box-modern {
  padding: 2rem;
  color: white;
}

.stats-modern .stat-icon {
  color: white;
  opacity: 1;
}

.stats-modern .stat-icon i {
  color: white;
  opacity: 0.95;
}

.stats-modern .stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: white;
}

.stats-modern .stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  opacity: 1;
}

/* Pricing Section */
.pricing-modern {
  padding: 6rem 0;
}

.pricing-card-modern {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.pricing-card-featured {
  border-color: #25D366;
  box-shadow: 0 20px 60px rgba(37, 211, 102, 0.2);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #25D366;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222B45;
  margin-bottom: 1.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: #8F9BB3;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #25D366;
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: #8F9BB3;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: #222B45;
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature.feature-disabled {
  color: #8F9BB3;
  text-decoration: line-through;
}

.pricing-feature i {
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
}

.pricing-feature:not(.feature-disabled) i {
  color: #25D366;
}

.pricing-feature.feature-disabled i {
  color: #8F9BB3;
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-pricing-primary {
  background: #25D366;
  color: white;
}

.btn-pricing-primary:hover {
  background: #1DA955;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-pricing-outline {
  background: transparent;
  color: #25D366;
  border-color: #25D366;
}

.btn-pricing-outline:hover {
  background: #25D366;
  color: white;
}

.btn-pricing-trial {
  background: transparent;
  color: #F64E60;
  border-color: #F64E60;
}

.btn-pricing-trial:hover {
  background: #F64E60;
  color: white;
}

/* Testimonials */
.testimonials-modern {
  padding: 6rem 0;
  background: #f8f9fa;
}

.testimonial-card-modern {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #222B45;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.author-name {
  font-weight: 600;
  color: #222B45;
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.875rem;
  color: #8F9BB3;
}

/* CTA Section */
.cta-modern {
  padding: 6rem 0;
  background: linear-gradient(135deg, #25D366 0%, #1DA955 100%);
  position: relative;
  overflow: hidden;
}

.cta-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.cta-modern .container {
  position: relative;
  z-index: 2;
}

.cta-modern .row {
  position: relative;
  z-index: 2;
}

.cta-actions {
  position: relative;
  z-index: 3;
}

.cta-actions a {
  position: relative;
  z-index: 3;
  cursor: pointer;
  pointer-events: auto;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  font-family: 'Outfit', sans-serif;
  position: relative;
  z-index: 2;
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

/* Contact Section */
.contact-modern {
  padding: 6rem 0;
}

.contact-card-modern {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.contact-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-color: #25D366;
}

.contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.contact-label {
  font-size: 0.875rem;
  color: #8F9BB3;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.contact-value {
  font-size: 1.125rem;
  color: #222B45;
  font-weight: 600;
  text-decoration: none;
  display: block;
}

.contact-value:hover {
  color: #25D366;
}

/* Footer Modern Styling */
.landing-footer {
  background: linear-gradient(135deg, #222B45 0%, #1a2233 100%) !important;
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 0 2rem 0;
  margin-top: 4rem;
}

.landing-footer .footer-bottom {
  background: transparent !important;
}

.landing-footer h5 {
  color: white;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.landing-footer .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.7;
}

.landing-footer .text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: all 0.3s ease;
  text-decoration: none;
}

.landing-footer .text-white-50:hover {
  color: #25D366 !important;
  transform: translateX(5px);
}

.landing-footer .list-unstyled li {
  margin-bottom: 0.75rem;
}

.landing-footer .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
  margin-top: 2rem;
  padding-top: 2rem;
}

.landing-footer .footer-bottom-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.landing-footer .d-flex.gap-2 a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.landing-footer .d-flex.gap-2 a:hover {
  background: #25D366;
  color: white !important;
  transform: translateY(-3px);
}

.landing-footer svg {
  transition: all 0.3s ease;
}

.landing-footer a:hover svg {
  transform: scale(1.1);
}

/* Partners */
.partners-modern {
  padding: 4rem 0;
}

.partner-card-modern {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.partner-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-card-modern img {
  max-height: 60px;
  width: auto;
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-title-modern {
    font-size: 2.5rem;
  }
  
  .floating-card {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .floating-card.card-1,
  .floating-card.card-2,
  .floating-card.card-3 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  
  .hero-visual {
    height: auto;
    margin-top: 3rem;
  }
  
  .pricing-card-featured {
    transform: scale(1);
  }
}

@media (max-width: 767.98px) {
  .hero-title-modern {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

