@import url("reset.min.css");

:root {
  --primary-color: #50d3bb;
  --secondary-color: #5057d3;
  --text-dark: #585858;
  --text-light: #717171;
  --bg-light: #ffffff;
  --bg-gradient: conic-gradient(from 100deg at 53% 81%,
      rgba(255, 255, 255, 1) 15%,
      rgba(248, 250, 255, 0.82) 37%,
      rgba(255, 255, 255, 0.52) 52%,
      rgba(243, 248, 255, 0.89) 70%,
      rgba(255, 255, 255, 0.85) 85%,
      rgba(255, 255, 255, 0.66) 98%);
  --card-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Geist Sans", sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  background: #fff;
}


@media (max-width: 991.98px) {

  html,
  body {
    overflow-x: hidden;
  }

  body .container {
    padding: 0 20px;
  }
}

html {
  font-family: "Geist Sans", sans-serif;
}

a {
  font-family: "Geist Sans", sans-serif;
}


.card {
  box-shadow: var(--card-shadow) !important;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}

.section-title .highlight {
  color: var(--primary-color);
}

.highlight {
  color: #50d3bb;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-dark);
  max-width: 82%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  padding-bottom: 40px;
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }


  .hero-section .hero-text h1 {
    font-size: 40px;
  }

  .hero-section .hero-text h1 .highlight {
    display: block;
  }

  .hero-section .hero-text p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .hero-section .btn-primary {
    font-size: 13px;
  }
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 700;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease,
    transform 0.25s ease;
}

.btn-primary:hover {
  background-color: #45b8a5;
  border-color: #45b8a5;
  box-shadow: 0 8px 20px rgba(69, 184, 165, 0.35);
  transform: translateY(-1px);
}

.btn-primary:active {
  background-color: #45b8a5 !important;
  border-color: #45b8a5 !important;
}

