:root {
  --background: hsl(216 18% 4%);
  --foreground: hsl(34 44% 80%);
  --card: hsl(215 14% 8%);
  --card-soft: hsl(213 12% 12%);
  --muted: hsl(34 20% 55%);
  --border: hsl(213 12% 18%);
  --primary: hsl(12 100% 53%);
  --primary-foreground: hsl(216 18% 4%);
  --success: #22c55e;
  --font-display: "Inter Tight", ui-sans-serif, system-ui, sans-serif;
  --font-arabic: "IBM Plex Sans Arabic", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body[dir="rtl"] {
  font-family: var(--font-arabic);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

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

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

.container {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background-color 0.45s ease, border-color 0.45s ease, backdrop-filter 0.45s ease;
}

.site-nav.is-scrolled,
.site-nav.is-open {
  background: color-mix(in srgb, var(--background) 95%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.nav-inner {
  width: min(100% - 48px, 1280px);
  height: 112px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: 168px;
  object-fit: contain;
}

.desktop-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-links button:not(.lang-switch),
.site-footer button {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.desktop-links button:not(.lang-switch):hover,
.site-footer button:hover {
  color: var(--foreground);
}

.lang-switch,
.mobile-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid color-mix(in srgb, var(--primary) 35%, transparent);
  border-radius: 2px;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.lang-switch:hover,
.mobile-lang:hover {
  border-color: var(--primary);
  color: var(--foreground);
}

.lucide {
  width: 1em;
  height: 1em;
  stroke-width: 1.7;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.mobile-toggle span {
  width: 24px;
  height: 1px;
  background: var(--foreground);
  transition: transform 0.25s ease;
}

.site-nav.is-open .mobile-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-nav.is-open .mobile-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding: 20px 24px 28px;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--background) 98%, transparent);
}

.mobile-menu button {
  width: 100%;
  min-height: 44px;
  text-align: start;
  font-size: 18px;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-gradient-x,
.hero-gradient-y {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient-x {
  background: linear-gradient(90deg, var(--background) 0%, color-mix(in srgb, var(--background) 90%, transparent) 45%, color-mix(in srgb, var(--background) 38%, transparent) 100%);
}

.hero-gradient-y {
  background: linear-gradient(0deg, var(--background) 0%, transparent 48%, color-mix(in srgb, var(--background) 62%, transparent) 100%);
}

.grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent calc(8.333% - 1px), color-mix(in srgb, var(--foreground) 24%, transparent) calc(8.333% - 1px), color-mix(in srgb, var(--foreground) 24%, transparent) 8.333%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
  padding-top: 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-header h2,
.about-copy h2 {
  margin: 0;
  color: var(--foreground);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(76px, 12vw, 172px);
  line-height: 0.78;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  color: transparent;
  -webkit-text-stroke: 1px var(--foreground);
  font-weight: 900;
}

.rule {
  width: 96px;
  height: 1px;
  margin: 32px 0;
  background: var(--primary);
  transform-origin: left;
  animation: rule-grow 1.1s cubic-bezier(0.7, 0, 0.2, 1) both;
}

.hero p {
  max-width: 580px;
  margin: 0 0 48px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.primary-action,
.ghost-action {
  min-height: 56px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: gap 0.3s ease, border-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

.primary-action {
  background: var(--primary);
  color: var(--primary-foreground);
}

.primary-action:hover {
  gap: 18px;
  opacity: 0.92;
}

.ghost-action {
  border: 1px solid color-mix(in srgb, var(--foreground) 22%, transparent);
  color: var(--foreground);
}

.ghost-action:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.section-index {
  position: absolute;
  top: 32px;
  left: 48px;
  z-index: 1;
  color: color-mix(in srgb, var(--primary) 24%, transparent);
  font-size: clamp(68px, 8vw, 96px);
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}

.hero-index {
  top: 128px;
}

.radar {
  position: absolute;
  right: 48px;
  top: 50%;
  z-index: 2;
  width: 256px;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--foreground) 12%, transparent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  animation: spin 60s linear infinite;
}

.radar span {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--foreground) 12%, transparent);
  border-radius: 50%;
}

.radar span:nth-child(1) {
  width: 75%;
  height: 75%;
  border-color: color-mix(in srgb, var(--primary) 22%, transparent);
}

.radar span:nth-child(2) {
  width: 50%;
  height: 50%;
}

.radar span:nth-child(3) {
  width: 25%;
  height: 25%;
}

.radar b {
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
}

.scroll-beam {
  position: absolute;
  bottom: 32px;
  left: 50%;
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, transparent, var(--primary), transparent);
  animation: beam 2s ease-in-out infinite;
}

.section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
}

.section-card-bg {
  background: var(--card);
}

.section-header {
  margin-bottom: 64px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .eyebrow {
  justify-content: center;
}

.section-header h2,
.about-copy h2 {
  max-width: 900px;
  font-size: clamp(42px, 6.8vw, 84px);
  line-height: 0.96;
}

.section-header.centered h2,
.section-header.centered p {
  margin-inline: auto;
}

.section-header p {
  max-width: 660px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.port-grid,
.partner-grid,
.stats-grid,
.contact-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}

.port-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.port-panel {
  min-height: 390px;
  padding: 38px;
  background: var(--background);
  transition: background-color 0.45s ease, transform 0.45s ease;
}

.port-panel:hover {
  background: color-mix(in srgb, var(--card-soft) 70%, var(--background));
}

.port-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.coords {
  color: color-mix(in srgb, var(--muted) 72%, transparent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.port-panel h3 {
  margin: 4px 0 0;
  color: var(--foreground);
  font-size: 30px;
  line-height: 1;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--success);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status b {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}

.port-panel p,
.service-copy p,
.about-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.port-panel p {
  min-height: 78px;
  margin: 0 0 32px;
  font-size: 15px;
}

.metrics {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 16px;
}

.metrics div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.metrics dt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metrics dd {
  margin: 0;
  color: var(--foreground);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 800;
}

.accordion {
  display: grid;
  gap: 1px;
  background: var(--border);
}

.service-item {
  background: var(--card);
  overflow: hidden;
}

.service-trigger {
  width: 100%;
  min-height: 112px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  text-align: start;
}

.service-title {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

.service-title small {
  color: color-mix(in srgb, var(--muted) 55%, transparent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.service-title .lucide {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex: 0 0 auto;
}

.service-title strong {
  min-width: 0;
  color: var(--foreground);
  font-size: clamp(23px, 3vw, 36px);
  line-height: 1.1;
}

.plus {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
}

.service-item.is-open .plus {
  transform: rotate(45deg);
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.55s cubic-bezier(0.7, 0, 0.2, 1), opacity 0.35s ease;
}

.service-item.is-open .service-content {
  height: 390px;
  opacity: 1;
}

.service-media {
  min-height: 260px;
  position: relative;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, color-mix(in srgb, var(--background) 60%, transparent), transparent);
}

.service-copy {
  padding: 44px;
}

.service-copy p {
  margin: 0 0 28px;
}

.service-copy ul {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.service-copy li {
  position: relative;
  padding-inline-start: 28px;
  color: var(--foreground);
  font-size: 15px;
}

.service-copy li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 8px;
  width: 13px;
  height: 8px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: gap 0.25s ease;
}

.text-action:hover {
  gap: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--card), transparent 54%);
}

.stat-glass {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 24px;
  background: color-mix(in srgb, var(--background) 90%, transparent);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.about-copy h2 {
  font-size: clamp(36px, 4.2vw, 58px);
  margin-bottom: 28px;
}

.about-copy p {
  margin: 0 0 22px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.stat-glass strong,
.about-stats strong,
.stats-grid strong {
  display: block;
  color: var(--primary);
  font-weight: 900;
  line-height: 1;
}

.stat-glass strong,
.about-stats strong {
  font-size: 34px;
}

.stat-glass span,
.about-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.stats-section {
  background: var(--background);
}

.stats-bg {
  position: absolute;
  inset: 0;
}

.stats-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--background) 92%, transparent);
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid div {
  min-height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 40px;
  background: color-mix(in srgb, var(--background) 82%, transparent);
  backdrop-filter: blur(8px);
  text-align: center;
}

.stats-grid strong {
  font-size: clamp(42px, 5vw, 58px);
}

.stats-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partner-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-grid div {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 26px;
  background: var(--background);
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.partner-grid div:hover {
  background: color-mix(in srgb, var(--card-soft) 65%, var(--background));
  color: var(--foreground);
}

.contact-grid {
  grid-template-columns: 3fr 2fr;
  align-items: stretch;
}

.contact-form,
.office-panel {
  background: var(--card);
  padding: 48px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

label {
  display: grid;
  gap: 9px;
}

label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--background);
  color: var(--foreground);
  padding: 0 15px;
  outline: none;
  transition: border-color 0.2s ease;
}

textarea {
  min-height: 128px;
  padding-top: 14px;
  resize: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
}

.form-submit {
  width: max-content;
  border: 0;
}

.success-message {
  margin: 0;
  color: var(--success);
  font-weight: 800;
}

.office-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  background: var(--background);
}

.office-panel h3 {
  margin: 0 0 32px;
  color: var(--foreground);
  font-size: 28px;
}

.office-list {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.office-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.office-list .lucide {
  margin-top: 2px;
  color: var(--primary);
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.office-list a {
  color: var(--foreground);
  transition: color 0.2s ease;
}

.office-list a:hover {
  color: var(--primary);
}

.coordinate-box {
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--card);
}

.coordinate-box span,
.coordinate-box small {
  display: block;
  color: color-mix(in srgb, var(--muted) 70%, transparent);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.coordinate-box strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--foreground);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 19px;
}

.site-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding: 72px 0;
}

.footer-grid img {
  height: 168px;
  width: auto;
  margin-bottom: 20px;
}

.footer-grid p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-grid h4 {
  margin: 0 0 22px;
  color: var(--foreground);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid button {
  display: block;
  margin: 0 0 13px;
  text-align: start;
}

.footer-bottom {
  min-height: 72px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

.footer-coordinate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--muted) 65%, transparent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.12em;
}

[data-aos] {
  transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}

body.aos-fallback [data-aos] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.7, 0, 0.2, 1), transform 0.7s cubic-bezier(0.7, 0, 0.2, 1);
}

body.aos-fallback [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}

@keyframes beam {
  50% {
    transform: translateY(10px);
  }
}

@keyframes rule-grow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1120px) {
  .desktop-links {
    gap: 20px;
  }

  .radar {
    display: none;
  }

  .port-grid,
  .stats-grid,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .mobile-toggle {
    display: inline-flex;
  }

  .site-nav.is-open .mobile-menu {
    display: grid;
    gap: 6px;
  }

  .nav-inner {
    height: 88px;
  }

  .brand img {
    height: 130px;
  }

  .hero h1 {
    font-size: clamp(60px, 18vw, 112px);
  }

  .section {
    padding: 88px 0;
  }

  .section-index {
    left: 24px;
    font-size: 64px;
  }

  .port-grid,
  .service-content,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-item.is-open .service-content {
    height: auto;
  }

  .service-content {
    transition: opacity 0.35s ease;
  }

  .service-item:not(.is-open) .service-content {
    display: none;
  }

  .about-grid {
    gap: 44px;
  }

  .footer-bottom {
    padding: 22px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-content,
  .nav-inner {
    width: min(100% - 32px, 1280px);
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 88px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions,
  .primary-action,
  .ghost-action,
  .form-submit {
    width: 100%;
  }

  .section-header {
    margin-bottom: 44px;
  }

  .section-header h2,
  .about-copy h2 {
    font-size: clamp(36px, 14vw, 54px);
  }

  .port-grid,
  .stats-grid,
  .partner-grid,
  .field-grid,
  .stat-glass,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .port-panel,
  .contact-form,
  .office-panel,
  .service-copy {
    padding: 28px;
  }

  .service-trigger {
    min-height: 96px;
    padding: 24px;
  }

  .service-title {
    gap: 14px;
  }

  .service-title small {
    display: none;
  }

  .plus {
    width: 36px;
    height: 36px;
  }

  .about-visual,
  .about-visual img {
    min-height: 420px;
    height: 420px;
  }

  .partner-grid div,
  .stats-grid div {
    min-height: 140px;
  }
}
