/* Font-display: swap fallback for system fonts until webfonts load */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: local('Roboto Slab');
}
:root {
  --blue-primary: #0055FF;
  --blue-dark: #00194C;
  --font-display: 'Roboto Slab', 'Georgia', serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-family: var(--font-body);
  color-scheme: light;
}

/* ── GLOBAL TYPOGRAPHY ── */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 68px !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.font-extrabold, .font-bold, .font-semibold {
  font-family: var(--font-display);
}

/* Nav links use display font */
.nav-link, .site-nav-links a, .site-nav-logo span {
  font-family: var(--font-display);
}

/* Buttons */
.btn-primary, .btn-outline-white, .btn-admin, .site-nav-cta {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

/* Stat numbers */
.stat-number, .hero-stat-num, .stat-chip-num, .stat-item-num {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Brand names in ticker */
.brand-name {
  font-family: var(--font-display);
}

/* Blog card titles */
.blog-card-title, .blog-card-title a {
  font-family: var(--font-display);
}

/* Testimonials */
.testimonial-name {
  font-family: var(--font-display);
}

/* Service cards */
.service-card h3 {
  font-family: var(--font-display);
}

/* Why-us cards */
.why-card h4 {
  font-family: var(--font-display);
}

/* Section labels / badges */
.section-label, .blog-badge, .hero-badge, .hero-stat-label, .stat-label {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}

/* BRANDS SECTION */
.brands-section {
  background: #f8faff;
  border-top: 1px solid #e5eaf5;
  border-bottom: 1px solid #e5eaf5;
  overflow: hidden;
}

.brands-ticker-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* fade edges */
.brands-ticker-wrap::before,
.brands-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.brands-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f8faff, transparent);
}
.brands-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f8faff, transparent);
}

.brands-ticker {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;
}

.brands-ticker-reverse {
  animation-direction: reverse;
  animation-duration: 35s;
}

.brands-ticker:hover {
  animation-play-state: paused;
}

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

.brand-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  white-space: nowrap;
  border-right: 1px solid #dde6f5;
  transition: background 0.2s;
  cursor: default;
}

.brand-item:hover {
  background: #eff4ff;
}

.brand-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.brand-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #374151;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

* { box-sizing: border-box; }
body { margin: 0; }

/* scroll-behavior:smooth moved to JS to avoid blocking paint */

/* LOGO MARK */
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #0055FF, #00194C);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 13px; letter-spacing: -0.5px;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--blue-primary);
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.65rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: #0044cc; transform: translateY(-1px); }

.btn-outline-white {
  display: inline-block;
  border: 2px solid white;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.65rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-white:hover { background: white; color: var(--blue-primary); }

/* NAV LINKS */
.nav-link {
  text-decoration: none;
  color: #374151;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--blue-primary);
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-link:hover { color: var(--blue-primary); }
.nav-link:hover::after { transform: scaleX(1); }

.mobile-nav-link {
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}
.mobile-nav-link:hover { color: var(--blue-primary); }

/* HERO */
.hero-section {
  background: #00194C;
  position: relative;
  overflow: hidden;
}

/* Video background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  pointer-events: none;
}

/* Dark overlay on top of video */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 25, 76, 0.78) 0%,
    rgba(0, 55, 180, 0.62) 60%,
    rgba(0, 25, 76, 0.72) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ABOUT */
.about-img-wrap { position: relative; }
.about-img-grid {
  position: relative;
  min-height: 320px;
}
.about-img-main {
  width: 100%; min-height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.about-placeholder-img { width: 100%; height: 280px; }
.about-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  min-width: 100px; text-align: center;
}

.service-list-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: #374151; padding: 4px 0;
}
.arrow-icon { color: var(--blue-primary); font-weight: bold; }

.stat-box { text-align: center; }
.stat-number {
  font-size: 2.5rem; font-weight: 900;
  color: var(--blue-primary); line-height: 1;
}
.stat-label { font-size: 0.75rem; font-weight: 600; color: #6b7280; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }

/* SERVICES */
.services-bg {
  background: linear-gradient(135deg, #00194C 0%, #0033a8 100%);
}

.service-card {
  background: white;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,85,255,0.15);
}
.service-icon-wrap {
  width: 56px; height: 56px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.service-link {
  color: var(--blue-primary);
  font-weight: 700; font-size: 0.85rem;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s;
}
.service-link:hover { text-decoration: underline; }

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--blue-primary) 0%, #0033a8 100%);
}

/* PROGRESS BARS */
.progress-bar-bg {
  height: 8px; background: #e5e7eb; border-radius: 99px; overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-primary), #4d90ff);
  border-radius: 99px;
  animation: growBar 1.2s ease-out forwards;
  transform-origin: left;
}
@keyframes growBar {
  from { width: 0 !important; }
}

