@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var, center,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  margin: 0;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
}
a:hover {
  text-decoration: none;
}

:root {
  font-size: 10px;
  --app-height: 100%;
  --container: 1200px;
  --container-wide: 1440px;
  --container-padding: 20px;
  --margin: 8px;
  --color-black: #191A1C;
  --color-black-rgb: 25, 26, 28;
  --color-white: #FFFFFF;
  --color-white-rgb: 255, 255, 255;
  --color-green: #6CC24A;
  --color-green-rgb: 108, 194, 74;
  --color-green-hover: #64B245;
  --color-blue: #1F2F79;
  --color-blue-rgb: 31, 47, 121;
  --color-blue-hover: #2b45b7;
  --color-gray-light-hover: #E7E7E7;
  --color-gray-dark-hover: #595A5B;
  --fast-transition: .2s;
  --transition: .4s;
  --slow-transition: .6s;
  --slowest-transition: 1s;
  --primary-font: "Nunito", sans-serif;
  --z-index-navigation: 100;
  --z-index-inner-navigation: 99;
  --menu-height-desktop: 70px;
  --menu-height-mobile: 80px;
  --menu-transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) {
  :root {
    --container-padding: 40px;
  }
}
@media (min-width: 1024px) {
  :root {
    --container-padding: 60px;
  }
}
@media (min-width: 1280px) {
  :root {
    --container-padding: 120px;
  }
}

.container {
  position: relative;
  max-width: calc(var(--container) + 2 * var(--container-padding));
  margin: 0 auto;
  padding-inline: var(--container-padding);
  width: 100%;
}
.container--wide {
  max-width: calc(var(--container-wide) + 2 * var(--container-padding));
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
svg,
svg > * {
  font-family: var(--primary-font);
}

.bounce {
  animation-name: bounce;
  animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
}

@keyframes bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-8px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(-4px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
body.page-form-selection {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

body.page-form-selection .selection-container {
  max-width: 1200px;
  width: 100%;
}

body.page-form-selection .selection-header {
  text-align: center;
  color: white;
  margin-bottom: 3rem;
}
body.page-form-selection .selection-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
body.page-form-selection .selection-header p {
  font-size: 1.25rem;
  opacity: 0.9;
}

body.page-form-selection .credit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

body.page-form-selection .credit-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
body.page-form-selection .credit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
body.page-form-selection .credit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}
body.page-form-selection .credit-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.75rem;
}
body.page-form-selection .credit-card p {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
body.page-form-selection .credit-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
body.page-form-selection .credit-card ul li {
  color: #4a5568;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}
body.page-form-selection .credit-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

body.page-form-selection .credit-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

body.page-form-selection .credit-card-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
body.page-form-selection .credit-card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

body.page-form-selection .info-section {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
}
body.page-form-selection .info-section h3 {
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 1rem;
}
body.page-form-selection .info-section p {
  color: #718096;
  line-height: 1.6;
}

body.page-form-selection .info-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

body.page-form-selection .info-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.page-form-selection .info-badge-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

body.page-form-selection .info-badge-text {
  font-size: 1.2rem;
  color: #4a5568;
  font-weight: 600;
}

body.page-form-selection .fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  body.page-form-selection .selection-header h1 {
    font-size: 1.75rem;
  }
  body.page-form-selection .selection-header p {
    font-size: 1.2rem;
  }
  body.page-form-selection .credit-cards {
    grid-template-columns: 1fr;
  }
}
body.page-forms-index {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  padding: 2rem;
  color: #333;
}
body.page-forms-index * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.page-forms-index .container {
  max-width: 1200px;
  margin: 0 auto;
}

body.page-forms-index .header {
  text-align: center;
  color: white;
  margin-bottom: 3rem;
}
body.page-forms-index .header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
body.page-forms-index .header p {
  font-size: 1.25rem;
  opacity: 0.9;
}

.section {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.section h2 {
  color: #2d3748;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}
.section h3 {
  color: #4a5568;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}
.section p, .section li {
  color: #718096;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.section ul {
  padding-left: 2rem;
}

body.page-forms-index .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

body.page-forms-index .link-card {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}
body.page-forms-index .link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  border-color: #667eea;
}

body.page-forms-index .link-card-title {
  color: #2d3748;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

body.page-forms-index .link-card-desc {
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

body.page-forms-index .link-card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

body.page-forms-index .badge {
  display: inline-block;
  background: #667eea;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.5rem;
}
body.page-forms-index .badge-new {
  background: #48bb78;
}
body.page-forms-index .badge-demo {
  background: #ed8936;
}

body.page-forms-index .code-block {
  background: #2d3748;
  color: #f7fafc;
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1rem 0;
  font-family: "Courier New", monospace;
  font-size: 1.2rem;
}

body.page-forms-index .features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
  list-style: none;
  padding: 0;
}
body.page-forms-index .features-list li {
  background: #f7fafc;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #667eea;
}
body.page-forms-index .features-list li strong {
  color: #2d3748;
  display: block;
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  body.page-forms-index {
    padding: 1rem;
  }
  .header h1 {
    font-size: 2rem;
  }
  .header p {
    font-size: 1.2rem;
  }
  .section {
    padding: 1.5rem;
  }
}
body.page-index main {
  padding: 32px;
}
body.page-index main > a {
  display: block;
  margin: 16px 16px 16px 0;
}

body.page-index .logo {
  background-color: lightgray;
  width: 100%;
  height: auto;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-index .logo--black {
  background-color: #000000;
}
body.page-index .logo img {
  max-width: 180px;
}

body.page-index .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 460px));
  gap: 36px;
  margin-top: 20px;
}
body.page-index .grid a {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  box-shadow: 6px 8px 13px rgba(var(--black-rgb), 0.15);
  color: var(--black);
  text-decoration: none;
  font-family: var(--primary-font);
  font-size: 16px;
}
body.page-index .grid a span {
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--white);
}
body.page-index .grid a img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.form-group {
  margin-bottom: 2.5rem;
}

.form-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .form-label {
    font-size: 1.4rem;
  }
}

.form-value {
  font-size: 1.8rem;
  font-weight: 400;
  color: #666564;
}
@media (max-width: 768px) {
  .form-value {
    font-size: 1.6rem;
  }
}

.integrated-form-page .form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 2.2rem;
  line-height: 1.5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}
