/* ══════════════════════════════════════════
   ISPAY GLOBAL — BOLD GOLD & BLACK THEME
   High-contrast, vibrant, zero fade
══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Raleway:wght@300;400;500;600;700&family=Orbitron:wght@400;700&display=swap');

:root {
  --gold: rgba(255, 217, 0, 0.889);
  --gold-bright: #FFD54F;
  --gold-deep: gold;
  --black: #000000;
  --black2: #0A0A0A;
  --black3: #111111;
  --black4: #181818;
  --gold-rgb: 255, 184, 0;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  background: var(--black);
  color: var(--gold);
  overflow-x: hidden;
}


h1,
h2,
h3 {
  font-family: 'Cinzel', serif;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--black);
  border-bottom: 2px solid var(--gold);
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--gold);
  padding: 8px 20px;
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.topbar-left {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.topbar a {
  color: var(--gold);
  text-decoration: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar a:hover {
  color: var(--gold-bright);
}

.topbar-socials {
  display: flex;
  gap: 6px;
}

.s-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  color: var(--gold);
  transition: all .3s;
  text-decoration: none;
  cursor: pointer;
  background: rgba(var(--gold-rgb), 0.06);
}

.s-icon:hover {
  background: var(--gold);
  color: var(--black);
}

/* ─── NAV ─── */
nav {
  background: var(--black);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0 20px;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo {

  border-radius: 4px;
  overflow: hidden;
 
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  color: var(--black);
  font-size: 14px;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 15px;
  color: #FFFFFF;
  letter-spacing: .08em;
}

.nav-brand-sub {
  font-size: 8px;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color .3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
}

.nav-link:hover {
  color: var(--gold-bright);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.btn-gold {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 9px 20px;
  background: transparent;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-gold-fill {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 11px 26px;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  display: inline-block;
  
  font-weight: 700;
  white-space: nowrap;
}

.btn-gold-fill:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--gold-rgb), 0.5);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  background: var(--black);
  border-bottom: 2px solid var(--gold);
  z-index: 998;
  padding: 16px 20px;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-nav-link {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .2s;
}

.mobile-nav-link:hover {
  color: var(--gold-bright);
}

.mobile-cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  background: var(--gold);
  padding: 8px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.marquee-item {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--black);
  text-transform: uppercase;
  padding: 0 30px;
  font-weight: 700;
}

/* ─── DIVIDER ─── */
.divider {
  height: 2px;
  background: var(--gold);
}

/* ─── HERO ─── */
#home {
  background:
    linear-gradient(180deg, rgba(var(--gold-rgb), 0.06) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(var(--gold-rgb), 0.06) 59px, rgba(var(--gold-rgb), 0.06) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(var(--gold-rgb), 0.06) 59px, rgba(var(--gold-rgb), 0.06) 60px),
    var(--black);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}

.hero-left {
  flex: 1;
  min-width: 280px;
  z-index: 1;
}

.hero-right {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 1;
}

.section-label {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  color: #FFFFFF;
  margin: 20px 0;
}

.gold-grad {
  color: var(--gold);
}

