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

html, body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #03190e 0%, #041f10 50%, #03190e 100%);
  color: #fff;
}

/* ───────────────────────── Page Wrapper ───────────────────────── */
.page-wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* ───────────────────────── Background decoratives ───────────────────────── */
.bg-pattern {
  position: absolute;
  left: 50%;
  bottom: 0;
  top: auto;
  /* translateX centres horizontally; translateY(50%) pushes the element's
     own centre down to the bottom edge — overflow:hidden on .page-wrapper
     clips the lower half, leaving perfect upward-opening semi-circles */
  transform: translateX(-50%) translateY(50%);
  width: min(1400px, 100vw);
  height: min(1400px, 100vw);
  opacity: 0.91;
  pointer-events: none;
  z-index: 0;
}
.bg-pattern .bg-frame {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ellipse {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ellipse img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ellipse-1 {
  width: 312px;
  height: 312px;
  left: 54.44%;   /* 784 / 1440 */
  top: 221px;
  border-radius: 50%;
  opacity: 0.3;
}
.ellipse-2 {
  width: 284px;
  height: 284px;
  left: -6.32%;   /* -91 / 1440 */
  top: 533px;
  border-radius: 50%;
  opacity: 0.3;
}

/* ───────────────────────── Floating Coins ───────────────────────── */
.coin {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  filter: blur(1.8px);
  opacity: 0.51;
}
.coin img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.coin-top-left  { width: 13vw; max-width: 187px; height: auto; aspect-ratio: 187/205; left: 0.9%;  top: 132px; transform: rotate(180deg) scaleY(-1); }
.coin-top-right { width: 9.6vw; max-width: 138px; height: auto; aspect-ratio: 138/151; right: 5.2%; left: auto; top: 151px; }
.coin-mid-left  { width: 8vw;   max-width: 116px; height: auto; aspect-ratio: 116/127; left: 3.54%; top: 417px; transform: rotate(180deg) scaleY(-1); }
.coin-mid-right { width: 8vw;   max-width: 115px; height: auto; aspect-ratio: 115/131; right: 5.2%; left: auto; top: 550px; }
.coin-bottom-left  { width: 5.5vw; max-width: 79px; height: auto; aspect-ratio: 79/87; left: 10.56%; bottom: 100px; }
.coin-bottom-right { width: 4.7vw; max-width: 68px; height: auto; aspect-ratio: 68/75; right: 15%;   left: auto; top: 494px; transform: rotate(180deg) scaleY(-1); }
.coin-hero-left    { width: 4.2vw; max-width: 60px; height: auto; aspect-ratio: 60/70; left: 16%;    top: 370px; }

/* coin float animation */
@keyframes floatY {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(3deg); }
}
@keyframes floatYR {
  0%, 100% { transform: translateY(0px) rotate(0deg) scaleY(-1); }
  50%       { transform: translateY(-14px) rotate(-4deg) scaleY(-1); }
}

.coin { animation: floatY 4s ease-in-out infinite; }
.coin-top-left  { animation: floatY 4.2s ease-in-out infinite; }
.coin-mid-left  { animation: floatY 3.8s ease-in-out infinite; animation-delay: 0.5s; }
.coin-top-right { animation: floatY 5s ease-in-out infinite; animation-delay: 0.8s; }
.coin-mid-right { animation: floatY 4.5s ease-in-out infinite; animation-delay: 0.3s; }
.coin-bottom-left { animation: floatY 3.5s ease-in-out infinite; animation-delay: 1s; }
.coin-bottom-right { animation: floatY 4.8s ease-in-out infinite; animation-delay: 0.6s; }
.coin-hero-left { animation: floatY 3.2s ease-in-out infinite; animation-delay: 1.2s; }

/* ───────────────────────── Navbar ───────────────────────── */
.navbar {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 16px 0;
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 126px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  flex-shrink: 0;
  display: block;
  width: 96px;
  height: 56.426px;
}
.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 206, 27, 0.5);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-inner.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-inner.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-inner.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-item a {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.79);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-item a:hover { color: #ffce1b; }

.nav-item.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.nav-item.active a {
  font-weight: 600;
  color: #ffce1b;
}
.nav-underline {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffce1b;
  border-radius: 2px;
}

/* ───────────────────────── Buttons ───────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffce1b;
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-decoration: none;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0px 10px 15px -3px rgba(13, 73, 67, 0.2), 0px 4px 6px -4px rgba(13, 73, 67, 0.2);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: #f5c200;
  transform: translateY(-2px);
  box-shadow: 0px 16px 24px -4px rgba(13, 73, 67, 0.3);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0d4943;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-decoration: none;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-secondary:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.btn-secondary:active { transform: translateY(0); }

.btn-sm {
  font-size: 14px;
  padding: 10px 24px;
  line-height: 20px;
}
.btn-lg {
  font-size: 18px;
  padding: 18px 48px;
  height: 64px;
  line-height: 28px;
}

/* ───────────────────────── Hero ───────────────────────── */
.hero {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  max-width: 1085px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  text-align: center;
}

/* Trust badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ffce1b;
  border-radius: 9999px;
  padding: 6px 8px;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon img {
  width: 18px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.trust-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffc800;
  white-space: nowrap;
}

/* Headline */
.hero-headline {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.15;
  color: #fff;
  max-width: 1013px;
}

/* Subheadline */
.hero-sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 801px;
}