.integrated-form-page .form-select:hover {
  border-color: #667eea;
}
.integrated-form-page .form-select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
@media (max-width: 768px) {
  .integrated-form-page .form-select {
    font-size: 1.8rem;
  }
}

.form-slider {
  width: 100%;
  height: 10px;
  border-radius: 3px;
  background: #F7F6F2;
  outline: none;
  appearance: none;
  position: relative;
  margin-bottom: 5px;
}
.form-slider::-webkit-slider-thumb {
  appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  cursor: pointer;
  border: 10px solid #5FFFD9;
  box-shadow: 0 2px 8px rgba(0, 217, 177, 0.4);
  transition: transform 0.2s;
  margin-top: -12px;
}
.form-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}
.form-slider::-webkit-slider-thumb:active {
  transform: scale(0.95);
}
.form-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #5FFFD9;
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 217, 177, 0.4);
  transition: transform 0.2s;
}
.form-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
}
.form-slider::-moz-range-thumb:active {
  transform: scale(0.95);
}
.form-slider::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 3px;
}

.monthly-payment {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 700;
  color: #0000BA;
  margin-bottom: 2.5rem;
  margin-top: -0.8rem;
}
@media (max-width: 768px) {
  .monthly-payment {
    font-size: 3.2rem;
  }
}

.payment-disclaimer {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #666564;
  margin: 0;
}
@media (max-width: 768px) {
  .payment-disclaimer {
    font-size: 1.3rem;
  }
}

.credilink-loading {
  color: transparent !important;
}

.btn-submit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 1.6rem;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #111111;
  background: #5FFFD9;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 217, 177, 0.3);
  font-family: var(--primary-font);
}
.btn-submit:hover {
  background: #00c4a0;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 217, 177, 0.4);
}
.btn-submit:active {
  transform: translateY(0);
}
.btn-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 217, 177, 0.3);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html, body {
  position: relative;
  font-family: var(--primary-font);
  font-weight: 400;
}

html.stop-scroll {
  overflow: hidden;
  height: calc(var(--app-height) - 1px);
}

body {
  overflow-x: hidden;
}

.slick-dots li {
  list-style: none;
}

input,
textarea,
select {
  font-family: var(--primary-font);
}

ul {
  margin: 0px;
  padding-left: 0px;
}

.hidden {
  display: none;
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none;
  }
}
.component-top-icon {
  position: absolute;
  top: calc(clamp(50px, 15vw, var(--component-top-icon-height)) / 2 * -1);
  left: 0;
  right: 0;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.component-top-icon img {
  width: auto;
  height: clamp(50px, 15vw, var(--component-top-icon-height));
  object-fit: contain;
}

.main {
  overflow: hidden;
  position: relative;
}

.button {
  background-color: var(--color-green);
  color: var(--color-black);
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 120%;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  display: inline-block;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.button:hover {
  background-color: var(--color-green-hover);
}
.button--icon::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  width: 13px;
  height: 13px;
  background: url(../images/icons/arrow-butoon.svg) center no-repeat;
  background-size: 13px auto;
  transition: inherit;
}
.button--icon:hover {
  background-color: var(--color-green-hover);
}
.button--large {
  font-size: 24px;
}
.button--large.button--icon {
  position: relative;
  padding-right: 60px;
}
.button--large.button--icon::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 50px;
  height: auto;
  margin: 0;
  background-color: var(--color-green-hover);
}
.button--outline {
  background-color: transparent;
  border: solid 2px var(--color-black);
  padding: 8px 18px;
}
.button--outline.button--icon.button--large::after {
  background-color: rgba(var(--color-black-rgb), 0.1);
}
.button--outline:hover {
  background-color: rgba(var(--color-black-rgb), 0.1);
}
.button--outline:hover.button--icon.button--large::after {
  background-color: transparent;
}
.button--outline-inverse {
  background-color: transparent;
  border: solid 2px var(--color-white);
  padding: 8px 18px;
  color: var(--color-white);
}
.button--outline-inverse.button--icon::after {
  background-image: url(../images/icons/arrow-butoon-invert.svg);
}
.button--outline-inverse.button--icon.button--large::after {
  background-color: var(--color-black);
}
.button--outline-inverse:hover {
  background-color: var(--color-black);
}
.button--outline-inverse-light:hover {
  background-color: var(--color-gray-dark-hover);
}
.button--blue {
  background-color: var(--color-blue);
  color: var(--color-white);
}
.button--blue.button--icon::after {
  background-image: url(../images/icons/arrow-butoon-invert.svg);
}
.button--blue.button--icon.button--large::after {
  background-color: var(--color-blue);
}
.button--blue:hover {
  background-color: var(--color-blue-hover);
}

