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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #1a202c;
  min-height: 100vh;
  padding: 20px;
}

.container {
  max-width: 600px;
  margin: 40px auto;
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

h1 {
  color: #2d3748;
  font-size: 2em;
  margin-bottom: 20px;
  line-height: 1.3;
}

h2 {
  color: #2d3748;
  font-size: 1.5em;
  margin-bottom: 20px;
}

h3 {
  color: #4a5568;
  margin: 20px 0 10px;
}

.subtitle {
  font-size: 1.2em;
  color: #4a5568;
  margin-bottom: 30px;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0;
}

.benefit {
  background: #f7fafc;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  color: #2d3748;
}

.progress-bar {
  height: 8px;
  background: #e2e8f0;
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
}

label {
  display: block;
  margin: 20px 0 8px;
  font-weight: 600;
  color: #2d3748;
}

input, select {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  transition: border-color 0.2s;
  font-family: inherit;
}

input:focus, select:focus {
  outline: none;
  border-color: #667eea;
}

button, .cta-button, .btn-primary, .btn-secondary, .btn-download {
  display: inline-block;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 20px;
  font-family: inherit;
}

button, .cta-button, .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  width: 100%;
}

button:hover, .cta-button:hover, .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
  width: 100%;
}

.btn-download {
  background: #48bb78;
  color: white;
  width: 100%;
}

.zone-badge {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
}

.zone-badge.red {
  background: #fc8181;
  color: white;
}

.zone-badge.yellow {
  background: #f6e05e;
  color: #744210;
}

.zone-badge.green {
  background: #68d391;
  color: white;
}

.score {
  font-size: 20px;
  font-weight: 600;
  color: #4a5568;
  margin: 20px 0;
}

.big {
  font-size: 1.2em;
  color: #4a5568;
  margin: 20px 0;
}

.next-steps {
  margin: 40px 0;
}

.step {
  background: #f7fafc;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid #667eea;
}

.step h3 {
  margin-top: 0;
}

.social-proof {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #e2e8f0;
  text-align: center;
}

.stats {
  color: #4a5568;
  font-size: 0.95em;
}

blockquote {
  background: #f7fafc;
  padding: 20px;
  border-left: 4px solid #667eea;
  font-style: italic;
  margin: 20px 0;
}

cite {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #667eea;
  font-style: normal;
}

.action {
  background: #fef5e7;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid #f6ad55;
}

a {
  color: #667eea;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}