/* CTA row */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ───────────────────────── Stats ───────────────────────── */
.stats {
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  padding-bottom: 80px;
}

.stats-inner {
  display: flex;
  align-items: center;
  gap: 83px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 47.419px;
  color: #fff;
}

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 47.419px;
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS SECTION — Two Smart Ways to Own Gold
════════════════════════════════════════════════════════════════ */
.process-section {
  background: #fff;
  width: 100%;
  padding: 96px 126px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}

.process-heading {
  width: 100%;
  text-align: center;
}

.process-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #063b1f;
  text-transform: capitalize;
}

/* ── Cards Row ── */
.cards-row {
  display: flex;
  gap: 32px;
  align-items: stretch;
  width: 100%;
  flex-wrap: wrap;
}

/* ── Base Card ── */
.gold-card {
  flex: 1 0 0;
  min-width: 280px;
  border-radius: 16px;
  border: 1px solid #f1f9f3;
  padding: 30px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.gold-card--cream { background: #fff9e3; }
.gold-card--green { background: #e4f2e8; }

/* ── Badge (top-right pill) ── */
.card-badge {
  position: absolute;
  top: 13px;
  right: 30px;
  padding: 8px 16px;
  border-radius: 99px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.75px;
  color: #000;
  white-space: nowrap;
}
.card-badge--gold {
  background: #fffbec;
  border: 1px solid #a58204;
}
.card-badge--green {
  background: #f3fff7;
  border: 1px solid #063b1f;
}

/* ── Card Body ── */
.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
  min-height: 406px;
}

/* ── Eyebrow ── */
.card-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 28px;
}
.card-eyebrow--gold { color: #977805; }

/* ── Card content (title + desc) ── */
.card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-title {
  font-family: 'Noto Serif', serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: #0f172a;
  white-space: nowrap;
}

.card-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.75px;
  color: #475569;
}

/* ── Features grid ── */
.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 9999px;
  flex-shrink: 0;
  /* transform: scaleY(-1); */
}
.feature-icon img {
  width: 24px;
  height: 28px;
  object-fit: contain;
  display: block;
}
.feature-icon--yellow { background: rgba(255, 206, 27, 0.11); }
.feature-icon--green  { background: rgba(6, 59, 31, 0.05); }

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #1b0e0e;
  white-space: nowrap;
}
.feature-sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #4b5563;
  white-space: nowrap;
}

/* ── Card CTA buttons ── */
.card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 64px;
  border-radius: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
  margin-top: auto;
}
.card-cta:hover { opacity: 0.9; transform: translateY(-2px); }
.card-cta:active { transform: translateY(0); }

.card-cta--yellow { background: #ffce1b; color: #000; }
.card-cta--dark   { background: #063b1f; color: #fff; }

.cta-arrow {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  color: white;
}

/* ═══════════════════════════════════════════════════════════════
   TRUST SECTION — Why Thousands Trust GoldPe
════════════════════════════════════════════════════════════════ */
.trust-section {
  background: #fff;
  width: 100%;
  padding: 96px 126px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}

/* Heading block */
.trust-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
  text-align: center;
}

.trust-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #063b1f;
  white-space: nowrap;
}