/* Header */
.navbar {
  background-color: rgba(249, 249, 249, 0.7);
  box-shadow: 0px 10px 20px rgba(160, 158, 158, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.75rem 0;
  min-height: 80px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 991.98px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  body:has(.mobile-menu.active) .navbar,
  .mobile-menu.active~.navbar {
    background-color: #ffffff !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .navbar-brand {
    position: static;
    transform: none;
    margin: 0;
    flex: 0 0 auto;
  }

  .mobile-menu-toggle {
    position: static;
    flex: 0 0 auto;
    margin-left: auto;
  }
}

.navbar-nav .nav-item:not(:last-child) {
  margin-right: 20px;
}

.navbar-brand img {
  height: 34px;
  width: auto;
  margin-top: 4px;
}

.navbar .nav-link {
  font-weight: 500;
  color: #585858;
  transition: color 0.3s ease;
  padding: 0;
  font-size: 16px;
  font-family: "Geist Sans", sans-serif;
  letter-spacing: 0;
  line-height: normal;
  text-decoration: none;
  position: relative;
}

.navbar .nav-link:hover {
  color: #50d3bb;
}

.navbar .nav-item {
  margin: 0;
}

.navbar .launch-app-btn {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 0.5rem 1.5rem;
  font-size: 14px;
}

.navbar .launch-app-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mobile-menu-toggle svg {
  width: 31px;
  height: 21px;
  transition: opacity 0.3s ease;
}

.mobile-menu-toggle .menu-icon-close {
  width: 31px;
  height: 31px;
  position: absolute;
  right: 15px;
}

.mobile-menu-toggle.active .menu-icon-open {
  display: none;
}

.mobile-menu-toggle.active .menu-icon-close {
  display: block !important;
}

.mobile-menu-toggle:focus {
  outline: none;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: calc(100vh - 80px);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  transform: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.mobile-menu-item {
  margin: 0;
}

.mobile-menu-link {
  font-weight: 600;
  color: #585858;
  font-size: 18px;
  font-family: "Geist Sans", sans-serif;
  text-decoration: none;
  display: block;
  padding: 0.75rem 0;
  transition: color 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-link:hover {
  color: #50d3bb;
}

.launch-app-btn-mobile {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  font-size: 14px;
  margin-top: 1rem;
}

.launch-app-btn-mobile:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Hero Section */
.hero-section {
  background-image: url("../images/rectangle.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  min-height: auto;
  padding-top: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero-section .container {
  height: 100vh;
  display: grid;
  align-items: center;
}

.hero-section .hero-text {
  position: relative;
  z-index: 2;
}

.hero-section .hero-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90px;
  width: 120%;
  height: 100%;
  background-position: right 0 center;
  background-size: 100% auto;
  background-image: url("../images/vector.svg");
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
  z-index: -1;
}


@media (min-width: 992px) {
  .hero-section .hero-text {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

.hero-section .hero-text h1 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
}

.hero-section .hero-text p {
  font-size: 18px;
  color: #575757;
  max-width: 445px;
  line-height: 1.6;
  margin-top: 24px;
  margin-bottom: 50px;
}

.hero-section .btn-primary {
  padding: 10px 39px;
  font-size: 16px;
  font-weight: 700;
}

.hero-section .hero-image-container {
  position: relative;
  height: 75vh;
  min-height: 400px;
  z-index: 1;
  margin-top: 80px;
}

.hero-section .hero-image,
.hero-section .hero-video,
.hero-section .hero-gif {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1058px;
  height: 100%;
  z-index: 0;
  object-fit: contain;
  background-color: transparent !important;
  background: transparent !important;
  background-image: none !important;
}

video.hero-video,
video.img-fluid.hero-video {
  background-color: transparent !important;
  background: transparent !important;
  background-image: none !important;
}

/* Tüm video elementleri için transparent background */
video {
  background-color: transparent !important;
  background: transparent !important;
  background-image: none !important;
}

.hero-section .hero-image-container {
  background-color: transparent;
}

/* About Section */
.about-section {
  padding: 0 0 110px;
}

.about-section .section-title {
  margin-bottom: 25px;
}

.about-section .section-subtitle {
  font-size: 18px;
  margin-bottom: 80px;
}

@media (max-width: 767.98px) {
  .about-section {
    padding: 30px 0;
  }

  .about-section .section-subtitle {
    font-size: 14px;
  }
}

.about-schema-container {
  position: relative;
  max-width: 488px;
  margin: 0;
}

.about-schema-item {
  background-color: transparent;
  border: 0;
  border-radius: 30px;
  padding: 1rem 0;
  text-align: center;
  margin-bottom: 1rem;
  max-width: 265px;
  margin: 0 auto;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border: 3px solid #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.about-schema-item h5 {
  color: #585858;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0.5rem;
}

.about-schema-item p {
  font-size: 14px;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.contrifi-circle-diagram {
  position: relative;
  width: 100%;
  max-width: 317px;
  margin: 2rem auto;
}

.contrifi-circle-inner-wrapper {
  position: relative;
  display: inline-block;
  width: 317px;
  margin: 0 auto;
}

.contrifi-corner-icon {
  top: 0;
  width: 77px;
  height: 71px;
}

.contrifi-corner-left {
  left: 0;
}

.contrifi-corner-right {
  right: 0;
}

.contrifi-circle-outer {
  width: 140px;
  height: 140px;
  border-radius: 70px;
  border: 0.5px solid #5459F7;
  background: #fff;
  margin: 20px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contrifi-circle-inner {
  width: 122px;
  height: 122px;
  border-radius: 61px;
  background: #5459F7;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contrifi-title {
  font-weight: 700;
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin-bottom: 5px;
}

.contrifi-subtitle {
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
}

.about-video-container {
  position: relative;
  width: 617px;
  height: 477px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  background-color: transparent;
  border: 5px solid transparent;
}

.about-video-container img,
.about-video-container video {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  background-color: transparent;
  background: transparent;
}

.about-video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: transparent;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: -1;
  border: none;
  box-shadow: none;
  z-index: 9;
}

.about-video-play-button:hover {
  background-color: transparent;
  transform: translate(-50%, -50%) scale(1.1);
}

.about-video-play-button svg {
  width: 40px;
  height: 46px;
}

.about-video-container.playing .about-video-play-button {
  display: none;
}

.about-video-container.playing:hover .about-video-play-button {
  display: flex;
  background-color: transparent;
}

/* Show play button only when video is paused */
.about-video-container:not(.playing) .about-video-play-button {
  display: flex;
}

@media (min-width: 992px) {
  .about-video-container {
    position: sticky;
    top: 120px;
  }
}

@media (max-width: 998px) {
  .about-video-container {
    width: 100%;
    max-width: 617px;
    height: auto;
    aspect-ratio: auto;
    margin: 0 auto;
  }
}

/* Why Choose Section */
.why-choose-section {
  background: rgba(232, 245, 255, 0.5);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(50% 36.76% at 50% 50%,
      rgba(165, 182, 254, 0.132) 2%,
      rgba(210, 219, 254, 0.216) 35.49%,
      rgba(255, 255, 255, 0.3) 68.99%);
  pointer-events: none;
  z-index: 0;
}

.why-choose-section>* {
  position: relative;
  z-index: 1;
}

.why-choose-section .container,
.how-it-works-section .container {
  max-width: 1140px;
}

.why-choose-section .section-title,
.how-it-works-section .section-title,
.scenario-section .section-title {
  font-size: 40px;
  font-weight: 600;
}

.why-choose-section .section-subtitle,
.how-it-works-section .section-subtitle {
  font-size: 18px;
}

@media (max-width: 767.98px) {

  .why-choose-section .section-title,
  .how-it-works-section .section-title,
  .scenario-section .section-title {
    font-size: 24px;
  }

  .why-choose-section .section-subtitle,
  .how-it-works-section .section-subtitle {
    font-size: 14px;
    padding-bottom: 20px !important;
  }


  .how-it-works-section .section-subtitle {
    width: 53%;
  }

  .feature-card p {
    font-size: 14px !important;
  }
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid #fff;
  border-top: 0;
  border-radius: 30px;
  padding: 0;
  text-align: center;
  position: relative;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0px 5px 10px rgba(21, 12, 50, 0.05);
  width: 254px;
  height: auto;
  max-height: 250px;
  min-height: 190px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card-icon {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  width: 89px;
  height: 85px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0px 2px 10px rgba(20, 11, 49, 0.05);
}

.feature-card-icon img {
  height: auto;
  width: 40px;
}

.feature-card-icon img.securty {
  width: 30px;
}

.feature-card-icon img.permissionless {
  width: 31px;
}

.feature-card-icon img.world {
  width: 38px;
}

.feature-card-icon img.interests {
  width: 35px;
}

.feature-card-content {
  padding-top: 40px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@media (max-width: 991.98px) {
  .feature-card {
    width: 100%;
    max-width: 254px;
  }
}

@media (max-width: 767.98px) {
  .why-choose-section .row.g-5 {
    margin-left: 0;
    margin-right: 0;
  }

  .why-choose-section .row.g-5>* {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .row.g-5 .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 10px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }


}

@media (min-width: 768px) {
  .feature-card {
    margin-bottom: 40px;
  }
}

.feature-card h5 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: 0;
  color: #585858;
  text-align: center;
  width: 100%;
}

.feature-card p {
  font-size: 16px;
  color: #585858;
  margin-bottom: 0;
  text-align: center;
  width: 100%;
  max-width: 198px;
  line-height: 22px;
}

/* How It Works Section */
.how-it-works-section {
  padding: 110px 0;
  background-color: transparent;
}

.how-it-works-card {
  border-radius: 30px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border: 3px solid #fff;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 2rem;
  position: relative;
  padding-top: 3.5rem;
  min-height: 184px;
  margin: 0 3px;
}

.how-it-works-card-icon {
  width: 90px;
  height: 90px;
  background-color: #ffffff;
  border-radius: 45px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}

.how-it-works-card-icon img {
  width: 40px;
  height: auto;
}

.how-it-works-card h4 {
  font-weight: 600;
  font-size: 25px;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.how-it-works-card p {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 80%;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .how-it-works-card p {
    max-width: 100%;
  }
}


/* Steps Navigation */
.how-it-works-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 2rem auto;
  overflow: visible;
}

.steps-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  width: 880px;
  max-width: 90%;
  height: 2px;
  background-color: #d9d9d9;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 880px;
  max-width: 90%;
  padding: 0;
  gap: 0;
  overflow: visible;
}


.how-it-works-steps .step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background-color: #dddddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
  pointer-events: auto;
}

.how-it-works-steps .step-number.completed::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: calc((969px - 280px) / 3);
  height: 2px;
  background-color: #d9d9d9;
  z-index: auto;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
  display: block;
  z-index: -2;
}

.how-it-works-steps .step-number:last-child::after {
  display: none;
}

.how-it-works-steps .step-number.completed::after {
  background-color: #5057d3;
}

@media (max-width: 991.98px) {
  .how-it-works-steps .step-number.completed::after {
    width: calc((565px - 280px) / 3);
  }

  .steps-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    justify-content: space-between;
    overflow: hidden;
  }

  .steps-background {
    width: 100%;
    max-width: 100%;
    height: 2px;
  }

  .steps-container::before {
    height: 2px;
  }

  .how-it-works-steps .step-number {
    width: 60px !important;
    height: 60px !important;
  }

  .how-it-works-steps .step-number span {
    font-size: 20px;
  }
}

@media (max-width: 767.98px) {
  .steps-container {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    justify-content: space-between;
    gap: 0;
    overflow: hidden;
  }

  .how-it-works-steps .step-number {
    width: 40px !important;
    height: 40px !important;
    flex-shrink: 1;
  }

  .how-it-works-steps .step-number span {
    font-size: 14px;
    z-index: 10;
    position: relative;
  }

  .how-it-works-steps .step-number.active::before,
  .how-it-works-steps .step-number.completed::before {
    z-index: 2;
  }

  .steps-background {
    width: 100%;
    max-width: 100%;
    height: 2px;
  }

  .steps-container::before {
    height: 2px;
  }
}

@media (max-width: 575.98px) {
  .steps-container {
    padding: 0;
    overflow: inherit;
  }

  .how-it-works-steps .step-number {
    width: 35px !important;
    height: 35px !important;
  }

  .how-it-works-steps .step-number span {
    font-size: 12px;
    z-index: 10;
    position: relative;
  }

  .how-it-works-steps .step-number.active::before,
  .how-it-works-steps .step-number.completed::before {
    z-index: 2;
  }
}



.how-it-works-steps .step-number span {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  z-index: 10;
  position: relative;
}

.how-it-works-steps .step-number.active span {
  color: #ffffff;
}


.how-it-works-steps .step-number.completed span {
  color: #ffffff;
}

.how-it-works-steps .step-number.active::before,
.how-it-works-steps .step-number.completed::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: 2;
}

.how-it-works-steps .step-number.active::before {
  background-color: #50d3bb;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  top: -4px;
  left: -4px;
  z-index: -1;
}

.how-it-works-steps .step-number.completed::before {
  background-color: #5057d3;
}

.how-it-works-steps .step-number.active {
  background-color: #50d3bb;
  color: #ffffff;
  border-color: #50d3bb;
  position: relative;
}

.how-it-works-steps .step-number.active {
  position: relative;
}


.how-it-works-steps .step-number.active::before {
  background-color: #50d3bb;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  top: -4px;
  left: -4px;
  z-index: -1;
}

.how-it-works-steps .step-number.active::before {
  background-color: #fff;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  top: -4px;
  left: -4px;
  border: 2px solid #50d3bb;
}



.how-it-works-steps .step-number.completed {
  background-color: #5057d3;
  color: #ffffff;
  border-color: #5057d3;
}

/* Swiper Styles */
.how-it-works-swiper {
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.how-it-works-swiper .swiper-slide {
  height: auto;
}

.how-it-works-swiper .img-box {
  height: 292px;
}

.how-it-works-swiper .col-lg-6:has(img) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-it-works-swiper .col-lg-6 img {
  max-width: 430px;
  max-height: 290px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.how-it-works-navigation {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.how-it-works-prev,
.how-it-works-next {
  position: relative;
  width: 27px;
  height: 29px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.how-it-works-pref::after,
.how-it-works-next::after {
  display: none;
}

.how-it-works-prev:hover,
.how-it-works-next:hover {
  opacity: 0.7;
}

.how-it-works-prev svg,
.how-it-works-next svg {
  width: 27px;
  height: 27px;
}

.how-it-works-prev.disabled,
.how-it-works-next.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.how-it-works-prev.disabled .nav-circle,
.how-it-works-next.disabled .nav-circle {
  fill: #d9d9d9;
}

.how-it-works-prev:not(.disabled) .nav-circle,
.how-it-works-next:not(.disabled) .nav-circle {
  fill: #50d3bb;
}

/* Initial state - left button gray, right button green */
.how-it-works-prev .nav-circle {
  fill: #d9d9d9;
}

.how-it-works-next .nav-circle {
  fill: #50d3bb;
}

/* Scenario Section */
.scenario-section {
  background: #fff;
  padding: 110px 0;
}

.scenario-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 3px solid #fff;
  border-radius: 50px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  margin-bottom: 3rem;
  overflow: visible;
  position: relative;
}

.martha-journey-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  box-shadow: var(--card-shadow) !important;
}

.scenario-section .martha-journey-card h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
}

.scenario-section .martha-journey-card p {
  font-size: 18px;
}

@media (max-width: 992px) {
  .scenario-section .martha-journey-card h4 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px !important;
    width: 80%;
    margin: 0 auto;
    line-height: 1.4;
  }

  .scenario-section .martha-journey-card p {
    font-size: 13px;
    text-align: center;
  }
}

.martha-journey-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fefefe;
  z-index: 3;
}

.martha-video-container {
  position: relative;
  display: inline-block;
  background-color: transparent;
  flex-shrink: 0;
}

.martha-video-container .martha-video {
  width: 358px;
  height: 552px;
  object-fit: cover;
}

/* Third draw card - desktop: her zaman videonun altına ve videoya göre hizalı */
.video-wrapper {
  position: relative;
  margin-bottom: 0;
}

.video-wrapper .third-draw-absolute {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-width: 314px;
  z-index: 10;
  transform: translate(20%, calc(10%));
  min-width: 314px;
}

.scenario-section .section-subtitle {
  max-width: 81%;
}

.d-pl17 {
  padding-left: 17px;
}

@media (max-width: 767.98px) {
  .third-draw-absolute {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin-top: 1rem;
  }
}

/* Şeffaf arka planlı WebM video için */
.martha-video {
  background-color: transparent;
  position: relative;
  display: block;
}

/* Video'nun şeffaf arka planını korumak için */
.martha-video-container video {
  background-color: transparent;
  width: 358px !important;
  height: 552px !important;
  object-fit: cover;
}

@media (max-width: 998px) {
  .martha-video-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    border: none;
    background-color: transparent;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    order: -1;
    width: 100%;
  }

  .martha-video-container .text-center {
    position: relative;
    display: inline-block;
    padding: 0;
    max-width: 80%;
    margin: 0 auto;
  }

  .martha-video-container .text-center::before {
    content: none;
  }

  .martha-video-container .text-center::after {
    content: none;
  }

  .row .col-md-4.col-lg-3.martha-video-container {
    order: -1;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .martha-video-container .martha-video,
  .martha-video-container video {
    border-radius: 16px !important;
    width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: cover;
    background-color: transparent;
    position: relative;
    z-index: 2;
  }

  .martha-video-mobile {
    width: 100%;
    height: auto;
    display: block;
  }

  .martha-video-container .martha-program-timeline-item {
    width: 100%;
    max-width: 100%;
  }

  .martha-video-container .third-draw-absolute {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 10px;
  }

  /* Martha path selector & tab content mobile ayarları */
  .path-selector {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    margin-bottom: 20px;
    align-items: center;
  }

  .path-selector .btn {
    flex: 1;
    max-width: 200px;
  }

  .path-selector .btn-primary.mb-4 {
    margin-bottom: 0 !important;
  }

  .scenario-section .tab-content {
    padding: 20px 0;
  }

  /* Scenario card mobil radius */
  .scenario-card {
    border-radius: 30px;
  }
}

.martha-journey-card video {
  position: absolute;
  bottom: 0;
  right: -2px;
  width: auto;
  height: 100%;
  background-color: transparent;
  background: transparent;
  object-fit: cover;
  z-index: 3;
}

.martha-journey-card .row {
  position: relative;
  z-index: 5;
}

.martha-journey-card h4 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  z-index: 6;
}

