/* ===================================================
   SWARNA SAKHI – Premium Landing Page
   Design System & All Styles
   =================================================== */

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #E2BC51;
  --gold-light: #F9E29B;
  --gold-dark: #A67C00;
  --gold-dim: rgba(226, 188, 81, 0.15);
  --gold-shimmer: linear-gradient(
    90deg,
    rgba(226, 188, 81, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(226, 188, 81, 0) 100%
  );
  --violet: #0f051a;
  --violet-mid: #1d0b36;
  --violet-light: #2d1457;
  --purple: #7b2cbf;
  --purple-glow: rgba(123, 44, 191, 0.4);
  --white: #FFFFFF;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-20: rgba(255, 255, 255, 0.08);
  --white-10: rgba(255, 255, 255, 0.05);
  --dark-bg: #0d0618;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.10);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-gold: 0 0 40px rgba(255, 215, 0, 0.25);
  --shadow-purple: 0 0 60px rgba(106, 31, 194, 0.3);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--dark-bg);
  background-image: radial-gradient(ellipse at 60% 0%, #3d1b72 0%, #1a0a2e 55%, #0d0618 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.glass-panel-gold {
  background: rgba(226, 188, 81, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 188, 81, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(226, 188, 81, 0.05);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--violet);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 6, 24, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.12);
  padding: 8px 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.brand-logo {
  height: 80px; /* Reduced from 114px */
  width: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .brand-logo {
    height: 60px;
  }
}

.navbar.scrolled .brand-logo {
  height: 48px;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo .brand-logo {
  height: 114px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-70);
  transition: var(--transition);
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.nav-links li a:hover {
  color: var(--white);
}

.nav-links li a:hover::after {
  transform: scaleX(1);
}

.btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--violet) !important;
  padding: 9px 22px !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn-nav::after {
  display: none !important;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.45) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  min-height: 100vh;
  background: transparent;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 60px;
}

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float-orb 8s ease-in-out infinite;
}

.orb1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #5a189a 0%, transparent 70%);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.orb2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #9d4edd 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  animation-delay: -3s;
  opacity: 0.2;
}

.orb3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: 30%;
  left: 60%;
  animation-delay: -5s;
  opacity: 0.1;
}

.orb4 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ff0054 0%, transparent 70%);
  bottom: 20%;
  right: 10%;
  filter: blur(100px);
  opacity: 0.15;
  animation: float-orb 10s ease-in-out infinite reverse;
}

@keyframes float-orb {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(226, 188, 81, 0.08);
  border: 1px solid rgba(226, 188, 81, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
  width: fit-content;
  max-width: 100%;
  animation: fade-in-up 0.6s ease both;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-shimmer);
  animation: shimmer 5s infinite;
  opacity: 0.3;
}

.badge-star {
  font-size: 1.1rem;
}

.badge-text {
  line-height: 1.3;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
  animation: fade-in-up 0.7s 0.1s ease both;
}

.title-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(226, 188, 81, 0.2));
}

.title-white {
  color: var(--white);
  opacity: 0.95;
}

.title-red {
  background: linear-gradient(135deg, #ff4d4d 0%, #b30000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  filter: drop-shadow(0 2px 15px rgba(179, 0, 0, 0.3));
}

.title-gradient {
  background: linear-gradient(135deg, var(--gold) 20%, #ff9800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--white-70);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
  animation: fade-in-up 0.7s 0.2s ease both;
}

.hero-subtitle strong {
  color: var(--gold);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fade-in-up 0.7s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--violet);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(226, 188, 81, 0.4);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  font-family: var(--font-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-shimmer);
  animation: shimmer 3s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(226, 188, 81, 0.5);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.25) 100%);
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(255, 215, 0, 0.55);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-dim);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  margin-top: 56px;
  width: fit-content;
  animation: fade-in-up 0.7s 0.4s ease both;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--card-border);
}

/* PHONE MOCKUP */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fade-in-up 0.8s 0.2s ease both;
  perspective: 1200px;
}

.phone-stack {
  position: relative;
  width: 320px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: absolute;
  width: 260px;
  transition: var(--transition);
}

.phone-center {
  z-index: 3;
  width: 280px;
}

.phone-left {
  z-index: 1;
  transform: translateX(-160px) scale(0.85) rotateY(15deg);
  opacity: 0.6;
  filter: brightness(0.65);
}

