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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #111;
  background: #ffffff;
  line-height: 1.6;
}

section {
  padding: 80px 20px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

h1 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 20px;
}

h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}


/* BUTTONS */
button {
  padding: 12px 24px;
  border: none;
  background: #111;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  margin: 10px;
  font-size: 1rem;
}

button.secondary {
  background: transparent;
  border: 1px solid #111;
  color: #111;
}

/* VALUE */
.value p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

/* PRODUCTS */
.product-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
  flex-wrap: wrap;
}

.card {
  width: 260px;
}

.card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.tagline {
  font-weight: 500;
  margin-bottom: 10px;
}

/* HOW */
.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.steps div {
  max-width: 250px;
}


/* Card links */
.card-link {
  text-decoration: none;
  color: inherit;
}

.card-link .card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card-link:hover .card {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* CTA */
.final-cta {
  padding-bottom: 100px;
}

/* HERO PRODUCT */
.hero-product img {
  width: 400px;
  margin: 40px 0;
}

.hero-product-name {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

