@charset "UTF-8";
:root {
  --primary-color: #E96D14;
  --primary-light: #D9D9D9;
  --secondary-color: #7E57FE;
  --secondary-light: #D9D9D9;
  --text-color: #323232;
  --primary-text: #6F6C90;
  --white: #ffffff;
  --light-bg: #f8f7ff;
  --score-safe: #4CAF50;
  --score-caution: #FF9800;
  --score-not-match: #f44336;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--text-color);
}

p {
  color: var(--primary-text);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.hero-section .hero {
  background-color: #ECE8FA;
  background-image: url(./images/banner-left-corner.svg), url(./images/banner-right-corner.svg);
  background-position: top left, bottom right;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
  min-height: 496px;
  background-repeat: no-repeat;
  padding: 64px 217px;
  text-align: center;
  border-radius: 40px;
}
.hero-section .hero h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: -5%;
  text-align: center;
  color: var(--secondary-color);
}
.hero-section .hero h1 span {
  color: var(--primary-color);
}
.hero-section .hero p {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  color: var(--primary-text);
  line-height: 100%;
}
.hero-section .hero-img {
  margin-top: -20%;
}
@media (max-width: 992px) {
  .hero-section {
    background-size: 60%, 60%;
  }
  .hero-section .hero {
    padding: 64px;
  }
  .hero-section .hero h1 {
    font-size: 45px;
    line-height: inherit;
  }
  .hero-section .hero-img {
    margin-top: -30%;
  }
}
@media (max-width: 576px) {
  .hero-section {
    background-size: 40%, 40%;
  }
  .hero-section .hero {
    padding: 32px 32px 120px;
    min-height: auto;
  }
  .hero-section .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }
  .hero-section .hero p {
    line-height: 1.2;
    font-size: 20px;
  }
  .hero-section .hero-img {
    margin-top: -30%;
  }
}

.section-spacing {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .section-spacing {
    padding: 30px 0;
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--primary-text);
  max-width: 800px;
  margin: 0 auto;
}

.text-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -5%;
  color: var(--primary-color);
}
@media (max-width: 992px) {
  .text-title {
    font-size: 26px;
  }
}

.text-content {
  font-weight: 500;
  font-size: 20px;
  color: var(--primary-text);
}

.pp-list {
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--white);
}
.btn-primary:hover {
  background-color: rgb(186.0316205534, 87.0276679842, 15.9683794466);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 109, 20, 0.3);
  color: var(--white);
}
.btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(233, 109, 20, 0.25);
  background-color: var(--primary-color);
  color: var(--white);
}
@media (max-width: 567px) {
  .btn-primary {
    width: 100%;
    padding: 12px 13px;
  }
}

.btn-secondary {
  background-color: var(--secondary-color);
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background-color: rgb(87.0710059172, 36.3017751479, 253.6982248521);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(126, 87, 254, 0.3);
}
.btn-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(126, 87, 254, 0.25);
}
@media (max-width: 567px) {
  .btn-secondary {
    width: 100%;
    padding: 12px 13px;
  }
}

.min-w-btn {
  min-width: 338px;
}

.section-title {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 60px;
  letter-spacing: -5%;
  text-align: center;
}

.section-subtitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--primary-text);
}

.navbar {
  padding: 1.5rem 0;
  background: transparent;
  transition: all 0.3s ease;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo {
  height: 50px;
}
@media (max-width: 576px) {
  .navbar .logo {
    height: 40px;
  }
}

.footer {
  background-color: #E96D14;
  color: var(--white);
  padding: 4rem 0 24px;
}
.footer .footer-logo {
  height: 40px;
  filter: brightness(0) invert(1);
}
.footer .footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
  max-width: 500px;
}
.footer .footer-links {
  display: flex;
  gap: 60px;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .footer .footer-links {
    justify-content: flex-start;
    gap: 8px;
    flex-direction: column;
  }
}
.footer .footer-links .footer-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}
.footer .footer-links .footer-link:hover {
  color: var(--white);
}
.footer .social-links {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
  margin-top: 73px;
}
@media (max-width: 991px) {
  .footer .social-links {
    justify-content: flex-start;
    margin-top: 24px;
  }
}
.footer .social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer .social-links .social-link:hover {
  transform: translateY(-3px);
}
.footer .social-links .social-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
}
.footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}

.modal .modal-dialog {
  max-width: 600px;
}
.modal .modal-content {
  border-radius: 30px;
  border: none;
  padding: 2rem;
}
@media (max-width: 576px) {
  .modal .modal-content {
    padding: 1.5rem;
  }
}
.modal .modal-header {
  padding: 0;
  margin-bottom: 1rem;
}
.modal .modal-header .btn-close:focus {
  box-shadow: none;
}
.modal .modal-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-color);
}
.modal .thank-you-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
}
.modal .thank-you-text {
  color: var(--primary-text);
  line-height: 1.7;
}
.modal .what-next {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 20px;
  text-align: left;
}
.modal .what-next .what-next-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.modal .what-next .what-next-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.modal .what-next .what-next-list li {
  color: var(--primary-text);
  padding-left: 18px;
  margin-bottom: 0.75rem;
  position: relative;
}
.modal .what-next .what-next-list li:before {
  content: "●";
  color: var(--primary-color);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -3px;
}
.modal .what-next .what-next-list li:last-child {
  margin-bottom: 0;
}
.modal .no-spam-text {
  font-style: italic;
  color: var(--primary-text);
  font-size: 0.95rem;
}

.form-label {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border-radius: 40px;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e0e0e0;
  font-size: 1rem;
  box-shadow: 0px 2px 12px 0px rgba(20, 20, 43, 0.0784313725);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(126, 87, 254, 0.15);
}

.form-disclaimer {
  font-size: 0.875rem;
  color: var(--primary-text);
  line-height: 1.6;
}
.form-disclaimer a {
  color: var(--text-color) !important;
}
.form-disclaimer a:hover {
  text-decoration: underline;
}

.success-icon svg {
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.checkmark-animate {
  animation: scaleIn 0.6s ease-out;
}

.modal-lg {
  max-width: 800px !important;
}

html {
  scroll-behavior: smooth;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-21 {
  font-size: 21px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-23 {
  font-size: 23px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-25 {
  font-size: 25px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-27 {
  font-size: 27px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-29 {
  font-size: 29px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-31 {
  font-size: 31px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-33 {
  font-size: 33px !important;
}

.fs-34 {
  font-size: 34px !important;
}

.fs-35 {
  font-size: 35px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.fs-37 {
  font-size: 37px !important;
}

.fs-38 {
  font-size: 38px !important;
}

.fs-39 {
  font-size: 39px !important;
}

.fs-40 {
  font-size: 40px !important;
}

@media (max-width: 768px) {
  :root {
    --section-gap: 12px;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
}