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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
font-family: 'Satoshi', sans-serif;
    color: #0E172A;
  background: #f9f9f9;
}

/* ── Header ── */
.header-spacer {
  width: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 20px;
  background: transparent;
  z-index: 1000;
}

.header.shrink {
  /* only inner width changes, no padding shift */
}

.header-inner {
  width: 100%;
  max-width: 90%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  padding: 20px 28px;

  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

  transition:
    max-width 0.6s ease,
    background 0.6s ease,
    box-shadow 0.6s ease,
    backdrop-filter 0.6s ease;
    position: relative;
    overflow: hidden;
}
.header-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(255, 255, 255, 0.15) 45%,
    rgba(255, 255, 255, 0.05) 100%
  );
  pointer-events: none;
}

.header.shrink .header-inner {
  max-width: 800px;
  background: rgba(255, 255, 255, 0.82);

  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  border: 1px solid rgba(255, 255, 255, 0.55);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  
}
.logo-icon{
    width: 70%;
}

/* ── Nav ── */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  text-decoration: none;
  color: #020202;
  font-size: 1rem;
  font-weight: 400;
  display: inline-block;
  overflow: hidden;
  height: 1.4em;
  line-height: 1.4em;
}

.nav a span {
  display: block;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}

.nav a span::after {
  content: attr(data-text);
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
}

.nav a:hover span {
  transform: translateY(-100%);
}

.nav a:hover {
  color: #111;
}

/* ── Purchase Button ── */
.btn-purchase {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #020202;
  color: #fff;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-purchase:hover {
  background: #333;
}

/* Button icon flip */
.btn-icon {
  display: inline-block;
  overflow: hidden;
  width: 1.1em;
  vertical-align: middle;
  position: relative;
}

.btn-icon span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}

.btn-icon span::after {
  content: attr(data-icon);
  position: absolute;
  top: 0;
  right: 100%;
}

.btn-purchase:hover .btn-icon span {
  transform: translateX(100%);
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #020202;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Expandable Section (hidden by default) ── */
.mobile-expand {
  display: none;
}

/* ── Hero Section ── */
.hero {
  padding: 0 20px 20px;
  display: flex;
  justify-content: center;
}

.hero-inner {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  background: #020202;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 80px 60px;
  gap: 20px;
  overflow: hidden;
  position: relative;
  min-height: 80vh;
}

.hero-left {
  flex: 0 0 50%;
  z-index: 1;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 0.92rem;
  color: #9a9a9a;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  max-width: 100px;
}

.hero-buttons-mobile {
  display: none;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-img {
  height: 58px;
  width: auto;
  display: block;
}

.hero-disclaimer {
  font-size: 0.62rem;
  color: #555;
  line-height: 1.5;
}

/* Hero Right - Image */
.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* ── Features Section ── */
.features {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
}

.features-header {
  text-align: center;
  margin-bottom: 48px;
}

.features-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0E172A;
  line-height: 1.3;
  margin-bottom: 14px;
}

.features-subtitle {
  font-size: 0.92rem;
  color: #777;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(10, 60px);
  gap: 16px;
  width: 100%;
  max-width: 1200px;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #eee;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Col 1: two equal cards, each span 5 rows */
.features-grid .feature-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 6;
}
.features-grid .feature-card:nth-child(4) {
  grid-column: 1;
  grid-row: 6 / 11;
}

/* Col 2: tall top (6 rows), short bottom (4 rows) */
.features-grid .feature-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / 8;
}
.features-grid .feature-card:nth-child(5) {
  grid-column: 2;
  grid-row: 8 / 11;
}

/* Col 3: two equal cards, each span 5 rows */
.features-grid .feature-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1 / 6;
}
.features-grid .feature-card:nth-child(6) {
  grid-column: 3;
  grid-row: 6 / 11;
}

.feature-card-img {
  width: 100%;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  padding: 18px 20px 16px;
  text-align: center;
}

.feature-card-desc {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.6;
  padding: 0 20px 20px;
  text-align: center;
}

.feature-card-dark {
  background: #1a1d21;
}

.feature-card-dark .feature-card-title {
  color: #fff;
}

.feature-card-dark .feature-card-desc {
  color: #999;
}