.hero-desc {
  color: #CCCCCC;
  font-size: 15px;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-box {
  
  background: rgba(var(--gold-rgb), 0.08);
  text-align: center;
  padding: 20px 10px;
}

.stat-num {
  font-family: 'Orbitron', monospace;
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 9px;
  letter-spacing: .12em;
  color: #FFFFFF;
  margin-top: 6px;
  text-transform: uppercase;
  font-weight: 600;
}

/* CARD SLIDER */
.card-slider-wrapper {
  width: 100%;
  max-width: 360px;
  position: relative;
}

.card-slide {
  display: none;
  animation: fadeSlide .5s ease;
}

.card-slide.active {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(16px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.slide-header {
  text-align: center;
}

.pay-card {
  border-radius: 16px;
  aspect-ratio: 1.586;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .5s, box-shadow .5s;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pay-card:hover {
  transform: translateY(-6px) rotate(-1deg);
}

.pay-card-white {
  background: linear-gradient(135deg, #f5f5f0, #e8e6de, #d4d2ca);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 2px var(--gold);
}

.pay-card-gold {
  background: linear-gradient(135deg, #FFB800, #FFD54F 30%, #FFB800 60%, #cc8800);
  box-shadow: 0 20px 60px rgba(var(--gold-rgb), 0.5);
}

.pay-card-black {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a 40%, #111 70%, #000);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 2px var(--gold);
}

.pay-card-global {
  background: linear-gradient(135deg, #1a2a4a, #0a1a3a 40%, #162040 70%, #0d1830);
  box-shadow: 0 20px 60px rgba(20, 50, 100, 0.4), 0 0 0 1px rgba(100, 150, 220, 0.5);
}

.card-chip {
  width: 38px;
  height: 28px;
  background: linear-gradient(135deg, #d4a843, #FFB800 50%, #c49030);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 2px;
  padding: 3px;
}

.chip-l {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 1px;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.slider-btn {
  width: 36px;
  height: 36px;
  
  background: rgba(var(--gold-rgb), 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 2px;
  transition: all .3s;
  font-size: 16px;
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 20px;
  height: 3px;
  background: rgba(var(--gold-rgb), 0.3);
  cursor: pointer;
  transition: all .3s;
}

.dot.active {
  background: var(--gold);
  width: auto;
}

.slide-desc {
  font-size: 12px;
  color: #BBBBBB;
  text-align: center;
  line-height: 1.6;
}

/* ─── COMMON SECTION ─── */
.section {
  padding: 80px 20px;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: #FFFFFF;
  font-weight: 700;
  margin-top: 16px;
}

/* ─── ABOUT ─── */
#about {
  background: var(--black2);
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid {
    display: block;
  }
}

.about-visual {
  flex: 1;
  min-width: 280px;
  background: rgba(var(--gold-rgb), 0.06);
  
  padding: 32px;
  position: relative;
  border-radius: 2px;
}

.about-visual-bg {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.tech-box {
  text-align: center;
  padding: 14px 10px;
  
  background: rgba(var(--gold-rgb), 0.06);
}

.tech-val {
  font-family: 'Orbitron', monospace;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
}

.tech-label {
  font-size: 9px;
  color: #FFFFFF;
  letter-spacing: .1em;
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.about-content {
  flex: 1;
  min-width: 280px;
}

.about-pill {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(var(--gold-rgb), 0.07);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  margin-bottom: 10px;
  font-size: 13px;
  color: #DDDDDD;
  line-height: 1.6;
  border-radius: 0 2px 2px 0;
}

/* ─── STATS ─── */
#stats {
  background: var(--black3);
}

.stats-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.stat-card {
  
  background: rgba(var(--gold-rgb), 0.06);
  border-radius: 2px;
  padding: 32px 20px;
  text-align: center;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .4s;
}

.stat-card:hover {
  background: rgba(var(--gold-rgb), 0.12);
  transform: translateY(-4px);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-big {
  font-family: 'Orbitron', monospace;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-unit {
  font-size: .9rem;
  color: var(--gold-deep);
}

.stat-card-label {
  font-size: 11px;
  color: #FFFFFF;
  letter-spacing: .1em;
  margin-top: 8px;
  text-transform: uppercase;
  font-weight: 700;
}

.stat-card-desc {
  font-size: 12px;
  color: #AAAAAA;
  margin-top: 6px;
  line-height: 1.5;
}

/* ─── PROJECTS ─── */
#projects {
  background: var(--black4);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.project-card {
  border: 2px solid rgba(var(--gold-rgb), 0.4);
  background: var(--black2);
  border-radius: 2px;
  padding: 24px;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}

.project-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  transition: height .4s;
}

.project-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(var(--gold-rgb), 0.15);
}

.project-card:hover::after {
  height: 100%;
}

.p-icon {
  width: 48px;
  height: 48px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: rgba(var(--gold-rgb), 0.1);
  font-size: 20px;
  margin-bottom: 16px;
}

.p-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: .06em;
}

.p-desc {
  font-size: 12px;
  color: #CCCCCC;
  line-height: 1.7;
}

.p-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 14px;
  transition: opacity .3s;
}

.project-card:hover .p-img {
  opacity: 1;
}

/* ─── DEBIT CARDS ─── */
#cards {
  background: var(--black2);
}

.cards-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card-tier {
  border: 2px solid rgba(var(--gold-rgb), 0.4);
  background: var(--black3);
  border-radius: 4px;
  padding: 28px;
  transition: all .4s;
}

.card-tier:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(var(--gold-rgb), 0.15);
}

.tier-badge {
  display: inline-block;
  font-family: 'Orbitron', monospace;
  font-size: 9px;
  letter-spacing: .2em;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
  font-weight: 700;
}

.tier-white {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.tier-gold {
  background: rgba(var(--gold-rgb), 0.2);
  color: var(--gold);
  border: 1px solid var(--gold);
}

.tier-black {
  background: rgba(255, 255, 255, 0.05);
  color: #DDDDDD;
  border: 1px solid #555;
}

.tier-global {
  background: rgba(100, 150, 220, 0.15);
  color: #7ab4f0;
  border: 1px solid #4080cc;
}

.tier-name {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.tier-sub {
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.tier-features {
  list-style: none;
}

.tier-features li {
  font-size: 12px;
  color: #DDDDDD;
  padding: 6px 0;
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tier-features li::before {
  content: '◆';
  font-size: 6px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── JOIN ─── */
#join {
  background: var(--black3);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.step-card {
  border: 2px solid rgba(var(--gold-rgb), 0.4);
  background: var(--black2);
  border-radius: 2px;
  padding: 32px 24px;
  text-align: center;
  transition: all .4s;
}

.step-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: rgba(var(--gold-rgb), 0.06);
}

.step-num {
  font-family: 'Orbitron', monospace;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(var(--gold-rgb), 0.2);
  margin-bottom: 12px;
}

.step-title {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: .1em;
  font-weight: 700;
}

.step-desc {
  font-size: 12px;
  color: #CCCCCC;
  line-height: 1.7;
}

.step-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
}

/* ─── INVESTMENT ─── */
#investment {
  background: var(--black4);
  position: relative;
  overflow: hidden;
}

.inv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}

.inv-left {
  flex: 1;
  min-width: 260px;
  display: flex;
  justify-content: center;
}

.inv-card-wrap {
  position: relative;
  width: 300px;
}

.inv-card-bg1 {
  position: absolute;
  top: 18px;
  left: 18px;
  right: -18px;
  bottom: -18px;
  background: rgba(var(--gold-rgb), 0.1);
  border: 2px solid rgba(var(--gold-rgb), 0.3);
  border-radius: 16px;
}

.inv-card-bg2 {
  position: absolute;
  top: 9px;
  left: 9px;
  right: -9px;
  bottom: -9px;
  background: rgba(var(--gold-rgb), 0.15);
  border: 2px solid rgba(var(--gold-rgb), 0.5);
  border-radius: 16px;
}

.inv-right {
  flex: 1;
  min-width: 260px;
}

.feature-list {
  list-style: none;
  margin: 20px 0 30px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #DDDDDD;
  padding: 7px 0;
}

.feature-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.exchange-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: var(--black2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  border: 2px solid rgba(var(--gold-rgb), 0.4);
  background: var(--black3);
  border-radius: 2px;
  padding: 28px;
  transition: all .4s;
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(var(--gold-rgb), 0.1);
}

.quote-mark {
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: .8;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 13px;
  color: #CCCCCC;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--black);
  font-size: 14px;
}

.author-name {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
}

.author-role {
  font-size: 11px;
  color: var(--gold);
  margin-top: 2px;
  font-weight: 600;
}

.stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  padding: 60px 20px 0;
  border-top: 2px solid var(--gold);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 12px;
  color: #AAAAAA;
  line-height: 1.8;
  margin: 16px 0;
}

.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  font-weight: 700;
}

.footer-link {
  color: #CCCCCC;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .03em;
  transition: color .2s;
  display: block;
  padding: 4px 0;
}

.footer-link:hover {
  color: var(--gold);
}

.contract-box {
  margin-top: 16px;
  padding: 10px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: rgba(var(--gold-rgb), 0.05);
}

.contract-label {
  font-size: 8px;
  color: #888888;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contract-val {
  font-size: 9px;
  color: var(--gold);
  font-family: 'Orbitron', monospace;
  word-break: break-all;
}

.footer-bottom {
  border-top: 2px solid var(--gold);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom-text {
  font-size: 10px;
  color: #888888;
  letter-spacing: .05em;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-link {
  font-size: 10px;
  color: #888888;
  text-decoration: none;
  transition: color .2s;
}

.footer-bottom-link:hover {
  color: var(--gold);
}

.footer-infra {
  font-family: 'Orbitron', monospace;
  font-size: 8px;
  color: #555555;
  letter-spacing: .2em;
}

/* ─── IMAGE STRIP ─── */
.img-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}

.img-strip-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.img-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.img-strip-item:hover img {
  transform: scale(1.06);
}

.img-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85));
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.img-strip-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .1em;
  font-weight: 700;
}

/* Corner decorations */
.corner-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
}

.corner-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
}

/* HERO COLLAGE */
.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  width: 100%;
  max-width: 420px;
}

