@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');


body {
    margin: 0;
    font-family: "Inter Tight", sans-serif;
    background: #fafafa;
    color: #111;
  }
  
  .navbar {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    padding: 10px;
    text-align: center;
    background: #f8fafd;
    box-shadow: 0 5px 10px #00000023;
    position: fixed;
  }
  
  .logo img {
    height: 50px;
  }

  .menu-toggler {
    position: fixed;
    top: 25px;
    left: 200px;
    font-size: 1.1rem;
    cursor: pointer;
  }

  .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease;
      z-index: 99;
    }
    .overlay.show {
      opacity: 1;
      visibility: visible;
    }

    /* Sidebar */
    .sidebar {
      position: fixed;
      top: 0;
      left: 0; /* hidden off screen */
      transform: translateX(-100%);
      width: 280px;
      height: 100%;
      background: #fff;
      box-shadow: 2px 0 8px rgba(0,0,0,0.15);
      padding: 50px 20px 20px 20px;
      transition: 0.3s ease;
      z-index: 100;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .sidebar.show {
        transform: translateX(0);
    }

    .sidebar a {
      display: block;
      padding: 15px 0;
      border-bottom: 1px solid #f0f0f0;
      color: #0a0a23;
      text-decoration: none;
      font-size: 18px;
    }

    /* Close button */
    .close-btn {
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 22px;
      cursor: pointer;
    }

  #personal-info-wrapper {
    display: none;
  }
  
  .wrapper {
    width: 766px;
    max-width: 100%;
    margin: 150px auto 50px auto;
    padding: 0 20px;
  }
  
  .form {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
  }
  
  .default-title {
    font-size: 2.5rem;
    line-height: 3rem;
    font-weight: 300;
    margin: 0;
    margin-bottom: 10px;
  }
  
  .subtitle {
    margin: 0 0 25px;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .form-group {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .label {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: #111;
  }
  
  .form-input {
    display: block;
    width: calc(100% - 40px);
    padding: 15px;
    border: 1px solid #a9b6ff;
    outline: none;
    border-radius: 8px;
    font-size: 15px;
  }

  .form-input::placeholder {
    color: #a9b6ff;
  }

  .required {
    font-size: .75rem;
    color: #ff542e;
    font-weight: 300; 
    display: block;
    margin-top: 3px;
  }

  .dropdown {
    position: relative;
    width: 100%;
    font-size: 15px;
  }
  
  .dropdown-selected {
    width: 100%;
    padding: 15px;
    border: 1px solid #a9b6ff;
    color: #a9b6ff;
    border-radius: 8px;
    cursor: pointer;
    background-color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    transition: .3s;
  }

  .dropdown-selected.selected {
    color: #000;
  }

  .dropdown-selected:hover {
    border-color: #2e4cff;
  }

  .dropdown-selected:focus {
    border-color: #2e4cff;
    border-width: 2px;
  }

  .dropdown-arrow {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #eff0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
  }

  .dropdown-arrow i {
    font-size: 15px;
    margin-top: 3px;
  }

  .dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }
  
  .dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #fff;
    position: absolute;
    width: 100%;
    max-height: 150px;
    overflow-y: auto;
    display: none; /* hidden by default */
    z-index: 10;
  }
  
  .dropdown-list li {
    padding: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .dropdown-list li:hover {
    background-color: #e0f0ff; /* soft blue hover */
  }
  
  .dropdown-list li.selected {
    background-color: #2e4cff; /* blue selected */
    color: #fff;
  }
  
  .dropdown-list.show {
    display: block;
  }
  
  .checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .checkbox input {
    margin-top: 3px;
    cursor: pointer;
  }

  .checkbox-right {
    flex: 1;
  }
  
  .checkbox label {
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
  }
  
  .checkbox a {
    color: #2563eb;
    text-decoration: none;
  }
  
  .checkbox a:hover {
    text-decoration: underline;
  }
  
  .btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #2e4cff;
    color: #fff;
    border: none;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
  }
  
  .btn:not(.disabled, .back-btn):hover {
    background: #1e4ed8;
  }

  .btn.disabled {
    cursor: default;
    opacity: .5;
  }
  
  .btn.secondary {
    background: #6b7280;
    width: auto;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
  }
  
  .btn.secondary:hover {
    background: #4b5563;
  }

  .btn.back-btn {
    background-color: transparent;
    color: #2e4cff;
  }
  
  .signin {
    width: 100%;
    margin-top: 30px;
    font-size: 1rem;
    text-align: left;
    margin-bottom: 0;
  }
  
  .signin a {
    color: #2e4cff;
    text-decoration: none;
  }
  
  .signin a:hover {
    text-decoration: underline;
  }
  
  .form-step {
    display: none;
  }
  
  .form-step#step-1 {
    display: block;
  }
  
  .buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
  }

  .auth-option {
    width: 100%;
    height: 50px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 40px;
    cursor: pointer;
    outline: none;
    background-color: #fff;
    transition: .3s;
    font-size: 1rem;
    color: #000;
    font-weight: 600;
    margin-top: 10px;
  }

  .auth-option:hover {
    background-color: #eee;
  }

  .auth-option img {
    height: 20px;
    width: auto;
  }

  .email-toggler {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    color: #2e4cff;
  }


