/* General Body & Typography */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

h1, h2, h3 {
  color: #333;
  text-align: center;
  margin-bottom: 25px;
}

h1 {
  font-size: 2.2em;
  font-weight: bold;
}

h2 {
  font-size: 1.8em;
  font-weight: 600;
}

p {
  margin-bottom: 1em;
}

/* Section Styling */
section {
  padding: 40px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

section:last-of-type {
  border-bottom: none;
}

.section-title {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #007bff; /* Primary brand color */
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 60px 0 40px;
  background-color: #f4f7f6; /* Muted background for calm */
  position: relative;
  overflow: hidden;
}

.hero-headline {
  font-size: 2.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #2c3e50; /* Darker, authoritative text */
}

.hero-subheadline {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image-placeholder {
  width: 100%;
  height: 250px;
  background-color: #e0e6e4; /* Placeholder for muted image */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="%23e0e6e4"/><circle cx="50" cy="50" r="20" fill="%23cad6d3"/><text x="50" y="55" font-family="Arial" font-size="8" fill="%238a9b9a" text-anchor="middle">Image Placeholder</text></svg>');
  background-size: cover;
  background-position: center;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #0056b3;
}

.cta-microcopy {
  font-size: 0.9em;
  color: #777;
  margin-top: 10px;
  font-style: italic;
}

/* Bullet Lists */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px;
  max-width: 600px;
  text-align: left;
}

.bullet-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="%23007bff" stroke="none"><circle cx="12" cy="12" r="10"/></svg>') no-repeat left center;
  background-size: 16px 16px;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #444;
}

/* Identification Section */
.identification-section .motivation-callout {
  font-weight: bold;
  font-style: italic;
  color: #007bff;
  text-align: center;
  margin-top: 30px;
}

/* Reframe Section */
.reframe-section .key-line {
  font-style: italic;
  color: #555;
  text-align: center;
  margin-top: 20px;
}

.reframe-section .hard-truth {
  font-size: 1.1em;
  color: #c0392b; /* A strong, but not aggressive red */
  text-align: center;
  margin-top: 20px;
}

/* BMV Section */
.bmv-section .honesty-line {
  font-style: italic;
  text-align: center;
  color: #555;
  margin-top: 25px;
}

.disqualifier-box {
  background-color: #ffebee; /* Light red background */
  border: 1px solid #ef9a9a; /* Red border */
  padding: 20px;
  margin: 30px auto;
  border-radius: 8px;
  max-width: 500px;
  text-align: left;
}

.disqualifier-box .disqualifier-title {
  font-weight: bold;
  color: #c0392b;
  font-size: 1.1em;
  margin-bottom: 15px;
}

.disqualifier-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.disqualifier-box li {
  margin-bottom: 8px;
  color: #444;
}

.disqualifier-box .separator {
  border: 0;
  height: 1px;
  background: #ef9a9a;
  margin: 15px 0;
}

.disqualifier-box .disqualifier-final {
  font-style: italic;
  color: #555;
  text-align: center;
  margin-top: 15px;
}

/* Process Section */
.process-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  counter-reset: step-counter;
}

.process-list li {
  counter-increment: step-counter;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
  color: #444;
}

.process-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #007bff;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 0.9em;
}

.process-list .step-title {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-size: 1.1em;
}

.process-section .reassurance {
  font-style: italic;
  text-align: center;
  color: #777;
  margin-top: 30px;
}

/* Qualification Form Section */
.qualification-form-section {
  background-color: #fcfcfc;
  padding: 40px;
  border-radius: 8px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.03);
  margin-top: 30px;
}

.qualification-form-section .form-intro-line {
  text-align: center;
  font-style: italic;
  margin-bottom: 30px;
  color: #666;
}

.multi-step-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-step {
  display: none;
  padding: 20px 0;
}

.form-step.active {
  display: block;
}

.form-step label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

.form-step input[type="text"],
.form-step input[type="email"],
.form-step input[type="tel"],
.form-step select,
.form-step textarea {
  width: calc(100% - 22px); /* Account for padding + border */
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
}

.form-step textarea {
  resize: vertical;
  min-height: 80px;
}

.radio-group {
  margin-bottom: 15px;
}

.radio-group input[type="radio"] {
  margin-right: 5px;
}

.radio-group label {
  display: inline-block;
  margin-right: 20px;
  font-weight: normal;
}

.progress-bar-container {
  width: 100%;
  background-color: #e0e0e0;
  border-radius: 5px;
  height: 10px;
  margin-bottom: 20px;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background-color: #007bff;
  border-radius: 5px;
  transition: width 0.3s ease-in-out;
}

#progress-text {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9em;
  color: #555;
  font-weight: bold;
}

.form-navigation {
  text-align: center;
  margin-top: 30px;
}

.nav-button {
  background-color: #007bff;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  margin: 0 10px;
  transition: background-color 0.3s ease;
}

.nav-button:hover:not(:disabled) {
  background-color: #0056b3;
}

.nav-button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.hidden {
  display: none !important;
}

.error-message {
  color: #c0392b;
  font-size: 0.9em;
  margin-top: -10px;
  margin-bottom: 10px;
  display: block;
}

.form-messages {
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  font-weight: bold;
}

.form-messages.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-messages.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.exit-message {
  text-align: center;
  padding: 30px;
  background-color: #f0f3f5;
  border-radius: 8px;
  margin-top: 30px;
  font-size: 1.1em;
  color: #555;
}

/* Trust Section */
.trust-section {
  text-align: center;
}

.human-photo-placeholder {
  width: 150px;
  height: 150px;
  background-color: #e0e6e4;
  border-radius: 50%;
  margin: 0px auto 20px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="%23e0e6e4"/><circle cx="50" cy="40" r="20" fill="%23cad6d3"/><path d="M25 75 Q50 60 75 75 Z" fill="%23cad6d3"/></svg>');
  background-size: cover;
  background-position: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.trust-section p {
  font-size: 1.1em;
  color: #444;
  max-width: 600px;
  margin: 0 auto;
}

/* Final CTA Section (Footer) */
.final-cta-section {
  text-align: center;
  padding: 40px 0;
  background-color: #f4f7f6;
  margin-bottom: 0;
  border-bottom: none;
  border-top: 1px solid #eee;
}

.final-cta-section .cta-button {
  margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .container {
    padding: 15px;
  }

  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1.5em;
  }

  .hero-headline {
    font-size: 2em;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .bullet-list,
  .process-list {
    padding-left: 10px;
  }

  .disqualifier-box {
    padding: 15px;
  }

  .form-step label {
    font-size: 0.95em;
  }

  .nav-button {
    margin: 0 5px;
    padding: 10px 20px;
  }
}
