* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f1ebeb;
  color: #111827;
  line-height: 1.6;
}

/* Header */
.header {
  padding: 24px;
  text-align: center;
  border-bottom: 1px solid #e9dbdb;
  text-size-adjust: 20px;
}

.logo {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 3px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 10px 20px;
  background: radial-gradient(circle at center, #e9c2c4, #dfdfdf);
}

.hero h1 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero p {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: #374151;
}

.note {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  color: #6b7280;
}

/* CTA */
.cta {
  display: inline-block;
  background: #f70303be;
  color: #131212;
  padding: 16px 42px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 12px 30px rgba(235, 119, 119, 0.534);
}
#there {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #2b2a2a;
}
#here {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #e91212;
}

#HOW {
  text-align: center;
  display: inline-block;
  margin-bottom: 30px;
  color: #000000;
}
.cta:hover {
  transform: translateY(-3px);
}

.pulse {
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(17,24,39,.4); }
  70% { box-shadow: 0 0 0 18px rgba(17,24,39,0); }
  100% { box-shadow: 0 0 0 0 rgba(17,24,39,0); }
}

/* Features */
.features {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.feature {
  padding: 30px;
  border-radius: 16px;
  background: #f9fafb;
}

/* Steps */
.steps {
  background: #f9fafb;
  padding: 80px 20px;
  text-align: center;
}

.steps h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.step-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 24px;
}

.step {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111827;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Final */
.final {
  padding: 90px 20px;
  text-align: center;
}

/* Footer */
.footer {
  padding: 24px;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
  border-top: 1px solid #e5e7eb;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: .7s ease;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

/* Mobile */
@media (max-width: 640px) {
  .hero h1 { font-size: 32px; }
}