/* BLOG CARDS */
.blog-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,85,255,0.12);
}
.blog-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-badge {
  display: inline-block;
  background: #eff6ff; color: var(--blue-primary);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  padding: 2px 8px; border-radius: 99px; margin-bottom: 8px;
}
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-title {
  font-size: 0.95rem; font-weight: 700; color: #111827;
  margin-bottom: 0.5rem; line-height: 1.4;
}
.blog-card-excerpt { font-size: 0.82rem; color: #6b7280; line-height: 1.6; flex: 1; }
.blog-card-meta { font-size: 0.75rem; color: #9ca3af; margin-top: 0.75rem; }

/* TESTIMONIALS */
.testimonial-card {
  background: #f9fafb;
  border-radius: 1rem; padding: 1.5rem;
  border-left: 4px solid var(--blue-primary);
}
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.95rem; color: #374151; font-style: italic; line-height: 1.7; margin-bottom: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), #4d90ff);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.85rem;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: #111827; }
.testimonial-role { font-size: 0.75rem; color: #6b7280; }
.testimonial-nav-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--blue-primary);
  background: transparent; color: var(--blue-primary);
  font-size: 1rem; cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-nav-btn:hover { background: var(--blue-primary); color: white; }

/* CONTACT */
.contact-section {
  background: linear-gradient(135deg, #00194C 0%, #0055FF 100%);
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; }
.form-input {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-input::placeholder { color: rgba(255,255,255,0.5); }
.form-input:focus { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.15); }

/* SOCIAL ICONS */
.social-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.social-icon:hover { background: var(--blue-primary); color: white; }

/* FADE IN ANIMATION */
.fade-in {
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.22s ease-out, transform 0.22s ease-out;
  will-change: opacity, transform;
  animation: fadeInFallback 0.35s ease-out 0.3s forwards;
}
.fade-in.visible { opacity: 1; transform: translateY(0); animation: none; will-change: auto; }
@keyframes fadeInFallback {
  to { opacity: 1; transform: translateY(0); }
}

/* ACTIVE NAV */
.nav-link.active { color: var(--blue-primary); }
.nav-link.active::after { transform: scaleX(1); }

/* DROPDOWN BRAND LINKS */
.dropdown-brand-link {
  display: block;
  padding: 0.3rem 0.5rem;
  border-radius: 0.4rem;
  color: #374151;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.dropdown-brand-link:hover {
  background: #eff6ff;
  color: var(--blue-primary);
}

/* BRAND TICKER LINKS */
.brand-item a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}
.brand-item:hover .brand-name {
  color: var(--blue-primary);
}

/* ADMIN BUTTON */
.btn-admin {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #1e293b;
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.45rem 1rem;
  border-radius: 0.45rem;
  text-decoration: none;
  border: 1px solid #334155;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  letter-spacing: 0.01em;
}
.btn-admin:hover {
  background: #0f172a;
  color: #60a5fa;
  border-color: #3b82f6;
}

/* BLOG SLIDER */
.blog-slider-wrap {
  overflow: hidden;
}

#blog-track {
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.blog-slide-exit {
  opacity: 0;
  transform: translateX(-18px);
  pointer-events: none;
}

.blog-slide-enter {
  animation: blogSlideIn 0.35s ease forwards;
}

@keyframes blogSlideIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Blog nav arrows */
.blog-nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--blue-primary);
  background: transparent;
  color: var(--blue-primary);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.blog-nav-btn:hover {
  background: var(--blue-primary);
  color: white;
}
.blog-nav-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

/* Blog dots */
.blog-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.blog-dot.active {
  background: var(--blue-primary);
  transform: scale(1.3);
}
.blog-dot:hover {
  background: #93c5fd;
}

/* SCROLL TOP BUTTON */
#scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--blue-primary); color: white;
  border: none; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,85,255,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
}
#scroll-top.visible { opacity: 1; pointer-events: auto; }
#scroll-top:hover { transform: scale(1.1); }

/* ── PHOSPHOR ICONS INTEGRATION ── */

/* Service card Phosphor icons */
.service-ph-icon {
  font-size: 2rem;
  color: #2563eb;
  line-height: 1;
}

/* About list icons */
.about-list-icon {
  font-size: 1.1rem;
  color: var(--blue-primary);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Hero stats row */
.hero-stats {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  margin-top: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-stats {
    justify-content: center;
  }
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  min-width: 80px;
  backdrop-filter: blur(4px);
}
.hero-stat-icon {
  font-size: 1.5rem;
  color: #93c5fd;
  line-height: 1;
}
.hero-stat-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  line-height: 1.1;
}
.hero-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

/* CTA trust badges */
.cta-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 99px;
}
.cta-trust-badge i { font-size: 0.9rem; }

/* Strengths visual icon bubbles */
.strengths-icon-bubble {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: white;
}