.martha-journey-card p {
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.6;
  position: relative;
  z-index: 6;
  max-width: 540px;
}

.martha-journey-card .btn {
  position: relative;
  z-index: 6;
  font-family: "Geist Sans", sans-serif;
    padding: 10px 39px;
    font-size: 16px;
    font-weight: 700;
}

.martha-program-timeline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  position: relative;
  min-height: 600px;
  width: 970px;
}

.martha-program-timeline-container {
  position: relative;
  margin: 40px auto 0;
}

@media (min-width: 998px) {

  .martha-video-container {
    position: absolute;
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 358px;
    height: 552px;
  }

  .martha-video-container .video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }

  /* Timeline items positioned around video in circular pattern */
  .timeline-item-1,
  .timeline-item-2,
  .timeline-item-3,
  .timeline-item-4,
  .timeline-item-5,
  .timeline-item-6 {
    position: absolute;
    width: 314px;
    max-width: 314px;
    z-index: 10;
  }

  .timeline-item-1 {
    bottom: 278px;
    left: 22px;
  }

  .timeline-item-2 {
    bottom: 435px;
    left: 30px;
  }

  .timeline-item-3 {
    top: -90px;
    left: 335px;
  }

  .timeline-item-4 {
    bottom: 435px;
    right: 22px;
  }

  .timeline-item-5 {
    bottom: 278px;
    right: 16px;
  }

  .timeline-item-6 {
    bottom: 135px;
    left: 335px;
  }
}

