@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&display=swap');

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

body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #ffffff;
  color: #2e2e2e;
  min-height: 100vh;
}

.container {
  max-width: 480px;
  margin: 0 auto;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.header .logo svg {
  width: 40px;
  height: 40px;
  fill: #FF385C;
}

.header .offer-tag {
  font-size: 14px;
  font-weight: 600;
  color: #737373;
}

/* Hero */
.hero {
  text-align: center;
  padding: 32px 24px 48px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255, 56, 92, 0.1);
  color: #FF385C;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 24px;
}

.badge svg {
  width: 16px;
  height: 16px;
  fill: #FF385C;
}

.hero h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #2e2e2e;
}

.hero h1 .highlight {
  color: #FF385C;
}

.hero .description {
  color: #737373;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background-color: #FF385C;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 40px;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(255, 56, 92, 0.4);
  transition: all 0.2s ease;
  margin-bottom: 12px;
}

.cta-button:hover {
  box-shadow: 0 15px 35px -5px rgba(255, 56, 92, 0.5);
  transform: scale(1.05);
}

.safe-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  color: #737373;
  margin-top: 4px;
}

.safe-text svg {
  width: 16px;
  height: 16px;
  stroke: #737373;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Divider */
.divider {
  border: none;
  border-top: 1px solid #e5e5e5;
}

/* Steps */
.steps-section {
  padding: 40px 24px;
}

.steps-section h2 {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 32px;
  color: #2e2e2e;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 16px;
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: #FF385C;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-weight: 700;
  font-size: 16px;
  color: #2e2e2e;
  margin-bottom: 2px;
}

.step-content p {
  font-size: 14px;
  color: #737373;
}

/* Footer */
.footer {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid #e5e5e5;
}

.footer p {
  font-size: 12px;
  color: #737373;
}
