/* ===========================
   A TO Z SHOP – style.css
   =========================== */

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

:root {
  --blue-dark:   #0a1628;
  --blue-mid:    #0d2045;
  --blue:        #1a56db;
  --blue-light:  #3b82f6;
  --accent:      #06b6d4;
  --gold:        #f59e0b;
  --wa-green:    #25D366;
  --wa-dark:     #128C7E;
  --white:       #ffffff;
  --off-white:   #f0f6ff;
  --text-main:   #1e293b;
  --text-muted:  #64748b;
  --border:      rgba(26,86,219,0.15);
  --card-bg:     #ffffff;
  --shadow:      0 4px 24px rgba(10,22,40,0.08);
  --shadow-lg:   0 16px 48px rgba(10,22,40,0.14);
  --radius:      16px;
  --radius-sm:   10px;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text-main); overflow-x: hidden; }

/* TYPOGRAPHY */
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; }
.brand-gradient { background: linear-gradient(135deg, var(--blue-light), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* REUSABLE */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge { display: inline-block; background: linear-gradient(135deg,#eff6ff,#e0f2fe); color: var(--blue); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 18px; border-radius: 100px; border: 1px solid rgba(26,86,219,0.2); margin-bottom: 16px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; color: var(--blue-dark); line-height: 1.15; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* BUTTONS */
.btn-primary { display: inline-block; padding: 14px 32px; background: linear-gradient(135deg, var(--blue), var(--blue-light)); color: #fff; font-weight: 600; font-size: 0.95rem; border-radius: 100px; text-decoration: none; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 20px rgba(26,86,219,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(26,86,219,0.45); }
.btn-wa { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: linear-gradient(135deg, var(--wa-green), #20b858); color: #fff; font-weight: 600; font-size: 0.93rem; border-radius: 100px; text-decoration: none; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.btn-know {
  width: 100%;
  padding: 11px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
  margin-top: 14px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}
.btn-know::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity .2s;
}
.btn-know:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,86,219,0.4);
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}
.btn-know:hover::after { opacity: 1; }
.btn-know:active { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(26,86,219,0.3); }
.tg-note { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 14px 0; transition: background .3s, box-shadow .3s, padding .3s; }
.navbar.scrolled { background: rgba(10,22,40,0.97); backdrop-filter: blur(20px); box-shadow: 0 2px 24px rgba(0,0,0,0.25); padding: 10px 0; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem; color: #fff; text-decoration: none; letter-spacing: -0.02em; }
.logo span { color: var(--accent); }
.logo-shop { font-size: 0.9rem; vertical-align: super; color: var(--gold); margin-left: 2px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--accent); }
.nav-links a.nav-active { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-wa { padding: 10px 20px; font-size: 0.82rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; display: block; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #050d1f 0%, #071830 35%, #0a2040 65%, #071428 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Layered background elements */
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.orb1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,86,219,0.45) 0%, transparent 70%);
  top: -220px; right: -120px;
  animation: orbFloat 9s ease-in-out infinite;
}
.orb2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.3) 0%, transparent 70%);
  bottom: -120px; left: -80px;
  animation: orbFloat 12s ease-in-out infinite 3s;
}
.orb3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, transparent 70%);
  top: 30%; left: 20%;
  animation: orbFloat 15s ease-in-out infinite 6s;
}
.orb4 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  top: 15%; left: 45%;
  animation: orbFloat 11s ease-in-out infinite 2s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(20px,-30px) scale(1.05); }
  66%      { transform: translate(-15px,20px) scale(0.95); }
}

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Particles canvas placeholder */
.hero-particles { position: absolute; inset: 0; }