.martha-program-timeline-item {
  border-radius: 58.5px;
  border: 0.7px solid;
  padding: 1.5rem 1rem;
  text-align: center;
  max-width: 314px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border: 3px solid #fff !important;
  background-color: rgba(255, 255, 255, 0.1);
}

.martha-timeline-number {
  width: 40px;
  height: 40px;
  border: 0.7px solid var(--primary-color);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  margin: 0 auto 1rem;
  flex-shrink: 0;
}

.martha-program-timeline-item.draw .martha-timeline-number {
  border-color: var(--secondary-color);
  background: var(--secondary-color);
}

.martha-program-timeline-item.payment {
  border-color: var(--primary-color);
}

.martha-program-timeline-item.payment h6 {
  color: var(--primary-color);
  font-weight: 400;
  font-size: 16px;
}

.martha-program-timeline-item.draw {
  border-color: var(--secondary-color);
}

.martha-program-timeline-item.draw h6 {
  color: var(--secondary-color);
  font-weight: 400;
  font-size: 16px;
}

.martha-program-timeline-item p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.4;
}

.martha-program-timeline-item h6 {
  margin-bottom: 0.5rem;
}

.scenario-section h4 {
  font-size: 28px;
  margin-bottom: 40px;
}

.martha-program-title {
  font-size: 40px !important;
  font-weight: 700;
  margin-bottom: 20px !important;
  color: #585858 !important;
}

.martha-program-highlight {
  color: #50D3BB;
}

.scenario-section .martha-program-subtitle {
  max-width: 100% !important;
}

