/* styles.scss */
/* VARIABLES */
/* GLOBAL */
ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

body {
  font-family: "Inter", sans-serif;
  color: #333;
  line-height: 1.5;
}

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

button {
  cursor: pointer;
  border: none;
  border-radius: 8px;
}

.container {
  padding: 0 calc(50% - 800px + 60px);
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

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

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

.justify-center {
  justify-content: center;
}

.btn-primary {
  background: #00969e;
  color: #fff;
  padding: 0 20px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.btn-secondary {
  background: transparent;
  color: #00969e;
  border: 2px solid #00969e;
  padding: 0 20px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* HERO */
/* TRUST BAR */
.payment h1 {
  margin-top: 140px;
  text-align: center;
}
.payment a {
  padding: 10px 20px;
  text-align: center;
  display: block;
  width: 300px;
  margin: auto;
  height: auto;
  margin: 20px auto;
}
.payment #checkout {
  margin-top: 40px;
}

/* SIGNUP FORM */
.signup {
  padding: 60px 0;
  text-align: center;
}

.signup h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.signup-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.signup-form input {
  height: 50px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.signup-form button {
  height: 50px;
  background: #0074ab;
  color: #fff;
  font-size: 16px;
}

/* FAQ */
.faq {
  padding: 60px 0;
  text-align: center;
}

.faq h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 16px;
  font-size: 16px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* FINAL CTA */
.final-cta {
  padding: 60px 0;
  text-align: center;
  background: #f8f9fa;
}

.final-cta h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.final-cta .btn-primary {
  height: 60px;
  width: 240px;
  font-size: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    gap: 30px;
  }
  .features-grid,
  .templates-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
  }
  .nav-links {
    margin-left: 0;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
#main-header {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.99);
  z-index: 999;
}
#main-header .header-left .branding {
  gap: 6px;
  flex-direction: column;
}
#main-header .header-left .branding .logo {
  width: 100px;
}
#main-header .header-left .branding h3 {
  background: linear-gradient(90deg, rgb(0, 116, 171) 0%, rgb(0, 150, 158) 100%);
  font-size: 24px;
  font-weight: normal;
  margin-top: 4px;
  background-clip: text;
  -webkit-background-clip: text;
  /* Required for Chrome/Safari */
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* Required for Safari */
  font-weight: 600;
}
#main-header .header-left .branding h3 span {
  color: #00969e;
}
#main-header .header-left nav {
  margin-left: 32px;
  margin-top: 4px;
  display: none;
}
#main-header .navbar {
  height: 80px;
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #ddd;
}
#main-header .navbar .logo {
  font-size: 24px;
  font-weight: bold;
}
#main-header .nav-links {
  gap: 32px;
  color: #0074ab;
  font-size: 18px;
}
#main-header .nav-links .btn-primary,
#main-header .nav-links .btn-secondary {
  border-radius: 40px;
  padding: 10px 20px;
}
#main-header .nav-buttons {
  gap: 14px;
}
#main-header .nav-buttons .btn-primary,
#main-header .nav-buttons .btn-secondary {
  border-radius: 40px;
  padding: 10px 20px;
  font-size: 18px;
}
#main-header .login {
  display: none;
  position: absolute;
  top: 88px;
  padding: 40px 0px;
  color: #FFF;
  background: #00969e;
  width: 100%;
}
#main-header .login .container {
  width: 600px;
  margin: auto;
}
#main-header .login h1 {
  margin-bottom: 20px;
}
#main-header .login .login-button {
  display: block;
  background: #FFF;
  width: 100%;
  font-size: 18px;
  color: #0074ab;
  padding: 11px 0;
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
}
#main-header .login .login-button:before {
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 10px;
  top: 11px;
  content: "";
}
#main-header .login .facebook:before {
  background-image: url(../img/facebook.svg);
}
#main-header .login .google:before {
  background-image: url(../img/google.svg);
}
#main-header .login .apple:before {
  background-image: url(../img/apple.svg);
}