.hc-img {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  
}

.hc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hc-img:first-child {
  grid-column: 1/-1;
}

.hc-img:first-child img {
  height: 200px;
}

.hc-img:not(:first-child) img {
  height: 130px;
}

.hc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 10px 12px;
}

.hc-label {
  font-family: 'Orbitron', monospace;
  font-size: 8px;
  letter-spacing: .15em;
  color: var(--gold);
  font-weight: 700;
}

/* FADE UP */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* GLOW ORBS */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.07) 0%, transparent 70%);
}

/* ─── MOBILE ─── */
@media(max-width: 768px) {

  .hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
 flex-direction: column-reverse !important;
  gap: 48px;
  align-items: center;
}

    .card {
    width: 380px;
    height: auto !important;
    }

  .nav-links,
  .btn-gold.desktop-only {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #home {
    padding: 70px 16px 50px;
    min-height: auto;
  }

  .hero-inner {
    gap: 32px;
  }

  .hero-left,
  .hero-right {
    min-width: 0;
    width: 100%;
  }

  .hero-right {
    align-items: center;
  }

  .hero-collage {
    display: none;
  }

  .card-slider-wrapper {
    max-width: 100% !important;
  }

  .section {
    padding: 50px 16px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 8px;
  }

  .about-visual {
    padding: 15px !important;
    min-width: 0;
    width: 100%;
  }

  .about-visual-bg {
    font-size: 1.6rem;
  }

  .inv-card-wrap {
    width: 100%;
    max-width: 300px;
  }

  .stats-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-big {
    font-size: 1.8rem;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .topbar-left a:last-child {
    display: none;
  }
}

