/* =============================================
   HACHIKINPAY — Premium B2B BBPS Fintech CSS
   Luxury Black & Gold Theme
   ============================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --gold-light: #F7D774;
  --gold-mid:   #E8C04A;
  --gold-dark:  #D89B2B;
  --gold-deep:  #B8811A;
  --orange:     #FF7A00;
  --black:      #0B0B0B;
  --dark-1:     #181819;
  --dark-2:     #161616;
  --dark-3:     #1C1C1C;
  --dark-4:     #242424;
  --dark-5:     #2E2E2E;
  --white:      #F5F5F5;
  --white-soft: #E0E0E0;
  --muted:      #888888;
  --muted-2:    #666666;

  --gradient-gold: linear-gradient(135deg, #cda74c 0%, #ffb259 60%, #ff351a 100%);
  --gradient-gold-h: linear-gradient(90deg, #cda74c, #D89B2B);
  --gradient-dark: linear-gradient(135deg, #0B0B0B 0%, #161616 100%);
  --gradient-hero: linear-gradient(135deg, #0B0B0B 0%, #120d00 50%, #0B0B0B 100%);
  --glass-bg: rgba(255,255,255,0.03);
  --glass-border: rgba(247,215,116,0.15);
  --glass-border-hover: rgba(247,215,116,0.5);
  --shadow-gold: 0 0 30px rgba(247,215,116,0.2);
  --shadow-gold-heavy: 0 0 50px rgba(247,215,116,0.35);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.5);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden !important;
  line-height: 1.7;
}
body section{
  max-width: 100vw; overflow-x: hidden;
}
::selection { background: rgba(247,215,116,0.3); color: var(--white); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark-1); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 5px; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}
p { color: var(--muted); font-family: var(--font-body); }
a { text-decoration: none; color: inherit; }

/* ── Gold Text ── */
.text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-muted-custom { color: var(--muted); }

/* ── Section Helpers ── */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-mid);
  background: rgba(247,215,116,0.08);
  border: 1px solid rgba(247,215,116,0.2);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 540px;
  font-weight: 300;
  line-height: 1.8;
}

/* ── Buttons ── */
.btn-gold {
  background: var(--gradient-gold);
  color: var(--black) !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(216,155,43,0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s;
}
.btn-gold:hover::after { left: 150%; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(216,155,43,0.5); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light) !important;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: 1.5px solid rgba(247,215,116,0.5);
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-gold:hover {
  background: rgba(247,215,116,0.08);
  border-color: var(--gold-light);
  box-shadow: 0 0 20px rgba(247,215,116,0.15);
}

/* ═══════════════════ NAVBAR ═══════════════════ */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 8px 0;
  background:rgb(24 24 25);
  transition: background 0.4s, padding 0.3s, backdrop-filter 0.4s;
}
#mainNav.scrolled {
  background: rgb(24 24 25);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(247,215,116,0.1);
}
.nav-logo { height: 60px; width: auto; }
.navbar-nav .nav-link {
  color: var(--white-soft) !important;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 15px !important;
  border-radius: 8px;
  letter-spacing: 0.2px;
  transition: color 0.2s, background 0.2s;
}
.navbar-nav .nav-link:hover {
  color: var(--gold-light) !important;
  background: rgba(247,215,116,0.06);
}
.navbar-nav .nav-link.active { color: var(--gold-light) !important; }
.navbar-toggler { border: 1px solid rgba(247,215,116,0.3); border-radius: 8px; padding: 6px 10px; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23F7D774' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-collapse .btn-gold { font-size: 0.85rem; padding: 10px 24px; }

/* ═══════════════════ HERO ═══════════════════ */
#hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
/* Ambient glow blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: rgba(247,215,116,0.06);
  top: -100px; right: -100px;
}
.hero-blob-2 {
  width: 350px; height: 350px;
  background: rgba(255,122,0,0.04);
  bottom: 50px; left: -80px;
}
.hero-blob-3 {
  width: 250px; height: 250px;
  background: rgba(247,215,116,0.04);
  top: 40%; left: 40%;
  transform: translate(-50%,-50%);
}
/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247,215,116,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,215,116,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
/* Particles */
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,215,116,0.07);
  border: 1px solid rgba(247,215,116,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.76rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold-mid);
  border-radius: 50%;
  animation: eyebrowPulse 2s ease infinite;
}
@keyframes eyebrowPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(247,215,116,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(247,215,116,0); }
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 38px;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Float badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(247,215,116,0.15);
  border-radius: 10px;
  padding: 9px 16px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white-soft);
  backdrop-filter: blur(8px);
}
.hero-badge i { color: var(--gold-mid); font-size: 1rem; }