@media (max-width: 767.98px) {
  .martha-program-timeline-item.draw.w-50 {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.path-selector {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-right: 0;
  padding-right: 0;
  align-items: flex-end;
  justify-content: center;
}


.align-items-stretch {
  height: 100%;
}


.martha-program-header-image {
  width: 100%;
  margin: 0;
  margin-bottom: 0;
  border-radius: 0;
  overflow: hidden;
  text-align: center;
}


.martha-program-header-image video {
  max-height: 350px;
}


.martha-program-header-image img {
  max-height: 280px;
}

@media (min-width: 992px) {
  .martha-program-header-image img {
    max-height: 350px;
    min-height: 350px;
  }
}

@media (max-width: 767.98px) {
  .martha-journey-card {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    overflow: hidden;
  }

  .martha-journey-card::before {
    display: none;
  }

  .martha-journey-card .row {
    text-align: center;
    justify-content: center;
    order: 1;
    padding: 1.5rem;
  }

  .martha-journey-card .col-lg-8 {
    text-align: center;
    margin: 0 auto;
  }

  .martha-journey-card h4 {
    text-align: center;
  }

  .martha-journey-card p {
    text-align: center;
  }

  .martha-journey-card .btn {
    margin-left: auto;
    margin-right: auto;
    display: block;
    font-size: 13px;
    font-weight: bold;
    max-width: 183px;
    min-width: auto;
  }

  .scenario-card {
    padding: 0 !important;
    overflow: hidden;
  }



  @media (min-width: 998px) {
    .martha-program-header-image {
      text-align: right;
    }
  }


  @media (max-width: 998px) {
    .martha-program-header-image {
      padding: 0;
      text-align: center;
    }

    .martha-program-header-image img {
      max-height: 280px;
    }
  }


  .row.align-items-center.justify-content-center.my-5 {
    display: flex;
    flex-direction: column-reverse;
    margin: 0 auto !important;
  }

  .row.align-items-center.justify-content-center.my-5 .col-md-4.col-lg-3.martha-video-container {
    margin-top: 40px !important;
    min-height: 257px !important;
  }

  .path-selector {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    margin-bottom: 20px;
  }

  .path-selector .btn {
    flex: 1;
    max-width: 200px;
  }

  .path-selector .btn-primary.mb-4 {
    margin-bottom: 0 !important;
  }
}



.path-selector .btn {
  width: 134px;
  height: 134px;
  max-width: 134px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  border-width: 0.7px;
  text-align: center;
}

.path-selector .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.path-selector .btn-primary.active,
.path-selector .btn-primary[aria-selected="true"],
.path-selector #collateral-path-tab.active,
.path-selector #collateral-path-tab[aria-selected="true"] {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #fff !important;
  position: relative;
}

.path-selector #collateral-path-tab[aria-selected="false"],
.path-selector #collateral-path-tab:not([aria-selected="true"]):not(.active) {
  background-color: #c1c1c1 !important;
  border-color: #ffffff !important;
  color: #fff !important;
}

.path-selector #non-collateral-path-tab[aria-selected="false"],
.path-selector #non-collateral-path-tab:not([aria-selected="true"]):not(.active) {
  background-color: #c1c1c1 !important;
  border-color: #ffffff !important;
  color: #fff !important;
}

.path-selector .btn-primary,
.path-selector #collateral-path-tab {
  position: relative;
}

.path-selector .btn-primary::after,
.path-selector #collateral-path-tab::after {
  content: "";
  position: absolute;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  border-radius: 50%;
  top: -8px;
  left: -8px;
  border: 2px solid #C1C1C1;
  background-color: transparent;
  z-index: -1;
  pointer-events: none;
}

.path-selector .btn-primary.active::after,
.path-selector .btn-primary[aria-selected="true"]::after,
.path-selector #collateral-path-tab.active::after,
.path-selector #collateral-path-tab[aria-selected="true"]::after {
  border-color: transparent;
}

.path-selector .btn-secondary {
  background-color: #c1c1c1;
  border-color: #c1c1c1;
  color: #fff;
}

.path-selector .btn-secondary.active,
.path-selector .btn-secondary[aria-selected="true"],
.path-selector #non-collateral-path-tab.active,
.path-selector #non-collateral-path-tab[aria-selected="true"] {
  background-color: #5459F7 !important;
  border-color: #5459F7 !important;
  color: #fff !important;
}

.path-selector .btn-secondary,
.path-selector #non-collateral-path-tab {
  position: relative;
}

.path-selector .btn-secondary::after,
.path-selector #non-collateral-path-tab::after {
  content: "";
  position: absolute;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  border-radius: 50%;
  top: -8px;
  left: -8px;
  border: 4px solid #C1C1C1;
  background-color: transparent;
  z-index: -1;
  pointer-events: none;
}

.path-selector .btn-secondary.active::after,
.path-selector .btn-secondary[aria-selected="true"]::after,
.path-selector #non-collateral-path-tab.active::after,
.path-selector #non-collateral-path-tab[aria-selected="true"]::after {
  border-color: transparent;
}

.path-selector #non-collateral-path-tab[aria-selected="false"]::after,
.path-selector #non-collateral-path-tab:not([aria-selected="true"]):not(.active)::after {
  border: 2px solid #C1C1C1 !important;
  z-index: -1 !important;
  display: block !important;
}

.path-selector .btn[aria-selected="false"] {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #fff !important;
}

.path-step {
  border: 0.7px solid var(--primary-color);
  border-radius: 20px;
  height: 90px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  margin-left: -32px;
  padding-left: 30px !important;
  background: #F7F7F7;
}

#collateral-path .path-step {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border: 3px solid #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.path-selector .btn-secondary,
.path-selector #non-collateral-path-tab {
  position: relative;
  width: 132px;
  height: 132px;
}


#non-collateral-path .path-step {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border: 3px solid #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.path-step-number {
  width: 40px;
  height: 40px;
  border: 0.7px solid var(--primary-color);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  flex-shrink: 0;
  background: var(--primary-color);
  z-index: 9999;
}

#non-collateral-path .path-step-number {
  border-color: #5459F7;
  background-color: #5459F7;
}