@media (min-width: 768px) {
  #main-header {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.99);
    z-index: 999;
  }
  #main-header .header-left .branding {
    gap: 6px;
    flex-direction: row;
  }
  #main-header .header-left .branding .logo {
    width: 70px;
  }
  #main-header .header-left .branding h3 {
    background: linear-gradient(90deg, rgb(0, 116, 171) 0%, rgb(0, 150, 158) 100%);
    font-size: 24px;
    font-weight: normal;
    margin-top: 4px;
    background-clip: text;
    -webkit-background-clip: text;
    /* Required for Chrome/Safari */
    color: transparent;
    -webkit-text-fill-color: transparent;
    /* Required for Safari */
    font-weight: 600;
  }
  #main-header .header-left .branding h3 span {
    color: #00969e;
  }
  #main-header .header-left nav {
    margin-left: 32px;
    margin-top: 4px;
  }
  #main-header .navbar {
    height: 80px;
    display: flex;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #ddd;
  }
  #main-header .navbar .logo {
    font-size: 24px;
    font-weight: bold;
  }
  #main-header .nav-links {
    gap: 32px;
    color: #0074ab;
    font-size: 18px;
  }
  #main-header .nav-links .btn-primary,
  #main-header .nav-links .btn-secondary {
    border-radius: 40px;
    padding: 10px 20px;
  }
  #main-header .nav-buttons {
    gap: 14px;
  }
  #main-header .nav-buttons .btn-primary,
  #main-header .nav-buttons .btn-secondary {
    border-radius: 40px;
    padding: 10px 20px;
    font-size: 18px;
  }
}
.hero {
  background-image: url("/public/img/hero.png");
  background-size: cover;
  background-position: center;
}
.hero .hero-content {
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
}
.hero .hero-content .hero-text {
  max-width: 800px;
}
.hero .hero-content .hero-text h1 {
  font-size: 80px;
  line-height: 100px;
  margin-bottom: 40px;
  color: #04e0ec;
  text-align: center;
  font-size: 51px;
  line-height: 60px;
}
.hero .hero-content .hero-text p {
  font-size: 40px;
  margin-bottom: 40px;
  color: #50c4fa;
  line-height: 50px;
}
.hero .hero-content .hero-text h4 {
  font-weight: 500;
  color: #FFF;
  font-size: 14px;
  margin-top: 20px;
  line-height: 36px;
}
.hero .hero-content .hero-text .hero-buttons a {
  font-size: 20px;
  background: #03585c;
  color: #fff;
  padding: 25px 40px;
  border-radius: 40px;
}
.hero .hero-content .hero-video iframe {
  width: 100%;
  max-width: 560px;
  height: 315px;
  border-radius: 12px;
}

.trust-bar {
  background: #f8f9fa;
  padding: 20px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 16px;
}

.tag-line {
  padding: 60px 0;
  text-align: center;
  background: #0074ab;
  color: #fff;
}
.tag-line h2 {
  font-size: 36px;
}

@media (min-width: 768px) {
  .hero {
    margin-top: 88px;
    height: calc(100vh - 88px);
  }
  .hero .hero-content .hero-text {
    max-width: 800px;
  }
  .hero .hero-content .hero-text h1 {
    font-size: 80px;
    line-height: 100px;
    margin-bottom: 30px;
    margin-top: 0px;
    text-align: left;
  }
  .hero .hero-content .hero-text p {
    font-size: 40px;
    margin-bottom: 30px;
    margin-top: -15px;
  }
  .hero .hero-content h5 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
  }
  .hero .hero-content .hero-buttons a {
    font-size: 20px;
    background: #03585c;
    color: #fff;
    padding: 28px 30px;
    border-radius: 40px;
  }
  .hero .hero-content .hero-video iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border-radius: 12px;
  }
}
.problem {
  padding: 60px 0;
  text-align: center;
}
.problem h2 {
  font-size: 36px;
  margin-bottom: 40px;
}
.problem h3 {
  font-size: 33px;
  margin-bottom: 40px;
  padding-top: 60px;
}
.problem .problem-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.problem .problem-grid h3 {
  font-size: 24px;
}
.problem .problem-grid .problem-item {
  width: 440px;
  height: 120px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 28px;
  text-align: left;
  line-height: 34px;
}
.problem .problem-grid .problem-item span {
  font-size: 24px;
  margin-right: 16px;
}