/* Hero visual */
.hero-visual { position: relative; z-index: 1; }
.dashboard-card {
  background: linear-gradient(135deg, rgba(28,28,28,0.9), rgba(18,13,0,0.85));
  border: 1px solid rgba(247,215,116,0.2);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), var(--shadow-gold);
}
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.dash-title { font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; color: var(--gold-light); }
.dash-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: dashPulse 2s ease infinite; }
@keyframes dashPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
.dash-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.dash-stat {
  background: rgba(247,215,116,0.05);
  border: 1px solid rgba(247,215,116,0.1);
  border-radius: var(--radius-md);
  padding: 16px;
}
.dash-stat-val {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}
.dash-stat-lbl { font-size: 0.72rem; color: var(--muted); margin-top: 5px; display: block; }
.dash-txn-list { list-style: none; }
.dash-txn-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dash-txn-item:last-child { border: none; }
.dash-txn-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.txn-icon-elec { background: rgba(247,215,116,0.1); color: var(--gold-mid); }
.txn-icon-gas  { background: rgba(255,122,0,0.1);  color: var(--orange); }
.txn-icon-dth  { background: rgba(139,92,246,0.1); color: #a78bfa; }
.txn-icon-water{ background: rgba(14,165,233,0.1); color: #38bdf8; }
.dash-txn-name { font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; color: var(--white-soft); }
.dash-txn-time { font-size: 0.7rem; color: var(--muted-2); }
.dash-txn-amount { margin-left: auto; font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; color: var(--gold-light); }
.dash-txn-status { font-size: 0.65rem; background: rgba(34,197,94,0.1); color: #4ade80; padding: 2px 8px; border-radius: 100px; margin-left: 6px; }

/* Floating mini-card */
.float-card {
  position: absolute;
  background: rgba(22,22,22,0.95);
  border: 1px solid rgba(247,215,116,0.2);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  backdrop-filter: blur(12px);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white-soft);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatCard 4s ease-in-out infinite;
}
.float-card i { color: var(--gold-mid); }
.float-card-1 { top: -20px; right: 20px; animation-delay: 0s; }
.float-card-2 { bottom: -10px; left: 10px; animation-delay: 1.5s; }
.float-card-3 { top: 40%; right: -30px; animation-delay: 0.8s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ═══════════════════ SERVICES ═══════════════════ */
#services { background: var(--dark-1); }
.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  height: 100%;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247,215,116,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-gold-heavy);
}
.service-card:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(247,215,116,0.1), rgba(247,215,116,0.04));
  border: 1px solid rgba(247,215,116,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-mid);
  margin-bottom: 20px;
  transition: background 0.3s, box-shadow 0.3s;
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, rgba(247,215,116,0.18), rgba(247,215,116,0.06));
  box-shadow: 0 0 24px rgba(247,215,116,0.25);
}
.service-card h5 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.service-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin: 0; }
.service-card .svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-mid);
  margin-top: 18px;
  transition: gap 0.2s;
}
.service-card:hover .svc-link { gap: 10px; }

/* ═══════════════════ WHY CHOOSE US ═══════════════════ */
#why { background: var(--dark-2); }
.why-card {
  background: linear-gradient(135deg, rgba(28,28,28,0.8), rgba(16,16,16,0.9));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  height: 100%;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247,215,116,0.4);
  box-shadow: var(--shadow-gold);
}
.why-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(247,215,116,0.08), rgba(247,215,116,0.03));
  border: 1px solid rgba(247,215,116,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-mid);
  margin: 0 auto 20px;
  transition: box-shadow 0.3s;
}
.why-card:hover .why-icon { box-shadow: 0 0 30px rgba(247,215,116,0.3); }
.why-card h5 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.84rem; color: var(--muted); margin: 0; }
.counter-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 4px;
  line-height: 1;
}