.phone-right {
  z-index: 2;
  transform: translateX(160px) scale(0.85) rotateY(-15deg);
  opacity: 0.8;
  filter: brightness(0.8);
}

.phone-outer-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.5;
  }
}

.phone-frame {
  width: 100%;
  background: #f9f9f9;
  border-radius: 40px;
  padding: 8px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1.5px rgba(255, 215, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
  animation: float-phone 5s ease-in-out infinite;
}

.phone-center .phone-frame {
  animation-delay: 0s;
}

.phone-left .phone-frame {
  animation-delay: 1.5s;
}

.phone-right .phone-frame {
  animation-delay: 0.8s;
}

@keyframes float-phone {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.phone-notch {
  width: 90px;
  height: 10px;
  background: #0d0618;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 8px;
}

.phone-screen {
  border-radius: 30px;
  overflow: hidden;
  background: #1a0a2e;
}

.phone-img {
  width: 100%;
  height: auto;
  display: block;
}

/* FLOATING CARDS */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  z-index: 3;
}

.float-icon {
  font-size: 1.4rem;
}

.float-info {
  display: flex;
  flex-direction: column;
}

.float-title {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
}

.float-value {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 700;
}

.up {
  color: #00e87a;
  font-size: 0.78rem;
}

.card1 {
  top: 15%;
  left: -120px;
  animation: float-card 4s ease-in-out infinite;
}

.card2 {
  bottom: 25%;
  left: -130px;
  animation: float-card 4s 1.5s ease-in-out infinite;
}

.card3 {
  top: 45%;
  right: -150px;
  animation: float-card 4s 0.8s ease-in-out infinite;
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.hero-wave svg {
  width: 100%;
  height: 60px;
}

/* ===================================================
   TICKER
   =================================================== */
.ticker-section {
  background: rgba(15, 5, 26, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(226, 188, 81, 0.2);
  border-bottom: 1px solid rgba(226, 188, 81, 0.2);
  position: relative;
  z-index: 10;
}

.ticker-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.ticker-label {
  background: #e11d48;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-left: 20px;
  flex-shrink: 0;
  letter-spacing: 1px;
  z-index: 2;
}

.ticker-track {
  display: flex;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
  gap: 0;
}

.ticker-item {
  padding: 0 40px;
  font-size: 0.85rem;
  white-space: nowrap;
  color: var(--white-70);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.tick-up {
  color: #00e87a;
  font-weight: 700;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===================================================
   TRUST BAR
   =================================================== */
.trust-bar {
  padding: 40px 0;
  background: transparent;
}

.trust-bar-label {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 24px;
}

.trust-logos-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.05); /* Removed flat white */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px 60px;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 40px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.trust-logos-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(226, 188, 81, 0.1) 0%, transparent 70%);
}

/* Adjusting brand colors to pop on dark glass */
.brand-npci, .brand-startup, .brand-payu {
  filter: brightness(0) invert(1) opacity(0.8);
  transition: var(--transition);
}

.brand-wrapper {
  filter: brightness(0) invert(1) opacity(0.8);
  transition: var(--transition);
}

.brand-npci:hover, .brand-startup:hover, .brand-payu:hover, .brand-wrapper:hover {
  filter: brightness(0) invert(1) opacity(1);
  transform: translateY(-2px);
}

.bis-icon path { stroke: white; }
.bis-text b, .bis-text span { color: white; opacity: 0.8; }

.brand-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* NPCI */
.brand-npci {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: Arial, sans-serif;
  color: #1e3a8a;
  font-size: 1.8rem;
  letter-spacing: -1px;
}

.brand-npci i {
  font-style: italic;
  font-weight: 800;
}

.npci-arrow {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

/* UPI */
.brand-upi {
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  color: #64748b;
  font-size: 2rem;
  line-height: 1;
}

.brand-upi i {
  font-style: italic;
  font-weight: 900;
  letter-spacing: -2px;
}

.upi-arrows {
  font-style: normal;
  font-size: 1.2rem;
  color: #16a34a;
  margin-left: -2px;
  transform: scaleX(0.7);
  display: inline-block;
}

.upi-sub {
  font-size: 0.45rem;
  color: #94a3b8;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Startup India */
.brand-startup {
  font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e3a8a;
  display: flex;
  align-items: center;
}

.st-hash,
.st-in {
  color: #ea580c;
}

.brand-startup::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border-bottom: 3px solid #16a34a;
  border-right: 3px solid #16a34a;
  margin-left: 2px;
  transform: translateY(4px);
}

/* BIS */
.bis-wrapper {
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.bis-icon {
  width: 36px;
  height: 36px;
}

.bis-text {
  display: flex;
  flex-direction: column;
}

.bis-text b {
  font-size: 0.65rem;
  color: #1e293b;
  line-height: 1.2;
}

.bis-text span {
  font-size: 0.45rem;
  color: #64748b;
  line-height: 1.2;
}

/* PayU */
.brand-payu {
  font-family: Arial, sans-serif;
  font-size: 1.8rem;
  color: #84cc16;
}

.brand-payu b {
  color: #65a30d;
}

.payu-square {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #65a30d;
  margin-left: 2px;
  transform: translateY(-8px);
}

/* ===================================================
   SECTION SHARED
   =================================================== */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius-xl);
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold) 20%, #ff9800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================================================
   FEATURES
   =================================================== */
.features {
  background: var(--dark-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.06), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.15);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card.featured {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(106, 31, 194, 0.15) 100%);
  border-color: rgba(255, 215, 0, 0.3);
}

.feature-badge-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--violet);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-xl);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-icon-wrap {
  margin-bottom: 20px;
}