.path-step-title {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}

#non-collateral-path .path-step-title {
  color: #5459F7;
}

.path-step-text {
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 300;
  line-height: 21px;
}

.path-step-text strong {
  font-weight: 700;
}

/* Footer */
footer {
  font-size: 18px;
  color: var(--text-dark);
  padding: 3rem 0;
}

footer img[alt="Nexspecto Logo"] {
  max-width: 200px;
  height: auto !important;
}

footer p {
  font-size: 16px;
}

footer h5 {
  font-size: 20px;
  font-weight: 700;
}

footer .footer-links a {
  font-size: 16px;
}

/* Footer social icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.footer-social-link img {
  width: 29px;
  height: 29px;
  display: block;
}

@media (max-width: 767.98px) {
  .footer-social {
    margin-top: 24px;
  }
}

@media (max-width: 767.98px) {
  footer h5 {
    font-size: 16px;
  }

  footer .footer-links a {
    font-size: 14px;
  }
}

footer h5 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

footer a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-color);
}

footer .footer-links {
  list-style: none;
  padding: 0;
}

footer .footer-links li {
  margin-bottom: 0.5rem;
}

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

footer {
  border-top: 1px solid #E0E0E0;
}

.flogo {
  height: 37px;
}

@media (max-width: 998px) {
  .hero-section {
    height: auto;
    min-height: auto;
    padding: 100px 0 30px;
    justify-content: center;
    margin-bottom: 0;
    background: #fcfcff;
  }

  .hero-section .container {
    height: auto;
  }

  .hero-section .row {
    justify-content: center;
    text-align: center;
  }

  .hero-section .hero-text {
    text-align: center;
    margin-bottom: 2rem;
  }

  .hero-section .hero-text h1 {
    font-size: 40px;
  }

  .hero-section .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section .hero-image-container {
    height: auto;
    min-height: 300px;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-section .hero-vector {
    display: none;
  }

  .hero-section .hero-image,
  .hero-section .hero-video,
  .hero-section .hero-gif {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 1058px;
    height: auto;
    background-color: transparent !important;
    background: transparent !important;
    background-image: none !important;
    z-index: 0;
  }

  .flex-direction-text-center {
    flex-direction: column !important;
  }
}

@media (max-width: 1199.98px) {
  .hero-section .hero-vector {
    width: 500px;
    height: 264px;
    top: 150px;
    left: 20px;
  }
}

@media (min-width: 998px) {
  .navbar .launch-app-btn {
    min-width: 180px;
  }
}

@media (min-width: 1640px) {
  .hero-section .hero-image-container {
    margin-top: 80px;
  }

  .section-subtitle {
    max-width: 80%;
  }

  .why-choose-section {
    background-position: top;
    background-repeat: round;
  }
}

.tab-content {
  padding-left: 15px;
}

.bg-white {
  background-color: #fff !important;
}

@media (max-width: 767.98px) {
  .tab-content {
    padding: 20px;
  }

  footer {
    font-size: 16px;
  }

  footer h5 {
    font-size: 20px;
  }
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  display: none;
}

.w-100 {
  width: 100%;
}

.mxw-100 {
  max-width: 100% !important;
}

.ml-0 {
  margin-left: 0;
}

.marta-top-row {
  max-width: 1000px;
  margin: 0 auto;
}

/* How To Join Page Styles */
.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-light);
  font-weight: 400;
}

.how-to-join-step-card {
  background-color: #f5f5f5;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.how-to-join-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.step-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-shrink: 0;
}

.step-icon-circle.step-icon-blue {
  background-color: #5459F7;
}

.step-icon-circle.step-icon-teal {
  background-color: #50d3bb;
}

.step-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.step-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.step-title-blue {
  color: #5459F7;
}

.step-title-teal {
  color: #50d3bb;
}

.step-description {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}

.ecosystem-center-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #50d3bb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0px 10px 30px rgba(80, 211, 187, 0.3);
}

.ecosystem-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.ecosystem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

.ecosystem-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #50d3bb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ecosystem-card-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.ecosystem-card-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.ecosystem-card-description {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .step-title {
    font-size: 20px;
  }

  .step-description {
    font-size: 15px;
  }

  .ecosystem-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .ecosystem-card-title {
    font-size: 20px;
  }

  .ecosystem-card-description {
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .how-to-join-step-card {
    padding: 1.5rem;
  }

  .step-icon-circle {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .step-icon {
    width: 35px;
    height: 35px;
  }

  .step-title {
    font-size: 18px;
    text-align: center;
  }

  .step-description {
    font-size: 14px;
    text-align: center;
  }

  .ecosystem-center-circle {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
  }

  .ecosystem-center-circle img {
    width: 60px;
    height: auto;
  }

  .ecosystem-card {
    padding: 1.5rem;
  }

  .ecosystem-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }

  .ecosystem-card-icon img {
    width: 30px;
    height: 30px;
  }

  .ecosystem-card-title {
    font-size: 18px;
  }

  .ecosystem-card-description {
    font-size: 14px;
  }
}

/* FAQ Page Styles */
.faq-hero-section {
  padding: 150px 0 0;
  background-color: transparent;
}

.faq-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.faq-title .highlight {
  display: block;
}

.faq-subtitle {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 400;
}

.faq-illustration {
  max-width: 508px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

#faq-content {
  margin-top: 50px;
}

@media (min-width: 992px) {
  .faq-hero-section .col-lg-6:has(.faq-illustration) {
    position: relative;
  }

  .faq-illustration {
    position: absolute;
    right: 0;
    top: -120px;
  }
}

.faq-help-box {
  background-color: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 581px;
  width: 100%;
  max-width: 581px;
}

@media (min-width: 992px) {
  .faq-help-box {
    margin: 0;
  }

  .faq-illustration {
    margin: 0 auto;
  }

  .faq-form {
    text-align: right;
  }
}