/* ── LAYOUT ── */
.hero-wrapper {
  position: relative; z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 140px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ── LEFT ── */
.hero-left { display: flex; flex-direction: column; gap: 0; }

/* Animation system */
.hero-anim {
  opacity: 0;
  transform: translateY(32px);
  animation: heroReveal .75s cubic-bezier(.22,1,.36,1) both;
  animation-delay: var(--d, 0s);
}
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  color: #67e8f9;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: blinkDot 2s ease-in-out infinite;
}
@keyframes blinkDot {
  0%,100% { opacity: 1; box-shadow: 0 0 8px #22c55e; }
  50%      { opacity: 0.4; box-shadow: 0 0 2px #22c55e; }
}

/* Headline */
.hero-title {
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  line-height: 1.08;
}
.h-line { display: block; }
.h-brand {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #38bdf8 0%, #818cf8 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmerText 4s linear infinite;
}
@keyframes shimmerText {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.h-main {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}
.h-amp {
  background: linear-gradient(135deg, #f59e0b, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sub */
.hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #1a56db, #3b82f6);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(26,86,219,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform .25s, box-shadow .25s, background .25s;
  position: relative;
  overflow: hidden;
}
.hero-btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  opacity: 0;
  transition: opacity .25s;
  border-radius: inherit;
}
.hero-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(26,86,219,0.55); }
.hero-btn-primary:hover::before { opacity: 1; }
.hero-btn-primary span, .btn-arrow { position: relative; z-index: 1; }
.btn-arrow { transition: transform .25s; }
.hero-btn-primary:hover .btn-arrow { transform: translateX(4px); }

.hero-wa {
  padding: 15px 26px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  border-radius: 100px;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}
.hero-wa:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37,211,102,0.5); }

/* Telegram note */
.hero-tg {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 36px;
  font-family: 'Poppins', sans-serif;
}
.hero-tg strong { color: rgba(255,255,255,0.75); }

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-div {
  width: 1px; height: 38px;
  background: rgba(255,255,255,0.1);
}

/* ── RIGHT – Promo Card ── */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-ring {
  position: absolute;
  inset: -30px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(26,86,219,0.12), rgba(6,182,212,0.08), rgba(139,92,246,0.08));
  filter: blur(1px);
  border: 1px solid rgba(255,255,255,0.05);
  animation: ringPulse 4s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.01); }
}

.hero-promo-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 1px 0 rgba(255,255,255,0.15) inset;
  animation: cardSlideIn .85s cubic-bezier(.22,1,.36,1) both;
  animation-delay: .2s;
}
@keyframes cardSlideIn {
  from { opacity: 0; transform: translateX(40px) scale(0.97); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* Shimmer scan line */
.hero-promo-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -60%;
  width: 60%;
  height: 300%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
  animation: cardScan 5s ease-in-out infinite 2s;
  pointer-events: none;
  z-index: 10;
}
@keyframes cardScan {
  0%   { transform: translateX(-20%); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(220%); opacity: 0; }
}

/* Card header */
.hpc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(135deg, rgba(26,86,219,0.12), rgba(6,182,212,0.05));
}
.hpc-logo-badge {
  display: flex; align-items: center; gap: 12px;
}
.hpc-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #1a56db, #06b6d4);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(26,86,219,0.4);
}
.hpc-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  letter-spacing: 0.04em;
}
.hpc-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1px;
}
.hpc-verified-badge {
  display: flex; align-items: center; gap: 5px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  color: #4ade80;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

/* Divider */
.hpc-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px 8px;
  color: rgba(255,255,255,0.25);
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hpc-divider::before,
.hpc-divider::after {
  content: '';
  flex: 1; height: 1px;
  background: rgba(255,255,255,0.07);
}

/* Items */
.hpc-items { padding: 6px 16px 12px; display: flex; flex-direction: column; gap: 4px; }

.hpc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px;
  border-radius: 12px;
  transition: background .2s;
  cursor: default;
}
.hpc-item:hover { background: rgba(255,255,255,0.05); }
.hpc-item-left { display: flex; align-items: center; gap: 12px; }
.hpc-item-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.hpc-item-info { display: flex; flex-direction: column; gap: 2px; }
.hpc-item-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #f1f5f9;
}
.hpc-item-meta {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
}
.hpc-item-status {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: #4ade80;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.hpc-item-status.crypto {
  color: #fb923c;
  background: rgba(251,146,60,0.1);
  border-color: rgba(251,146,60,0.2);
}
.status-dot {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: blinkDot 2s ease-in-out infinite;
}
.status-dot.crypto-dot {
  background: #f59e0b;
  box-shadow: 0 0 6px #f59e0b;
}

/* Card footer */
.hpc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.15);
}
.hpc-support { display: flex; align-items: center; gap: 10px; }
.hpc-support-avatars { display: flex; }
.supp-av {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.1);
  margin-left: -6px;
}
.supp-av:first-child { margin-left: 0; }
.hpc-support span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-left: 4px;
}
.hpc-cta-btn {
  background: linear-gradient(135deg, #1a56db, #3b82f6);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(26,86,219,0.4);
}
.hpc-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,219,0.55); }

