/* ============================================================================
   TUQER LANDING PAGE — Custom Styles & Animations
   Color palette: #711D88 #955FB4 #FEF9FC #D6C2D4
   ============================================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #FEF9FC; }
body {
  margin: 0 auto;
  max-width: 1440px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1F1235;
  background: #FEF9FC;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Gradient backgrounds ---------- */
.bg-hero-gradient {
  background: linear-gradient(220deg, #4A0E5C 0%, #711D88 50%, #955FB4 100%);
}
.bg-purple-gradient {
  background: linear-gradient(135deg, #711D88 0%, #955FB4 100%);
}
.bg-purple-deep-gradient {
  background: linear-gradient(135deg, #6D28D9 0%, #9333EA 100%);
}
.text-gradient-purple {
  background: linear-gradient(135deg, #711D88, #955FB4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================================
   LOOPING ANIMATIONS — seamless 0% = 100%
   Floating chips around hero calculator
   ============================================================================ */

/* Each chip has its own keyframe so motion isn't synchronized
   Start/end positions identical → loop never "jumps" */

@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) rotate(8deg); }
  25%      { transform: translate(4px, -10px) rotate(10deg); }
  50%      { transform: translate(0, -16px) rotate(8deg); }
  75%      { transform: translate(-4px, -8px) rotate(6deg); }
}
@keyframes float-2 {
  0%, 100% { transform: translate(0, 0) rotate(-7deg); }
  25%      { transform: translate(-5px, -8px) rotate(-9deg); }
  50%      { transform: translate(0, -14px) rotate(-7deg); }
  75%      { transform: translate(5px, -6px) rotate(-5deg); }
}
@keyframes float-3 {
  0%, 100% { transform: translate(0, 0) rotate(6deg); }
  25%      { transform: translate(-4px, -12px) rotate(8deg); }
  50%      { transform: translate(0, -18px) rotate(6deg); }
  75%      { transform: translate(4px, -10px) rotate(4deg); }
}
@keyframes float-4 {
  0%, 100% { transform: translate(0, 0) rotate(-5deg); }
  25%      { transform: translate(5px, -10px) rotate(-7deg); }
  50%      { transform: translate(0, -16px) rotate(-5deg); }
  75%      { transform: translate(-5px, -8px) rotate(-3deg); }
}
@keyframes float-5 {
  0%, 100% { transform: translate(0, 0) rotate(-9deg); }
  25%      { transform: translate(-3px, -8px) rotate(-11deg); }
  50%      { transform: translate(0, -12px) rotate(-9deg); }
  75%      { transform: translate(3px, -5px) rotate(-7deg); }
}
@keyframes float-6 {
  0%, 100% { transform: translate(0, 0) rotate(10deg); }
  25%      { transform: translate(4px, -8px) rotate(12deg); }
  50%      { transform: translate(0, -14px) rotate(10deg); }
  75%      { transform: translate(-4px, -6px) rotate(8deg); }
}

/* Phone subtle bob */
@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Halo pulse */
@keyframes halo-pulse {
  0%, 100% { transform: scale(0.95); opacity: 0.6; }
  50%      { transform: scale(1.0);  opacity: 1; }
}

/* Ring slow rotation - 0° start, 360° end (visually identical) → seamless */
@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Sparkle twinkle */
@keyframes sparkle {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50%      { opacity: 1;   transform: scale(1.2); }
}

/* Logo breathing */
@keyframes logo-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

/* Pulse dot (live indicator) */
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.55); }
  50%      { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}

/* Number ticker subtle highlight */
@keyframes glow {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); }
  50%      { filter: drop-shadow(0 0 12px rgba(252,211,77,0.6)); }
}

/* ============================================================================
   COMPONENTS
   ============================================================================ */

.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 80px; }