.capital-title {
    margin-bottom: 10px;
    margin-top: 0;
    text-transform: uppercase;
    font-weight: 400;
}

.how-it-works {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    margin-top: 30px;
}

.info-items {
    width: 100%;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-text h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.info-text p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
}

#onboarding-wrapper {
    display: none;
}

.onboarding-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    margin-top: 30px;
}

.onboarding-progress {
    width: 100%;
    height: 5px;
    border: 1px solid #a9b6ff;
    border-radius: 5px;
}

.onboarding-progress div {
    width: 0%;
    height: 100%;
    background-color: #a9b6ff;
    border-radius: 5px;
    transition: .4s;
}

.onboarding-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
}

.onboarding-label {
    height: fit-content;
    width: fit-content;
    padding: 1px 15px;
    font-size: .875rem;
    line-height: 1.25rem;
    color: #3377b5;
    font-weight: 600;
    background-color: #eaf0f3;
    border-radius: 20px;
}

.onboarding-subtitle {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 30px;
}

.onboarding-subtitle2 {
    font-size: .875rem;
    margin-bottom: 20px;
}

.onboarding-options {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.onboarding-option {
    width: calc(100% - 40px);
    display: flex;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #a9b6ff;
    cursor: pointer;
}

.onboarding-option span {
    font-size: 1rem;
    font-weight: 600;
    color: #2e4cff;
    gap: 20px;
    display: block;
    flex: 1;
}

.option-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2e4cff;
    border-radius: 50%;
    font-size: 15px;
}

.option-icon i {
    margin-top: 5px;
    color: #2e4cff;
}

.onboarding-option:hover .option-icon {
    background-color: #2e4cff;
}

.onboarding-option:hover .option-icon i {
    color: #fff;
}

.onboarding-option.active {
    background-color: #2e4cff;
}

.onboarding-option.active span {
    color: #fff;
}

.onboarding-option.active .option-icon {
    border-color: #fff;
}
.onboarding-option.active .option-icon i {
    color: #fff;
}

.onboarding-step:not(#step1) {
    display: none;
}

.stat {
    width: calc(100% - 40px);
    height: fit-content;
    padding: 1.5rem;
    background-color: #eef0ff80;
    border-radius: .75rem;
    margin-bottom: 1.5rem;
}

.stat-title {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0%;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 10px;
}

.stat-title span {
    color: #2e4cff;
}

.stat-subtitle {
    width: 100%;
    margin-bottom: 0;
    margin-top: 0;
    font-size: .875rem;
    font-weight: 300;
}

.stat-subtitle span {
    font-weight: 600;
}

.stat-info {
    width: 100%;
    font-size: .75rem;
    margin-top: 0;
    margin-bottom: 30px;
    color: #6b7280;
    font-weight: 300;
}

.option-check {
    width: 18px;
    height: 18px;
    border: 1px solid #2e4cff;
    background-color: #fff;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-check i {
    color: #fff;
    font-size: 15px;
}

.onboarding-option.checked {
    border-color: #2e4cff;
}

.onboarding-option.checked .option-check {
    background-color: #2e4cff;
}

