/* ROI Calculator Styles */

/* Hero Section */
.hero_section {
  background: #F3F4F6;
  padding: 96px 0;
  text-align: center;
}

.hero_title_section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.hero_title {
  font-family: 'Lustria', serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.72px;
  color: #233876;
  margin-bottom: 16px;
}

.hero_description {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #233876;
  max-width: 742px;
  margin: 0 auto;
}

/* ROI Calculator Section */
.roi_calculator_section {
  background: #F3F4F6;
  padding: 96px 0;
}

.roi_calculator_content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 96px;
}

/* Introduction Text */
.intro_text {
  margin-bottom: 64px;
}

.intro_paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: #233876;
  margin-bottom: 20px;
}

/* Section Headings */
.section_heading {
  margin-bottom: 16px;
}

.section_heading h2 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.24px;
  color: #233876;
}

/* Section Content */
.section_content {
  margin-bottom: 64px;
}

.section_paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: #233876;
  margin-bottom: 20px;
}

/* Benefits List */
.benefits_list {
  list-style: disc;
  margin-left: 30px;
  margin-bottom: 20px;
}

.benefits_list li {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: #233876;
  margin-bottom: 16px;
}

.benefits_list strong {
  font-weight: 700;
  color: #233876;
}

/* Form Styles */
.roi_calculator_form {
  background: #F3F4F6;
  padding: 0;
  margin-bottom: 64px;
}

.form_section {
  margin-bottom: 32px;
}

.form_section_title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.24px;
  color: #233876;
  margin-bottom: 16px;
}

.form_row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.form_group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form_label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #233876;
}

.input_group {
  position: relative;
  display: flex;
  align-items: center;
  background: #F9FAFB;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  padding: 12px 16px;
  gap: 10px;
}

.input_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.form_input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  color: #233876;
  outline: none;
}

.form_input::placeholder {
  color: #6B7280;
}

.select_group {
  position: relative;
  display: flex;
  align-items: center;
  background: #F9FAFB;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  padding: 12px 16px;
  gap: 10px;
}

.form_select {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  color: #233876;
  outline: none;
  appearance: none;
  cursor: pointer;
}

.form_select option {
  color: #6B7280;
}

.select_arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  flex-shrink: 0;
}

.form_helper_text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  color: #233876;
  margin: 0;
}

.privacy_link {
  color: #233876;
  text-decoration: underline;
}

/* Checkbox Styles */
.checkbox_group {
  margin-bottom: 32px;
}

.checkbox_item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.checkbox_item:last-child {
  margin-bottom: 0;
}

.checkbox_input {
  width: 18px;
  height: 18px;
  border: 2px solid #1A56DB;
  border-radius: 4px;
  background: #FFFFFF;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.checkbox_input:checked {
  background: #1A56DB;
  border-color: #1A56DB;
}

.checkbox_input:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox_input:focus {
  outline: 2px solid #3B82F6;
  outline-offset: 2px;
}

.checkbox_label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #233876;
  cursor: pointer;
  flex: 1;
}

.checkbox_label.required::after {
  content: ' *';
  color: #DC2626;
}

/* Submit Button */
.submit_btn {
  background: #233876;
  color: #F3F4F6;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.submit_btn:hover {
  background: #1A2A5A;
}

.submit_btn:disabled {
  background: #9CA3AF;
  cursor: not-allowed;
}

/* Next Steps */
.next_steps {
  margin-top: 32px;
}

.next_steps_title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.18px;
  color: #233876;
  margin-bottom: 16px;
}

.next_steps_text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.16px;
  color: #233876;
  margin-bottom: 20px;
}

.next_steps_benefits h4 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: #233876;
  margin-bottom: 12px;
}

.next_steps_benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.next_steps_benefits li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #233876;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.next_steps_benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1A56DB;
  font-weight: bold;
}

/* Main Section Styles */
.main_section_title {
  font-family: 'Lustria', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  color: #0C1B49;
  margin-bottom: 20px;
}

/* Calculating Savings Section */
.calculating_savings_section {
  background: #F3F4F6;
  padding: 96px 0;
  border-bottom: 1px solid #233876;
}

/* Remove section_content as we're using container orthogramic_container */

.subsection {
  margin-bottom: 32px;
}

.subsection_title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.24px;
  color: #233876;
  margin-bottom: 16px;
}

.subsection_description {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: #233876;
  margin-bottom: 16px;
}