.button-arrow {
  background-color: transparent;
  color: var(--color-black);
  font-family: inherit;
  border: none;
  border-radius: 5px;
  padding: 10px;
  display: inline-block;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  width: 10px;
  height: 17px;
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: center;
}
.button-arrow--left {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='17' viewBox='0 0 10 17' fill='none'><path fill-rule='evenodd' clip-rule='evenodd' d='M0.39036 9.428L7.93303 16.9707L9.81836 15.0853L3.21836 8.48533L9.81836 1.88533L7.93303 0L0.39036 7.54267C0.140398 7.7927 -2.28882e-05 8.13178 -2.28882e-05 8.48533C-2.28882e-05 8.83889 0.140398 9.17797 0.39036 9.428Z' fill='%23191A1C'/></svg>");
}
.button-arrow--right {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='17' viewBox='0 0 10 17' fill='none'><path fill-rule='evenodd' clip-rule='evenodd' d='M9.428 7.54267L1.88533 0L0 1.88533L6.6 8.48533L0 15.0853L1.88533 16.9707L9.428 9.428C9.67797 9.17797 9.8184 8.83889 9.8184 8.48533C9.8184 8.13178 9.67797 7.7927 9.428 7.54267Z' fill='%23191A1C'/></svg>");
}
.button-arrow:hover {
  opacity: 0.8;
}
.button-arrow.disabled, .button-arrow.slick-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.button-arrow--inverse.button-arrow--left {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='17' viewBox='0 0 10 17' fill='none'><path fill-rule='evenodd' clip-rule='evenodd' d='M0.39036 9.428L7.93303 16.9707L9.81836 15.0853L3.21836 8.48533L9.81836 1.88533L7.93303 0L0.39036 7.54267C0.140398 7.7927 -2.28882e-05 8.13178 -2.28882e-05 8.48533C-2.28882e-05 8.83889 0.140398 9.17797 0.39036 9.428Z' fill='%23FFFFFF'/></svg>");
}
.button-arrow--inverse.button-arrow--right {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='17' viewBox='0 0 10 17' fill='none'><path fill-rule='evenodd' clip-rule='evenodd' d='M9.428 7.54267L1.88533 0L0 1.88533L6.6 8.48533L0 15.0853L1.88533 16.9707L9.428 9.428C9.67797 9.17797 9.8184 8.83889 9.8184 8.48533C9.8184 8.13178 9.67797 7.7927 9.428 7.54267Z' fill='%23FFFFFF'/></svg>");
}
.button-arrow--blue.button-arrow--left {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='17' viewBox='0 0 10 17' fill='none'><path fill-rule='evenodd' clip-rule='evenodd' d='M0.39036 9.428L7.93303 16.9707L9.81836 15.0853L3.21836 8.48533L9.81836 1.88533L7.93303 0L0.39036 7.54267C0.140398 7.7927 -2.28882e-05 8.13178 -2.28882e-05 8.48533C-2.28882e-05 8.83889 0.140398 9.17797 0.39036 9.428Z' fill='%231F2F79'/></svg>");
}
.button-arrow--blue.button-arrow--right {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='17' viewBox='0 0 10 17' fill='none'><path fill-rule='evenodd' clip-rule='evenodd' d='M9.428 7.54267L1.88533 0L0 1.88533L6.6 8.48533L0 15.0853L1.88533 16.9707L9.428 9.428C9.67797 9.17797 9.8184 8.83889 9.8184 8.48533C9.8184 8.13178 9.67797 7.7927 9.428 7.54267Z' fill='%231F2F79'/></svg>");
}

/**
 * Form Engine Styles
 * Estilos para o motor de formulários - Typeform-like design
 */
.language-switcher {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.5rem;
  z-index: 1000;
  background: white;
  padding: 0.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .language-switcher {
    top: 0.5rem;
    right: 1rem;
    gap: 0.25rem;
    padding: 0.375rem;
  }
}
.language-switcher button {
  padding: 0.5rem 0.75rem;
  border: 2px solid #e2e8f0;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media (max-width: 768px) {
  .language-switcher button {
    padding: 0.375rem 0.5rem;
  }
}
.language-switcher button:hover {
  border-color: #0000BA;
  background: #F7F6F2;
  transform: translateY(-1px);
}
.language-switcher button.active {
  border-color: #0000BA;
  background: #0000BA;
  color: white;
}
.language-switcher button:active {
  transform: translateY(0);
}

