/* Base (desktop-first) styles */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #222;
  background: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.header__logo img {
  height: 40px;
  width: auto;
  display: block;
}

.sticky-download {
  position: fixed;
  top: 10px;
  right: 16px;
  background: transparent;
  padding: 0;
  z-index: 9999;
}

.btn,
.download-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #68C481;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover,
.download-btn:hover {
  background-color: #1ABF68;
}



.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  background: #FAFAFA;
  padding-top: 0;
}

.hero__container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 60vh;
}

.hero__text {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.hero__title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
  color: #222;
  text-align: left;

}

.hero__title b {
  font-weight: 600;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}


.hero__image {
  flex: 0 0 65%;
  display: flex;
  align-items: center;
}

.hero__image img {
  width: 100%;
  max-width: 640px;
  height: auto;
  object-fit: contain;
  display: block;

}

.features {
  background: linear-gradient(to bottom, #C1F0C5, #A3E4B2);
  padding: 40px 16px;
}

.features__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  background: #fff;
  border-radius: 16px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature img {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}

.feature p {
  font-size: clamp(12px, 1.8vw, 16px);
  font-weight: 400;
  color: #222;
  line-height: 1.4;
  margin: 0;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.intro {
  padding: 60px 0;
  background: #fff;
}

.intro__container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.intro__text {
  flex: 0 0 60%;
}

.intro__text h2 {
  font-size: clamp(24px, 5vw, 48px);
  font-weight: 400;
  color: #111;
  margin-bottom: 16px;
}

.intro__text h2 span {
  color: #1A1A1A;
}

.intro__text p {
  font-size: clamp(16px, 3vw, 24px);
  color: #333;
  line-height: 1.5;
  margin: 0;
}

.intro__image {
  flex: 0 0 40%;
}

.intro__image img {
  max-width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.multi {
  padding: 10px 0;
  background: #26332D;
  text-align: center;
}

.multi__title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}

.multi__slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
}

.multi__slider {
  display: flex;
  gap: clamp(10px, 4vw, 30px);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0;
  flex: 1;
}

.multi__slider::-webkit-scrollbar {
  display: none;
}

.multi__item {
  flex: 0 0 auto;
  width: clamp(40px, 20vw, 180px);
  height: clamp(40px, 8vw, 80px);
  background: #fff;
  padding: 12px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #1a1a1a;
  scroll-snap-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.4;
  cursor: pointer;
}

.multi__item.active {
  transform: scale(1.15);
  opacity: 1;
}

.multi__item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.multi__item span {
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.2;
  display: inline-block;
  text-align: left;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}


.multi__arrow {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.multi__arrow img {
  width: 28px;
  height: 28px;
}


.trust-platform {
  padding: 40px 0;
}

.trust-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.trust-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 500;
  text-align: center;
  margin-bottom: 32px;
  color: #111;
}

.trust-text {
  flex: 0 0 60%;
}

.trust-text p {
  font-size: clamp(16px, 3vw, 24px);
  color: #333;
  line-height: 1.6;
  margin-bottom: 14px;
  text-align: left;
}

.trust-image {
  flex: 0 0 40%;
}

.trust-image img {
  max-width: 70%;
  height: auto;
}



.create-wallet__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 40px;
  justify-content: center;
}

.create-wallet__title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}

.create-wallet__card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 420px;

}

.create-wallet__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.create-wallet__image {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

.create-wallet__step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.create-wallet__text {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}


.create-wallet__next {
  text-align: center;
  margin-top: 48px;
}

.btn-large {
  display: inline-block;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 14px;
  background-color: #68C481;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.btn-large:hover {
  background-color: #1ABF68;
  transform: translateY(-2px);
}

.download-center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}



.download {
  background: #f9f9f9;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  color: #111;
}

.download-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.download-subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 32px;
}

.download-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
}

.download-left {
  flex: 0 0 300px;
  max-width: 300px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download-left h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.qr-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.qr {
  background: #ffffff;
  border-radius: 12px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  width: 240px;
}

.qr img {
  width: 200px;
  height: 200px;
  object-fit: contain;

}

.qr p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: #333;
}

.download-right {
  flex: 1 1 0%;
  max-width: none;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: flex-start;
}

.platform-group h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #111;
  text-align: left;
}

.platform-note {
  font-size: 12px;
  font-weight: 400;
  color: #888;
  margin-left: 6px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px 12px;
}

.platform-grid.centered {
  justify-content: center;
  grid-template-columns: repeat(2, 120px);
  margin: 0 auto;
}

.platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  aspect-ratio: 1 / 1;
  height: auto;
  text-align: center;
  box-shadow: 0 6px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid #e0e0e0;
}

.platform:hover {
  background: #1abf68;
  color: #fff;
  transform: translateY(-2px);
}

.platform img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 6px;
}


footer {
  padding-top: 100px;
}


@media (max-width: 767px) {

  .trust-content {
    flex-direction: column;
    text-align: center;
  }

  .hero__container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding-top: 40px;
    gap: 20px;

  }

  .hero__text {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .hero__buttons {
    gap: 0px;
    margin-top: 0px;
    margin-bottom: 10px;
  }


  .intro {
    padding: 10px;
  }

  .intro__container {
    text-align: center;
  }

  .intro__image img {
    max-width: 100%;
    height: auto;
    display: block;
    padding-top: 30px;
  }

  .multi {
    padding-top: 3px;
  }

  .trust-platform {
    padding-top: 10px;
    padding-bottom: 0px;

  }

  .trust-content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
  }

  .trust-image img {
    width: 164px;
    height: auto;
  }

  .create-wallet__grid {
    gap: 20px;
  }


  .wallet-steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .wallet-steps .step {
    max-width: 240px;
  }

  .download__wrapper {
    flex-direction: column;
  }

  .download-left {
    display: none;
  }

  .download__button {
    padding: 6px;
    font-size: 12px;
  }

  .download__button img {
    width: 48px;
    height: 48px;
  }

  .download__grid {
    gap: 6px;
  }


  .multi__item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 72px;
    height: 48px;
    padding: 6px 8px;
    gap: 6px;
    font-size: 10px;
    border-radius: 12px;
    opacity: 0.7;
  }

  .multi__item.active {
    transform: scale(1.05);
    opacity: 1;
  }

  .multi__item img {
    width: 16px;
    height: 16px;
  }

  .multi__item span {
    font-size: 10px;
    line-height: 1.2;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .multi__slider {
    gap: 6px;
    padding: 4px 0;
  }

  .wallet-setup__grid {
    grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
    gap: 6px;
  }

  .wallet-setup__item {
    padding: 6px;
    gap: 4px;
    border-radius: 8px;
    min-height: unset;
  }

  .wallet-setup__item img {
    width: 28px;
    height: 28px;
  }

  .wallet-setup__item span {
    font-size: 11px;
  }
}



@media (min-width: 1200px) {

  .hero__container,
  .intro__container,
  .features__container,
  .multi__slider-container,
  .trust-content,
  .create-wallet>.container {
    max-width: 1200px;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .features__container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .features__container {
    grid-template-columns: repeat(2, 1fr);
  }
}