@media (max-width: 991.98px) {
  .faq-help-box {
    margin: 0 auto;
  }

  .faq-illustration {
    margin: 0 auto;
    max-height: 266px;
  }

  .faq-form {
    text-align: center;
  }

  .faq-help-box .faq-help-title,
  .faq-help-box .faq-help-text {
    text-align: center;
  }

  .accordion-button {
    padding-right: 84px !important;
  }

  .faq-title {
    margin: 0 auto;
  }

  .faq-hero-section {
    padding-top: 160px !important;
  }

  .faq-hero-section {
    padding-bottom: 10px !important;
  }


}



.faq-help-title {
  color: #585858;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}

.faq-help-text {
  color: #585858;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.faq-form-label {
  display: block;
  color: #585858;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: left;
  margin-top: 40px;
}

.faq-form .form-control {
  border: 1px solid #e0e0e0;
  border-radius: 45px;
  padding: 12px 16px;
  font-size: 14px;
}

.faq-form .form-control::placeholder {
  color: #CDCDCD;
  font-size: 14px;
}

.faq-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(80, 211, 187, 0.25);
}

.faq-form .btn-primary {
  background-color: #5459F7;
  border-color: #5459F7;
  padding: 5px 12px;
  font-weight: 600;
  max-width: 130px;
}

.faq-form .btn-primary:hover {
  background-color: #4549d6;
  border-color: #4549d6;
}

.accordion-item {
  border: none;
  border-radius: 50px !important;
  overflow: hidden;
  background-color: #F7F7F7;
  margin-bottom: 1rem;
  width: 100%;
}

.accordion-button {
  background-color: #F7F7F7;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
  padding: 1.25rem 1.5rem;
  padding-right: 73px;
  border: none;
  box-shadow: none;
  border-radius: 50px !important;
  width: 100%;
}

.accordion-header {
  padding: 10px 0;
}

@media (min-width: 992px) {
  .accordion-header {
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 991.98px) {
  .accordion-header {
    display: flex;
    align-items: center;
  }
}

.accordion-button:not(.collapsed) {
  background-color: #F7F7F7;
  color: var(--text-dark);
  box-shadow: none;
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.accordion-button::before {
  content: "";
  position: absolute;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background-color: #5459F7;
  border-radius: 50%;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  width: 1.25rem;
  height: 1.25rem;
  background-color: transparent !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  filter: none;
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 12px;
}

.accordion-button:not(.collapsed)::before {
  background-color: #50D3BB;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: translateY(-50%) rotate(180deg);
  background-color: transparent !important;
}

.accordion-body {
  padding: 1.5rem;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.7;
  background-color: #F7F7F7;
  border-radius: 0 0 50px 50px;
  padding-top: 0;
  width: 95%;

}

@media (max-width: 991.98px) {

  .faq-subtitle {
    font-size: 16px;
    text-align: center;
  }

  .faq-illustration {
    max-width: 100%;
  }

  .faq-help-box {
    max-width: 100%;
  }

  #faq-content {
    margin-top: 0;
  }
}



/* About Hero Section */
.about-hero-section {
  padding-top: 150px !important;
  background-color: #ffffff;
}

.about-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.about-subtitle {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 400;
}

@media (max-width: 991.98px) {
  .about-title {
    margin: 0 auto;
  }

  .about-hero-section {
    padding-top: 160px !important;
  }

  .about-hero-section {
    padding-bottom: 10px !important;
  }
}


.lfm {
  margin-left: -85px;
}

/* About Page Boxes */
.about-boxes-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  padding: 2rem 0;
  box-shadow: var(--card-shadow) !important;
  border-width: 0px 2px 0px 2px;
  border-style: solid;
  border-color: #FFFFFF;
  border-radius: 50px;
  background-color: transparent;
  margin: 0 auto 100px auto;
}

.about-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 3rem 0rem;
  padding-left: 40px;
}

.about-box-icon {
  width: auto;
  max-height: 50px;
  margin-bottom: 1.5rem;
  object-fit: contain;
}

.about-box-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.about-box-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0 0 15px 0;
  max-width: 80%;
  text-align: left;
}

.about-box-text:last-child {
  margin-bottom: 0;
}

.about-box-text strong {
  font-weight: 700;
}

.about-box-divider {
  width: 0.5px;
  background-color: #f7f7f7;
  align-self: stretch;
  flex-shrink: 0;
}

.mt80 {
  margin-top: 80px;
}

@media (max-width: 767.98px) {
  .about-boxes-wrapper {
    flex-direction: column;
    border-width: 2px 0px 2px 0px;
  }

  .about-box-divider {
    width: 100%;
    height: 0.5px;
  }

  .about-box {
    padding: 2rem 1.5rem;
    margin-top: 0;
  }

  .about-box-icon {
    max-height: 50px;
    width: auto;
    margin-bottom: 1rem;
  }

  .about-box-title {
    font-size: 30px;
  }

  .about-box-text {
    font-size: 16px;
  }
}