.form-wrapper {
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #F7F6F2;
  overflow: hidden;
}
.form-wrapper.showing-results {
  height: auto;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  background-image: url("../images/simulators-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.form-engine {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  height: 100vh;
  height: 100dvh;
  background: white;
  animation: slideUp 0.5s ease-out;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .form-engine {
    grid-template-columns: 1fr 350px;
  }
}
@media (max-width: 768px) {
  .form-engine {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
}

.form-main {
  padding: 3rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background-image: url("../images/simulators-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .form-main {
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
  }
}

.form-sidebar {
  background: #0000BA;
  padding: 0 2rem;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  height: 100vh;
  height: 100dvh;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
.form-sidebar::-webkit-scrollbar {
  width: 6px;
}
.form-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.form-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}
.form-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .form-sidebar {
    display: none;
  }
}
.form-sidebar-header {
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  position: sticky;
  top: 0;
  background: #0000BA;
  z-index: 10;
  padding-top: 6rem;
  color: white;
}
.form-sidebar-title {
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}
.form-sidebar-content {
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.form-progress {
  padding: 0 3rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .form-progress {
    padding: 2rem 1.5rem 0.5rem;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
}
.form-progress-bar {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
}
.form-progress-fill {
  height: 100%;
  background: #0000BA;
  border-radius: 2px;
  transition: width 0.3s ease;
}
.form-progress-text {
  font-size: 1.6rem;
  color: white;
  text-align: left;
  font-weight: 500;
  flex-shrink: 0;
}
.form-progress-text .current-step {
  color: #5FFFD9;
  font-weight: 700;
}
.form-progress .brand-logo {
  width: 100%;
  display: block;
  transition: opacity 0.3s ease;
}
.form-progress .brand-logo:hover {
  opacity: 0.7;
}
.form-progress .brand-logo img {
  max-width: 120px;
  height: auto;
  display: block;
}

.form-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0 3rem;
}
@media (max-width: 768px) {
  .form-content {
    padding: 2rem;
    overflow: hidden;
    height: 100%;
  }
}

.form-question-container {
  max-width: 100%;
  margin: 0 auto;
  width: 768px;
}
@media (max-width: 768px) {
  .form-question-container {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }
  .form-question-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
}

@media (max-width: 768px) {
  .form-question-slide {
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 0 6rem;
    position: relative;
  }
  .form-question-slide.answered:not(.current) {
    opacity: 0.9;
  }
  .form-question-slide.answered:not(.current) .form-input,
  .form-question-slide.answered:not(.current) .form-select,
  .form-question-slide.answered:not(.current) .form-textarea,
  .form-question-slide.answered:not(.current) .form-radio,
  .form-question-slide.answered:not(.current) .form-checkbox {
    opacity: 1;
  }
  .form-question-slide.current {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .form-question-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

.form-question {
  animation: fadeIn 0.4s ease-out;
}
.form-question-label {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .form-question-label {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}
.form-question-label .required {
  color: #e53e3e;
  margin-left: 0.25rem;
}

.form-hint {
  font-size: 1.2rem;
  color: #ffffff;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem;
  font-size: 1.6rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: white;
  color: #2d3748;
  font-family: inherit;
  transition: all 0.2s ease;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #0000BA;
  box-shadow: 0 0 0 3px rgba(0, 0, 186, 0.1);
}
.form-input::placeholder,
.form-textarea::placeholder,
.form-select::placeholder {
  color: #a0aec0;
}
.form-input:disabled,
.form-textarea:disabled,
.form-select:disabled {
  background: #f7fafc;
  cursor: not-allowed;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230000BA' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-radio-label {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
}
.form-radio-label:hover {
  border-color: #0000BA;
  background: #F7F6F2;
}
.form-radio-label input[type=radio] {
  margin-right: 1rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #0000BA;
}
.form-radio-label input[type=radio]:checked + .form-radio-text {
  font-weight: 600;
  color: #0000BA;
}
.form-radio-label:has(input:checked) {
  border-color: #0000BA;
  box-shadow: 0 0 0 3px rgba(0, 0, 186, 0.1);
}

.form-radio-text {
  font-size: 1.6rem;
  color: #2d3748;
  flex: 1;
  transition: all 0.2s ease;
}

.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-checkbox-label {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.form-checkbox-label:hover {
  border-color: #0000BA;
  background: #F7F6F2;
}
.form-checkbox-label input[type=checkbox] {
  margin-right: 1rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #0000BA;
}
.form-checkbox-label:has(input:checked) {
  border-color: #0000BA;
  background: rgba(0, 0, 186, 0.05);
}

.form-checkbox-text {
  font-size: 1.2rem;
  color: #2d3748;
  flex: 1;
}

.form-navigation {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0 3rem 0;
}
@media (max-width: 768px) {
  .form-navigation {
    padding: 2rem 1.5rem;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  }
}

.btn-back,
.btn-next {
  padding: 1.2rem 1.6rem;
  font-size: 2.2rem;
  font-weight: 600;
  border: none;
  border-radius: 5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-back:disabled,
.btn-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-back:active:not(:disabled),
.btn-next:active:not(:disabled) {
  transform: translateY(1px);
}

.btn-back {
  background: white;
  color: #0000BA;
  border: 2px solid #0000BA;
}
.btn-back:hover:not(:disabled) {
  background: #F7F6F2;
}

.btn-next {
  background: #0000BA;
  color: white;
  margin-left: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 186, 0.3);
}
.btn-next:hover:not(:disabled) {
  box-shadow: 0 6px 20px rgba(0, 0, 186, 0.4);
  transform: translateY(-2px);
  background: #0000a1;
}
.btn-next.btn-submit {
  background: #0000BA;
  box-shadow: 0 4px 12px rgba(0, 0, 186, 0.3);
}
.btn-next.btn-submit:hover:not(:disabled) {
  box-shadow: 0 6px 20px rgba(0, 0, 186, 0.4);
  background: #0000a1;
}

.btn-arrow {
  width: 26px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  color: inherit;
}
.btn-arrow path {
  stroke: currentColor;
}

.btn-back,
.btn-next {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .btn-back .btn-arrow,
  .btn-next .btn-arrow {
    width: 22px;
    height: 22px;
  }
}

.form-field-error {
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  background: white;
  border-left: 3px solid #FC434F;
  border-radius: 4px;
  color: #fb1120;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  animation: slideDown 0.3s ease;
}
@media (max-width: 768px) {
  .form-field-error {
    font-size: 1.2rem;
    padding: 0.625rem 0.875rem;
  }
}

.form-input.has-error,
.form-select.has-error,
.form-textarea.has-error {
  border-color: #fc8181;
  background: #fff5f5;
}
.form-input.has-error:focus,
.form-select.has-error:focus,
.form-textarea.has-error:focus {
  border-color: #f56565;
  box-shadow: 0 0 0 3px rgba(252, 129, 129, 0.1);
}

.form-radio-group:has(+ .form-field-error[style*="display: block"]),
.form-checkbox-group:has(+ .form-field-error[style*="display: block"]) {
  padding: 0.5rem;
  border: 2px solid #fc8181;
  border-radius: 8px;
  background: #fff5f5;
}

.form-answers-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-answer-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.6;
}
.form-answer-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-4px);
}
.form-answer-item.answered {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}
.form-answer-item.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.form-answer-item.invalid {
  opacity: 1;
  background: rgba(252, 129, 129, 0.15);
  border-color: rgba(252, 129, 129, 0.5);
}
.form-answer-item.invalid:hover {
  background: rgba(252, 129, 129, 0.2);
  border-color: rgba(252, 129, 129, 0.6);
}

.form-answer-number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.4rem;
}
.answered .form-answer-number {
  background: rgba(255, 255, 255, 0.3);
}
.active .form-answer-number {
  background: white;
  color: #0000BA;
}
.invalid .form-answer-number {
  background: rgba(252, 129, 129, 0.3);
  border: 2px solid #fc8181;
}

.form-answer-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-answer-error {
  position: absolute;
  top: 0;
  right: 0;
  color: #fc8181;
  font-size: 1.8rem;
  line-height: 1;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.form-answer-label {
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.form-answer-value {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-success {
  text-align: center;
  padding: 3rem 1rem;
  grid-column: 1/-1;
}
.form-success .success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  animation: scaleIn 0.5s ease;
}
.form-success h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}
.form-success p {
  font-size: 1.6rem;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.form-error-page {
  text-align: center;
  padding: 3rem 1rem;
  grid-column: 1/-1;
}
.form-error-page .error-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.form-error-page h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #c53030;
  margin-bottom: 1rem;
}
.form-error-page p {
  font-size: 1.2rem;
  color: #718096;
  margin-bottom: 2rem;
}
.form-error-page .btn-primary {
  padding: 1rem 2rem;
  background: #0000BA;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.form-error-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.fade-in {
  animation: fadeIn 0.4s ease-out;
}

.form-loading {
  text-align: center;
  padding: 3rem;
  color: #718096;
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.form-loading::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  margin: 1rem auto 0;
  border: 4px solid #e2e8f0;
  border-top-color: #0000BA;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form-sidebar-toggle {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #0000BA;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 186, 0.4);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.2s ease;
}
.form-sidebar-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}
@media (max-width: 768px) {
  .form-sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .form-navigation {
    flex-direction: column-reverse;
  }
  .form-navigation .btn-back,
  .form-navigation .btn-next {
    width: 100%;
    justify-content: center;
  }
  .form-navigation .btn-next {
    margin-left: 0;
  }
  .form-radio-label,
  .form-checkbox-label {
    padding: 1rem;
  }
  .form-radio-text,
  .form-checkbox-text {
    font-size: 1.2rem;
  }
}
.form-results {
  max-width: 1000px;
  width: 880px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
@media (max-width: 768px) {
  .form-results {
    padding: 6rem 1.5rem;
  }
}

.form-results-header {
  text-align: center;
  margin-bottom: 4.8rem;
}
.form-results-header h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .form-results-header h2 {
    font-size: 2rem;
  }
}
.form-results-header .results-subtitle {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.6;
}

.results-summary-box {
  background: #0000BA;
  border-radius: 12px 12px 0 0;
  padding: 2rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 186, 0.3);
}
@media (max-width: 768px) {
  .results-summary-box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}
.results-summary-box + .results-table-container {
  border-radius: 0 0 12px 12px;
}

.results-summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.results-summary-item .summary-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.results-summary-item .summary-value {
  font-size: 1.75rem;
  color: white;
  font-weight: 700;
}
@media (max-width: 768px) {
  .results-summary-item .summary-value {
    font-size: 1.5rem;
  }
}

.results-calculation-note {
  text-align: center;
  margin-bottom: 2rem;
}
.results-calculation-note p {
  font-size: 1.6rem;
  color: #2d3748;
}

.results-table-container {
  overflow-x: auto;
  margin-bottom: 4.8rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.results-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
.results-table thead {
  background: #0000BA;
}
.results-table thead tr th {
  padding: 1.25rem 1rem;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  vertical-align: bottom;
}
@media (max-width: 768px) {
  .results-table thead tr th {
    padding: 1rem 0.75rem;
    font-size: 1.2rem;
  }
}
.results-table tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.2s ease;
}
.results-table tbody tr.highlight-row {
  background: #f0f4ff;
}
.results-table tbody tr.total-row {
  background: #babaff;
}
.results-table tbody tr.total-row td {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 1.6rem !important;
}
@media (max-width: 768px) {
  .results-table tbody tr.total-row td {
    font-size: 1.4rem !important;
  }
}
.results-table tbody tr:last-child {
  border-bottom: none;
}
.results-table tbody tr td {
  padding: 1rem;
  color: #2d3748;
  font-size: 1.4rem;
  vertical-align: bottom;
}
.results-table tbody tr td.row-label {
  font-weight: 600;
  color: #4a5568;
}
.results-table tbody tr td.highlight-cell {
  font-weight: 700;
  color: #0000BA;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .results-table tbody tr td {
    padding: 0.875rem 0.75rem;
    font-size: 1.2rem;
  }
  .results-table tbody tr td.highlight-cell {
    font-size: 1.2rem;
  }
}

