* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #e0e5ec;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 40px 30px 30px;
}

.header-center {
  text-align: center;
}

.header-logo {
  height: 80px;
  width: auto;
}

.header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.header-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

/* Stat pills */
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e0e5ec;
  border-radius: 20px;
  padding: 8px 16px;
  box-shadow: 4px 4px 8px #b8bec7, -4px -4px 8px #ffffff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.stat-pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.stat-pill.red    { color: #ee1c24; }
.stat-pill.blue   { color: #0075be; }
.stat-pill.green  { color: #39b54a; }
.stat-pill.yellow { color: #c89000; }
.stat-pill.purple { color: #9b59b6; }

/* Logo */
.logo img {
  height: 80px;
  width: auto;
}

/* Tagline */
.tagline {
  font-size: 15px;
  color: #666;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Trust badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.badge {
  font-size: 12px;
  font-weight: 600;
  color: #39b54a;
  background: #e0e5ec;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 3px 3px 6px #b8bec7, -3px -3px 6px #ffffff;
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
  color: #888;
  font-size: 14px;
  border-top: 1px solid #d1d9e6;
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 12px;
  opacity: 0.85;
}

.footer p {
  margin: 8px 0;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  margin: 0 10px;
  font-size: 14px;
  color: #0075be;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Hide left/right pills on mobile */
@media (max-width: 768px) {
  .header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .header-left,
  .header-right {
    display: none;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #e0e5ec;
  box-shadow: inset 2px 2px 5px #b8bec7, inset -2px -2px 5px #ffffff;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #ee1c24,
    #0075be,
    #fbb900,
    #39b54a
  );
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #39b54a,
    #fbb900,
    #0075be,
    #ee1c24
  );
}