/* WHY US STRIP */
.why-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,85,255,0.1);
}
.why-icon {
  font-size: 2.2rem;
  color: var(--blue-primary);
  display: block;
  margin: 0 auto 0.75rem;
}
.why-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.4rem;
}
.why-card p {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════
   MOBILE RESPONSIVE — Homepage
══════════════════════════════════════════ */
html, body {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

@media (max-width: 768px) {
  /* Global section compacting */
  section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  
  /* Hero */
  .hero-inner {
    padding: 5rem 1rem 3rem !important;
  }
  .hero-h1 {
    font-size: clamp(1.8rem, 6.5vw, 2.5rem) !important;
    margin-bottom: 1rem !important;
  }
  .hero-sub {
    font-size: 0.92rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.6 !important;
  }
  .hero-cta {
    margin-bottom: 1.8rem !important;
    padding: 0.65rem 1.5rem !important;
    font-size: 0.85rem !important;
  }

  /* Hero stats — tightly spaced even row */
  .hero-stats {
    gap: 0.5rem !important;
    justify-content: center !important;
    margin-top: 1rem !important;
  }
  .hero-stat-item {
    padding: 0.5rem 0.6rem !important;
    min-width: 85px !important;
    max-width: 100px !important;
    flex: 1 1 85px !important;
    border-radius: 0.5rem !important;
  }
  .hero-stat-num {
    font-size: 1.15rem !important;
  }
  .hero-stat-label {
    font-size: 0.55rem !important;
    line-height: 1.25 !important;
  }

  /* Brands Section */
  .brands-section {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  /* About */
  .about-img-grid {
    min-height: 240px !important;
  }
  .about-img-main {
    min-height: 240px !important;
    border-radius: 1rem !important;
  }
  .about-img-main img {
    min-height: 240px !important;
    max-height: 300px !important;
  }
  .about-badge {
    bottom: 12px !important;
    right: 12px !important;
    padding: 0.5rem !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
  }
  .about-badge img {
    height: 38px !important;
  }
  
  .about-list-icon {
    font-size: 1rem !important;
  }
  .service-list-item {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }

  /* Strengths section */
  .strengths-img-wrap {
    min-height: 400px !important;
    height: auto !important;
    border-radius: 1rem !important;
  }
  .strengths-img-wrap h3 {
    font-size: 1.15rem !important;
    line-height: 1.35 !important;
    margin-bottom: 0.35rem !important;
  }
  .strengths-img-wrap p {
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
  }
  .strengths-img-wrap div span {
    font-size: 0.62rem !important;
    padding: 3px 6px !important;
  }

  /* Services */
  .services-bg {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .service-card {
    padding: 1.25rem !important;
    border-radius: 0.75rem !important;
  }
  .service-icon-wrap {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 0.75rem !important;
  }
  .service-ph-icon {
    font-size: 1.6rem !important;
  }
  .service-card h3 {
    font-size: 0.95rem !important;
    margin-bottom: 0.35rem !important;
  }
  .service-card p {
    font-size: 0.8rem !important;
    margin-bottom: 1rem !important;
  }

  /* CTA Banner */
  .cta-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .cta-section h2 {
    font-size: 1.35rem !important;
    line-height: 1.3 !important;
  }
  .cta-section .ph-rocket-launch {
    font-size: 1.6rem !important;
  }
  .cta-section .btn-outline-white {
    width: 100% !important;
    text-align: center !important;
    margin-top: 0.5rem !important;
  }

  /* Why Choose Us Cards */
  .why-card {
    padding: 1.25rem !important;
    border-radius: 0.75rem !important;
  }
  .why-icon {
    font-size: 1.8rem !important;
    margin-bottom: 0.5rem !important;
  }
  .why-card h4 {
    font-size: 0.9rem !important;
    margin-bottom: 0.25rem !important;
  }
  .why-card p {
    font-size: 0.78rem !important;
    line-height: 1.5 !important;
  }

  /* Blog */
  .blog-nav-btn {
    width: 36px !important;
    height: 36px !important;
  }
  .blog-card {
    border-radius: 0.75rem !important;
  }
  .blog-card-body {
    padding: 1rem !important;
  }
  .blog-card-title {
    font-size: 0.9rem !important;
  }
  .blog-card-excerpt {
    font-size: 0.78rem !important;
  }

  /* Contact form inputs */
  .form-input {
    font-size: 0.875rem !important;
    padding: 0.65rem 0.85rem !important;
  }
}

@media (max-width: 400px) {
  .hero-stats {
    gap: 0.35rem !important;
  }
  .hero-stat-item {
    padding: 0.45rem 0.5rem !important;
    min-width: 76px !important;
    max-width: 85px !important;
    flex: 1 1 76px !important;
  }
  .hero-stat-num {
    font-size: 1.05rem !important;
  }
}