.results-table-primary thead {
  background: #a1a1ff !important;
}
.results-table-primary thead tr th {
  color: white !important;
}
.results-table-primary tbody tr:first-child td:first-child {
  border-top-left-radius: 0;
}
.results-table-primary tbody tr:first-child td:last-child {
  border-top-right-radius: 0;
}
.results-table-primary tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}
.results-table-primary tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

.results-table-small {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
.results-table-small tr {
  border-bottom: 1px solid #e2e8f0;
}
.results-table-small tr:last-child {
  border-bottom: none;
}
.results-table-small tr td {
  padding: 1rem;
  color: #2d3748;
  font-size: 1.4rem;
  vertical-align: bottom;
}
.results-table-small tr td.row-label {
  font-weight: 600;
  color: #4a5568;
  width: 30%;
}
.results-table-small tr td:not(.row-label) {
  text-align: center;
  font-weight: 600;
  color: #0000BA;
}
@media (max-width: 768px) {
  .results-table-small tr td {
    padding: 0.875rem 0.75rem;
    font-size: 1.2rem;
  }
}

.results-max-financing {
  margin-bottom: 4.8rem;
}
.results-max-financing h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .results-max-financing h3 {
    font-size: 1.6rem;
  }
}
.results-max-financing p {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}
.results-max-financing.prominent {
  border-radius: 12px;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .results-max-financing.prominent {
    padding: 2rem 1.5rem;
  }
}
.results-max-financing.prominent h3 {
  font-size: 2rem;
  color: #0000BA;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .results-max-financing.prominent h3 {
    font-size: 1.5rem;
  }
}
.results-max-financing.prominent p {
  color: white;
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 2rem;
}
.results-max-financing.prominent p strong {
  color: #0000BA;
}