.trust-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #64748b;
  max-width: 672px;
}

/* 3-column grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

/* Base card */
.trust-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 21px;
  border-radius: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.trust-card:hover { transform: translateY(-3px); }

/* Muted variant — light sage tint */
.trust-card--muted {
  background: rgba(248, 252, 249, 0.5);
  border: 1px solid #f1f9f3;
}

/* Elevated variant — white with shadow */
.trust-card--elevated {
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0px 20px 25px -5px rgba(226, 232, 240, 0.5),
              0px 8px 10px -6px rgba(226, 232, 240, 0.5);
}
.trust-card--elevated:hover {
  box-shadow: 0px 24px 32px -4px rgba(226, 232, 240, 0.7),
              0px 10px 14px -6px rgba(226, 232, 240, 0.5);
}

/* Icon wrapper */
.trust-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 192, 37, 0.1);
  border-radius: 12px;
  padding: 16px;
  width: 58px;
  height: 58px;
}
.trust-icon-wrap img {
  width: 30px;
  height: 36px;
  object-fit: contain;
  display: block;
  transform: scaleY(-1);
}

.flipped {
  transform: rotate(180deg) !important;
}

/* Label */
.trust-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #0f172a;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION — What Our Customers Say
════════════════════════════════════════════════════════════════ */
.testimonials-section {
  background: #fff;
  width: 100%;
  padding: 96px 0;
  overflow: hidden;
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Heading — centered, matches 1200px content width */
.testimonials-heading {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 126px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.testimonials-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #063b1f;
  white-space: nowrap;
}

.testimonials-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #64748b;
  white-space: nowrap;
}

/* Scrollable track — left-padded to match content, scrolls right */
.testimonials-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  overflow-y: visible;
  padding-left: 126px;
  padding-right: 126px;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonials-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

/* Individual card */
.testi-card {
  flex-shrink: 0;
  width: 468px;
  background: #f0f4f1;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 33px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  scroll-snap-align: start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(6, 59, 31, 0.08);
}

.testi-card--wide { width: 637px; }

/* Top block */
.testi-top {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Author row */
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-avatar {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.testi-author-info {
  display: flex;
  flex-direction: column;
}
.testi-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22.75px;
  color: #080808;
}
.testi-location {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.75px;
  color: #64748b;
}

/* Quote */
.testi-quote {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #0f172a;
  margin: 0;
}

/* Stars pill */
.testi-stars {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 99px;
  padding: 4px 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.11);
  align-self: flex-start;
}
.testi-stars img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE APP SECTION
════════════════════════════════════════════════════════════════ */
.app-section {
  position: relative;
  background: #063b1f;
  border: 1px solid rgba(13, 73, 67, 0.05);
  width: 100%;
  padding: 73px 126px;
  display: flex;
  align-items: center;
  gap: 56px;
  overflow: hidden;
  min-height: 620px;
}

/* glow ellipses */
.app-ellipse {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  overflow: hidden;
}
.app-ellipse img { display: block; width: 100%; height: 100%; object-fit: cover; }

.app-ellipse--1 {
  width: 284px; height: 284px;
  left: 578px; top: 244px;
  opacity: 0.35;
}
.app-ellipse--2 {
  width: 284px; height: 284px;
  left: -94px; top: -90px;
  opacity: 0.25;
}

/* ── Left text content ── */
.app-content {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #ffce1b;
}

.app-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

/* feature list */
.app-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 4px 0;
}
.app-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-feature img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.app-feature span {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  white-space: nowrap;
}

/* store badges */
.app-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0 8px;
  flex-wrap: wrap;
}
.app-badge-link {
  display: block;
  flex-shrink: 0;
  transition: transform 0.2s, opacity 0.2s;
}
.app-badge-link:hover { transform: translateY(-2px); opacity: 0.9; }
.app-badge-link img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 160px;
}