/* Navbar */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(254,249,252,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 80px;
  border-bottom: 1px solid rgba(214,194,212,0.5);
  display: flex; align-items: center;
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo {
  width: 40px; height: 40px; border-radius: 50%;
  background: #711D88; padding: 3px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.nav-brand-text { font-size: 24px; font-weight: 800; color: #711D88; letter-spacing: -0.5px; }
.nav-logo-long { width: 120px; height: auto; display: block; object-fit: contain; }
@media (max-width: 767px) { .nav-logo-long { width: 100px; } }
.nav-menu { display: flex; align-items: center; gap: 40px; }
.nav-link { font-size: 15px; font-weight: 500; color: #4B5563; transition: color .2s; }
.nav-link.active { color: #711D88; font-weight: 700; }
.nav-link:hover { color: #711D88; }
.nav-cta-group { display: flex; align-items: center; gap: 12px; }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  height: 42px; padding: 0 22px; border-radius: 21px;
  border: 1.5px solid #711D88; color: #711D88; background: #FEF9FC;
  font-weight: 700; font-size: 14px; line-height: 1; text-decoration: none;
  transition: all .2s;
}
.btn-outline:hover { background: #F3E8FF; color: #711D88; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  height: 42px; padding: 0 22px; border-radius: 21px;
  background: linear-gradient(90deg, #711D88, #955FB4);
  color: #FEF9FC; font-weight: 700; font-size: 14px; line-height: 1; text-decoration: none;
  box-shadow: 0 6px 16px rgba(113,29,136,0.4); transition: all .2s;
}
.btn-primary:hover { color: #FEF9FC; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(113,29,136,0.5); }

/* Section base */
section { position: relative; }

/* Hero */
.hero {
  position: relative; min-height: 760px; overflow: hidden;
  display: flex; align-items: center;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; width: 100%; padding: 60px 80px; align-items: center; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  height: 36px; padding: 0 14px; border-radius: 18px;
  background: rgba(254,249,252,0.10); border: 1px solid rgba(254,249,252,0.30);
  color: #FEF9FC; font-size: 13px; font-weight: 700; width: fit-content;
}
.trust-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #34D399; animation: pulse-dot 2s ease-in-out infinite; }
.hero-title { font-size: 60px; font-weight: 800; color: #FEF9FC; line-height: 1.05; letter-spacing: -2px; margin: 24px 0 0; }
.hero-subtitle { font-size: 17px; color: #D6C2D4; line-height: 1.6; margin: 24px 0 0; max-width: 560px; }
.hero-cta-row { display: flex; gap: 16px; align-items: center; margin: 32px 0 0; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  height: 58px; padding: 0 32px; border-radius: 29px;
  background: #FEF9FC; color: #711D88; font-weight: 800; font-size: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25); transition: all .25s;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.30); }
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  height: 58px; padding: 0 28px; border-radius: 29px;
  background: rgba(254,249,252,0.10); color: #FEF9FC;
  border: 1.5px solid rgba(254,249,252,0.40); font-weight: 700; font-size: 16px;
  transition: all .2s;
}
.btn-hero-secondary:hover { background: rgba(254,249,252,0.20); }
.hero-stats { display: flex; gap: 32px; align-items: center; margin: 28px 0 0; }
.hero-stat-num { font-size: 28px; font-weight: 800; color: #FEF9FC; line-height: 1.2; }
.hero-stat-lbl { font-size: 12px; color: #D6C2D4; font-weight: 500; margin-top: 2px; }
.hero-stat-divider { width: 1px; height: 42px; background: rgba(254,249,252,0.2); }

/* Hero visual & calculator */
.hero-visual { position: relative; height: 560px; }
.hero-halo {
  position: absolute; width: 440px; height: 440px;
  background: rgba(254,249,252,0.10);
  border-radius: 50%; left: 60px; top: 60px;
  filter: blur(40px);
  animation: halo-pulse 4s ease-in-out infinite;
}
.hero-ring {
  position: absolute; width: 300px; height: 300px;
  border: 1.5px solid rgba(254,249,252,0.25);
  border-radius: 50%; left: 130px; top: 130px;
  background: rgba(254,249,252,0.05);
  animation: ring-spin 30s linear infinite;
}
.calc-card {
  position: absolute; left: 120px; top: 140px;
  width: 320px; padding: 24px; border-radius: 32px;
  background: linear-gradient(135deg, #FEF9FC 0%, #D6C2D4 100%);
  border: 3px solid #FEF9FC;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  transform: rotate(-3deg);
  animation: phone-float 6s ease-in-out infinite;
}
.calc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.calc-title { color: #711D88; font-size: 16px; font-weight: 800; }
.calc-live { display: inline-flex; align-items: center; gap: 5px; height: 24px; padding: 0 10px; border-radius: 12px; background: rgba(16,185,129,0.20); color: #059669; font-size: 10px; font-weight: 700; }
.calc-live .dot { width: 6px; height: 6px; border-radius: 50%; background: #10B981; animation: pulse-dot 2s ease-in-out infinite; }
.calc-box { background: #F3E8FF; border-radius: 16px; padding: 14px 16px; margin-bottom: 12px; }
.calc-box-label { font-size: 11px; font-weight: 600; color: rgba(113,29,136,0.6); margin-bottom: 6px; }
.calc-box-row { display: flex; align-items: center; justify-content: space-between; }
.calc-amount { font-size: 24px; font-weight: 800; color: #711D88; }
.calc-curr {
  display: inline-flex; align-items: center; gap: 6px;
  height: 32px; padding: 0 12px; border-radius: 16px; background: #FEF9FC;
  font-size: 12px; font-weight: 700; color: #1F2937;
}
.calc-swap {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #711D88, #955FB4);
  color: #FEF9FC; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px; box-shadow: 0 4px 12px rgba(113,29,136,0.4);
}
.calc-rate-info { display: flex; justify-content: space-between; padding: 0 4px; margin: 8px 0; font-size: 11px; }
.calc-rate-info .lbl { color: #6B7280; }
.calc-rate-info .val { color: #711D88; font-weight: 700; font-size: 12px; }
.calc-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 50px; border-radius: 25px;
  background: linear-gradient(90deg, #711D88, #955FB4); color: #FEF9FC;
  font-weight: 800; font-size: 15px;
  box-shadow: 0 6px 16px rgba(113,29,136,0.4); width: 100%;
}

/* Floating chips — each with its own animation cycle */
.float-chip {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(254,249,252,0.20);
  border: 2px solid rgba(254,249,252,0.40);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
  color: #FEF9FC; font-size: 9px; font-weight: 700;
  text-align: center;
  will-change: transform;
}
.float-chip svg, .float-chip i { width: 28px; height: 28px; margin-bottom: 6px; }
.chip-ovo      { left: -40px;  top: 50px;  width: 80px; height: 80px; animation: float-2 6.2s ease-in-out infinite; }
.chip-dana     { right: -40px; top: 45px;  width: 90px; height: 90px; animation: float-1 6.8s ease-in-out infinite; animation-delay: -1.5s; }
.chip-shopee   { left: -50px;  top: 260px; width: 84px; height: 84px; animation: float-3 7.0s ease-in-out infinite; animation-delay: -2.5s; }
.chip-voucher  { right: -55px; top: 255px; width: 84px; height: 84px; animation: float-4 6.6s ease-in-out infinite; animation-delay: -3.0s; }
.chip-gopay    { left: -50px;  top: 460px; width: 88px; height: 88px; animation: float-5 7.4s ease-in-out infinite; animation-delay: -1.0s; }
.chip-pln      { right: -45px; top: 450px; width: 84px; height: 84px; animation: float-6 6.4s ease-in-out infinite; animation-delay: -4.0s; }

/* Sparkles */
.sparkle { position: absolute; border-radius: 50%; animation: sparkle 3s ease-in-out infinite; }

/* Partner Strip */
.partner-strip {
  background: #FEF9FC;
  border-top: 1px solid rgba(214,194,212,0.4);
  border-bottom: 1px solid rgba(214,194,212,0.4);
  padding: 24px 80px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.partner-label { font-size: 12px; color: #9CA3AF; font-weight: 700; letter-spacing: 1px; }
.partner-list { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.partner-item { font-size: 22px; font-weight: 800; color: rgba(113,29,136,0.6); letter-spacing: -0.5px; }
.partner-paypal { font-style: italic; }

/* Rate Cards */
.rate-section { background: #FEF9FC; padding: 80px; }
.section-pill { display: inline-flex; align-items: center; gap: 8px; height: 32px; padding: 0 14px; border-radius: 16px; background: #F3E8FF; color: #711D88; font-size: 12px; font-weight: 800; letter-spacing: 1.5px; }
.section-pill.live { background: rgba(16,185,129,0.2); border: 1px solid rgba(52,211,153,0.4); color: #059669; }
.section-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #10B981; animation: pulse-dot 2s ease-in-out infinite; }
.section-hdr { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-title { font-size: 42px; font-weight: 800; color: #1F1235; line-height: 1.15; letter-spacing: -1.5px; margin: 14px 0; }
.section-sub { font-size: 16px; color: #6B7280; line-height: 1.6; }

.rate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tuqer-rate-card {
  position: relative; overflow: hidden;
  background: linear-gradient(220deg, #4A0E5C 0%, #711D88 50%, #955FB4 100%);
  border-radius: 28px; padding: 36px;
  box-shadow: 0 16px 40px rgba(113,29,136,0.4); color: #FEF9FC;
}
.tuqer-rate-card .orb-1 { position: absolute; left: -50px; top: -50px; width: 240px; height: 240px; background: rgba(149,95,180,0.4); border-radius: 50%; filter: blur(60px); }
.tuqer-rate-card .orb-2 { position: absolute; right: -50px; bottom: -50px; width: 200px; height: 200px; background: rgba(214,194,212,0.15); border-radius: 50%; filter: blur(50px); }
.rate-card-hdr { position: relative; display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; z-index: 2; }
.fix-rate-badge { display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 14px; border-radius: 16px; background: #FCD34D; color: #92400E; font-size: 11px; font-weight: 800; letter-spacing: 1px; box-shadow: 0 4px 14px rgba(252,211,77,0.5); }
.tc-logo { width: 48px; height: 48px; border-radius: 50%; background: #FEF9FC; padding: 3px; display: flex; align-items: center; justify-content: center; }
.tc-logo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.tc-label { font-size: 14px; font-weight: 600; color: #D6C2D4; position: relative; z-index: 2; }
.tc-amount-row { display: flex; align-items: flex-end; gap: 8px; position: relative; z-index: 2; margin: 12px 0 20px; }
.tc-amount { font-size: 72px; font-weight: 800; letter-spacing: -3px; line-height: 1; color: #FEF9FC; }
.tc-unit { font-size: 18px; color: #D6C2D4; font-weight: 700; line-height: 1.6; }
.tc-detail { display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 2; margin-bottom: 20px; }
.tc-detail-row { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #FEF9FC; }
.tc-detail-row svg { color: #34D399; }
.tc-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  height: 58px; border-radius: 29px; background: #FEF9FC;
  color: #711D88; font-size: 16px; font-weight: 800;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25); transition: all .2s;
}
.tc-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.30); }

.paypal-rate-card {
  background: #FEF9FC; border-radius: 28px; padding: 36px;
  border: 1.5px solid #E9D5FF; box-shadow: 0 12px 32px rgba(113,29,136,0.08);
}
.pc-badge { display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 14px; border-radius: 16px; background: rgba(15,23,42,0.06); border: 1px solid rgba(15,23,42,0.1); color: #1E40AF; font-size: 11px; font-weight: 800; letter-spacing: 1px; }
.pc-pp-logo { width: 48px; height: 48px; border-radius: 12px; background: #003087; display: flex; align-items: center; justify-content: center; color: #FEF9FC; font-style: italic; font-weight: 800; font-size: 18px; }
.pc-amount-row { display: flex; align-items: flex-end; gap: 8px; margin: 12px 0; }
.pc-amount { font-size: 72px; font-weight: 800; letter-spacing: -3px; line-height: 1; color: #1F1235; }
.pc-unit { font-size: 18px; color: #9CA3AF; font-weight: 700; line-height: 1.6; }
.pc-info { display: flex; gap: 10px; padding: 12px 14px; border-radius: 14px; background: #FEF3C7; border: 1px solid #FDE68A; color: #92400E; font-size: 12px; font-weight: 500; line-height: 1.5; margin: 12px 0; }
.pc-compare { padding: 14px 16px; border-radius: 14px; background: #F4F0FF; border: 1px solid #E9D5FF; margin-bottom: 12px; }
.pc-compare-title { font-size: 12px; font-weight: 800; color: #711D88; letter-spacing: 0.5px; margin-bottom: 10px; }
.pc-compare-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 4px 0; }
.pc-compare-row .left { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: #1F1235; }
.pc-compare-row .right { display: flex; align-items: center; gap: 8px; }
.pc-compare-row .strike { font-size: 12px; font-weight: 700; color: #9CA3AF; text-decoration: line-through; }
.pc-compare-row .winner { font-size: 14px; font-weight: 800; color: #10B981; }
.pc-saving {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; border-radius: 14px; background: #10B981; color: #FEF9FC;
  font-size: 14px; font-weight: 800; box-shadow: 0 6px 16px rgba(16,185,129,0.4);
}

/* Services */
.services-section { background: #FEF9FC; padding: 100px 80px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: #FEF9FC; border-radius: 24px; padding: 28px;
  border: 1px solid rgba(214,194,212,0.4); box-shadow: 0 8px 24px rgba(113,29,136,0.08);
  display: flex; flex-direction: column; gap: 14px;
  transition: all .25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(113,29,136,0.15); }
.service-icon { width: 60px; height: 60px; border-radius: 18px; display: flex; align-items: center; justify-content: center; color: #FEF9FC; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.service-icon svg { width: 28px; height: 28px; }
.service-title { font-size: 20px; font-weight: 800; color: #1F1235; }
.service-desc { font-size: 13px; color: #6B7280; line-height: 1.55; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: #711D88; margin-top: 8px; transition: gap .2s; }
.service-link:hover { gap: 10px; }
.service-card.premium {
  background: linear-gradient(135deg, #711D88 0%, #955FB4 100%);
  box-shadow: 0 8px 24px rgba(113,29,136,0.4);
  color: #FEF9FC; border: none;
}
.service-card.premium .service-icon { background: rgba(254,249,252,0.15); border: 1.5px solid rgba(254,249,252,0.3); }
.service-card.premium .service-title { color: #FEF9FC; }
.service-card.premium .service-desc { color: #D6C2D4; }
.service-card.premium .service-link { color: #FEF9FC; }

/* How section */
.how-section { background: #F4F0FF; padding: 100px 80px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  background: #FEF9FC; border-radius: 24px; padding: 28px 24px;
  border: 1px solid rgba(214,194,212,0.4); box-shadow: 0 8px 24px rgba(113,29,136,0.08);
  display: flex; flex-direction: column; gap: 16px;
}
.step-num {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, #711D88, #955FB4);
  color: #FEF9FC; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800;
}
.step-card.highlight { background: linear-gradient(135deg, #711D88 0%, #955FB4 100%); color: #FEF9FC; box-shadow: 0 8px 24px rgba(113,29,136,0.4); border: none; }
.step-card.highlight .step-num { background: rgba(254,249,252,0.15); border: 1.5px solid rgba(254,249,252,0.3); }
.step-title { font-size: 18px; font-weight: 800; color: inherit; }
.step-desc { font-size: 13px; color: #6B7280; line-height: 1.55; }
.step-card.highlight .step-desc { color: #D6C2D4; }

/* Why section */
.why-section { background: #FEF9FC; padding: 100px 80px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: #F3E8FF; border-radius: 24px; padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; }
.why-icon { width: 52px; height: 52px; border-radius: 14px; background: #FEF9FC; display: flex; align-items: center; justify-content: center; color: #711D88; }
.why-title { font-size: 18px; font-weight: 800; color: #1F1235; }
.why-desc { font-size: 13px; color: #6B7280; line-height: 1.55; }

/* About section */
.about-section { background: linear-gradient(220deg, #4A0E5C 0%, #711D88 50%, #955FB4 100%); padding: 0px 80px 60px; overflow: hidden; position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-pill { display: inline-flex; align-items: center; gap: 8px; height: 36px; padding: 0 16px; border-radius: 18px; background: rgba(254,249,252,0.1); border: 1px solid rgba(254,249,252,0.3); color: #FEF9FC; font-size: 12px; font-weight: 800; letter-spacing: 1.5px; }
.about-title { font-size: 54px; font-weight: 800; color: #FEF9FC; letter-spacing: -1.5px; line-height: 1.1; margin: 22px 0; }
.about-desc { font-size: 16px; color: #D6C2D4; line-height: 1.7; margin-bottom: 22px; }
.about-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.about-chip { display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 14px; border-radius: 16px; background: rgba(254,249,252,0.1); border: 1px solid rgba(254,249,252,0.3); color: #FEF9FC; font-size: 12px; font-weight: 700; }
.about-chip.success { background: rgba(16,185,129,0.2); border-color: rgba(52,211,153,0.4); }
.about-visual { position: relative; height: 400px; width: 100%; display: flex; align-items: center; justify-content: center; }
.about-visual-inner { position: relative; width: 480px; height: 400px; max-width: 100%; }
.about-wave { position: absolute; bottom: 0; left: 0; width: 100%; height: 80px; }

/* Stats section */
.stats-section { background: #F4F0FF; padding: 100px 80px 80px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-card { background: #FEF9FC; border-radius: 24px; padding: 36px 28px; text-align: center; border: 1px solid #E9D5FF; box-shadow: 0 8px 24px rgba(113,29,136,0.08); }
.stat-card.highlight { background: linear-gradient(135deg, #711D88, #955FB4); color: #FEF9FC; border: none; box-shadow: 0 12px 32px rgba(113,29,136,0.4); }
.stat-icon { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; color: #FEF9FC; box-shadow: 0 6px 14px rgba(0,0,0,0.15); }
.stat-icon svg { width: 30px; height: 30px; }
.stat-card.highlight .stat-icon { background: rgba(254,249,252,0.15); border: 1.5px solid rgba(254,249,252,0.3); color: #FCD34D; box-shadow: none; }
.stat-num { font-size: 48px; font-weight: 800; color: #1F1235; letter-spacing: -2px; }
.stat-card.highlight .stat-num { color: #FEF9FC; }
.stat-lbl { font-size: 14px; color: #6B7280; font-weight: 600; margin: 8px 0 14px; }
.stat-card.highlight .stat-lbl { color: #D6C2D4; }
.stat-trend { display: inline-flex; align-items: center; gap: 4px; height: 24px; padding: 0 10px; border-radius: 12px; font-size: 11px; font-weight: 700; }
.stat-trend.green { background: rgba(16,185,129,0.2); color: #059669; }
.stat-trend.amber { background: rgba(245,158,11,0.2); color: #D97706; }
.stat-card.highlight .stat-trend { background: rgba(254,249,252,0.15); border: 1px solid rgba(254,249,252,0.3); color: #FEF9FC; }

/* Live transaction table */
.live-section { background: #FEF9FC; padding: 100px 80px; }
.live-table { background: #FEF9FC; border-radius: 20px; border: 1px solid #E9D5FF; overflow: hidden; box-shadow: 0 12px 32px rgba(113,29,136,0.08); }
.live-thead { background: linear-gradient(90deg, #711D88, #955FB4); padding: 16px 28px; display: grid; grid-template-columns: 300px 1fr 160px 200px 80px; align-items: center; height: 54px; }
.live-th { display: flex; align-items: center; gap: 8px; color: #FEF9FC; font-size: 12px; font-weight: 800; letter-spacing: 1.2px; }
.live-row { padding: 0 28px; display: grid; grid-template-columns: 300px 1fr 160px 200px 80px; align-items: center; height: 60px; }
.live-row:nth-child(odd) { background: #FEF9FC; }
.live-row:nth-child(even) { background: #F8F4FF; }
.live-row .col-date { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: #1F1235; }
.live-row .col-date .live-dot { width: 8px; height: 8px; border-radius: 50%; background: #10B981; animation: pulse-dot 2s ease-in-out infinite; }
.live-row .col-name { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: #1F1235; }
.live-avatar { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FEF9FC; font-size: 10px; font-weight: 800; }
.live-row .col-amount { font-size: 14px; font-weight: 800; color: #711D88; }
.wallet-badge { display: inline-flex; align-items: center; gap: 6px; height: 26px; padding: 0 12px; border-radius: 13px; font-size: 11px; font-weight: 800; }
.wallet-badge .dot { width: 6px; height: 6px; border-radius: 50%; }
.live-row .col-status { display: flex; justify-content: flex-end; }
.status-check { width: 24px; height: 24px; border-radius: 50%; background: rgba(16,185,129,0.2); display: flex; align-items: center; justify-content: center; color: #059669; }
.live-foot { padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; background: #FEF9FC; border-top: 1px solid #F3E8FF; }
.live-foot-info { display: flex; align-items: center; gap: 8px; color: #6B7280; font-size: 12px; font-weight: 500; }
.pagination { display: flex; align-items: center; gap: 6px; }
.pg-btn { width: 32px; height: 32px; border-radius: 8px; background: #FEF9FC; border: 1px solid #E9D5FF; display: flex; align-items: center; justify-content: center; color: #1F1235; font-size: 13px; font-weight: 700; transition: all .15s; }
.pg-btn:hover { background: #F3E8FF; }
.pg-btn.active { background: linear-gradient(135deg, #711D88, #955FB4); color: #FEF9FC; border: none; box-shadow: 0 3px 8px rgba(113,29,136,0.4); }
.pg-ellipsis { color: #9CA3AF; padding: 0 4px; }

/* Testimonials */
.testi-section { background: #F4F0FF; padding: 100px 80px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: #FEF9FC; border-radius: 24px; padding: 32px 28px; border: 1px solid rgba(214,194,212,0.4); box-shadow: 0 8px 24px rgba(113,29,136,0.08); display: flex; flex-direction: column; gap: 18px; }
.testi-stars { display: flex; gap: 2px; color: #FBBF24; }
.testi-stars svg { width: 16px; height: 16px; }
.testi-text { font-size: 14px; font-weight: 500; color: #1F1235; line-height: 1.65; }
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FEF9FC; font-size: 13px; font-weight: 800; }
.testi-name { font-size: 13px; font-weight: 700; color: #1F1235; }
.testi-role { font-size: 11px; color: #9CA3AF; }

/* FAQ */
.faq-section { background: #FEF9FC; padding: 100px 80px; display: grid; grid-template-columns: 420px 1fr; gap: 60px; align-items: start; }
.faq-left h2 { font-size: 44px; font-weight: 800; color: #1F1235; line-height: 1.15; letter-spacing: -1.5px; margin: 14px 0; }
.faq-left p { font-size: 15px; color: #6B7280; line-height: 1.6; margin-bottom: 20px; }
.cs-btn { display: inline-flex; align-items: center; gap: 10px; height: 48px; padding: 0 22px; border-radius: 24px; background: linear-gradient(90deg, #711D88, #955FB4); color: #FEF9FC; font-size: 14px; font-weight: 700; box-shadow: 0 6px 16px rgba(113,29,136,0.4); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #FEF9FC; border: 1px solid #E9D5FF; border-radius: 16px; padding: 20px 24px; transition: all .2s; }
.faq-item.open { background: #F4F0FF; border-color: #DDD6FE; }
.faq-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; cursor: pointer; }
.faq-q { font-size: 15px; font-weight: 700; color: #1F1235; }
.faq-toggle { width: 32px; height: 32px; border-radius: 10px; background: #F3E8FF; color: #711D88; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s; }
.faq-item.open .faq-toggle { background: #711D88; color: #FEF9FC; }
.faq-answer { font-size: 13px; color: #4B5563; line-height: 1.65; margin-top: 12px; display: none; }
.faq-item.open .faq-answer { display: block; }

/* CTA banner */
.cta-banner { background: #F4F0FF; padding: 100px 80px; }
.cta-card { position: relative; overflow: hidden; border-radius: 32px; padding: 60px; background: linear-gradient(220deg, #4A0E5C 0%, #711D88 50%, #955FB4 100%); box-shadow: 0 16px 40px rgba(113,29,136,0.4); display: flex; align-items: center; justify-content: space-between; gap: 40px; color: #FEF9FC; }
.cta-card .orb-1 { position: absolute; left: -100px; top: -100px; width: 400px; height: 400px; background: rgba(149,95,180,0.4); border-radius: 50%; filter: blur(80px); }
.cta-headline { font-size: 42px; font-weight: 800; line-height: 1.15; letter-spacing: -1.5px; position: relative; z-index: 2; }
.cta-sub { font-size: 16px; color: #D6C2D4; margin-top: 16px; position: relative; z-index: 2; }
.cta-btns { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 2; }

/* Media Partner */
.mp-section { background: #FEF9FC; padding: 80px; text-align: center; }
.mp-title { font-size: 32px; font-weight: 800; color: #1F1235; letter-spacing: -1px; margin: 14px 0 40px; }
.mp-row { display: flex; gap: 48px; justify-content: center; align-items: center; flex-wrap: wrap; }
.mp-card { width: 240px; height: 120px; border-radius: 20px; background: #FEF9FC; border: 1px solid rgba(214,194,212,0.4); box-shadow: 0 8px 24px rgba(113,29,136,0.08); display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 800; }

/* Footer */
.site-footer { background: #1F1235; color: #FEF9FC; padding: 60px 80px 30px; }
.footer-top { display: grid; grid-template-columns: 340px 1fr 1fr 1fr; gap: 80px; align-items: start; }
.footer-brand-row { display: flex; align-items: center; gap: 10px; }
.footer-logo { width: 40px; height: 40px; border-radius: 50%; background: #FEF9FC; padding: 3px; display: flex; align-items: center; justify-content: center; }
.footer-logo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.footer-brand-text { font-size: 22px; font-weight: 800; color: #FEF9FC; letter-spacing: -0.5px; }
.footer-desc { font-size: 13px; color: rgba(214,194,212,0.6); line-height: 1.6; margin: 18px 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(254,249,252,0.1); border: 1px solid rgba(254,249,252,0.2); display: flex; align-items: center; justify-content: center; color: #FEF9FC; transition: all .2s; }
.footer-social-btn:hover { background: rgba(254,249,252,0.2); }
.footer-col h4 { font-size: 14px; font-weight: 800; color: #FEF9FC; margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 13px; color: rgba(214,194,212,0.6); transition: color .2s; }
.footer-col a:hover { color: #FEF9FC; }
.footer-divider { height: 1px; background: rgba(254,249,252,0.1); margin: 40px 0 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 30px; }
.footer-copy { font-size: 12px; color: rgba(214,194,212,0.5); }
.footer-lang { display: flex; align-items: center; gap: 8px; color: rgba(214,194,212,0.6); font-size: 12px; font-weight: 500; }

/* About visual decorative shapes */
.about-phone { position: absolute; left: 240px; top: 80px; width: 160px; height: 280px; background: #1F1235; border: 3px solid #3F2A52; border-radius: 30px; padding: 18px 12px; box-shadow: 0 16px 30px rgba(0,0,0,0.4); }
.about-phone-screen { background: #2A1838; border-radius: 18px; height: 100%; padding: 16px 12px; }
.about-bag { position: absolute; border-radius: 16px; background: linear-gradient(135deg, #FEF9FC, #D6C2D4); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 20px rgba(0,0,0,0.25); font-size: 30px; font-weight: 800; color: #955FB4; }
.about-bag-tie { position: absolute; border-radius: 7px; background: #FBBF24; }
.about-coin { position: absolute; border-radius: 50%; background: linear-gradient(135deg, #FCD34D, #F59E0B); border: 2px solid #FBBF24; display: flex; align-items: center; justify-content: center; color: #92400E; font-weight: 800; }

/* ============================================================================
   MOBILE MENU TOGGLE (hidden on desktop, visible <= 1024px)
   ============================================================================ */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: #F3E8FF;
  color: #711D88;
  align-items: center; justify-content: center;
}
.nav-toggle .icon-open { display: block; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.open .icon-open { display: none; }
.nav-toggle.open .icon-close { display: block; }

.mobile-menu {
  position: fixed;
  inset: 80px 0 0 0;
  background: #FEF9FC;
  z-index: 49;
  padding: 24px 20px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-radius: 14px;
  background: #F4F0FF;
  color: #1F1235; font-size: 16px; font-weight: 600;
}
.mobile-menu a.active { background: linear-gradient(135deg, #711D88, #955FB4); color: #FEF9FC; }
.mobile-menu .mobile-cta-group { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.mobile-menu .mobile-cta-group a { justify-content: center; padding: 14px; }
.mobile-menu .mobile-cta-group a.btn-outline { background: #FEF9FC; border: 1.5px solid #711D88; color: #711D88; }
.mobile-menu .mobile-cta-group a.btn-primary { background: linear-gradient(90deg, #711D88, #955FB4); color: #FEF9FC; }

/* ============================================================================
   RESPONSIVE BREAKPOINTS
   ============================================================================ */

/* 1280px — large tablet/small desktop */
@media (max-width: 1280px) {
  .container-wide { padding: 0 40px; }
  .hero-grid { padding: 50px 40px; gap: 40px; }
  .partner-strip, .services-section, .how-section, .why-section, .testi-section,
  .faq-section, .rate-section, .stats-section, .live-section, .cta-banner,
  .mp-section, .site-footer, .about-section { padding-left: 40px; padding-right: 40px; }
  .hero-title { font-size: 52px; }
  .about-title { font-size: 46px; }
  .hero-visual { transform: scale(0.9); transform-origin: center; }
}

/* 1024px — tablet */
@media (max-width: 1024px) {
  .nav-menu, .nav-cta-group { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding: 40px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; padding: 40px 32px; }
  .hero-left { text-align: center; }
  .trust-pill { margin: 0 auto; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .hero-cta-row { justify-content: center; flex-wrap: wrap; }
  .hero-visual { height: 600px; max-width: 560px; margin: 0 auto; }
  .hero-title { font-size: 44px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .faq-section, .about-grid, .cta-card { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section-title { font-size: 34px; }
  .about-title { font-size: 38px; }
  .about-visual { height: 360px; max-width: 480px; margin: 0 auto; }
  .cta-card { padding: 40px; text-align: center; }
  .cta-headline { font-size: 34px; }
  .cta-btns { align-items: center; }
  .rate-grid { grid-template-columns: 1fr; }
  .tc-amount, .pc-amount { font-size: 56px; }
}

/* 768px — mobile/large phone */
@media (max-width: 768px) {
  body { font-size: 14px; }
  .navbar { padding: 0 16px; height: 64px; }
  .mobile-menu { inset: 64px 0 0 0; }
  .nav-brand-text { font-size: 20px; }
  .nav-logo { width: 36px; height: 36px; }

  /* Hero */
  .hero-grid { padding: 32px 20px; gap: 40px; }
  .hero-title { font-size: 32px; line-height: 1.1; letter-spacing: -1px; }
  .hero-subtitle { font-size: 14px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; height: 52px; font-size: 15px; padding: 0 20px; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-lbl { font-size: 11px; }
  .hero-stat-divider { height: 32px; }

  /* Hero visual — fixed-width inner box centered, chips at left/right edges */
  .hero-visual { height: 540px; width: 100%; max-width: 100%; padding: 0; overflow: visible; transform: none !important; }
  .hero-halo   { width: 260px !important; height: 260px !important; left: 0 !important; right: 0 !important; top: 100px !important; margin: 0 auto !important; transform: none !important; }
  .hero-ring   { width: 200px !important; height: 200px !important; left: 0 !important; right: 0 !important; top: 130px !important; margin: 0 auto !important; transform: none !important; }
  .calc-card   { left: 0 !important; right: 0 !important; top: 130px !important; margin: 0 auto !important; transform: rotate(-2deg) !important; width: 270px !important; padding: 18px !important; }
  .calc-card .calc-amount { font-size: 22px; }
  .calc-card .calc-cta { height: 44px; font-size: 13px; }
  .float-chip { font-size: 9px; }
  .float-chip svg, .float-chip i { width: 22px; height: 22px; margin-bottom: 4px; }
  /* Left side (3 chips stacked) */
  .chip-ovo     { left: 8px !important;  right: auto !important; top: 90px !important;  width: 60px !important; height: 60px !important; }
  .chip-shopee  { left: 4px !important;  right: auto !important; top: 280px !important; width: 60px !important; height: 60px !important; }
  .chip-gopay   { left: 8px !important;  right: auto !important; top: 460px !important; width: 60px !important; height: 60px !important; }
  /* Right side (3 chips stacked) */
  .chip-dana    { right: 8px !important; left: auto !important;  top: 80px !important;  width: 64px !important; height: 64px !important; }
  .chip-voucher { right: 4px !important; left: auto !important;  top: 270px !important; width: 60px !important; height: 60px !important; }
  .chip-pln     { right: 8px !important; left: auto !important;  top: 460px !important; width: 60px !important; height: 60px !important; }

  /* Partner Strip */
  .partner-strip { padding: 20px 16px; flex-direction: column; gap: 14px; }
  .partner-list { gap: 18px; justify-content: center; }
  .partner-item { font-size: 16px; }

  /* Sections base padding */
  .services-section, .how-section, .why-section, .testi-section,
  .rate-section, .stats-section, .live-section,
  .cta-banner, .mp-section, .about-section { padding: 20px 16px 90px; }
  .faq-section { padding: 60px 16px; grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding: 40px 16px 24px; }

  /* Section header */
  .section-title { font-size: 26px; letter-spacing: -0.5px; }
  .section-sub { font-size: 14px; }
  .section-hdr { margin: 0 auto 32px; }

  /* Rate Cards */
  .tuqer-rate-card, .paypal-rate-card { padding: 24px; border-radius: 22px; }
  .tc-amount, .pc-amount { font-size: 44px; letter-spacing: -2px; }
  .tc-unit, .pc-unit { font-size: 14px; }
  .rate-card-hdr { gap: 12px; }
  .fix-rate-badge, .pc-badge { font-size: 10px; padding: 0 12px; }
  .tc-logo, .pc-pp-logo { width: 40px; height: 40px; }
  .tc-cta { height: 50px; font-size: 14px; }
  .pc-compare-row { flex-direction: column; align-items: flex-start; gap: 4px; padding: 6px 0; }
  .pc-compare-row .right { width: 100%; justify-content: space-between; }

  /* Services / Steps / Why / Stats / Testi */
  .services-grid, .why-grid, .steps-grid, .stats-grid, .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card, .step-card, .why-card, .testi-card, .stat-card { padding: 22px 20px; border-radius: 20px; }
  .service-icon, .why-icon { width: 48px; height: 48px; }
  .service-title, .step-title, .why-title { font-size: 17px; }
  .stat-num { font-size: 38px !important; letter-spacing: -1.5px; }
  .stat-icon { width: 52px; height: 52px; }

  /* About */
  .about-section { padding: 20px 16px 90px;  }
  .about-title { font-size: 32px; letter-spacing: -1px; }
  .about-desc { font-size: 14px; }
  .about-grid { gap: 32px; display: inline-block; width: 100%;}
  .about-visual { height: 320px; }
  .about-phone { left: 50%; top: 40px; transform: translateX(-50%); width: 140px; height: 240px; }
  .about-bag:first-of-type { left: 32% !important; top: 220px !important; width: 86px !important; height: 96px !important; font-size: 26px !important; }
  .about-bag:last-of-type { left: 12% !important; top: 245px !important; width: 80px !important; height: 90px !important; font-size: 20px !important; }

  /* Live Transaction Table — keep table layout, horizontal scroll on mobile */
  .live-table {
    border-radius: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .live-thead {
    display: grid;
    grid-template-columns: 200px 220px 100px 200px 60px;
    min-width: 860px;
    padding: 14px 20px;
    height: 48px;
    gap: 10px;
  }
  .live-th { font-size: 11px; letter-spacing: 1px; white-space: nowrap; }
  .live-row {
    display: grid;
    grid-template-columns: 200px 220px 100px 200px 60px;
    min-width: 860px;
    padding: 0 20px;
    height: 56px;
    gap: 10px;
    align-items: center;
  }
  .live-row .col-date { font-size: 12px; white-space: nowrap; }
  .live-row .col-name { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .live-row .col-amount { font-size: 13px; white-space: nowrap; }
  .live-row > div:nth-child(4) { white-space: nowrap; overflow: hidden; }
  .live-row .col-status { justify-self: end; }
  .wallet-badge { white-space: nowrap; }
  .live-foot {
    flex-direction: row;
    gap: 12px;
    padding: 12px 16px;
    align-items: center;
  }
  .live-foot-info { font-size: 11px; }
  .pagination { flex-wrap: nowrap; }

  /* FAQ */
  .faq-left h2 { font-size: 30px; line-height: 1.2; }
  .faq-q { font-size: 14px; }
  .faq-toggle { width: 28px; height: 28px; }
  .faq-item { padding: 16px 18px; }
  .cs-btn { width: 100%; justify-content: center; }

  /* CTA Banner */
  .cta-banner { padding: 48px 16px; }
  .cta-card { padding: 32px 22px; flex-direction: column; gap: 28px; align-items: stretch; }
  .cta-headline { font-size: 26px; }
  .cta-sub { font-size: 14px; }
  .cta-btns { width: 100%; }
  .cta-btns a { width: 100% !important; }

  /* Media Partner */
  .mp-title { font-size: 24px; margin: 14px 0 24px; }
  .mp-row { gap: 16px; }
  .mp-card { width: calc(50% - 8px); min-width: 140px; height: 96px; padding: 12px; gap: 6px; }
  .mp-card span:not(:first-child) { font-size: 16px !important; }
  .mp-card i { width: 24px !important; height: 24px !important; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-desc { font-size: 12px; }
  .footer-bottom { flex-direction: column; gap: 12px; padding-top: 24px; text-align: center; }
}

/* 480px — small mobile (iPhone SE etc) */
@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .section-title { font-size: 22px; }
  .calc-card { width: 270px !important; padding: 14px !important; }
  .calc-amount { font-size: 20px !important; }
  .hero-visual { height: 520px; }
  .tc-amount, .pc-amount { font-size: 38px; }
  .stat-num { font-size: 32px !important; }
  .about-title { font-size: 26px; }
  .cta-headline { font-size: 22px; }
  .partner-list { gap: 12px; }
  .partner-item { font-size: 14px; }
  /* Chips shrink at small mobile so they don't overlap the 220px card */
  .chip-ovo, .chip-shopee, .chip-gopay,
  .chip-dana, .chip-voucher, .chip-pln {
    width: 54px !important; height: 54px !important;
  }
  .chip-ovo, .chip-shopee, .chip-gopay { left: 4px !important; }
  .chip-dana, .chip-voucher, .chip-pln { right: 4px !important; }
  .float-chip svg, .float-chip i { width: 20px; height: 20px; }
  .calc-card .calc-cta { height: 40px; font-size: 12px; }
  .about-visual-inner {height: 355px; }
}

/* ============================================================================
   REVEAL ON SCROLL — section animates up + fades in when entering viewport
   ============================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Prefer reduced motion — disable animations for accessibility */
@media (prefers-reduced-motion: reduce) {
  .float-chip, .hero-halo, .hero-ring, .calc-card,
  .sparkle, .calc-live .dot, .trust-pill .dot, .live-dot,
  .pulse-dot { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