.rate-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .rate-cards-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.rate-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.rate-card-header {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .rate-card-header {
    padding: 1.25rem;
  }
}

.rate-card-title {
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 768px) {
  .rate-card-title {
    font-size: 1.4rem;
  }
}

.rate-card-rate {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .rate-card-rate {
    font-size: 1.2rem;
    padding: 0.3rem 0.6rem;
  }
}

.rate-card-body {
  padding: 0.5rem 1.5rem 0 1.5rem;
}
@media (max-width: 768px) {
  .rate-card-body {
    padding: 1.25rem;
  }
}

.rate-card-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #f1f5f9;
}
.rate-card-item:last-child {
  border-bottom: none;
}
.rate-card-item.highlight {
  background: rgba(102, 126, 234, 0.08);
  margin: 0 -1.5rem;
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  border-bottom: none;
}
@media (max-width: 768px) {
  .rate-card-item.highlight {
    margin: 0 -1.25rem;
    padding: 1rem 1.25rem;
  }
}
.rate-card-item.highlight .rate-card-value {
  color: #0000BA;
  font-weight: 700;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .rate-card-item.highlight .rate-card-value {
    font-size: 1.5rem;
  }
}

.rate-card-label {
  color: #64748b;
  font-size: 1.3rem;
  font-weight: 500;
  width: 100%;
}
@media (max-width: 768px) {
  .rate-card-label {
    font-size: 1.2rem;
  }
}

.rate-card-value {
  width: 100%;
  color: #1e293b;
  font-size: 1.5rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .rate-card-value {
    font-size: 1.4rem;
  }
}

.results-warning {
  background: #fff5f5;
  border-left: 4px solid #fc8181;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 4.8rem;
}
.results-warning p {
  color: #c53030;
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0;
}
.results-warning p + p {
  margin-top: 0.75rem;
}
.results-warning p strong {
  font-weight: 700;
  color: #9b2c2c;
}