.calculation_content {
  margin-bottom: 32px;
}

.calculation_paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: #233876;
  margin-bottom: 16px;
}

.calculation_list {
  list-style: disc;
  margin-left: 30px;
  margin-bottom: 16px;
}

.calculation_list li {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: #233876;
  margin-bottom: 8px;
}

.calculation_list strong {
  font-weight: 600;
  color: #233876;
}

/* Critical Caveats Section */
.critical_caveats_section {
  background: #F3F4F6;
  padding: 96px 0;
  border-bottom: 1px solid #233876;
}

.caveats_intro {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.2px;
  color: #445E7A;
  margin-bottom: 32px;
}

.caveats_content {
  display: flex;
  gap: 32px;
 flex-direction: column;
}

.caveat_subsection {
  flex: 1;
  margin-bottom: 32px;
}

.caveat_title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  color: #445E7A;
  margin-bottom: 16px;
}

.caveat_subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: #445E7A;
  margin-bottom: 16px;
  margin-top: 24px;
}

.caveat_paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.25;
  color: #445E7A;
  margin-bottom: 16px;
}

.caveat_list {
  list-style: disc;
  margin-left: 30px;
  margin-bottom: 16px;
}

.caveat_list li {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.25;
  color: #445E7A;
  margin-bottom: 8px;
}

.caveat_list strong {
  font-weight: 700;
  color: #445E7A;
}

/* PE Roles Section */
.pe_roles_section {
  background: #F3F4F6;
  padding: 96px 0;
  border-bottom: 1px solid #233876;
}

.roles_intro {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.2px;
  color: #445E7A;
  margin-bottom: 32px;
}

.roles_content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.role_subsection {
  flex: 1;
  margin-bottom: 32px;
}

.role_title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  color: #445E7A;
  margin-bottom: 16px;
}

.role_subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: #445E7A;
  margin-bottom: 16px;
  margin-top: 24px;
}

.role_list {
  list-style: disc;
  margin-left: 30px;
  margin-bottom: 16px;
}

.role_list li {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.25;
  color: #445E7A;
  margin-bottom: 8px;
}

.roles_conclusion {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.2px;
  color: #445E7A;
}

/* Download Report Section */
.download_report_section {
  background: #F3F4F6;
  padding: 96px 0;
  border-bottom: 1px solid #233876;
}

.download_btn {
  background: #233876;
  color: #F3F4F6;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-bottom: 32px;
}

.download_btn:hover {
  background: #1A2A5A;
}

.download_btn:disabled {
  background: #9CA3AF;
  cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
  .roi_calculator_content {
    padding: 0 20px;
  }
  
  .hero_title {
    font-size: 48px;
  }
  
  .hero_description {
    font-size: 18px;
  }
  
  .main_section_title {
    font-size: 28px;
  }
  
  .subsection_title,
  .caveat_title,
  .role_title {
    font-size: 20px;
  }
  
  .calculation_paragraph,
  .calculation_list li,
  .caveat_paragraph,
  .caveat_list li,
  .role_list li,
  .roles_conclusion {
    font-size: 18px;
  }
  
  .caveats_content,
  .roles_content {
    flex-direction: column;
    gap: 20px;
  }
  
  .form_row {
    flex-direction: column;
    gap: 20px;
  }
  
  .intro_paragraph,
  .section_paragraph,
  .benefits_list li {
    font-size: 18px;
  }
  
  .section_heading h2,
  .form_section_title {
    font-size: 20px;
  }
  
  .footer_nav_links {
    flex-direction: column;
    gap: 20px;
    min-height: auto;
  }
  
  .footer_column {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero_section,
  .roi_calculator_section,
  .calculating_savings_section,
  .critical_caveats_section,
  .pe_roles_section,
  .download_report_section {
    padding: 60px 0;
  }
  
  .hero_title {
    font-size: 36px;
  }
  
  .hero_description {
    font-size: 16px;
  }
  
  .main_section_title {
    font-size: 24px;
  }
  
  .subsection_title,
  .caveat_title,
  .role_title {
    font-size: 18px;
  }
  
  .calculation_paragraph,
  .calculation_list li,
  .caveat_paragraph,
  .caveat_list li,
  .role_list li,
  .roles_conclusion,
  .intro_paragraph,
  .section_paragraph,
  .benefits_list li {
    font-size: 16px;
  }
  
  .footer_section {
    padding: 32px 0 24px;
  }
}