/* Floating accent badges */
.hero-float-badge {
  position: absolute;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
  animation: floatBadge 6s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.fb-top    { top: -14px;  right: 20px;  animation-delay: 0s; }
.fb-bottom { bottom: -14px; left: 20px; animation-delay: 2s; }
.fb-left   { left: -50px; top: 50%;    transform: translateY(-50%); animation-delay: 4s; }
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.fb-left { animation: floatBadgeLR 6s ease-in-out infinite 4s; }
@keyframes floatBadgeLR {
  0%,100% { transform: translateY(-50%) translateX(0); }
  50%      { transform: translateY(-50%) translateX(-6px); }
}

/* Wave divider */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
  z-index: 2;
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-wrapper { grid-template-columns: 1fr; gap: 48px; padding: 130px 28px 100px; }
  .fb-left { display: none; }
  .hero-promo-card { max-width: 440px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .hero-wrapper { padding: 110px 20px 90px; }
  .h-main { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-actions { flex-direction: column; }
  .fb-top, .fb-bottom { display: none; }
  .hpc-items { padding: 6px 8px 12px; }
  .hero-stats { gap: 14px; }
}
.hide-mobile { display: inline; }
@media (max-width: 480px) { .hide-mobile { display: none; } }

/* ===== LOGOS STRIP ===== */
.logos-strip { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; overflow: hidden; }
.logos-label { text-align: center; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.logos-track-wrapper { overflow: hidden; }
.logos-track { display: flex; gap: 32px; width: max-content; animation: scroll-logos 30s linear infinite; }
.logos-track span { white-space: nowrap; font-family: 'Syne',sans-serif; font-weight: 700; font-size: 0.82rem; color: var(--text-muted); padding: 6px 18px; background: var(--white); border: 1px solid var(--border); border-radius: 100px; }
@keyframes scroll-logos { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== WHY US ===== */
.why-us { padding: 100px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.why-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: transform .3s, box-shadow .3s; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(26,86,219,0.3); }
.why-icon { font-size: 2.2rem; margin-bottom: 18px; }
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--blue-dark); }
.why-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ===== CARDS GRID ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.service-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,86,219,0.03), rgba(6,182,212,0.03)); opacity: 0; transition: opacity .3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(26,86,219,0.3); }
.service-card:hover::before { opacity: 1; }
.card-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 1.5rem; }
.card-name { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--blue-dark); }
.card-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; flex: 1; }

/* ===== GATEWAYS ===== */
.gateways-section { padding: 100px 0; background: var(--off-white); }

/* ===== BANKS ===== */
.banks-section { padding: 100px 0; background: var(--white); }

/* ===== GIFT CARDS ===== */
.giftcards-section { padding: 100px 0; background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 100%); }

/* Disclaimer */
.gc-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1px solid rgba(245,158,11,0.35);
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 48px;
  color: #78350f;
  font-size: 0.88rem;
  line-height: 1.6;
}
.gc-disclaimer-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: #d97706;
}
.gc-disclaimer strong { color: #92400e; }

/* Two-col layout */
.gc-content-wrap {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 52px;
  align-items: start;
}

/* SVG illustration */
.gc-illustration {
  position: sticky;
  top: 100px;
}
.gc-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(26,86,219,0.1));
}

/* Article */
.gc-article-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.gc-article-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.78;
  margin-bottom: 14px;
}
.gc-article-body p:last-child { margin-bottom: 0; }

/* Info cards grid */
.gc-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.gc-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.gc-info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.gc-info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.gc-info-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.gc-info-value { font-size: 1.05rem; font-weight: 800; color: var(--blue-dark); line-height: 1.2; }
.gc-info-value span { color: var(--blue); }
.gc-info-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; }