.features {
  padding: 60px 0;
  text-align: center;
  background: #00969e;
  color: #fff;
}
.features h2 {
  font-size: 36px;
  margin-bottom: 40px;
}
.features .features-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.features .features-grid .feature-item {
  width: 400px;
  padding: 30px;
  text-align: center;
  width: 280px;
}
.features .features-grid .feature-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.features .features-grid .feature-item p {
  font-size: 16px;
}

.pricing {
  padding: 60px 0;
  text-align: center;
}
.pricing h2 {
  font-size: 36px;
  margin-bottom: 40px;
}
.pricing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}
.pricing .pricing-grid .pricing-card {
  width: 340px;
  height: 540px;
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.pricing .pricing-grid .pricing-card.highlight {
  transform: scale(1.05);
  border: 2px solid #0074ab;
}
.pricing .pricing-grid .pricing-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.pricing .pricing-grid .pricing-card p {
  font-size: 42px;
  margin-bottom: 20px;
}
.pricing .pricing-grid .pricing-card ul {
  list-style: none;
  margin-bottom: 20px;
}
.pricing .pricing-grid .pricing-card ul li {
  margin: 5px 0;
}
.pricing .pricing-grid .pricing-card ul li:before {
  content: "";
  background-image: url(../img/tick.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  margin-left: -22px;
  position: absolute;
  margin-top: 3px;
}
.pricing .pricing-grid .pricing-card a, .pricing .pricing-grid .pricing-card button {
  width: 100%;
  height: 50px;
  background: #0074ab;
  color: #fff;
  font-size: 16px;
  display: inline-block;
  padding: 14px;
  border-radius: 20px;
}

.faq {
  text-align: center;
}
.faq h3 {
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  margin-top: 30px;
}
.faq p {
  text-align: center;
  width: 100%;
  margin: auto;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .faq {
    text-align: center;
  }
  .faq h3 {
    font-size: 30px;
  }
  .faq p {
    width: 600px;
  }
}
.sign-up-hero {
  background: #0074ab;
  color: #FFF;
  text-align: center;
  margin-top: 87px;
  padding: 40px 0;
}
.sign-up-hero h1 {
  font-size: 40px;
}

#sign-up {
  padding-top: 40px;
  text-align: center;
}
#sign-up h2 {
  font-size: 36px;
  margin: 40px 0;
}
#sign-up h3 {
  margin-bottom: 20px;
}
#sign-up .pricing-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
#sign-up .pricing-grid .selected-badge {
  background: #00969e;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  position: absolute;
  top: -10px;
  right: -10px;
}
#sign-up .pricing-grid .pricing-card {
  position: relative;
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  border: 2px solid #00969e;
  text-align: center;
  padding: 30px;
  width: 400px;
  border-radius: 20px;
}
#sign-up .pricing-grid .pricing-card button {
  font-size: 18px;
  margin-top: 0px;
}
#sign-up .pricing-grid .pricing-card h3 {
  font-size: 24px;
  margin-bottom: 0px;
}
#sign-up .pricing-grid h4 {
  font-size: 20px;
}
#sign-up .pricing-grid .pricing-card p {
  font-size: 18px;
  margin-bottom: 10px;
}

.interval {
  gap: 10px;
}
.interval label {
  border: 2px solid #00969e;
  padding: 8px 20px;
  border-radius: 15px;
  cursor: pointer;
  background: transparent;
  color: #00969e;
}
.interval input[type=radio] {
  display: none;
}
.interval input[type=radio]:checked + label {
  background: #00969e;
  color: #fff;
}