.feature-icon {
  font-size: 2.4rem;
  display: inline-block;
  animation: wobble 4s ease-in-out infinite;
}

@keyframes wobble {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-5deg);
  }

  75% {
    transform: rotate(5deg);
  }
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================================================
   HOW IT WORKS
   =================================================== */
.how-it-works {
  background: radial-gradient(ellipse at center, #1e0840 0%, var(--dark-bg) 70%);
}

.how-it-works .container {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "header header"
    "steps visual";
  gap: 60px;
  align-items: center;
}

.how-it-works .section-header {
  grid-area: header;
  text-align: left;
  margin-bottom: 0;
}

.steps-container {
  grid-area: steps;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 215, 0, 0.12);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
  font-family: var(--font-display);
}

.step-content {
  padding-bottom: 48px;
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 340px;
}

.step-connector {
  position: absolute;
  left: 30px;
  top: 80px;
  width: 2px;
  height: calc(100% - 30px);
  background: linear-gradient(to bottom, rgba(255, 215, 0, 0.3), transparent);
}

/* HIW PHONE */
.hiw-visual {
  grid-area: visual;
  display: flex;
  justify-content: center;
}

.hiw-phone-wrap {
  position: relative;
  width: 240px;
}

.hiw-phone-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: pulse-glow 3s 1s ease-in-out infinite;
}

.hiw-phone-frame {
  width: 240px;
  background: #1a0a2e;
  border-radius: 36px;
  border: 2px solid rgba(255, 215, 0, 0.25);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6);
  animation: float-phone 5s 1s ease-in-out infinite;
  position: relative;
}

.hiw-phone-notch-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.hiw-phone-notch {
  height: 10px;
  background: #0d0618;
  width: 70px;
  border-radius: 0 0 10px 10px;
  margin: 0 auto;
}

.hiw-phone-slider {
  display: flex;
  width: 300%;
  animation: slide-screenshots 10s infinite ease-in-out;
}

.hiw-phone-img {
  width: 33.3333%;
  height: auto;
  display: block;
}

@keyframes slide-screenshots {

  0%,
  25% {
    transform: translateX(0);
  }

  33.33%,
  58.33% {
    transform: translateX(-33.3333%);
  }

  66.66%,
  91.66% {
    transform: translateX(-66.6666%);
  }

  100% {
    transform: translateX(0);
  }
}

/* ===================================================
   STATS SECTION
   =================================================== */
.stats-section {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1457 50%, #1a0a2e 100%);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.stats-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.stats-prefix {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stats-counter {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  font-family: var(--font-display);
  display: inline;
}

.stats-suffix {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: inline;
}

.stats-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 10px;
}

/* ===================================================
   TRUST SECTION
   =================================================== */