.results-summary-text p {
  color: #718096;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  line-height: 1.3;
}

.results-info {
  margin-bottom: 4rem;
  background: #f0f9ff;
  border-left: 4px solid #0ea5e9;
  padding: 1.5rem 2rem;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .results-info {
    padding: 1.25rem 1.5rem;
  }
}
.results-info p {
  color: #0c4a6e;
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .results-info p {
    font-size: 1.4rem;
  }
}

.results-info-box {
  margin-top: 2rem;
  margin-bottom: 0;
  background: #e8f4f8;
  border-left: 4px solid #2196F3;
  border-radius: 8px;
  padding: 1.5rem 2rem;
}
@media (max-width: 768px) {
  .results-info-box {
    padding: 1.25rem 1.5rem;
  }
}
.results-info-box .info-box-title {
  margin: 0 0 1rem 0;
  font-size: 1.6rem;
  color: #1565C0;
}
@media (max-width: 768px) {
  .results-info-box .info-box-title {
    font-size: 1.4rem;
  }
}
.results-info-box .info-box-title strong {
  font-weight: 700;
  color: #1565C0;
}
.results-info-box .info-box-message {
  margin: 0 0 1rem 0;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #0d47a1;
}
@media (max-width: 768px) {
  .results-info-box .info-box-message {
    font-size: 1.3rem;
  }
}
.results-info-box .info-box-action {
  margin: 0;
  font-size: 1.4rem;
  color: #1565C0;
}
@media (max-width: 768px) {
  .results-info-box .info-box-action {
    font-size: 1.3rem;
  }
}
.results-info-box .info-box-action strong {
  font-weight: 600;
  color: #0d47a1;
}

.results-contact-section {
  background: #f7fafc;
  border-radius: 12px;
  padding: 2.5rem;
}
@media (max-width: 768px) {
  .results-contact-section {
    padding: 2rem 1.5rem;
  }
}
.results-contact-section h3 {
  font-size: 2.2rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .results-contact-section h3 {
    font-size: 1.8rem;
  }
}
.results-contact-section > p {
  text-align: center;
  color: #718096;
  margin-bottom: 2rem;
  font-size: 1.4rem;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form .form-group label {
  display: block;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}
.contact-form .form-input,
.contact-form .form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1.4rem;
  font-family: "Nunito", sans-serif;
  transition: all 0.2s ease;
}
.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
  outline: none;
  border-color: #0000BA;
  box-shadow: 0 0 0 3px rgba(0, 0, 186, 0.1);
}
.contact-form .form-input::placeholder,
.contact-form .form-textarea::placeholder {
  color: #cbd5e0;
}
.contact-form .form-textarea {
  resize: vertical;
  min-height: 100px;
}

.calendly-section {
  background: #fff;
  border: 2px solid #0000BA;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
}
.calendly-section p {
  margin-bottom: 1.6rem;
  color: #2d3748;
  font-size: 1.4rem;
}
.calendly-section .btn-calendly {
  background: #0000BA;
  color: white;
  border: none;
  padding: 1.2rem 1.6rem;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.calendly-section .btn-calendly:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 186, 0.4);
  background: #0000a1;
}
.calendly-section .btn-calendly:active {
  transform: translateY(0);
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .form-actions {
    flex-direction: column;
  }
}
.form-actions .btn-primary,
.form-actions .btn-secondary {
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: "Nunito", sans-serif;
}
@media (max-width: 768px) {
  .form-actions .btn-primary,
  .form-actions .btn-secondary {
    width: 100%;
  }
}
.form-actions .btn-primary {
  background: #0000BA;
  color: white;
}
.form-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 186, 0.4);
  background: #0000a1;
}
.form-actions .btn-primary:active {
  transform: translateY(0);
}
.form-actions a.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.form-actions .btn-secondary {
  background: white;
  color: #0000BA;
  border: 2px solid #0000BA;
}
.form-actions .btn-secondary:hover {
  background: #F7F6F2;
  transform: translateY(-2px);
}
.form-actions .btn-secondary:active {
  transform: translateY(0);
}

.savings-positive {
  color: #10b981 !important;
  font-weight: 600;
}

.savings-negative {
  color: #ef4444 !important;
  font-weight: 600;
}

.section-header {
  background-color: #F7F6F2;
  font-weight: 600;
}
.section-header td {
  padding: 0.75rem 1rem;
}

.equity-box {
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 1.5rem 0;
}
.equity-box.equity-positive {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}
.equity-box.equity-negative {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.equity-value {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .equity-value {
    font-size: 2rem;
  }
}

.equity-label {
  font-size: 1rem;
  opacity: 0.95;
  font-weight: 500;
}

.equity-note {
  padding: 1rem;
  background-color: #F7F6F2;
  border-radius: 8px;
  margin-top: 1rem;
  color: #2d3748 !important;
}
.equity-note.warning {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.young-credit-modal-trigger {
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.2rem;
}
.young-credit-modal-trigger:hover {
  color: #e6e6e6;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.modal .modal-content {
  position: relative;
  background-color: white;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 10000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .modal .modal-content {
    max-width: 95%;
    max-height: 90vh;
  }
}
.modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid #e2e8f0;
}
@media (max-width: 768px) {
  .modal .modal-header {
    padding: 1.5rem;
  }
}
.modal .modal-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}
@media (max-width: 768px) {
  .modal .modal-title {
    font-size: 1.5rem;
  }
}
.modal .modal-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #718096;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  line-height: 1;
}
.modal .modal-close:hover {
  color: #2d3748;
}
.modal .modal-body {
  padding: 2rem;
  color: #4a5568;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .modal .modal-body {
    padding: 1.5rem;
    font-size: 1.4rem;
  }
}
.modal .modal-body p {
  margin-bottom: 1.5rem;
}
.modal .modal-body p:last-child {
  margin-bottom: 0;
}

