* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #2a2a2a;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1190px;
  margin: 0 auto;
  padding: 0px 20px;
}

.section__title {
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
}

.section__description {
  font-size: 20px;
  line-height: 36px;
  font-weight: 400;
}

.main_btn {
  display: inline-block;
  padding: 16px 24px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  border-radius: 5px;
  transition: background 0.3s;
  text-decoration: none;
}

.header {
  background: linear-gradient(90deg, #5eb04d, #217a2f);
  padding: 30px 0;
  text-align: center;
  margin-bottom: 50px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  height: 50px;
}

.hero {
  padding-bottom: 64px;
  margin-bottom: 50px;
}

.hero__content {
  display: flex;
  align-items: center;
  gap: 75px;
}

.hero__title {
  margin-bottom: 20px;
  padding-bottom: 16px;
}

.hero__description {
  font-size: 24px;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  padding: 10px 0px;
}

.cta__button {
  background: linear-gradient(90deg, #52c33a, #219722, #00732a);
  color: white;
  text-decoration: none;
  border-radius: 800px;
}

.cta__button:hover {
  opacity: 0.9;
}

.video-container {
  position: relative;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.video-container__video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.success-stories {
  padding: 60px 0px;
}

.success-stories__header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.success-stories__title {
  width: 100%;
}

.success-stories__description {
  width: 100%;
}

.success-stories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px 0px;
}

.story-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px 5px rgba(19, 183, 43, 0.2);
  overflow: hidden;
}

.story-card__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 16px 0px;
  text-align: center;
  text-transform: uppercase;
}

.story-card__video {
  width: 100%;
  display: block;
}

/* Reviews */
.review {
  background: linear-gradient(90deg, #5eb04d, #219722);
  padding: 60px 0px;
  margin-bottom: 50px;
  text-align: center;
  color: white;
}

.review__header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.review__title {
  width: 100%;
  text-align: left;
}

.review__description {
  width: 100%;
  text-align: left;
}

.review__grid {
  padding: 40px 0px;
  margin-bottom: 30px;
}

.review-card {
  background-color: #ffffff;
  border-radius: 21px;
  border: 1.39px solid #dbf2d1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  width: 100%;
  overflow: hidden;
}

.review-card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.review-user-info {
  display: flex;
  align-items: center;
  gap: 11px;
}

.review-user-photo {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  object-fit: cover;
}

.review-user-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
}

.review-user-name {
  font-size: 15px;
  line-height: 19px;
  font-weight: 700;
  color: #000;
  margin: 0;
  text-align: left;
}

.review-stars {
  margin-top: 4px;
}

.review-stats {
  text-align: left;
}

.review-invested,
.review-profit {
  font-size: 15px;
  line-height: 22px;
  font-weight: 800;
  color: #72d889;
  margin: 0;
}

.review-invested span,
.review-profit span {
  color: #000;
}

.review-description {
  font-size: 15px;
  line-height: 22px;
  color: #000;
  margin: 0;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  text-align: left;
}

.review-description-title {
  font-weight: 700;
  color: #000;
}

.review-description a {
  color: inherit;
}

.partners {
  margin-bottom: 30px;
}

.partners__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 76px;
}

.partners__logo {
  max-height: 70px;
}

.join-now {
  margin-top: 20px;
}

.join-now__button {
  background-color: white;
  color: #5eb04d;
  border-radius: 30px;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 50px;
  padding: 60px 0px;
}

.faq-title {
  text-align: center;
  max-width: 585px;
  margin: 0 auto 30px;
}

.faq-items {
  padding: 40px 0px;
}

.faq-question {
  margin-bottom: 20px;
  overflow: hidden;
  padding: 20px;
  border: 2px solid rgba(62, 202, 82, 0.2);
  border-radius: 15px;
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: rgba(42, 42, 42, 1);
  cursor: pointer;
  outline: none;
}

.faq-icon {
  width: 19px;
  height: 19px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 24px;
  color: #2a2a2a;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item[aria-expanded="true"] .faq-answer {
  padding: 20px;
  border: 1px solid #3eca5233;
  border-radius: 15px;
  margin-bottom: 20px;
  background-color: #f9fbff;
  box-shadow: 0 4px 20px 5px rgba(19, 183, 43, 0.2);
  max-height: 300px;
}