/* CTA row */
.gc-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.gc-cta-btn { font-size: 0.88rem; padding: 12px 22px; }
.gc-tg-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #0088cc18, #229ED918);
  border: 1px solid rgba(34,158,217,0.35);
  color: #0077b5;
  font-weight: 600; font-size: 0.88rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.gc-tg-btn:hover { background: linear-gradient(135deg,#0088cc28,#229ED928); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(34,158,217,0.2); }

/* ===== INTEGRATIONS ===== */
.integrations-section { padding: 80px 0; background: var(--blue-dark); }
.integrations-section .section-badge { background: rgba(255,255,255,0.08); color: var(--accent); border-color: rgba(255,255,255,0.1); }
.integrations-section .section-title { color: #fff; }
.integrations-section .section-sub { color: rgba(255,255,255,0.6); }
.int-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.int-chip { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); padding: 10px 22px; border-radius: 100px; font-size: 0.88rem; font-weight: 500; transition: background .2s, border-color .2s; cursor: default; }
.int-chip:hover { background: rgba(26,86,219,0.25); border-color: var(--blue-light); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testi-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; position: relative; }
.testi-card::before { content: '"'; position: absolute; top: 16px; left: 24px; font-size: 4rem; color: var(--blue-light); opacity: 0.2; line-height: 1; font-family: Georgia,serif; }
.testi-stars { font-size: 1.1rem; margin-bottom: 16px; }
.testi-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; background: linear-gradient(135deg,var(--blue),var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.85rem; }
.testi-author strong { display: block; font-size: 0.9rem; color: var(--blue-dark); }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-section { padding: 100px 0; background: var(--off-white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 18px 22px; background: none; border: none; cursor: pointer; font-family: 'DM Sans',sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--blue-dark); display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: color .2s; }
.faq-q:hover { color: var(--blue); }
.faq-arrow { font-size: 1.2rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; padding: 0 22px; color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 18px; }

/* ===== CTA ===== */
.cta-section { padding: 100px 0; background: linear-gradient(135deg, var(--blue-dark), #0d2045, #071330); position: relative; overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35; }
.c1 { width: 500px; height: 500px; background: radial-gradient(circle,#1a56db,transparent 70%); top: -200px; left: -100px; }
.c2 { width: 400px; height: 400px; background: radial-gradient(circle,#06b6d4,transparent 70%); bottom: -150px; right: -100px; }
.cta-inner { position: relative; z-index: 2; }
.cta-title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-sub { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-wa { font-size: 1rem; padding: 16px 36px; box-shadow: 0 8px 32px rgba(37,211,102,0.4); }

/* ===== FOOTER ===== */
.footer { background: var(--blue-dark); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; margin-top: 14px; }
.footer-logo { font-size: 1.5rem; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-contact h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-wa { display: inline-flex; align-items: center; gap: 8px; color: var(--wa-green); text-decoration: none; font-size: 0.9rem; font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 24px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ===== FLOATING WA ===== */
.float-wa { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 58px; height: 58px; background: linear-gradient(135deg,var(--wa-green),#20b858); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; box-shadow: 0 6px 24px rgba(37,211,102,0.45); transition: transform .2s, box-shadow .2s; }
.float-wa:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(10,22,40,0.75); backdrop-filter: blur(8px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box { background: var(--white); border-radius: 20px; max-width: 520px; width: 100%; box-shadow: 0 32px 80px rgba(0,0,0,0.25); transform: scale(0.9) translateY(20px); transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .3s; opacity: 0; position: relative; overflow: hidden; }
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); opacity: 1; }
.modal-close { position: absolute; top: 16px; right: 16px; background: rgba(0,0,0,0.06); border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer; font-size: 0.9rem; color: var(--text-muted); transition: background .2s; z-index: 10; }
.modal-close:hover { background: rgba(0,0,0,0.12); }
.modal-header { padding: 36px 36px 24px; text-align: center; }
.modal-emoji { font-size: 2.8rem; margin-bottom: 12px; }
.modal-title { font-size: 1.4rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 12px; }
.modal-badge { display: inline-block; padding: 5px 16px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; }
.modal-body { padding: 0 36px 24px; }
.modal-feature { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.modal-feature:last-child { border-bottom: none; }
.modal-feature-icon { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg,#eff6ff,#dbeafe); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.modal-feature-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; padding-top: 4px; }
.modal-cta { padding: 20px 36px 32px; text-align: center; }
.modal-wa { width: 100%; justify-content: center; font-size: 0.95rem; border-radius: 12px; }

/* ===== ANIMATIONS ===== */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp .7s ease forwards; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-cards-float { display: none; }
  .gc-content-wrap { grid-template-columns: 1fr; gap: 36px; }
  .gc-illustration { position: static; max-width: 400px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .nav-links { display: flex; flex-direction: column; position: fixed; inset: 0; background: var(--blue-dark); z-index: -1; align-items: center; justify-content: center; gap: 32px; visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .25s ease, visibility .25s ease; }
  .nav-links.open { z-index: 999; visibility: visible; opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; z-index: 1100; position: relative; }
  .nav-wa { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .gc-info-grid { grid-template-columns: 1fr; }
  .modal-header, .modal-body, .modal-cta { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-wa { text-align: center; justify-content: center; }
}
