@font-face {
    font-family: 'Inter';
    src: url('/themes/fintok/static/site/static/fonts/Inter.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
  }

@font-face {
    font-family: 'OpenSans';
    src: url('/themes/fintok/static/site/static/fonts/OpenSans.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
  }
   
   *,
   *::before,
   *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
   }
   
   html,
   body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
     height: 100%;
     scroll-behavior: smooth;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
   }
   
   body {
     line-height: 1.5;
     background-color: #fff;
     color: #0f172a;
   }

h1, h2, h3, h4, h5, h6 {
    font-family: 'OpenSans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    color: #082F49;
}

h1 {
    font-size: 30px;
    line-height: 36px;
}

h2 {
    font-size: 24px;
    line-height: 32px;
}
   
   ul[role='list'],
   ol[role='list'] {
     list-style: none;
   }
   
   img,
   picture,
   video,
   canvas,
   svg {
     display: block;
     max-width: 100%;
   }
   
   input,
   button,
   textarea,
   select {
     font: inherit;
   }
   
   a {
     text-decoration: none;
     color: inherit;
   }
   
   
.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 16px;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.primary_button {
    width: 100%;
    display: inline-block;
    background-color: #f97316;
    color: #fff;
    border-radius: 8px;
    box-shadow: inset 0 5px 8px #ffffff40;
    text-align: center;
    font-weight: 550;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
    line-height: 20px;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 16px;
    line-height: 24px;
    border-radius: 12px;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}

.outline_button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: #fff;
    border: 1px solid #f97316;
    border-radius: 8px;
}

.cta_wrapper {
    margin-top: 24px;
    text-align: center;
}

.gap-3 {
    gap: 12px;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.header {
    padding: 16px 0px;
    border-bottom: 1px solid #E5E7EB;
}
.logo {
    height: 28px;
    width: auto;
}

.section_light {
    padding: 24px 0px;
    background-color: #ffffff;
}

.section_accent {
    padding: 24px 0px;
    background-color: #DAF4FF;
}

.first_screen {
    padding: 24px 0px 32px 0px;
    background-image: linear-gradient(to bottom, #DAF4FF, #49D7FF);
}
.first_screen_text_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.first_screen_heading {
    text-align: center;
    margin-bottom: 20px;
}

.first_screen_tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 3px 8px 3px 6px;
    width: fit-content;
    background-color: #ffffff;
    border-radius: 9999px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    color: #082F49;
}

.first_screen_bullets {
  display: none;
}

.second_screen_items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.second_screen_item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.second_screen_item_image {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 12px;
    background-color: #DFF1FD;
    display: flex;
    align-items: center;
    justify-content: center;
}

.second_screen_item_title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #082F49;
}

.reviews_illustration {
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 16px;
}

.review_items {
    margin-top: 24px;
}

.review_item {
    max-width: 75vw;
}

.review_item_rating {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review_item_verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    color: #082F49;
}

.review_item_heading {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #082F49;
    margin: 8px 0px;
}

.review_item_text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #64748b;
}

@media (max-width: 768px) {
  .review_items {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px 8px 16px;
    margin: 24px -16px 0 -16px;
  }

  .review_item {
    flex: 0 0 auto;
    width: 75vw;
    max-width: none;
    border: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
  }

  .review_items::-webkit-scrollbar {
    display: none;
  }

  .review_items {
    scrollbar-width: none;
  }
}

.accent_badge {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    color: #E9580C;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    padding: 4px 12px;
    background-color: #ffffff;
    border-radius: 9999px;
}

.cards_heading {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #082F49;
    text-align: center;
    margin-top: 16px;
}

.cards_text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 450;
    color: #434E61;
    text-align: center;
    margin-top: 12px;
}

.cards_items {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card_item {
 padding: 16px;
 background-color: #ffffff;
 border-radius: 16px;
 box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.05),
 0px 1px 4px rgba(12, 12, 13, 0.1);
}

.card_item_image {
 width: 40px;
 height: 40px;
 background-color: #fff7ed;
 border-radius: 9999px;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 14px;
}

.card_item_content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card_item_heading {
    font-size: 16px;
    line-height: 24px;
    font-weight: 650;
    color: #082F49;
}

.card_item_text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #64748b;
}

.card_item_check {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 550;
    margin-top: 8px;
}

.faq__wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transition: background-color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.faq__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  list-style: none;
}

.faq__toggle::-webkit-details-marker {
  display: none;
}

.faq__toggle::marker {
  content: "";
}

.faq__question {
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  color: #0f172a;
}

.faq__icon-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  transition: border-color 0.2s ease, background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.faq__icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.22s ease;
}

.faq__answer-inner {
  overflow: hidden;
}

.faq__answer p {
  margin: 0;
  padding: 12px 16px 16px 16px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #334155;
}

.faq__item[open] {
  background-color: #ffffff;
}

.faq__item[open] .faq__answer {
  border-top: 1px solid #e2e8f0;
  grid-template-rows: 1fr;
}

.faq__item[open] .faq__icon-btn {
  background-color: #ffffff;
  border-color: #e2e8f0;
}

.faq__item[open] .faq__icon {
  transform: rotate(45deg);
}

@media (prefers-reduced-motion: reduce) {
  .faq__answer {
    transition: none;
  }
  .faq__icon,
  .faq__item,
  .faq__icon-btn {
    transition: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .faq__item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  }

  .faq__toggle:hover .faq__icon-btn {
    border-color: #cbd5e1;
    background-color: #ffffff;
  }
}