/* App Store HTML badge */
.app-badge-appstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  border-radius: 10px;
  padding: 8px 18px;
  height: 52px;
  box-sizing: border-box;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
}
.appstore-apple {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.appstore-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.appstore-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.appstore-main {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}

/* ── Right phone mockup ── */
.app-mockup-wrap {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  height: auto;
  min-width: 340px;
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
}

/* All layers inside are absolute, using % values from Figma
   (origin: 903w × 677h container) */
.mockup-layer {
  display: block;
  object-fit: contain;
}

/* Hand: top 33%, left 37%, bleeds right & bottom */
.mockup-hand {
  top: 33%;
  left: 37%;
  right: -14%;
  bottom: -20%;
  width: auto;
  height: auto;
  filter: drop-shadow(0px 29px 33px rgba(0,0,0,0.38));
}

/* iPhone frame: inside the mockup */
.mockup-iphone {
  position: relative;
  width: auto;
  max-width: 100%;
  height: auto;
}

/* App screen — clipped to the phone screen shape */
.mockup-screen {
  display: none;
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION — Ready to Own Gold?
════════════════════════════════════════════════════════════════ */
.cta-outer {
  width: 100%;
  padding: 92px 126px;
  background: #fff;
}

.cta-card {
  position: relative;
  width: 100%;
  border-radius: 40px;
  border: 1px solid rgba(13, 73, 67, 0.05);
  background: #f0f4f0;
  padding: 97px 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* subtle texture overlay */
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background-size: 200px 40px;
  background-position: top left;
  opacity: 0.02;
  pointer-events: none;
  z-index: 0;
}

/* glow ellipses */
.cta-ellipse {
  position: absolute;
  width: 284px;
  height: 284px;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.cta-ellipse img { display: block; width: 100%; height: 100%; object-fit: cover; }

.cta-ellipse--tl { left: -94px; top: -90px; opacity: 0.5; }
.cta-ellipse--cr { left: 578px; top: 244px; opacity: 0.4; }

/* content stack */
.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.cta-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #063b1f;
  text-align: center;
  white-space: nowrap;
}

/* actions block */
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 794px;
}

.cta-btn-row {
  display: flex;
  gap: 16px;
  width: 100%;
}

.cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
}
.cta-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.cta-btn:active { transform: translateY(0); }

