/* ============================================================
   RESTORE GROUP FL INC — Global Stylesheet
   Brand Colors: Black #191b1d | Gray #42525d | Red #cb1920 | LightRed #e83643
   Fonts: Lato (Semi-Bold) + system fallbacks
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Oswald:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --black:      #191b1d;
  --gray:       #42525d;
  --red:        #cb1920;
  --red-light:  #e83643;
  --white:      #ffffff;
  --off-white:  #f5f5f5;
  --light-gray: #e8e8e8;
  --mid-gray:   #8a9ba8;

  --font-main:  'Lato', sans-serif;
  --font-head:  'Oswald', sans-serif;

  --nav-h:      88px;
  --transition: 0.3s ease;
  --shadow:     0 4px 24px rgba(0,0,0,0.15);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.25);
  --radius:     4px;
  --radius-lg:  8px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-main); }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { font-size: 1rem; line-height: 1.75; color: var(--gray); }

/* ── Utility Classes ── */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

.text-red    { color: var(--red); }
.text-white  { color: var(--white); }
.text-gray   { color: var(--gray); }
.text-center { text-align: center; }

.bg-black { background: var(--black); }
.bg-gray  { background: var(--gray); }
.bg-red   { background: var(--red); }
.bg-off   { background: var(--off-white); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ── Section Label ── */
.section-label {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--red);
  margin-right: 10px;
  vertical-align: middle;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(203,25,32,0.4);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-outline-dark {
  border: 2px solid var(--red);
  color: var(--red);
}
.btn-outline-dark:hover {
  background: var(--red);
  color: var(--white);
}

.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }

/* ── Divider Line ── */
.divider-red {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 1rem 0 1.5rem;
}
.divider-red.center { margin: 1rem auto 1.5rem; }

/* ── Card Base ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ── Overlay ── */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(25,27,29,0.4) 0%, rgba(25,27,29,0.85) 100%);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

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

/* ── Page Hero Banner ── */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero .overlay { background: linear-gradient(to right, rgba(25,27,29,0.92) 40%, rgba(25,27,29,0.5) 100%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); }
.page-hero .breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: var(--red); }
.page-hero .breadcrumb a:hover { color: var(--red-light); }

/* ── Navigation ── */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-bottom: 3px solid var(--red);
}
#main-nav.scrolled {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  height: 72px;
  border-bottom: 3px solid var(--red);
}
#main-nav.solid {
  background: var(--white);
}

.nav-inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo img { height: 62px; width: auto; transition: height var(--transition); object-fit: contain; }
#main-nav.scrolled .nav-logo img { height: 50px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  padding: 6px 0;
  position: relative;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links > li > a:hover::after,
.nav-links > li.active > a::after { width: 100%; }
.nav-links > li > a:hover { color: var(--red); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-top: 3px solid var(--red);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 100;
  /* Bridge gap: invisible padding so mouse stays inside the li */
  padding-top: 12px;
  margin-top: 0;
}
/* Invisible bridge between nav link and dropdown to prevent gap-close bug */
.nav-links > li > .dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: -10px;
  right: -10px;
  height: 14px;
  background: transparent;
}
.nav-links > li:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--light-gray);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover {
  background: rgba(203,25,32,0.06);
  color: var(--red);
  padding-left: 28px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-phone {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone i { color: var(--red); }
.nav-phone:hover { color: var(--red); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.mobile-open, .nav-cta.mobile-open { display: flex; }
  .nav-links.mobile-open {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 0;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    border-top: 3px solid var(--red);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  }
  .nav-links.mobile-open > li { width: 100%; border-bottom: 1px solid var(--light-gray); }
  .nav-links.mobile-open > li > a { display: block; padding: 14px 0; font-size: 1rem; color: var(--black); }
  .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
    border: none;
    border-top: none;
    display: none;
  }
  .dropdown-menu li a { color: var(--gray); border-bottom: none; }
  .dropdown-menu.open { display: block; }
  .nav-cta.mobile-open {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    padding: 1rem 2rem;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  }
}

/* ── Footer ── */
#main-footer {
  background: var(--white);
  color: var(--gray);
  padding: 0;
  border-top: 4px solid var(--red);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
}