@media (max-width: 998px) {
  .how-it-works-card {
    margin: 15px 10px 0;
    min-height: 110px;
  }

  .how-it-works-swiper .col-lg-6 img {
    padding: 0 20px;
  }

  .swiper-button-next {
    display: none !important;
  }

  .swiper-button-prev {
    display: none !important;
  }

  .how-it-works-navigation {
    display: none !important;
  }

  .how-it-works-swiper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .scenario-section {
    padding: 30px 0 !important;
  }

  .how-it-works-section,
  .why-choose-section {
    padding: 30px 0;
  }

  .scenario-section .scenario-card {
    display: flex;
    background-color: #fff;
  }

  .martha-journey-card video {
    position: relative;
    zoom: 5;
    width: 200%;
    right: 99%;
    top: 0;
  }

  .martha-journey-card h4 {
    margin: 20px 0;
  }

  .how-it-works-card p {
    font-size: 14px;
  }

  .how-it-works-card h4 {
    font-size: 18px;
  }

  .faq-help-title {
    font-size: 18px;
  }

  .faq-help-text {
    font-size: 14px;
  }





  .feature-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 10px;
    min-height: 155px;
    padding-top: 45px;
    display: flex;
    justify-content: flex-start;
  }

  .feature-card h5 {
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }

  .feature-card-content {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
    justify-content: flex-start;
  }

  .how-it-works-swiper .col-lg-6 img {
    max-height: 202px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 15px !important;
  }

  .about-section .section-subtitle {
    margin-bottom: 0;
    padding-bottom: 0;
  }



  .pe-lg-5 {
    max-width: 67%;
    line-height: 1.2;
  }


  .hero-section .hero-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: 100% auto;
    background-image: url("../images/vector.svg");
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
    z-index: -1;
  }

  .hero-section .btn-primary {
    font-size: 13px;
  }


  .hero-section .hero-text {
    margin-top: 50px;
  }

  .about-schema-item h5 {
    font-size: 14px;
    font-weight: 600;
  }

  .about-schema-item p {
    font-size: 12px;
  }

  .contrifi-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
  }

  .contrifi-subtitle {
    font-size: 12px;
    font-weight: 400;
  }

  .about-video-container {
    margin-top: 0;
  }

  .about-section .mb-5 {
    margin-bottom: 30px !important;
  }

  .feature-card-icon img.permissionless,
  .feature-card-icon img.securty {
    width: 21px;
  }

  .feature-card-icon img.interests {
    width: 30px;
  }

  .feature-card-icon img,
  .feature-card-icon img.world {
    width: 28px;
  }

  footer p {
    font-size: 14px;
  }


  .accordion-body {
    font-size: 14px;
    padding: 1.25rem;
    padding-top: 0;
  }


  .faq-title {
    font-size: 40px;
    text-align: center;
  }

  .faq-subtitle {
    font-size: 14px;
    width: 76%;
    margin: 0 auto;
    line-height: 1.5;
  }

  .faq-help-box {
    margin-bottom: 2rem;
  }

  .accordion-button {
    font-size: 16px;
    padding: 1rem 1.25rem;
    line-height: 1.5;
  }


  .faq-form .form-control::placeholder {
    font-size: 12px;
  }

  .navbar-brand img {
    margin-top: 5px;
    height: 30px;
  }

  .martha-program-timeline {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding: 0;
    width: auto;
    gap: 40px;
    margin-top: 0;
  }

  .martha-video-container {
    width: 100%;
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    order: -1;
    margin-bottom: 1rem;
  }

  .martha-program-timeline-item {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    border-radius: 20px;
  }

  .martha-timeline-number {
    display: flex !important;
    margin-top: -45px;
  }

  .martha-program-timeline-container {
    padding: 0 10px;
  }


  .d-pl17 {
    padding-left: 0;
  }

  .martha-video-mobile {
    width: 70%;
    margin: 0 auto;
  }

  .align-items-stretch {
    height: auto;
    margin-left: 0 !important;
  }

  .path-selector {
    margin-bottom: 0;
  }

  .scenario-section .martha-program-subtitle {
    padding-bottom: 0;
  }

  .scenario-card .text-center {
    padding: 10px 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
  }

  .martha-video-container .text-center {
    padding: 0;
  }

  .pe-lg-5 {
    max-width: 100%;
    line-height: 1.2;
  }

  .faq-form-label {
    text-align: center;
  }

  .scenario-section .tab-content {
    margin-right: 15px;
  }

  .path-selector .btn {
    width: 84px;
    height: 84px;
    max-width: 84px;
    font-size: 14px;
    margin-top: 20px;
  }

  .path-selector .btn-secondary,
  .path-selector #non-collateral-path-tab {
    width: 82px;
    height: 82px;
    max-width: 82px;
  }

  .martha-video-mobile {
    margin-top: 1px;
  }

  .feature-card-icon {
    width: 60px;
    height: 60px;
    top: -30px;
  }

  .about-schema-item {
    min-height: 133px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-section .hero-text p {
    font-size: 14px;
  }

  .martha-journey-card {
    display: flex;
    flex-direction: column-reverse;
  }

  .accordion-body {
    width: 80%;
  }

  .martha-program-timeline-container {
    margin-top: 0;
  }



  .marta-top-row {
    margin-bottom: 0 !important;
  }



  .about-schema-container {
    margin: 0 auto;
  }


  .martha-journey-card .align-items-center .col-lg-8 {
    text-align: center;
  }

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

  .about-box-text {
    text-align: center;
  }


  .about-box {
    padding-top: 0;
  }

  .about-box-text {
    max-width: 100%;
  }


  .about-title {
    font-size: 40px;
  }


  .how-to-join-page .step-row {
    margin-bottom: 70px !important;
  }

  #collateral-path .path-step, #non-collateral-path .path-step {
    height: auto;
  }
  
  .martha-program-header-image {
    margin-top: 30px;
  }

  .about-video-container img, .about-video-container video {
    height: auto;
  }


}

@media (min-width: 1920px) and (min-height: 1920px) {
  .hero-section {
    max-height: 1000px;
    height: auto;
  }
}




@media (min-width: 700px) and (max-width: 1000px) {
  .hero-section .hero-text::before {
    background-position: center center;
    background-size: 50% auto;
  }
}




@media (min-width: 999px) and (max-width: 1200px) {
  .martha-program-timeline-container {
    margin-left: -67px;
  }


  .lfm {
    margin-left: -160px;
  }
}



@media (min-width: 1201px) and (max-width: 1350px) {
  .lfm {
    margin-left: -120px;
  }

  

  .martha-journey-card video {
    right: -3px !important;
  }
}




@media (min-width: 912px) and (max-width: 1350px) {
  .martha-journey-card video {
    right: -1px
  }
}




#faq-content {
  margin-bottom: 30px;
}



@media  (min-height: 1000px) {
  .hero-section {
    max-height: 750px;
  }

  .martha-journey-card video {
    right: 0;
  }
}




@media  (min-width: 1400px) {
  .martha-program-header-image {
    text-align: right;
  }
}




