/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  background-color: #0b0f14;
  color: #e6f2ff;
  line-height: 1.6;
}

/* Hero */
.hero {
  text-align: center;
  padding: 3rem 1.5rem 3rem;
}

.logo {
  max-width: 320px;
  width: 90%;
  height: auto;
  margin-bottom: 1.5rem;
}

.strapline {
  font-size: 1.4rem;
  font-weight: 700;
  color: #7cff00;
  margin-bottom: 1rem;
}

.intro {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #cfe8ff;
}

/* Content */
.content {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.features {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #4fd9ff;
}

.feature p {
  color: #d4eaff;
}

.feature-icon {
  /*width: 64px;
  height: 64px;*/
  margin-bottom: 1rem;
  border-radius: 12px;
  background-color: rgba(79, 217, 255, 0.12);
  border: 1px solid rgba(79, 217, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Optional: subtle hover polish */
.feature:hover .feature-icon {
  background-color: rgba(79, 217, 255, 0.18);
  border-color: rgba(79, 217, 255, 0.4);
}

.feature-icon-img {
    width: 100%;
    border-radius: 12px;
}

.product {
    text-align: center;
}

.product-img {
    width: 300px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(79, 217, 255, 0.02),
    rgba(79, 217, 255, 0.18)
  );
  border-radius: 12px;
  margin-bottom: 3rem;
}

.cta p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.button {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  font-weight: 700;
  color: #0b0f14;
  background-color: #7cff00;
  border-radius: 999px;
  text-decoration: none;
}

.button:hover {
  background-color: #9dff33;
}

.amazon {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  font-weight: 700;
  color: #0b0f14;
  background-color: #FEA41C;
  border-radius: 999px;
  text-decoration: none;
}

.amazon:hover {
  background-color: #fcc550;
}

.amazon-cta {
  width:250px;
}

.contact {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 4rem;
  padding: 2rem 1.5rem;
}

.contact h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #4fd9ff;
}

.privacy-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  text-align: center;
  color: #8fb3cc;
}


.benefits {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #7cff00;
}

.benefit p {
  color: #d4eaff;
}

.benefit-icon {
  /*width: 64px;
  height: 64px;*/
  margin-bottom: 1rem;
  border-radius: 12px;
  background-color: rgba(79, 217, 255, 0.12);
  border: 1px solid rgba(79, 217, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Optional: subtle hover polish */
.benefit:hover .benefit-icon {
  background-color: rgba(79, 217, 255, 0.18);
  border-color: rgba(79, 217, 255, 0.4);
}

.benefit-icon-img {
    width: 100%;
    border-radius: 12px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: #8fb3cc;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive */
@media (min-width: 768px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}