@media(max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-desc {
    font-size: 14px;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .stat-box {
    padding: 14px 6px;
  }

  .stat-num {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 7px;
  }

  .stats-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-showcase {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns a {
    text-align: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pay-card {
    padding: 16px;
  }

  .section-title {
    font-size: 1.4rem;
  }
}

.nav-logo-img {
  width: 120px;
  object-fit: contain;
}


 .card-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
    min-height: 360px;
  }
  .card {
    width: 380px;
    height: 240px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 60%, #1c1500 100%);
    border-radius: 18px;
    border: 1.5px solid #c9920055;
    position: relative;
    padding: 24px 28px;
    box-sizing: border-box;
    font-family: 'Rajdhani', sans-serif;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 0 0 1px #2a2000, 0 24px 48px rgba(0,0,0,0.8), inset 0 1px 0 rgba(201,146,0,0.15);
  }
  .card:hover { transform: scale(1.03) rotate(-0.5deg); }
  .card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,146,0,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .card::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,146,0,0.05) 0%, transparent 70%);
    pointer-events: none;
  }
  .card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
  }
  .brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #c99200;
    letter-spacing: 3px;
  }
  .tier {
    font-size: 11px;
    font-weight: 600;
    color: #b07c00;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 2px;
  }
  .chip {
    width: 42px;
    height: 32px;
    background: linear-gradient(145deg, #c99200, #7a5900, #c99200);
    border-radius: 6px;
    position: relative;
    border: 1px solid #e5aa00;
    margin-bottom: 14px;
  }
  .chip::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 28px; height: 20px;
    border: 1px solid rgba(0,0,0,0.4);
    border-radius: 3px;
  }
  .chip-line {
    position: absolute;
    background: rgba(0,0,0,0.3);
  }
  .chip-h { width: 100%; height: 1px; top: 50%; left: 0; }
  .chip-v { height: 100%; width: 1px; left: 50%; top: 0; }
  .card-number {
    font-size: 15px;
    letter-spacing: 3px;
    color: #d4a800;
    font-weight: 600;
    margin-bottom: 14px;
  }
  .card-number span { color: #9a7500; margin-right: 2px; }
  .card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .holder-label {
    font-size: 9px;
    letter-spacing: 2px;
    color: #6a5200;
    text-transform: uppercase;
    margin-bottom: 2px;
  }
  .holder-name {
    font-size: 14px;
    font-weight: 700;
    color: #c99200;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  .expiry { text-align: right; }
  .expiry .holder-label { text-align: right; }
  .expiry .holder-name { font-size: 13px; }
  .visa-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #c99200;
    letter-spacing: 2px;
    font-style: italic;
  }
  .shine {
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(201,146,0,0.06) 50%, transparent 70%);
    pointer-events: none;
    transition: left 0.6s ease;
  }
  .card:hover .shine { left: 130%; }
  .grid-lines {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
      linear-gradient(rgba(201,146,0,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,146,0,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    border-radius: 18px;
    pointer-events: none;
  }


  .loader-bg {
    background: #0a0a00;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
  }
  .grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(201,146,0,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,146,0,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
  }
  .glow-orb {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,146,0,0.12) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: pulse 2.5s ease-in-out infinite;
  }
  @keyframes pulse {
    0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%,-50%) scale(1.2); opacity: 1; }
  }
  .loader-ring-wrap {
    position: relative;
    width: 110px; height: 110px;
    margin-bottom: 24px;
  }
  .ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
  }
  .ring-outer {
    inset: 0;
    border-top-color: #c99200;
    border-right-color: rgba(201,146,0,0.3);
    animation: spin 1.4s linear infinite;
  }
  .ring-mid {
    inset: 12px;
    border-top-color: transparent;
    border-bottom-color: #e5aa00;
    border-left-color: rgba(229,170,0,0.3);
    animation: spin 1s linear infinite reverse;
  }
  .ring-inner {
    inset: 26px;
    border-top-color: #c99200;
    border-right-color: transparent;
    border-bottom-color: rgba(201,146,0,0.4);
    animation: spin 0.7s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }
  .logo-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo-icon {
    width: 34px; height: 34px;
    animation: pulse-logo 2s ease-in-out infinite;
  }
  @keyframes pulse-logo {
    0%,100% { opacity: 0.7; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
  }
  .brand-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #c99200;
    letter-spacing: 6px;
    margin-bottom: 6px;
    position: relative;
  }
  .sub-text {
    font-size: 11px;
    letter-spacing: 4px;
    color: #6a5200;
    text-transform: uppercase;
    margin-bottom: 28px;
    position: relative;
  }
  .dots-row {
    display: flex;
    gap: 8px;
    position: relative;
  }
  .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #c99200;
    animation: blink 1.4s ease-in-out infinite;
  }
  .dot:nth-child(2) { animation-delay: 0.2s; background: #e5aa00; }
  .dot:nth-child(3) { animation-delay: 0.4s; background: #c99200; }
  .dot:nth-child(4) { animation-delay: 0.6s; background: #8a6500; }
  @keyframes blink {
    0%,80%,100% { transform: scale(1); opacity: 0.4; }
    40% { transform: scale(1.5); opacity: 1; }
  }
  .ticker {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 28px;
    background: #c99200;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .ticker-inner {
    display: flex;
    gap: 0;
    animation: marquee 14s linear infinite;
    white-space: nowrap;
  }
  @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  .ticker-item {
    font-family: 'Rajdhani', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #0a0800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0 18px;
  }
  .ticker-dot {
    color: #3a2800;
    font-size: 14px;
    line-height: 1;
  }
  .progress-bar-wrap {
    width: 180px;
    height: 2px;
    background: rgba(201,146,0,0.15);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
  }
  .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #8a6500, #c99200, #e5aa00, #c99200);
    background-size: 200% 100%;
    border-radius: 2px;
    animation: progress-shimmer 1.8s ease-in-out infinite;
    width: 100%;
  }
  @keyframes progress-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  /* ─── LOADER FULLSCREEN OVERLAY ─── */
.loader-bg {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0a00;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  overflow: hidden;
  border-radius: 0;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-bg.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


.eid-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.eid-popup-box {
  background: #252529;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  max-width: 450px;
  width: 100%;
  position: relative;
  animation: fadeIn 0.4s ease;
}

.eid-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: red;
  border: none;
  color: #fff;
  padding: 5px 8px;
  border-radius: 50%;
  cursor: pointer;
}

@keyframes fadeIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
