:root {
  --ke-green: #006600;
  --ke-red: #BB0000;
  --ke-black: #060606;
  --ke-white: #ffffff;
  --soft-gray: #f4f4f4;
}

* {
  box-sizing: border-box;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

body {
  margin: 0;
  color: var(--ke-black);
  background: var(--ke-white);
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 4rem 1.5rem;
}

/* HERO: Bold Green & Black */
.hero {
  background: linear-gradient(180deg, var(--ke-black) 0%, var(--ke-green) 100%);
  color: white;
  text-align: center;
  border-bottom: 6px solid var(--ke-red);
}

.hero h1 {
  font-size: 2.8rem;
  margin-top: 0;
}

.hero h1 span {
  color: var(--ke-red);
  background: white;
  padding: 0 8px;
  display: inline-block;
}

.readiness {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
  font-weight: 700;
}

.cta-btn {
  display: inline-block;
  background: var(--ke-red);
  color: white;
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(187, 0, 0, 0.3);
}

/* VALUE PROP SECTION */
.value-prop {
  background: var(--soft-gray);
  text-align: center;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.metric-card {
  background: white;
  padding: 1.5rem;
  border-top: 4px solid var(--ke-green);
  border-radius: 8px;
}

/* CREDIBILITY SECTION */
.credibility {
  border-left: 8px solid var(--ke-black);
  background: #fff;
}

.credibility h2 { color: var(--ke-green); }

.cta {
  background: var(--ke-black);
  color: white;
  text-align: center;
}

.cta button {
  background: var(--ke-red);
  color: white;
  border: none;
  padding: 0.85rem 2rem;
  font-weight: bold;
  cursor: pointer;
}
/* ... Keep your existing Hero and Metric styles ... */

.overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(6, 6, 6, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.form-card {
    background: white;
    padding: 3rem;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    position: relative;
    border-top: 8px solid var(--ke-red);
}

.survey-step { display: none; }
.survey-step.active { display: block; }

.red-btn { background: var(--ke-red) !important; color: white !important; border: none; width: 100%; cursor: pointer; }

input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.progress-container {
    background: #eee;
    height: 8px;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.progress-bar {
    background: var(--ke-green);
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
}

#answer-options button {
    display: block;
    width: 100%;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--soft-gray);
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    transition: 0.2s;
}

#answer-options button:hover {
    background: var(--ke-green);
    color: white;
}