/* ═══════════════════ ABOUT ═══════════════════ */
#about { background: var(--dark-1); }
.about-stat {
  background: rgba(247,215,116,0.04);
  border: 1px solid rgba(247,215,116,0.12);
  border-radius: var(--radius-md);
  padding: 15px 10px;
  text-align: center;
}
.about-stat .num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}
.about-stat .lbl { font-size: 0.78rem; color: var(--muted); margin-top: 6px; display: block; }
.about-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-img-wrap {
  background: linear-gradient(135deg, #1C1C1C, #120d00);
  border: 1px solid rgba(247,215,116,0.15);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(247,215,116,0.06) 0%, transparent 70%);
}
.about-fintech-icon {
  font-size: 6rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(247,215,116,0.4));
  animation: iconBreathe 4s ease-in-out infinite;
}
@keyframes iconBreathe {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.about-mission-card {
  background: rgba(247,215,116,0.04);
  border: 1px solid rgba(247,215,116,0.12);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 14px;
  height: 100%;
}
.about-mission-card h6 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.about-mission-card p { font-size: 0.84rem; margin: 0; }

/* ═══════════════════ RETAILER / DISTRIBUTOR ═══════════════════ */
#retailer { background: var(--dark-2); }
.partner-card {
  background: linear-gradient(135deg, rgba(28,28,28,0.95), rgba(16,16,16,0.9));
  border: 1px solid rgba(247,215,116,0.2);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.partner-card:hover {
  border-color: rgba(247,215,116,0.5);
  box-shadow: var(--shadow-gold-heavy);
  transform: translateY(-4px);
}
.partner-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold-h);
}
.partner-chip {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.chip-gold { background: rgba(247,215,116,0.1); color: var(--gold-light); border: 1px solid rgba(247,215,116,0.25); }
.chip-orange { background: rgba(255,122,0,0.1); color: var(--orange); border: 1px solid rgba(255,122,0,0.25); }
.partner-card h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.partner-card > p { margin-bottom: 26px; font-size: 0.9rem; }
.benefit-list { list-style: none; margin: 0 0 28px; padding: 0; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.86rem;
  color: var(--muted);
}
.benefit-list li:last-child { border: none; }
.benefit-list li i { color: var(--gold-mid); font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; }

/* ═══════════════════ APP DOWNLOAD ═══════════════════ */
#app-download {
  background: linear-gradient(135deg, #0B0B0B 0%, #1a1000 50%, #0B0B0B 100%);
  position: relative;
  overflow: hidden;
}
#app-download::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(247,215,116,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.app-mockup {
  background: linear-gradient(160deg, #1C1C1C, #120d00);
  border: 1px solid rgba(247,215,116,0.2);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  position: relative;
}
.app-mockup .app-icon {
  font-size: 5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(247,215,116,0.4));
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 20px;
  font-family: var(--font-head);
  color: var(--white);
  transition: background 0.25s, border-color 0.25s;
  text-decoration: none;
  margin: 5px;
}
.store-btn:hover {
  background: rgba(247,215,116,0.08);
  border-color: rgba(247,215,116,0.3);
  color: var(--gold-light);
}
.store-btn i { font-size: 1.5rem; }
.store-btn-sub { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.store-btn-name { font-size: 0.95rem; font-weight: 700; }
.qr-box {
  background: white;
  width: 110px; height: 110px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 0.7rem;
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  text-align: center;
  padding: 8px;
  box-shadow: 0 0 20px rgba(247,215,116,0.2);
}
.app-feature { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.app-feature i { color: var(--gold-mid); font-size: 1.1rem; flex-shrink: 0; }
.app-feature p { font-size: 0.88rem; margin: 0; color: var(--muted); }

/* ═══════════════════ TESTIMONIALS ═══════════════════ */
#testimonials { background: var(--dark-1); }
.testimonial-card {
  background: linear-gradient(135deg, rgba(28,28,28,0.9), rgba(16,16,16,0.95));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  height: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(247,215,116,0.35);
  box-shadow: var(--shadow-gold);
}
.testi-stars { color: var(--gold-mid); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 0.9rem; color: var(--muted); font-style: italic; line-height: 1.8; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(247,215,116,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(247,215,116,0.15), rgba(247,215,116,0.05));
  color: var(--gold-light);
}
.testi-name { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--white); }
.testi-biz { font-size: 0.75rem; color: var(--muted); }

/* Testimonial slider controls */
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dark-5);
  border: none;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.testi-dot.active { background: var(--gold-mid); width: 24px; border-radius: 100px; }