/* Arbitrage Section */
.arbitrage-section {
  padding-top: 60px;
  padding-bottom: 30px;
  margin-bottom: 50px;
}

.arbitrage-section .container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.arbitrage-text {
  flex: 1;
}

.arbitrage-title {
  margin-bottom: 30px;
  text-align: left;
}

.arbitrage-list {
  list-style: none;
  padding: 0;
  gap: 16px;
  margin-bottom: 30px;
}

.arbitrage-item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 24px;
  font-weight: 400;
  line-height: 37px;
  letter-spacing: 2%;
}

.arbitrage-icon {
  width: 29px;
  height: 29px;
}

.arbitrage-logos {
  display: flex;
  gap: 30px;
}

.arbitrage-logo {
  max-width: 200px;
  height: auto;
}

.arbitrage-form-container {
  flex: 1;
}

.arbitrage-form {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px 5px rgba(19, 183, 43, 0.2);
  text-align: center;
}

.form-title {
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 1px;
  font-weight: 700;
  color: rgba(18, 135, 38, 1);
  margin: 0;
  padding: 40px 0px;
}

/* Countdown Section */
.countdown-section {
  padding-top: 30px;
  padding-bottom: 60px;
  margin-bottom: 50px;
}
.countdown {
  display: flex;
  justify-content: space-around;
}

.countdown-title {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 24px;
  line-height: 38px;
  letter-spacing: 2%;
}

.countdown ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 30px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.countdown-time {
  display: flex;
  gap: 5px;
}

.countdown .countdown-time span {
  font-size: 50px;
  font-weight: 900;
  line-height: 70px;
  background-color: #228b22;
  color: #fff;
  padding: 5px 10px;
  border-radius: 15px;
}

.countdown-label {
  font-size: 20px;
  font-weight: 400;
  line-height: 43px;
}

/* Comments */
.comments-section {
  padding: 60px 0px;
}

.comments-header {
  display: flex;
  flex-direction: column;
}

.comments-count-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.comments-count {
  font-weight: 700;
  font-size: 32px;
  line-height: 28px;
}

.comments-sort {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

.sort-button {
  border: 1px solid rgba(17, 229, 74, 1);
  background: #fff;
  padding: 5px 20px;
  text-decoration: none;
  color: inherit;
  border-radius: 3px;
}

.comment-box {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}

.avatar-image {
  width: 92px;
  height: 92px;
  object-fit: cover;
}

.comment-input-container {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
  margin-left: 65px;
}

.comment-input {
  flex: 1;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  padding: 36px 20px;
  border: 2px solid rgba(217, 217, 217, 1);
  border-radius: 100px;
  color: rgba(44, 44, 44, 1);
}

.comment-submit {
  position: absolute;
  right: 25px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.submit-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.comment-submit:hover .submit-icon {
  transform: scale(1.2);
}

.comments-list {
  list-style: none;
  padding: 0;
}

.comment {
  display: flex;
  gap: 47px;
  margin-bottom: 30px;
}

.comment-avatar img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.comment-content {
  flex: 1;
}

.comment-author {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 10px;
  color: rgba(18, 135, 38, 1);
}

.comment-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 10px;
}

.comment-text a {
  color: inherit;
}

.comment-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
}

.actions-buttons {
  display: flex;
  align-items: center;
  gap: 3px;
}

.actions-buttons .like-button,
.actions-buttons .reply-button {
  border: none;
  background: none;
  color: rgba(18, 135, 38, 1);
  font-weight: bold;
  text-decoration: none;
}

.actions-buttons .like-button:hover,
.actions-buttons .reply-button:hover {
  text-decoration: underline;
}

.actions-stats {
  display: flex;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  align-items: center;
  color: #020507;
}

.actions-stats .comment-likes::after {
  content: "·";
  margin: 0 5px;
  color: #777;
  font-weight: normal;
}

