* {
  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;
}

/* HERO */
.product-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.product img {
  width: 120px;
  transition: transform 0.3s ease;
}

.product img:hover {
  transform: translateY(-5px);
}

/* 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;
  margin-top: 40px;
  flex-wrap: wrap;
}

.card {
  max-width: 300px;
}

.card img {
  width: 100px;
  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;
}

/* SYSTEM */
.system-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* 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;
}

/* SUPPORTING SECTION */
.supporting {
  margin-top: 40px;
}

.supporting .product {
  text-align: center;
  max-width: 220px;
}

.supporting img {
  width: 300px;
  margin-bottom: 10px;
}

.icon-box {
  width: 300px;
  height: 120px;
  margin: 0 auto 10px auto;

  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}