/* ═══════════════════ FAQ ═══════════════════ */
#faq { background: var(--dark-2); }
.accordion-item {
  background: rgba(255,255,255,0.02) !important;
  border: 1px solid rgba(247,215,116,0.12) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-button {
  background: transparent !important;
  color: var(--white) !important;
  font-family: var(--font-head) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  padding: 20px 24px !important;
  box-shadow: none !important;
  transition: color 0.2s !important;
}
.accordion-button:not(.collapsed) {
  color: var(--gold-light) !important;
}
.accordion-button::after {
  filter: brightness(0) invert(0.7) sepia(1) saturate(3) hue-rotate(2deg) brightness(1.2);
}
.accordion-body {
  background: transparent !important;
  padding: 0 24px 20px !important;
  color: var(--muted) !important;
  font-size: 0.9rem !important;
  line-height: 1.75 !important;
}

/* ═══════════════════ CONTACT ═══════════════════ */
#contact { background: var(--dark-1); }
.contact-form-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(247,215,116,0.12);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-label-custom {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white-soft);
  margin-bottom: 8px;
  display: block;
}
.form-control-dark {
  background: rgba(255,255,255,0.04) !important;
  border: 1.5px solid rgba(247,215,116,0.12) !important;
  border-radius: 10px !important;
  color: var(--white) !important;
  font-size: 0.9rem !important;
  padding: 12px 16px !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}
.form-control-dark:focus {
  border-color: rgba(247,215,116,0.45) !important;
  box-shadow: 0 0 0 3px rgba(247,215,116,0.08) !important;
  outline: none !important;
  background: rgba(255,255,255,0.05) !important;
}
.form-control-dark::placeholder { color: var(--muted-2) !important; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(247,215,116,0.07);
  border: 1px solid rgba(247,215,116,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-mid);
  flex-shrink: 0;
}
.contact-info-title { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.contact-info-val { font-size: 0.85rem; color: var(--muted); }
.map-placeholder {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(247,215,116,0.1);
  border-radius: var(--radius-md);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 0.85rem;
  margin-top: 20px;
  gap: 10px;
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 26px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }

/* ═══════════════════ FOOTER ═══════════════════ */
footer {
  background: var(--dark-1);
  border-top: 1px solid rgba(247,215,116,0.08);
  padding: 70px 0 5px;
}
.footer-logo { height: 60px; width: auto; margin-bottom: 16px; }
.footer-desc { font-size: 0.85rem; color: var(--muted); max-width: 240px; line-height: 1.7; }
.footer-title { font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(247,215,116,0.5); margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.85rem; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(247,215,116,0.12);
  color: var(--muted);
  font-size: 1rem;
  transition: all 0.25s;
  margin-right: 8px;
  text-decoration: none;
}
.social-icons a:hover { background: rgba(247,215,116,0.1); border-color: rgba(247,215,116,0.35); color: var(--gold-light); }
.newsletter-input-wrap { position: relative; }
.newsletter-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(247,215,116,0.15);
  border-radius: 50px;
  padding: 12px 120px 12px 18px;
  color: var(--white);
  width: 100%;
  font-size: 0.85rem;
}
.newsletter-input:focus { outline: none; border-color: rgba(247,215,116,0.4); }
.newsletter-input::placeholder { color: var(--muted-2); }
.newsletter-btn {
  position: absolute;
  right: 4px; top: 4px;
  background: var(--gradient-gold);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.newsletter-btn:hover { box-shadow: 0 4px 16px rgba(216,155,43,0.4); }
.footer-divider { border-color: rgba(255,255,255,0.05); margin: 40px 0 24px; }
.footer-copy { font-size: 0.8rem; color: var(--muted-2); }

/* ═══════════════════ DIVIDER ═══════════════════ */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247,215,116,0.3), transparent);
  border: none;
  margin: 0;
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 991px) {
  .hero h1 { font-size: 2.4rem; }
  .float-card-3 { display: none; }
  .contact-form-wrap { padding: 28px 22px; }
}
@media (max-width: 767px) {
  #hero { padding: 100px 0 60px; }
  .hero h1 { font-size: 2rem; letter-spacing: -0.5px; }
  .hero-sub { font-size: 0.95rem; }
  .section-pad { padding: 70px 0; }
  .partner-card { padding: 30px 24px; }
  .hero-badges { gap: 8px; }
  .hero-badge { font-size: 0.72rem; padding: 7px 12px; }
}