.text-success {
  color: #28a745;
  font-weight: 600;
}

.text-danger {
  color: #dc3545;
  font-weight: 600;
}

.btn-switch-consolidated {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.2s;
}
.btn-switch-consolidated:hover {
  background-color: #218838;
}
.btn-switch-consolidated + p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.results-list {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.results-next-step-cta {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 12px;
  padding: 3rem;
  margin: 4rem 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 186, 0.2);
}
@media (max-width: 768px) {
  .results-next-step-cta {
    padding: 2rem 1.5rem;
    margin: 3rem 0;
  }
}
.results-next-step-cta .next-step-cta-content {
  max-width: 700px;
  margin: 0 auto;
}
.results-next-step-cta .next-step-cta-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .results-next-step-cta .next-step-cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.results-next-step-cta .next-step-cta-content p {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .results-next-step-cta .next-step-cta-content p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}

.btn-cta-primary {
  display: inline-block;
  padding: 1.5rem 3rem;
  background: white;
  color: #0000BA;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(95, 255, 217, 0.3);
  cursor: pointer;
}
@media (max-width: 768px) {
  .btn-cta-primary {
    padding: 1.25rem 2.5rem;
    font-size: 1.6rem;
    width: 100%;
    text-align: center;
  }
}
.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(95, 255, 217, 0.5);
  background: white;
}
.btn-cta-primary:active {
  transform: translateY(-1px);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal.show {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10001;
}

.modal-header {
  padding: 2rem 2rem 1rem 2rem;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
  padding-right: 2rem;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #718096;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
}
.modal-close:hover {
  background: #f7fafc;
  color: #2d3748;
}

.modal-body {
  padding: 2rem;
}
.modal-body p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.modal-body p.modal-question {
  color: #718096;
}
.modal-body ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  line-height: 1.8;
  list-style: none;
}

.modal-actions {
  display: flex;
  gap: 1rem;
}

.modal-actions button {
  padding: 0.8rem 1.2rem;
  border-radius: 5rem;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.modal-actions button:active {
  transform: translateY(1px);
}

.modal-actions .btn-primary {
  background: #0000ba;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 186, 0.3);
}
.modal-actions .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 186, 0.4);
  transform: translateY(-2px);
  background: #0000a0;
}

.modal-actions .btn-secondary {
  background: white;
  color: #0000ba;
  border: 2px solid #0000ba !important;
}
.modal-actions .btn-secondary:hover {
  background: #f7fafc;
}

.eligibility-item,
.viability-item {
  padding: 1rem;
  margin: 0.5rem 0;
  border-radius: 8px;
  background: #f7fafc;
  border-left: 4px solid #cbd5e0;
}

.eligibility-item.pass,
.viability-item.pass {
  background: #f0fff4;
  border-left-color: #48bb78;
  color: #276749;
}

.eligibility-item.fail,
.viability-item.fail {
  background: #fff5f5;
  border-left-color: #f56565;
  color: #742a2a;
}

.eligibility-item.info,
.viability-item.info {
  background: #ebf8ff;
  border-left-color: #4299e1;
  color: #2c5282;
}

.results-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.results-section h3 {
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #667eea;
}

.highlight-row {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.highlight-cell {
  color: #667eea;
  font-size: 1.1rem;
}

.success-section {
  background: linear-gradient(135deg, rgba(72, 187, 120, 0.1) 0%, rgba(56, 161, 105, 0.1) 100%);
  border-left: 4px solid #48bb78;
}

.warning-section {
  background: linear-gradient(135deg, rgba(237, 137, 54, 0.1) 0%, rgba(221, 107, 32, 0.1) 100%);
  border-left: 4px solid #ed8936;
}

.info-section {
  background: linear-gradient(135deg, rgba(66, 153, 225, 0.1) 0%, rgba(49, 130, 206, 0.1) 100%);
  border-left: 4px solid #4299e1;
}

.results-table thead th {
  background: #667eea;
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.results-table .row-label {
  font-weight: 600;
  color: #2d3748;
}

.results-table .row-formula {
  font-style: italic;
  color: #718096;
  font-size: 0.9rem;
}

.results-table .row-value {
  font-weight: 600;
  text-align: right;
  color: #4a5568;
}

.text-success {
  color: #48bb78;
  font-weight: 600;
}

.text-danger {
  color: #f56565;
  font-weight: 600;
}

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

.savings-item {
  text-align: center;
}

.savings-label {
  font-size: 0.9rem;
  color: #718096;
  margin-bottom: 0.5rem;
}

.savings-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #48bb78;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .results-table .row-formula {
    display: none;
  }
}