.trust-section {
  background: var(--dark-bg);
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trust-text .section-tag {
  text-align: left;
}

.trust-text .section-title {
  text-align: left;
}

.trust-text>p {
  color: var(--text-secondary);
  margin: 20px 0 32px;
  line-height: 1.75;
  font-size: 0.95rem;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.trust-item strong {
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}

.trust-check {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--violet);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.trust-cards-visual {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-card-big {
  background: linear-gradient(135deg, rgba(45, 20, 87, 0.8), rgba(26, 10, 46, 0.9));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(20px);
  position: relative;
  width: 280px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: float-card 5s ease-in-out infinite;
  z-index: 2;
}

.tc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.tc-icon {
  font-size: 1.2rem;
}

.tc-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-display);
}

.tc-sub {
  font-size: 0.75rem;
  color: #00e87a;
  margin: 4px 0 20px;
}

.tc-bar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.tc-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.tc-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.tc-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease;
}

.tc-gold {
  background: linear-gradient(90deg, var(--gold), #ff9800);
}

.tc-silver {
  background: linear-gradient(90deg, #c0c0c0, #888);
}

.tc-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.trust-mini-card {
  position: absolute;
  background: rgba(26, 10, 46, 0.85);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.tmc-icon {
  font-size: 1.6rem;
}

.tmc-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

#trust-mini-1 {
  bottom: 40px;
  left: calc(50% - 220px);
  animation: float-card 4s 2s ease-in-out infinite;
}

#trust-mini-2 {
  top: 40px;
  left: calc(50% + 40px);
  animation: float-card 4s 1s ease-in-out infinite;
}

/* ===================================================
/* ===================================================
   COMPARISON SECTION
   =================================================== */
.comparison {
  background: radial-gradient(ellipse at center, #1e0840 0%, var(--dark-bg) 70%);
}

.comparison .section-header {
  margin-bottom: 56px;
  text-align: center;
}

.comparison .section-subtitle {
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.comparison .section-title {
  color: var(--white);
  font-family: var(--font-display);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 64px;
}

.compare-card {
  padding: 40px 24px;
  border-radius: 4px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.compare-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
}

.cc-savings {
  background: linear-gradient(135deg, #2bbba9, #1b6389);
}

.cc-fd {
  background: linear-gradient(135deg, #c74c5c, #942f40);
}

.cc-gold {
  background: linear-gradient(135deg, #eec56c, #be8d36);
}

.cc-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.cc-value {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.compare-cta {
  text-align: center;
}

.compare-cta-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
}

.compare-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--violet);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 16px 48px;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.compare-btn:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* ===================================================
   DOWNLOAD CTA
   =================================================== */
.download-cta {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1457 50%, #1a0a2e 100%);
  position: relative;
  overflow: hidden;
}

.download-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dl-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.dl-orb1 {
  width: 400px;
  height: 400px;
  background: #7a3200;
  top: -100px;
  left: -100px;
}

.dl-orb2 {
  width: 300px;
  height: 300px;
  background: var(--purple);
  bottom: -50px;
  right: 100px;
}

.download-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.download-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  font-family: var(--font-display);
  margin-bottom: 20px;
}

.download-text>p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}

.download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.apple-btn {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.apple-btn:hover {
  background: #111;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.google-btn {
  background: linear-gradient(135deg, #34a853, #4285f4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.google-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(52, 168, 83, 0.4);
}

.dl-btn-text {
  display: flex;
  flex-direction: column;
}

.dl-small {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.dl-large {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
}

.download-offer {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  max-width: fit-content;
}

.offer-badge {
  font-size: 1.4rem;
}

.offer-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.offer-text strong {
  color: var(--gold);
}

.qr-container {
  text-align: center;
}

.qr-box {
  background: #1a0a2e;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 16px;
  display: inline-block;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.qr-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.4);
}

.qr-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-weight: 500;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--violet);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-brand>p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: var(--white-20);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--gold-dim);
  border-color: rgba(255, 215, 0, 0.4);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-links-group h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-group ul li a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links-group ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 0.72rem !important;
  color: rgba(255, 255, 255, 0.25) !important;
}

/* ===================================================
   COMING SOON MODAL
   =================================================== */
.cs-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 6, 24, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  perspective: 1200px;
}

.cs-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cs-modal-card {
  background: linear-gradient(135deg, #2d1457, #1a0a2e);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: rotateX(70deg) translateY(40px);
  opacity: 0;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
}

.cs-modal-overlay.active .cs-modal-card {
  transform: rotateX(0deg) translateY(0);
  opacity: 1;
}

.cs-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.cs-modal-close:hover {
  color: var(--gold);
  transform: scale(1.15) rotate(90deg);
}

.cs-modal-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: float-icon 3s ease-in-out infinite;
}

.cs-modal-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.2;
}