.form-row {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.form-field {
    width: 100%;
}

.height-fields .form-field {
    width: fit-content;
}

.form-label {
    font-size: .875rem;
    font-weight: 300;
    margin-bottom: 10px;
    display: block;
}

.form-field input {
    width: calc(100% - 40px);
    height: 50px;
    padding: 0 15px;
    border: 1px solid #a9b6ff;
    outline: none;
    border-radius: 8px;
    font-size: .875rem;
}

.height-fields input {
    width: 200px;
    
}

.form-field input::placeholder {
    color: #a9b6ff;
}

#qualified-wrapper {
    display: none;
}

.qualified-card {
    padding-top: 100px;
    background-image: url(./images/qualified-bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 350px;
}

#plan-wrapper {
  display: none;
}

.plan-card {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.plan-product {
    width: 300px;
    height: auto;
    margin-bottom: 10px;
}

.plan-card .default-title {
    font-size: 2rem;
    margin-top: 10px;
}

.plan-items {
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid #eee;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.plan-item {
    flex: 1;
    padding: 15px;
    border: 1px solid #2e4cff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.plan-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #2e4cff;
    margin-top: 0;
    margin-bottom: 10px;
}

.plan-item h5 span {
    font-weight: 300;
    text-decoration: line-through;
}

.plan-item p {
    font-size: .875rem;
    font-weight: 300;
    color: #2e4cff;
    margin-top: 0;
    margin-bottom: 10px;
    flex: 1;
}

.plan-item .onboarding-label.hidden {
  display: none;
}

.plan-bottom {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.plan-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2e4cff;
    border-radius: 50%;
    font-size: 15px;
}

.plan-icon i {
    margin-top: 5px;
    color: #2e4cff;
}

.plan-item:hover .plan-icon {
    background-color: #2e4cff;
}

.plan-item:hover .plan-icon i {
    color: #fff;
}

.plan-item.active {
    background-color: #2e4cff;
}

.plan-item.active h5,
.plan-item.active p {
    color: #fff;
}

.plan-item.active .plan-icon {
    background-color: #2e4cff;
    border-color: #fff;
}

.plan-item.active .plan-icon i {
    color: #fff;
}

#checkout-wrapper {
    display: none;
}

.checkout-content {
    width: 100%;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #eee;
}

.checkout-heading {
    width: 100%;
    display: flex;
    align-items: flex-end;
}

.checkout-heading h2 {
    font-weight: 400;
    font-size: 1.5rem;
    margin: 0;
    flex: 1;
}

.checkout-heading h5 {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    text-align: right;
    width: fit-content;
}

.checkout-heading h5 span {
    font-size: .875rem;
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}

.checkout-check {
    display: flex;
    gap: 10px;
    cursor: pointer;
}

.checkout-check .option-check {
    margin-top: 3px;
}

.checkout-check.active .option-check {
    background-color: #2e4cff;
}

.plan-info {
    width: calc(100% - 60px);
    padding: 30px;
    border: 1px solid #a9b6ff;
    border-radius: 12px;
}

.plan-info h6 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.plan-info ul {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 30px;
}

.plan-info ul li {
    font-size: 1rem;
}

.plan-policy {
    width: calc(100% - 60px);
    padding: 30px;
    background-color: #eff0ff;
    margin-top: 30px;
    border-radius: 12px;
    font-size: .75rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plan-policy p {
    margin: 0;
}

.shipping-form {
    width: 100%;
    margin: 30px 0;
}

.shipping-form .form-row {
    width: 100%;
    margin-top: 20px;
}

.shipping-form .form-row.multifield {
    display: flex;
    gap: 10px;
}

.shipping-form .form-row.multifield .form-field {
    width: calc(50% - 5px);
}

.form-check {
    width: 100%;
    display: flex;
    gap: 10px;
    margin-top: 30px;
    font-size: .875rem;
    cursor: pointer;
}

.form-check.active .option-check {
    background-color: #2e4cff;
}

.checkout-info {
    width: 100%;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.checkout-info-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
}

.checkout-total {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.submit-error {
  font-size: 1rem;
  color: #ff542e;
  font-weight: 500; 
  margin: 20px 0 10px 0;
  display: none;
}

@media (max-width: 1139px) {
    .default-title {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}