/* ── Full-width Feature Card ── */
.feature-card-full {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  padding: 32px 36px;
  margin-top: 20px;
  overflow: hidden;
  justify-content: space-between;
  border-radius: 20px;
  border: 1px solid #eee;
  background: #fff;
}

.feature-full-left {
  flex: 0 0 38%;
}

.feature-full-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0E172A;
  margin-bottom: 14px;
}

.feature-full-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-full-right {
  flex: 1;
  height: 260px;
  overflow: hidden;
  max-width: 40%;
}

.marquee-columns {
  display: flex;
  gap: 12px;
  height: 100%;
}

.marquee-col {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.marquee-track img {
  width: 80%;
  display: block;
  height: 160px;
  flex-shrink: 0;
}

.marquee-down .marquee-track {
  animation: scrollDown 14s linear infinite;
}

.marquee-up .marquee-track {
  animation: scrollUp 14s linear infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes scrollUp {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── Steps Section ── */
.steps {
  height: 400vh;
  position: relative;
}

.steps-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 60px;
  gap: 36px;
  max-width: 1400px;
  margin: 0 auto;
}

.steps-left {
  flex: 0 0 320px;
  z-index: 0;
}

.steps-title {
  font-size: 4rem;
  font-weight: 700;
  color: #0E172A;
  line-height: 1.35;
  margin-bottom: 20px;
}

.steps-subtitle {
  font-size: 1rem;
  color: #777;
  line-height: 1.9;
}

.steps-right {
  flex: 1;
  overflow: hidden;
  z-index: 1;
}

.steps-track {
  display: flex;
  gap: 28px;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.step-card {
  flex: 0 0 600px;
  height: 553px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #eee;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.step-card-img {
  width: 100%;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.step-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.step-card-body {
  padding: 28px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-card-title {
  flex: 0 0 40%;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0E172A;
  line-height: 1.3;
}

.step-card-desc {
  flex: 1;
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}

/* ── Download CTA Section ── */
.download-cta {
  padding: 40px 20px;
}

.download-cta-inner {
  max-width: 1400px;
  margin: 0 auto;
  background: #020202;
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
  padding: 60px 60px 0;
  gap: 16px;
  overflow: hidden;
  position: relative;
}

.download-cta-left {
  flex: 1;
  padding-bottom: 60px;
}

.download-cta-title {
  font-size: 4rem;
  font-weight: 700;
  color: #e9e9e9;
  margin-bottom: 8px;
}

.download-cta-subtitle {
  font-size: 1.4rem;
  color: #8b8b8b;
  margin-bottom: 28px;
}

.download-qr {
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-qr img {
  width: 100%;
  height: 100%;
  display: block;
}

.btn-download {
  display: none;
}

.download-cta-right {
  flex: 0 0 480px;
  display: flex;
  justify-content: center;
}

.download-phone-img {
  width: 100%;
  /* max-width: 280px; */
  height: auto;
  border-radius: 28px 28px 0 0;
  object-fit: cover;
  display: block;
}

/* ── FAQ Section ── */
.faq {
  padding: 100px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0E172A;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.2;
}

.faq-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  margin-bottom: 12px;
  padding: 0 24px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #0E172A;
  gap: 16px;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0a0a0a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  padding: 0 0 22px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* ── Footer ── */
.footer {
  padding: 0;
  display: flex;
  justify-content: center;
}

.footer-inner {
  width: 90%;
  max-width: 90%;
  background: #0a0a0a;
  border-radius: 24px 24px 0 0;
  padding: 36px 48px 0;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* CTA */
.footer-cta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 28px;
}
.footer-right{
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 1.5rem;
}
.mailto{
  text-decoration: none;
  list-style: none;
  color: white;
}

.footer-cta-left {
  flex: 1;
}

.footer-cta-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 18px;
}

.footer-cta-buttons {
  display: flex;
  gap: 12px;
}

.footer-btn-light {
  background: #fff;
  color: #0E172A;
}

.footer-btn-light:hover {
  background: #e8e8e8;
}

.footer-btn-dark {
  background: #2a2a2a;
  color: #fff;
}

.footer-btn-dark:hover {
  background: #3a3a3a;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  justify-content: end;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}

.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.06);
}

.social-x { color: #fff; }
.social-linkedin { color: #0A66C2; }
.social-youtube { color: #FF0000; }
.social-discord { color: #7289DA; }
.social-instagram { color: #E4405F; }
.social-facebook{
  width: 44px;
  height: 44px;
  padding: 8px;
}

/* Footer Links Row */
.footer-links-row {
  margin-bottom: 28px;
}

/* Legal */
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-legal a {
  color: #777;
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
  display: inline-block;
  overflow: hidden;
  height: 1.4em;
  line-height: 1.4em;
}

.footer-legal a span {
  display: block;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}

.footer-legal a span::after {
  content: attr(data-text);
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
}

.footer-legal a:hover span {
  transform: translateY(-100%);
}

.footer-legal a:hover {
  color: #fff;
}

/* Watermark */
.footer-watermark {
  position: relative;
  margin: -70px -48px 0;
  user-select: none;
  cursor: default;
  z-index: 0;
}

.watermark-text {
  display: block;
  width: 100%;
  font-size: 16vw;
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  text-align: center;
  color: transparent;
  background: radial-gradient(circle 400px at 50% 50%, rgba(67, 206, 162, 0.55) 0%, rgba(24, 90, 157, 0.3) 25%, rgba(67, 206, 162, 0.1) 50%, rgba(255, 255, 255, 0.06) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.watermark-glow {
  display: none;
}

/* Bottom Bar */
.footer-bottom-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 48px;
  margin: 0 -48px;
  position: relative;
  z-index: 1;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #999;
  justify-self: start;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  position: relative;
}

.status-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(2.2); opacity: 0; }
}

.footer-copyright {
  font-size: 0.82rem;
  color: #555;
  justify-self: end;
}

.footer-mobile-logo {
  display: none;
}

.footer-bottom {
  display: none;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav,
  .desktop-purchase {
    display: none;
  }

  .header-inner {
    padding: 14px 18px;
    overflow: hidden;
    max-width: 100%;
  }

  .header.shrink .header-inner {
    max-width: 95%;
  }

  /* Expandable area */
  .mobile-expand {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .mobile-expand.open {
    grid-template-rows: 1fr;
  }

  .mobile-expand-inner {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-divider {
    width: 100%;
    height: 1px;
    background: #eee;
    margin-top: 14px;
  }

  .mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 0 8px;
  }

  .mobile-links a {
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.2s;
    color: #020202;
  font-size: 1.1rem;
  font-weight: 400;
  }

  .mobile-links a:hover {
    color: #555;
  }

  .mobile-purchase {
    display: inline-flex;
    align-self: center;
    /* margin: 6px auto 8px; */
    padding: 12px 36px;
    font-size: 0.95rem;
  }
  .logo-icon{
    width: 60%;
  }

  /* Hero mobile */
  .hero {
    padding: 0 0 30px;
  }

  .hero-inner {
    flex-direction: column;
    padding: 60px 24px 0;
    border-radius: 52px;
    gap: 30px;
    max-width: 100%;
    min-height: auto;
  }

  .hero-left {
    flex: none;
    width: 100%;
    text-align: center;
    order: 1;
  }

  .hero-buttons-desktop {
    display: none;
  }

  .hero-right {
    width: 100%;
    order: 2;
  }

  .hero-buttons-mobile {
    display: flex;
    justify-content: center;
    order: 3;
    max-width: 100%;
    padding: 0 32px 32px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .store-img {
    height: 70px;
  }

  .hero-image {
    border-radius: 0;
  }

  .hero-disclaimer {
    text-align: center;
    font-size: 0.6rem;
  }

  /* Features mobile */
  .features {
    padding: 50px 16px;
  }

  .features-title {
    font-size: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }

  .features-grid .feature-card:nth-child(1),
  .features-grid .feature-card:nth-child(2),
  .features-grid .feature-card:nth-child(3),
  .features-grid .feature-card:nth-child(4),
  .features-grid .feature-card:nth-child(5),
  .features-grid .feature-card:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-card-full {
    flex-direction: column;
    gap: 24px;
    padding: 28px 20px;
  }

  .feature-full-left {
    flex: none;
    width: 100%;
  }

  .feature-full-title {
    font-size: 1.5rem;
  }

  .feature-full-right {
    height: auto;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .marquee-columns {
    flex-direction: column;
    height: auto;
    gap: 8px;
  }

  .marquee-col {
    height: 90px;
    overflow: hidden;
  }

  .marquee-track {
    flex-direction: row;
    gap: 8px;
  }

  .marquee-track img {
    width: auto;
    height: 80px;
    flex-shrink: 0;
    margin-bottom: 10px;
  }

  .marquee-down .marquee-track {
    animation: scrollLeft 10s linear infinite;
  }

  .marquee-up .marquee-track {
    animation: scrollRight 10s linear infinite;
  }

  /* Steps mobile */
  .steps {
    height: auto;
  }

  .steps-sticky {
    position: relative;
    height: auto;
    flex-direction: column;
    padding: 60px 20px;
    gap: 32px;
  }

  .steps-left {
    flex: none;
    text-align: center;
  }

  .steps-title {
    font-size: 2rem;
  }

  .desktop-br {
    display: none;
  }

  .steps-right {
    overflow: visible;
  }

  .steps-track {
    flex-direction: column;
    gap: 20px;
    transform: none !important;
  }

  .step-card {
    flex: none;
    width: 100%;
    height: auto;
  }

  .step-card-img {
    height: 380px;
  }

  .step-card-body {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 28px 24px 32px;
  }

  .step-card-title {
    flex: none;
    font-size: 1.4rem;
  }
  .feature-card-title {
    font-size: 1.4rem;
    text-align: left;
  }

  .step-card-desc, .feature-card-desc {
    font-size: 0.9rem;
    text-align: left;
  }

  /* Download CTA mobile */
  .download-cta {
    padding: 20px 16px;
  }

  .download-cta-inner {
    flex-direction: column;
    padding: 40px 28px 0;
    border-radius: 24px;
    gap: 32px;
    text-align: left;
    overflow: hidden;
  }

  .download-cta-title {
    font-size: 2.4rem;
  }

  .download-qr {
    display: none;
  }

  .btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0E172A;
    padding: 12px 27px;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
  }

  .download-cta-right {
    flex: none;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .download-phone-img {
    width: 240px;
    margin-bottom: -40px;
  }

  /* FAQ mobile */
  .faq {
    padding: 60px 16px;
  }

  .faq-title {
    font-size: 2rem;
    margin-bottom: 32px;
  }

  /* Footer mobile */
  .footer {
    padding: 0;
  }

  .footer-inner {
    width: 100%;
    max-width: 100%;
    border-radius: 52px 52px 0 0;
    padding: 40px 24px 0;
  }

  .footer-cta {
    flex-direction: column;
    gap: 28px;
  }

  .footer-cta-title {
    font-size: 1.8rem;
  }

  .footer-cta-buttons {
    flex-direction: column;
  }

  .footer-cta-buttons .btn-purchase {
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .footer-socials {
    flex-wrap: wrap;
    gap: 14px;
  }

  .footer-links-row {
    gap: 24px;
  }

  .social-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .footer-watermark {
    margin: 0 -24px;
  }

  .watermark-text {
    font-size: 28vw;
    background: radial-gradient(circle 300px at 70% 50%, rgba(67, 206, 162, 0.55) 0%, rgba(24, 90, 157, 0.3) 25%, rgba(67, 206, 162, 0.1) 50%, rgba(255, 255, 255, 0.06) 70%);
    -webkit-background-clip: text;
    background-clip: text;
  }

  .footer-bottom-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 0 24px;
    margin: 0;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

/* ── Tablet ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-inner {
    padding: 50px 36px;
    gap: 30px;
  }

  .hero-left {
    flex: 0 0 45%;
  }

  .hero-title {
    font-size: 3rem;
  }
  
}

/* ── Small phones ── */
@media (max-width: 400px) {
  .hero-inner {
    padding: 30px 16px;
    border-radius: 42px;
  }

  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle{
    font-size: 0.89rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-img {
    height: 60px;
  }
  .hero-buttons {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 32px;
}

}

/* Page transition */
body {
  opacity: 0;
  transition: opacity 0.35s ease;
}
body.page-ready {
  opacity: 1;
}
body.page-leaving {
  opacity: 0;
}
