:root {
  --brand: #bc202d;
  --bg: #f9f9f9;
  --text: #333;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  background: #ffffff;
  margin-top: 20px;
  border-radius: 12px;
}

h1, h2 {
  color: var(--brand);
  text-align: center;
  font-size: clamp(22px, 5vw, 32px);
}

.subtitle {
  text-align: center;
  margin-bottom: 24px;
  color: #666;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 15px;
}

.card p {
  margin: 0 0 10px 0;
  font-weight: bold;
}

.options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.options label {
  background: #f1f1f1;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s;
  min-width: 40px;
  text-align: center;
}

.options label:hover {
  background: #e0e0e0;
}

.options input {
  display: none;
}

.options input:checked + span {
  font-weight: bold;
  color: white;
  background: var(--brand);
  display: block;
  padding: 10px 15px;
  border-radius: 8px;
  margin: -10px -15px;
}

input[type="email"] {
  width: 100%;
  padding: 12px;
  margin: 16px 0;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
}

input[type="email"]:focus {
  outline: none;
  border-color: var(--brand);
}

.consent {
  display: block;
  font-size: 14px;
  margin: 16px 0;
}

.consent input {
  margin-right: 8px;
}

button {
  width: 100%;
  padding: 16px;
  background: var(--brand);
  color: white;
  border: none;
  font-size: 18px;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 20px;
  transition: opacity 0.2s;
}

button:hover {
  opacity: 0.9;
}

.hidden {
  display: none;
}

.result-section {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.bar-container {
  background: #eee;
  border-radius: 5px;
  margin-bottom: 10px;
  height: 28px;
}

.bar {
  height: 28px;
  background: var(--brand);
  color: white;
  padding-left: 10px;
  line-height: 28px;
  border-radius: 5px;
  transition: width 0.5s ease;
}

.cta-box {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid #ddd;
  text-align: center;
}

.cta-box p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background: var(--brand);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  transition: opacity 0.2s;
}

.cta-button:hover {
  opacity: 0.9;
}