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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: #e94560;
  color: white;
  border: none;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
}

/* Problems */
.problems {
  padding: 60px 0;
  background: #f8f9fa;
}

.problems h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.problem-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.problem-card .icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.problem-card h3 {
  margin-bottom: 8px;
}

/* Solution */
.solution {
  padding: 60px 0;
}

.solution h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.solution-item {
  padding: 24px;
  border-left: 4px solid #e94560;
  background: #fafafa;
  border-radius: 0 8px 8px 0;
}

.solution-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

/* Social Proof */
.proof {
  padding: 60px 0;
  background: #f0f0f5;
}

.proof h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial {
  background: white;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial span {
  font-weight: 600;
  color: #666;
}

/* Form */
.form-section {
  padding: 60px 0;
  background: white;
}

.form-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 12px;
}

.form-section > .container > p {
  text-align: center;
  color: #666;
  margin-bottom: 32px;
}

#capture-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#capture-form input,
#capture-form select,
#capture-form textarea {
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

#capture-form input:focus,
#capture-form select:focus,
#capture-form textarea:focus {
  outline: none;
  border-color: #302b63;
}

#capture-form .cta-btn {
  margin-top: 8px;
}

#thank-you {
  text-align: center;
  padding: 40px 0;
}

#thank-you h3 {
  color: #2d6a4f;
  margin-bottom: 12px;
}

/* Footer */
footer {
  padding: 32px 0;
  background: #1a1a2e;
  color: rgba(255,255,255,0.6);
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero .subtitle {
    font-size: 1rem;
  }
}