/* Footer top red accent bar */
.footer-top-bar {
  background: var(--red);
  padding: 14px 0;
}
.footer-top-bar-inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-top-bar p {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
}
.footer-top-bar a {
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 16px;
  border-radius: 30px;
  transition: background var(--transition), border-color var(--transition);
}
.footer-top-bar a:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
}

.footer-body {
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--light-gray);
}
.footer-brand img { height: 70px; margin-bottom: 1.25rem; object-fit: contain; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; color: var(--gray); }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 3px;
  background: var(--red);
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--gray);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col ul li a:hover { color: var(--red); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--gray);
}
.footer-contact-item i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: var(--gray); }
.footer-contact-item a:hover { color: var(--red); }

/* Red divider line above footer bottom */
.footer-divider {
  height: 3px;
  background: linear-gradient(to right, var(--red), var(--red-light), var(--red));
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.8rem;
  color: var(--mid-gray);
  flex-wrap: wrap;
  gap: 1rem;
  background: #f8f9fa;
}
.footer-bottom a { color: var(--mid-gray); }
.footer-bottom a:hover { color: var(--red); }

.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ── Back-to-Top ── */
#back-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(203,25,32,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 500;
}
#back-top.visible { opacity: 1; pointer-events: all; }
#back-top:hover { transform: translateY(-4px); }

/* ── Floating CTA Bar ── */
.cta-bar {
  background: var(--red);
  padding: 20px 0;
  text-align: center;
}
.cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-bar p { color: var(--white); font-weight: 700; font-size: 1.05rem; margin: 0; }
.cta-bar p span { font-family: var(--font-head); font-size: 1.2rem; }

/* ── Stats Counter ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 3rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}

/* ── Certifications / Logos ── */
.cert-bar {
  background: var(--off-white);
  padding: 40px 0;
  border-bottom: 1px solid var(--light-gray);
}
.cert-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.05em;
}
.cert-item i { color: var(--red); font-size: 1.5rem; }

/* ── Testimonial ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  position: relative;
  border-left: 4px solid var(--red);
}
.testimonial-card .quote-icon {
  font-size: 3rem;
  color: var(--red);
  opacity: 0.2;
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
}
.testimonial-text { font-size: 1rem; font-style: italic; color: var(--gray); line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gray);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}
.author-name { font-weight: 700; color: var(--black); font-size: 0.95rem; }
.author-title { font-size: 0.8rem; color: var(--mid-gray); }
.star-rating { color: #f4a100; font-size: 0.9rem; margin-top: 0.25rem; }

/* ── Form Styles ── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(203,25,32,0.1);
}
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2342525d' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

/* ── Card Link Overlay ── */
.card-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* ── Service Card (global base — overridden in home.css) ── */
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover img { transform: scale(1.07); }
.service-card-body {
  padding: 1.75rem;
}
.service-card-body h3 { color: var(--black); font-size: 1.15rem; margin-bottom: 0.5rem; }
.service-card-body p {
  color: var(--gray);
  font-size: 0.875rem;
  max-height: none;
  overflow: visible;
}

/* ── Process Steps ── */
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.step-number {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
}
.step-content h4 { color: var(--black); margin-bottom: 0.4rem; }
.step-content p { font-size: 0.9rem; }

/* ── Tags ── */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tag-red { background: rgba(203,25,32,0.1); color: var(--red); }
.tag-dark { background: var(--black); color: var(--white); }

/* ── Blog Card ── */
.blog-card { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.blog-thumb { height: 220px; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 1.5rem; background: var(--white); }
.blog-meta { display: flex; gap: 1rem; font-size: 0.78rem; color: var(--mid-gray); margin-bottom: 0.75rem; }
.blog-body h4 { color: var(--black); margin-bottom: 0.5rem; line-height: 1.3; }
.blog-body h4:hover { color: var(--red); }
.read-more { color: var(--red); font-size: 0.85rem; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; margin-top: 1rem; }
.read-more:hover { gap: 8px; }

/* ── Responsive Breakpoints ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-top-bar-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .section-pad { padding: 70px 0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { text-align: center; }
  .cert-items { gap: 1.5rem; }
  .cta-bar-inner { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
}