.card h2 {
  text-align: center;
  margin-bottom: 20px;
}
.card h3 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 10px;
}
.card p {
  margin-bottom: 20px;
}
.card {
  max-width: 790px;
  height: 460px;
  margin: 50px auto;
  background: #02767c;
  color: #FFF;
  border-radius: 8px;
  padding: 30px;
  border-radius: 8px;
}

.hidden {
  display: none;
}

.btn {
  padding: 8px 20px;
  background: white;
  color: #00969e;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
  font-size: 17px;
}

.step-names p {
  font-size: 12px;
  width: 20%;
  margin-bottom: 6px;
}

.progress {
  display: flex;
  margin-bottom: 20px;
}

.progress div {
  flex: 1;
  height: 5px;
  margin-right: 5px;
  background: #caeef0;
}

.progress .active {
  background: #06d2dd;
}

input[type=text],
input[type=password],
input[type=email],
input[type=number],
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 21px;
  padding: 13px 13px;
  font-size: 16px;
  border-radius: 12px;
  border: #FFF;
  color: #00969e;
}

.trade-description {
  height: 200px;
}

.service-tag {
  display: inline-block;
  padding: 5px 10px;
  background: #e5e7eb;
  margin: 5px;
  border-radius: 20px;
  cursor: pointer;
}

input.search {
  margin: 0px;
}

.register-button {
  display: block;
  background: #FFF;
  width: 100%;
  font-size: 18px;
  color: #0074ab;
  padding: 11px 0;
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
}
.register-button:before {
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 10px;
  top: 11px;
  content: "";
}

#register-with-fb:before {
  background-image: url(../img/facebook.svg);
}

#register-with-google:before {
  background-image: url(../img/google.svg);
}

#register-with-apple:before {
  background-image: url(../img/apple.svg);
}

.service-tag.active {
  background: #0074ab;
  color: white;
}

.trade-types {
  margin-top: 20px;
}

.btn-small {
  background: #FFF;
  border-radius: 10px;
  padding: 8px 10px;
  color: #00969e;
  margin: auto;
  display: block;
  width: 70px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.trade-option {
  background: #FFF;
  border-radius: 10px;
  padding: 5px 10px;
  color: #00969e;
  margin: 10px;
  min-width: calc(50% - 20px);
  cursor: pointer;
}

footer {
  background: #f1f1f1;
  padding: 40px 0;
  text-align: center;
}
footer .footer-links {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
footer .footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
footer .footer-links a:hover {
  color: #00969e;
}
footer .footer-contact {
  font-size: 14px;
  color: #555;
}
footer .btn {
  background: #00969e;
  color: #fff;
  padding: 10px 40px;
  border-radius: 40px;
  margin-top: 20px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
}

.sidebar {
  background: #0074ab;
  color: #fff;
  height: 100vh;
  width: 200px;
  display: flex;
  flex-direction: column;
  padding: 0px 0px;
  top: 0;
  left: 0;
}
.sidebar img {
  width: 100px;
  margin: 20px auto;
}
.sidebar button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 20px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border-radius: 0px;
}
.sidebar button:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.sidebar button.has-sub-menu.active {
  padding-bottom: 0px;
}
.sidebar button .sub-menu {
  display: none;
  flex-direction: column;
  padding: 0;
  margin-top: 10px;
}
.sidebar button .sub-menu li {
  font-size: 16px;
  padding: 10px 0px;
  padding-left: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.sidebar button .sub-menu li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.sidebar button .sub-menu li:last-child {
  border-bottom: none;
}
.sidebar button.active {
  background: #00969e;
}
.sidebar button.active .sub-menu {
  display: flex;
}

.main-content {
  background: #a8dcdf;
  width: calc(100% - 200px);
  padding: 40px 80px;
  color: #FFF;
  min-height: 100vh;
}/*# sourceMappingURL=index.css.map */