* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
}

body {
  background: #f5f5f5;
  color: #111;
}

.hero {
  min-height: 100vh;
  padding: 4rem 1.5rem;
  display: flex;
  align-items: center;
}

.container {
  width: min(1200px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 3px solid #111;
  font-weight: 700;
  margin-bottom: 2rem;
  background: #fff;
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-content p {
  max-width: 500px;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 1rem 2rem;
  border: 3px solid #111;
  font-weight: 700;
  color: #111;
  transition: 0.15s ease;
}

.btn-primary {
  background: #111;
  color: #fff;
}

.btn:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 #111;
}

.hero-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.card-item {
  background: #fff;
  border: 4px solid #111;
  padding: 2rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-item span {
  font-size: 3rem;
  font-weight: 900;
}

.card-item h3 {
  font-size: 1.3rem;
  text-transform: uppercase;
}

.card-item:nth-child(1) {
  background: #ffe44d;
}

.card-item:nth-child(2) {
  background: #ff8f8f;
}

.card-item:nth-child(3) {
  background: #8fffc3;
}

.card-item:nth-child(4) {
  background: #87cefa;
}

@media (max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
  }

  .hero-card {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 3rem;
  }
}