.faq__toggle:focus-visible {
  outline: none;
}

.faq__toggle:focus-visible .faq__icon-btn {
  border-color: #94a3b8;
  box-shadow: 0 0 0 3px rgba(2, 6, 23, 0.12);
}

.footer {
    padding: 24px 0px;
    background-color: #ffffff;
    border-top: 1px solid #E5E7EB;
}

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

.footer_content > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}

.footer_logo {
    height: 28px;
    width: auto;
    margin-bottom: 8px;
}

.footer_link {
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
}

.footer_link:focus-visible {
  outline: none;
  border-radius: 8px;
  box-shadow: 0 0 0 3px rgba(2, 6, 23, 0.12);
}

@media (hover: hover) and (pointer: fine) {
  .footer_link:hover {
    color: #0f172a;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

.footer_content p {
  margin: 0;
}

.footer_content p:not(.footer_text) {
  font-size: 13px;
  line-height: 18px;
  color: #475569;
}

.footer_text {
  max-width: 56rem;
  font-size: 12px;
  line-height: 18px;
  color: #64748b;
}

@media (max-width: 768px) {
  .footer {
    padding: 20px 0px;
  }
  .footer_content {
    gap: 12px;
  }
}

@media (min-width: 640px) {
  .calculator_container {
    width: 384px;
    margin: 0 auto;
   }
  .first_screen_heading {
    font-size: 36px;
    line-height: 46px;
  }
  .section_light,
  .section_accent {
    padding: 32px 0px;
  }

  .cta_wrapper .primary_button {
    width: fit-content;
    min-width: 240px;
  }

  .second_screen_items {
    margin-top: 28px;
  }
  .pt-0 {
    padding-top: 0!important;
  }
  .cta_wrapper {
    margin-top: 40px;
  }
}

@media (min-width: 768px) {
  .first_screen_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  .first_screen_text_container {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }
  .first_screen_text_container .calculator_top_banner {
    width: 384px !important;
    max-width: 384px;
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  .first_screen_heading {
    text-align: left;
  }
  .first_screen_tag {
    font-size: 14px;
    line-height: 20px;
    padding: 4px 12px 4px 8px;
    margin-left: 0;
    margin-right: auto;
    border-radius: 9999px;
  }
  .section_light h2,
  .section_accent h2 {
    text-align: center;
    font-size: 28px;
    line-height: 36px;
  }

  .review_items {
    margin-top: 0;
  }

  .section_light,
  .section_accent {
    padding: 44px 0px;
  }

  .second_screen_items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 32px;
  }

  .second_screen_item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  }

  .second_screen_item_image {
    width: 104px;
    height: 104px;
  }

  .reviews_illustration {
    display: none;
  }

  .review_items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .review_item {
    width: auto;
    max-width: none;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  }

  .cards_text {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
  }

  .cards_items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .faq__wrapper {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
  }

  .footer {
    padding: 32px 0px;
  }
}

@media (min-width: 1024px) {
  .first_screen {
    padding: 64px 0px;
  }
  .first_screen_content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
  }
  .first_screen_text_container {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }
  .first_screen_heading {
    margin-bottom: 0;
    letter-spacing: -0.02em;
  }
  .first_screen_bullets {
    margin-top: 4px;
    gap: 12px;
    font-size: 16px;
    line-height: 24px;
  }
  .first_screen_text_container .calculator_top_banner {
    width: 100% !important;
    max-width: 384px;
    margin: 0 !important;
    margin-top: 16px !important;
  }
  .calculator_container {
    max-width: 384px;
    margin: 0;
  }
  .calculator_main {
    width: 100%;
  }
  .first_screen_heading {
    font-size: 48px;
    line-height: 58px;
  }
  .first_screen_tag {
    font-size: 16px;
    line-height: 24px;
    padding: 6px 16px 6px 12px;
    border-radius: 9999px;
  }
  .first_screen_tag img {
    width: 110px;
    height: 20px;
  }
  .first_screen_bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0 0 0;
    padding: 0;
    list-style: none;
    max-width: 34rem;
    color: #082F49;
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
  }
  .first_screen_bullets li {
    position: relative;
    padding-left: 28px;
  }
  .first_screen_bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url("/themes/fintok/static/site/static/img/check_icon.svg");
    background-size: 20px 20px;
    background-repeat: no-repeat;
  }
  .section_light h2,
  .section_accent h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .section_light,
  .section_accent {
    padding: 56px 0px;
  }

  .second_screen_items {
    gap: 24px;
  }

  .second_screen_item {
    padding: 20px;
  }

  .reviews_illustration {
    border-radius: 24px;
  }

  .review_items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .review_item {
    padding: 20px;
  }

  .cards_heading {
    font-size: 30px;
    line-height: 38px;
  }

  .cards_items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .faq__wrapper {
    max-width: 52rem;
  }

  .footer {
    padding: 40px 0px;
  }
}

@media (min-width: 1280px) {
  .section_light h2,
  .section_accent h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .section_light,
  .section_accent {
    padding: 72px 0px;
  }

  .second_screen_items {
    gap: 28px;
  }

  .review_items {
    gap: 28px;
  }

  .cards_items {
    gap: 28px;
  }

  .faq__wrapper {
    max-width: 56rem;
  }
}

@media (min-width: 1536px) {
  .section_light,
  .section_accent {
    padding: 80px 0px;
  }
}
