.landing-page { background: #fff; }

.landing-navbar {
  background: var(--brand-dark);
}
.landing-navbar .nav-link { color: rgba(255,255,255,.85); }
.landing-navbar .nav-link:hover { color: #fff; }

.hero {
  background: radial-gradient(circle at top right, #eefaf3 0%, #ffffff 55%);
}

.hero-card {
  border-radius: 1rem;
}

.trust-strip {
  background: var(--brand);
  color: #fff;
  font-size: .95rem;
}
.trust-strip i { margin-right: .4rem; }

.product-card {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
.product-card-featured {
  border: 2px solid var(--brand);
  box-shadow: 0 10px 25px rgba(11,93,59,.12);
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eefaf3;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.cta-section {
  background: linear-gradient(135deg,#06331f,#0b5d3b);
  color: #fff;
}

.landing-footer {
  background: #0b1f16;
  color: rgba(255,255,255,.75);
}
.landing-footer a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
}
.landing-footer a:hover { color: #fff; }