.cta-btn--yellow { background: #ffce1b; color: #000; }
.cta-btn--dark   { background: #063b1f; color: #fff; }

.cta-text-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #000;
  text-decoration: none;
  text-align: center;
  padding: 16px 40px;
  transition: color 0.2s;
}
.cta-text-link:hover { color: #063b1f; text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.footer {
  background: #03190e;
  border-top: 1px solid #f1f5f9;
  width: 100%;
  padding: 49px 126px 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Logo */
.footer-logo {
  flex-shrink: 0;
  display: block;
  width: 130px;
  height: 71px;
}
.footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Right column */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}

/* Social row */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-social:hover { opacity: 0.75; }
.footer-social img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-social span {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  white-space: nowrap;
}

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

.footer-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.footer-link:hover { opacity: 0.7; text-decoration: underline; }

/* ───────────────────────── Responsive ───────────────────────── */
/* ── ≤1280px — 48px horizontal padding across all sections ── */
@media (max-width: 1280px) {
  .nav-inner                { padding: 0 48px; }
  .process-section          { padding: 80px 48px; }
  .trust-section            { padding: 80px 48px; }
  .trust-label              { font-size: 17px; white-space: normal; }
  .testimonials-section     { padding: 80px 0; }
  .testimonials-heading     { padding: 0 48px; }
  .testimonials-track       { padding-left: 48px; padding-right: 48px; }
  .app-section              { padding: 73px 48px; }
  .app-content              { width: 440px; }
  .cta-outer                { padding: 72px 48px; }
  .cta-actions              { width: 100%; }
  .footer                   { padding: 40px 48px; }
}

/* ── ≤1024px — tighten layout ── */
@media (max-width: 1024px) {
  .nav-links                { gap: 24px; }
  .nav-item a               { font-size: 14px; }
  .hero-headline            { font-size: 44px; }
  .hero-sub                 { font-size: 17px; }
  .stats-inner              { gap: 48px; }
  .stat-number              { font-size: 32px; }
  .stat-label               { font-size: 18px; }
  .coin-mid-left, .coin-mid-right,
  .coin-bottom-left, .coin-bottom-right,
  .coin-hero-left           { display: none; }
  .card-title               { font-size: 26px; white-space: normal; }
  .card-body                { min-height: unset; }
  .trust-grid               { grid-template-columns: repeat(2, 1fr); }
  .trust-title              { font-size: 30px; white-space: normal; }
  .app-section              { padding: 60px 48px; gap: 32px; }
  .app-content              { width: 380px; }
  .app-title                { font-size: 28px; line-height: 36px; }
  .app-feature span         { white-space: normal; }
  .app-mockup-wrap          { height: 500px; }
  .cta-outer                { padding: 60px 48px; }
  .cta-card                 { padding: 72px 48px; }
  .cta-title                { font-size: 28px; white-space: normal; text-align: center; }
  .cta-actions              { width: 100%; }
}

/* ── ≤768px — 24px horizontal padding across all sections ── */
@media (max-width: 768px) {
  .nav-inner                { padding: 0 24px; flex-wrap: wrap; gap: 12px; align-items: flex-start; position: relative; }
  .nav-links                { display: none; }
  .nav-logo                 { order: 1; }
  .nav-toggle               { display: inline-flex; margin-left: auto; order: 2; }
  .nav-cta                  { display: none; }
  .nav-inner.menu-open .nav-links {
    display: flex;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: rgba(3, 25, 14, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }
  .nav-inner.menu-open .nav-item,
  .nav-inner.menu-open .nav-item.active { width: 100%; align-items: flex-start; }
  .nav-inner.menu-open .nav-item a { font-size: 16px; }
  .nav-inner.menu-open .nav-underline { width: 32px; }
  .hero                     { padding-top: 60px; }
  .hero-headline            { font-size: 36px; }
  .hero-sub                 { font-size: 15px; }
  .btn-lg                   { font-size: 15px; padding: 14px 28px; height: auto; }
  .stats-inner              { gap: 32px; flex-wrap: wrap; justify-content: center; }
  .stat-item                { align-items: center; }
  .coin                     { display: none; }
  .process-section          { padding: 64px 24px; }
  .trust-section            { padding: 64px 24px; }
  .trust-grid               { grid-template-columns: 1fr; }
  .trust-label              { white-space: normal; }
  .trust-title              { font-size: 26px; white-space: normal; }
  .testimonials-section     { padding: 64px 0; }
  .testimonials-heading     { padding: 0 24px; }
  .testimonials-track       { padding-left: 24px; padding-right: 24px; }
  .testi-card               { width: 320px; }
  .testi-card--wide         { width: 380px; }
  .testi-quote              { font-size: 16px; }
  .testimonials-title       { font-size: 26px; white-space: normal; }
  .testimonials-subtitle    { white-space: normal; }
  .app-section              { flex-direction: column; padding: 60px 24px; min-height: unset; }
  .app-content              { width: 100%; }
  .app-title                { font-size: 26px; line-height: 34px; }
  .app-mockup-wrap          { display: none; }
  .app-ellipse--1           { left: 50%; top: auto; bottom: 0; }
  .app-ellipse--2           { left: -60px; top: -60px; }
  .cta-outer                { padding: 48px 24px; }
  .cta-card                 { padding: 56px 24px; border-radius: 24px; }
  .cta-title                { font-size: 26px; }
  .cta-content              { gap: 36px; }
  .cta-btn-row              { flex-direction: column; }
  .cta-btn                  { width: 100%; }
  .cta-actions              { width: 100%; }
  .footer                   { padding: 40px 24px; }
  .footer-inner             { flex-direction: column; align-items: flex-start; gap: 32px; }
  .footer-right             { align-items: flex-start; }
  .footer-legal             { justify-content: flex-start; gap: 20px; }
  .footer-socials           { gap: 24px; }
  .cards-row                { flex-direction: column; }
  .gold-card                { min-width: unset; }
  .card-badge               { right: 16px; }
  .process-title            { font-size: 28px; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 16px; }
  .hero-headline { font-size: 28px; }
  .trust-text { font-size: 10px; }
  .hero-ctas { flex-direction: column; width: 100%; padding: 0 20px; }
  .btn-lg { width: 100%; }
  .stats-inner { gap: 24px; }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: 15px; }
  .process-section { padding: 48px 16px; }
  .gold-card { padding: 24px 20px; }
  .card-title { font-size: 22px; }
  .card-cta { font-size: 15px; height: auto; padding: 14px 24px; }
  .feature-label { font-size: 14px; }
}