.cs-modal-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.cs-modal-gold-line {
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin: 0 auto;
  border-radius: 2px;
}

/* ===================================================
   BACK TO TOP
   =================================================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--violet);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 215, 0, 0.55);
}

/* ===================================================
   ANIMATIONS
   =================================================== */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   RESPONSIVE / MOBILE
   =================================================== */
@media (max-width: 1024px) {

  /* In mobile, ensure hero text is strictly on top of visuals */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
    z-index: 10;
  }

  .hero-visual {
    order: 2;
    z-index: 5;
    margin-top: -20px;
  }

  .hero-subtitle {
    margin: 0 auto 36px;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-badge {
    margin: 0 auto 24px;
    justify-content: center;
    text-align: center;
    padding: 8px 14px;
  }

  .badge-text {
    font-size: 0.8rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compare-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 48px;
  }

  .trust-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .trust-cards-visual {
    height: 320px;
  }

  .download-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .download-text>p {
    margin: 0 auto 36px;
  }

  .download-buttons {
    justify-content: center;
  }

  .download-offer {
    margin: 0 auto;
  }

  .trust-logos-custom {
    padding: 16px 24px;
    gap: 32px;
    border-radius: var(--radius-md);
  }

  /* Scale down trust logos on small mobile */
  .brand-npci { font-size: 1.4rem; }
  .brand-upi { font-size: 1.5rem; }
  .brand-startup { font-size: 1.2rem; }
  .bis-text { font-size: 0.6rem; }
  .brand-payu { font-size: 1.4rem; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .how-it-works .container {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "steps" "visual";
  }

  .hiw-visual {
    justify-content: flex-start;
  }

  .card1 {
    left: -40px;
  }

  .card2 {
    left: -35px;
  }

  .card3 {
    right: -25px;
  }

  .phone-left {
    transform: translateX(-120px) scale(0.85) rotateY(15deg);
  }

  .phone-right {
    transform: translateX(120px) scale(0.85) rotateY(-15deg);
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  /* NAV */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 6, 24, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    font-size: 1.2rem;
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: 999;
    backdrop-filter: blur(20px);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li a {
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* HERO */
  .hero {
    padding: 120px 0 80px;
  }

  .phone-mockup {
    width: 180px;
  }

  .phone-left,
  .phone-right {
    display: block;
  }

  .phone-left {
    transform: translateX(-100px) scale(0.85) rotateY(15deg);
  }

  .phone-right {
    transform: translateX(100px) scale(0.85) rotateY(-15deg);
  }

  .phone-stack {
    height: auto;
    min-height: 400px;
    width: 100%;
    padding: 20px 0;
  }

  .phone-center {
    width: 200px;
  }

  .phone-frame {
    width: 100%;
  }

  .card1,
  .card2,
  .card3 {
    display: none;
  }

  /* FEATURES */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* STATS */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .trust-cards-visual {
    display: none;
  }

  .trust-layout {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 12px;
    width: 100%;
    max-width: 360px;
    margin: 3.5rem auto 0;
  }

  .stat-item {
    flex: 1;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.65rem;
    white-space: nowrap;
  }

  .stat-divider {
    height: 30px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }

  .step-content p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .badge-text {
    font-size: 0.85rem;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
    margin-bottom: 1.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 10px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .download-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-logos {
    gap: 12px;
  }

  .trust-logos {
    gap: 12px;
  }
}

/* ===================================================
   INITIAL LOADER
   =================================================== */
.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.loader-logo {
  height: 260px;
  width: auto;
  margin-bottom: 0px;
  animation: pulse-logo 2s ease-in-out infinite;
}

.gold-coin {
  width: 54px;
  height: 54px;
  background: radial-gradient(circle at 30% 30%, #FFE566, #ff9800);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 15px rgba(255, 215, 0, 0.4),
    inset 0 0 10px rgba(0, 0, 0, 0.2);
  animation: flip-coin-fast 0.6s linear infinite;
  transform-style: preserve-3d;
  position: relative;
}

.coin-inner {
  color: #1a0a2e;
  font-weight: 900;
  font-size: 1.8rem;
  font-family: Arial, sans-serif;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}

.gold-coin::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: transparent;
  border: 3px solid var(--gold-dark);
  transform: translateZ(-1px);
}

@keyframes pulse-logo {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px var(--gold));
    opacity: 1;
  }

  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    opacity: 0.9;
  }
}

@keyframes flip-coin-fast {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}