.comment-replies {
  margin-left: 135px;
  border-left: 1px solid #d9d9d9;
  margin-bottom: 30px;
  padding-right: 46px;
}

.comment-replies > .comment.reply:not(:last-child) {
  margin-bottom: 30px;
}

.comment.reply {
  margin-bottom: 0;
}

.reply .comment-avatar img {
  width: 63px;
  height: 63px;
}

.reply {
  padding-left: 15px;
}

.show-more {
  background-color: rgba(233, 233, 233, 1);
  padding: 10px;
  max-width: 611px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #020507;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  margin-left: 15px;
}

.show-more:hover {
  opacity: 0.5;
}

/* Footer */
.footer {
  background: linear-gradient(90deg, #5eb04d, #219722);
  color: white;
  padding: 50px 0px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__logo-section {
  width: 100%;
}

.footer__logo {
  width: 337px;
  margin-bottom: 40px;
}

.footer__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 26px;
}

.footer__info-section {
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.footer__description {
  margin-bottom: 40px;
}

.footer__disclaimer {
}

.footer__disclaimer-title,
.footer__risk-title {
  font-weight: bold;
  font-size: 16px;
}

.footer__disclaimer-text,
.footer__risk-text {
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer__links-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: inherit;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-report {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-report:hover {
  color: #ffffff;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

.modal-dialog {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px 5px rgba(19, 183, 43, 0.2);
  width: 90%;
  max-width: 500px;
  margin: auto;
}

.modal-content {
  border-radius: 8px;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(90deg, #5eb04d, #219722);
  color: white;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-header h5 {
  margin: 0;
  font-weight: bold;
  text-align: center;
  flex-grow: 1;
  font-size: 24px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

.modal-body {
  padding: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 1rem;
}

.btn-primary {
  display: block;
  width: 100%;
  padding: 10px;
  background: linear-gradient(90deg, #5eb04d, #219722);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.8;
}

.spinner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}

.loading {
  width: 30px;
  height: 30px;
  border: 4px solid #219722;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.modal-footer {
  padding: 16px;
  text-align: center;
}

.modal.show {
  visibility: visible;
  opacity: 1;
}

.clickable {
  cursor: pointer;
}

@media (max-width: 768px) {
  .hero__content {
    flex-direction: column;
    gap: 30px;
  }
  .hero__title {
    margin-bottom: 0;
  }

  .success-stories__header,
  .review__header {
    flex-direction: column;
  }

  .partners__grid {
    flex-direction: column;
    gap: 20px;
  }

  .arbitrage-section .container {
    flex-direction: column;
  }

  .countdown .countdown-time span {
    font-size: 35px;
    padding: 0px 10px;
  }

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

  .comments-count {
    font-size: 18px;
    line-height: 28px;
  }

  .comment-input-container {
    margin-left: 20px;
  }

  .comment-input {
    padding: 10px 13px;
  }

  .send-icon {
    width: 20px;
    height: 20px;
  }

  .comment {
    gap: 21px;
  }

  .comment-replies {
    padding-right: 0;
    margin-left: 0;
  }

  .avatar-image,
  .comment-avatar img,
  .reply .comment-avatar img {
    width: 50px;
    height: 50px;
  }

  .footer__content {
    flex-direction: column;
  }

  .footer__links-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  .footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

.lander-form-wrapper {
  box-shadow: none !important;
}

.lander-form-header {
  display: none !important;
}

.lander-form-field {
  margin-bottom: 30px !important;
}

.lander-form-field input {
  width: 100%;
  padding: 15px 20px !important;
  border: 2px solid rgba(18, 135, 38, 1) !important;
  border-radius: 15px !important;
  background: #fff !important;
  line-height: 20px !important;
}

.lander-form-field .lander-submit {
  width: 100% !important;
  background: linear-gradient(90deg, #5eb04d, #219722) !important;
  color: #fff;
  font-size: 20px !important;
  font-weight: 700;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.iti__selected-flag {
  padding-left: 20px !important;
}

.iti--allow-dropdown input[type="tel"],
.iti--separate-dial-code input[type="tel"] {
  padding-left: 60px !important;
}
