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

body {
  font-family: Arial, sans-serif;
  background: #0b0b0b;
  color: white;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header {
  background: #000;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo-wrap {
  display: flex;
  gap: 15px;
  align-items: center;
}

.logo {
  width: 50px;
  height: 50px;
  background: #facc15;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  font-size: 24px;
  font-weight: bold;
}

.logo-wrap p {
  color: #aaa;
  font-size: 14px;
}

.hero {
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  align-items: center;
}

.badge {
  background: #1a1a1a;
  color: #facc15;
  padding: 10px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
}

.hero h2 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  color: #cfcfcf;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
  display: inline-block;
}

.primary {
  background: #facc15;
  color: #000;
}

.primary:hover {
  opacity: 0.9;
}

.secondary {
  border: 1px solid #444;
  color: white;
}

.secondary:hover {
  border-color: #facc15;
  color: #facc15;
}

.lookup-card {
  background: #111;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid #222;
  text-align: center;
}

.icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.lookup-card input {
  width: 100%;
  padding: 16px;
  margin: 20px 0;
  border-radius: 12px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: white;
}

.full {
  width: 100%;
  border: none;
  cursor: pointer;
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stats h3 {
  color: #facc15;
  font-size: 36px;
}

.stats span {
  color: #aaa;
  font-size: 14px;
}

.products {
  padding: 80px 0;
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.section-title span {
  color: #facc15;
  font-weight: bold;
}

.section-title h2 {
  font-size: 42px;
}

.section-title p {
  max-width: 450px;
  color: #aaa;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: #111;
  border: 1px solid #222;
  border-radius: 30px;
  padding: 30px;
}

.card-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.card p {
  color: #aaa;
  margin: 15px 0;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.small {
  padding: 10px 18px;
}

.cta {
  background: #facc15;
  color: black;
  padding: 80px 0;
}

.center {
  text-align: center;
}

.cta h2 {
  font-size: 50px;
  margin: 20px 0;
}

.cta p {
  max-width: 700px;
  margin: auto;
}

.center-buttons {
  justify-content: center;
  margin-top: 30px;
}

.dark {
  background: black;
  color: white;
}

.outline {
  border: 2px solid black;
  color: black;
}

.footer {
  background: #000;
  padding: 50px 0;
  border-top: 1px solid #222;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer p,
.footer li {
  color: #999;
}

.footer ul {
  list-style: none;
  margin-top: 10px;
}

.footer h4 {
  margin-bottom: 10px;
  color: #facc15;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 42px;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .cta h2 {
    font-size: 36px;
  }
}
