/* ============================================================
   Muhammad Tahir Zaman Ltd — Custom Stylesheet
   Bootstrap 5 + Custom CSS
   ============================================================ */

/* ── 1. ROOT VARIABLES ── */
:root {
  --primary:       #2563EB;
  --primary-dark:  #1d4ed8;
  --primary-light: #eff6ff;
  --accent:        #7C3AED;
  --accent-dark:   #6d28d9;
  --accent-light:  #f5f3ff;
  --gradient:      linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  --gradient-soft: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
  --text-dark:     #111827;
  --text-muted:    #6b7280;
  --bg-light:      #F3F4F6;
  --white:         #ffffff;
  --border:        #e5e7eb;
  --shadow-sm:     0 2px 8px rgba(37, 99, 235, 0.08);
  --shadow-md:     0 8px 30px rgba(37, 99, 235, 0.12);
  --shadow-lg:     0 16px 50px rgba(37, 99, 235, 0.18);
  --radius:        14px;
  --radius-lg:     20px;
  /* Platform colors */
  --fb:     #1877F2;
  --yt:     #FF0000;
  --tt-gr:  linear-gradient(135deg, #ee1d52, #69c9d0);
  --tw:     #1DA1F2;
  --wise:   #9fe870;
  --paypal: #003087;
  --tide:   #f8b84e;
  --bank:   #059669;
}

/* ── 2. BASE / RESET ── */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--text-dark); }

a { text-decoration: none; }

img { max-width: 100%; }

/* ── 3. BOOTSTRAP OVERRIDES ── */
.btn-primary {
  background: var(--gradient);
  border: none;
  font-weight: 600;
  padding: .65rem 1.6rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, .3);
  transition: all .25s;
}
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #1d4ed8 0%, #6d28d9 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, .4);
}
.btn-outline-primary {
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 600;
  padding: .6rem 1.6rem;
  border-radius: 10px;
  background: transparent;
  transition: all .25s;
}
.btn-outline-primary:hover {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}
.badge-gradient {
  background: var(--gradient);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  padding: .35rem .9rem;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(37,99,235,.2);
  display: inline-block;
  text-transform: uppercase;
}
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-section-light { background-color: var(--bg-light); }
.bg-section-white { background-color: var(--white); }

/* ── 4. NAVBAR ── */
#mainNav {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
  padding: .85rem 0;
}
#mainNav.scrolled {
  box-shadow: 0 4px 20px rgba(37,99,235,.1);
}
.navbar-brand {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .3px;
  color: var(--text-dark) !important;
}
.navbar-brand span { color: var(--primary); }
.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted) !important;
  padding: .4rem .75rem !important;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-light);
}
.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none !important;
}

/* ── 5. HERO ── */
#home {
  min-height: 92vh;
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 50%, #f5f3ff 100%);
  display: flex;
  align-items: center;
  padding: 100px 0 70px;
  position: relative;
  overflow: hidden;
}
#home::before {
  content: '';
  position: absolute;
  top: -100px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.09) 0%, transparent 70%);
  pointer-events: none;
}
#home::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--gradient);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: .4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.4rem;
  letter-spacing: .5px;
  box-shadow: 0 4px 12px rgba(37,99,235,.25);
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.3rem;
  color: var(--text-dark);
}
.hero-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stats .stat-val {
  font-size: 1.9rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-stats .stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: .1rem;
}

/* Platform Cards (Hero Right) */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.platform-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: transform .25s, box-shadow .25s;
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.platform-card .p-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff;
  margin-bottom: .6rem;
}
.platform-card h5 { font-size: .88rem; font-weight: 700; margin-bottom: .3rem; }
.platform-card p { font-size: .76rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
.platform-card .ptag {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 20px;
  margin-top: .5rem;
}
.ptag-green  { background: #d1fae5; color: #065f46; }
.ptag-blue   { background: #dbeafe; color: #1e40af; }
.ptag-purple { background: var(--accent-light); color: var(--accent-dark); }
.ai-platform-card {
  grid-column: span 2;
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}
.ai-platform-card p { color: rgba(255,255,255,.85); }
.ai-platform-card .ptag { background: rgba(255,255,255,.18); color: #fff; }

/* ── 6. SECTION COMMON ── */
.section-py { padding: 90px 0; }
.section-header { margin-bottom: 3rem; }
.section-header p { color: var(--text-muted); max-width: 580px; margin: .6rem auto 0; }
.section-header.text-start p { margin-left: 0; }

/* ── 7. ABOUT ── */
.about-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
  text-align: center;
}
.about-stat-card .val {
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.about-stat-card .lbl { font-size: .8rem; color: var(--text-muted); }
.platform-visual .plat-row { display: flex; gap: .8rem; margin-bottom: .8rem; }
.plat-item {
  flex: 1; border-radius: var(--radius); padding: 1rem;
  text-align: center; color: #fff;
  font-size: .8rem; font-weight: 700;
}
.plat-item i { font-size: 1.6rem; display: block; margin-bottom: .3rem; }
.pi-fb   { background: var(--fb); }
.pi-yt   { background: var(--yt); }
.pi-tt   { background: linear-gradient(135deg, #ee1d52, #69c9d0); }
.pi-tw   { background: var(--tw); }
.pi-ai   { background: var(--gradient); }
.about-badge-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: flex-start; gap: .8rem;
  margin-top: 1rem;
}
.about-badge-card .badge-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; flex-shrink: 0;
}
.about-badge-card h6 { font-size: .88rem; font-weight: 700; margin: 0; }
.about-badge-card p  { font-size: .75rem; color: var(--text-muted); margin: .2rem 0 0; }

/* ── 8. SERVICE CARDS ── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
  margin-bottom: 1.2rem;
}
.service-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.service-card .desc { font-size: .87rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.service-list { list-style: none; padding: 0; margin-bottom: 1.2rem; }
.service-list li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: var(--text-muted); padding: .22rem 0;
}
.service-list li i { color: var(--accent); font-size: .8rem; }
.service-link { color: var(--primary); font-size: .85rem; font-weight: 700; }
.service-link:hover { color: var(--accent); }
/* AI Full-width card */
.ai-service-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #1e3a8a 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.ai-service-card h4 { color: #fff; font-size: 1.3rem; }
.ai-service-card .desc { color: rgba(255,255,255,.85); }
.ai-service-card .service-list li { color: rgba(255,255,255,.75); }
.ai-service-card .service-list li i { color: #a78bfa; }
.ai-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: .3rem .85rem;
  font-size: .75rem; font-weight: 600;
  margin: .3rem .2rem;
}
.ai-stats-row .val { font-size: 1.6rem; font-weight: 900; color: #c4b5fd; display: block; }
.ai-stats-row small { font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .5px; }
.ai-inner-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.ai-inner-box h6 { color: rgba(255,255,255,.9); font-size: .88rem; margin-bottom: .8rem; }

/* ── 9. BANKING SECTION ── */
.banking-hero-card {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563EB 45%, #7C3AED 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.banking-hero-card h3 { font-size: 1.7rem; font-weight: 800; color: #fff; }
.banking-hero-card p  { color: rgba(255,255,255,.85); font-size: .95rem; line-height: 1.7; }
.bank-badge-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  border-radius: 20px;
  padding: .3rem .85rem;
  font-size: .75rem; font-weight: 600;
  margin: .3rem .2rem;
}
.bank-hero-stat {
  background: rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.2rem 1.8rem;
  text-align: center;
  min-width: 110px;
}
.bank-hero-stat .val { font-size: 1.8rem; font-weight: 900; display: block; }
.bank-hero-stat small { font-size: .72rem; color: rgba(255,255,255,.7); }

/* Payment Partners */
.partner-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.partner-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.15); }
.partner-logo-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900;
  flex-shrink: 0;
}
.partner-name { font-size: 1.6rem; font-weight: 900; }
.partner-features { list-style: none; padding: 0; margin: 1rem 0; }
.partner-features li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .83rem; font-weight: 500; padding: .28rem 0;
}
.partner-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  padding: .25rem .75rem; border-radius: 20px;
  margin-top: .4rem;
}
/* Wise */
.partner-wise { background: linear-gradient(135deg, #9fe870, #b8f589); color: #163300; }
.partner-wise .partner-logo-icon { background: #163300; color: #9fe870; }
.partner-wise .partner-features li { color: #1a4000; }
.partner-wise .partner-features li i { color: #163300; }
.partner-wise .partner-tag  { background: #163300; color: #9fe870; }
/* PayPal */
.partner-paypal { background: linear-gradient(135deg, #003087, #009cde); color: #fff; }
.partner-paypal .partner-logo-icon { background: rgba(255,255,255,.15); color: #fff; }
.partner-paypal .partner-features li { color: rgba(255,255,255,.88); }
.partner-paypal .partner-features li i { color: #7dd3fc; }
.partner-paypal .partner-tag { background: rgba(255,255,255,.2); color: #fff; border: 1px solid rgba(255,255,255,.3); }
/* Tide */
.partner-tide { background: linear-gradient(135deg, #f8b84e, #fcd47a); color: #1a1a1a; }
.partner-tide .partner-logo-icon { background: #1a1a1a; color: #f8b84e; }
.partner-tide .partner-features li { color: #3d2800; }
.partner-tide .partner-features li i { color: #1a1a1a; }
.partner-tide .partner-tag { background: #1a1a1a; color: #f8b84e; }

/* Bank Service Cards */
.bank-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.bank-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.bank-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #bfdbfe; }
.bank-card:hover::before { transform: scaleX(1); }
.bank-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 12px rgba(37,99,235,.2);
}
.bank-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.bank-card .desc { font-size: .87rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.bank-list { list-style: none; padding: 0; margin-bottom: 1.2rem; }
.bank-list li { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--text-muted); padding: .22rem 0; }
.bank-list li i { color: var(--primary); font-size: .8rem; }
.bank-link { color: var(--primary); font-size: .85rem; font-weight: 700; }
.bank-link:hover { color: var(--accent); }

/* Payout Table */
.payout-table-wrap { margin-top: 3rem; }
.payout-table-wrap h4 { font-size: 1.2rem; font-weight: 700; text-align: center; margin-bottom: 1.2rem; }
.table-custom { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.table-custom thead th {
  background: linear-gradient(135deg, #1e3a8a, #2563EB);
  color: #fff; font-size: .83rem; font-weight: 700; padding: 1rem 1.2rem;
  border: none;
}
.table-custom tbody tr:hover { background-color: var(--primary-light); }
.table-custom tbody td { font-size: .83rem; padding: .95rem 1.2rem; vertical-align: middle; border-color: var(--border); }
.plogo { display: flex; align-items: center; gap: .6rem; font-weight: 600; }
.plogo .pico { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .75rem; flex-shrink: 0; }
.badge-managed { background: var(--accent-light); color: var(--accent-dark); font-size: .72rem; font-weight: 700; padding: .25rem .7rem; border-radius: 20px; }
.badge-avail   { background: var(--primary-light); color: var(--primary-dark); font-size: .72rem; font-weight: 700; padding: .25rem .7rem; border-radius: 20px; }

/* ── 10. HOW IT WORKS ── */
.steps-line {
  position: relative;
}
.steps-line::before {
  content: '';
  position: absolute;
  top: 35px; left: 12.5%; right: 12.5%; height: 2px;
  background: var(--gradient);
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--gradient);
  color: #fff; font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 6px 20px rgba(37,99,235,.3);
}
.step-item h5 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.step-item p  { font-size: .83rem; color: var(--text-muted); line-height: 1.6; }

/* ── 11. RESULTS ── */
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.result-card .emoji { font-size: 2.2rem; margin-bottom: .8rem; display: block; }
.result-card .big-num {
  font-size: 2.2rem; font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block;
}
.result-card h5 { font-size: .88rem; font-weight: 700; margin: .4rem 0 .3rem; }
.result-card p  { font-size: .78rem; color: var(--text-muted); margin: 0; }

/* ── 12. TESTIMONIALS ── */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  height: 100%;
  transition: box-shadow .25s, transform .25s;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-stars { color: #f59e0b; font-size: .85rem; margin-bottom: .8rem; }
.testi-card blockquote { font-size: .88rem; color: var(--text-muted); line-height: 1.7; font-style: italic; margin-bottom: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .9rem;
  flex-shrink: 0;
}
.testi-author h6 { font-size: .88rem; font-weight: 700; margin: 0; }
.testi-author small { font-size: .75rem; color: var(--text-muted); }

/* ── 13. FAQ ── */
.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: .8rem;
  overflow: hidden;
}
.accordion-button {
  font-weight: 600;
  font-size: .93rem;
  color: var(--text-dark) !important;
  background: var(--white) !important;
  box-shadow: none !important;
  padding: 1.1rem 1.4rem;
}
.accordion-button:not(.collapsed) {
  color: var(--primary) !important;
  background: var(--primary-light) !important;
}
.accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563EB'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.accordion-body {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: .8rem 1.4rem 1.2rem;
  background: var(--white);
}

/* ── 14. CONTACT ── */
.contact-info-box .c-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }
.c-item .c-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .9rem; flex-shrink: 0;
}
.c-item h6 { font-size: .85rem; font-weight: 700; margin-bottom: .1rem; }
.c-item p  { font-size: .82rem; color: var(--text-muted); margin: 0; }
.contact-social a {
  width: 40px; height: 40px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; margin-right: .5rem;
  transition: opacity .2s, transform .2s;
}
.contact-social a:hover { opacity: .85; transform: translateY(-2px); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.form-control, .form-select {
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: .9rem;
  padding: .7rem 1rem;
  font-family: 'Inter', sans-serif;
  transition: border .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
  outline: none;
}
.form-label { font-size: .82rem; font-weight: 600; margin-bottom: .35rem; }

/* ── 15. FOOTER ── */
footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  color: #fff;
  padding: 65px 0 28px;
}
.footer-logo { font-size: 1rem; font-weight: 900; color: #fff; }
.footer-logo span { color: var(--primary); }
.footer-desc { color: #9ca3af; font-size: .85rem; line-height: 1.7; margin: .8rem 0 1.4rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: .88rem; margin-right: .4rem;
  transition: transform .2s;
}
.footer-social a:hover { transform: translateY(-2px); background: var(--gradient) !important; }
.footer-col h5 { font-size: .88rem; font-weight: 700; margin-bottom: 1rem; color: #fff; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: .45rem; }
.footer-col ul li a { color: #9ca3af; font-size: .82rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-divider { border-color: rgba(255,255,255,.08); margin: 2rem 0 1.2rem; }
.footer-bottom p { font-size: .8rem; color: #4b5563; margin: 0; }

/* ── 16. SCROLL TO TOP ── */
#scrollTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff; border: none; cursor: pointer;
  font-size: 1rem;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,99,235,.4);
  transition: transform .2s, opacity .2s;
  z-index: 999;
}
#scrollTop:hover { transform: translateY(-3px); opacity: .9; }

/* ── 17. STATS TICKER BAR ── */
.stats-ticker {
  background: var(--gradient);
  padding: 1rem 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex; gap: 0; align-items: center;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: .5rem;
  color: #fff; font-size: .88rem; font-weight: 600;
  padding: 0 2.5rem;
  border-right: 1px solid rgba(255,255,255,.25);
}
.ticker-item i { font-size: 1rem; opacity: .85; }
.ticker-item .val { font-size: 1.05rem; font-weight: 900; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── 18. TRUST SECTION ── */
.trust-section { background: var(--white); padding: 50px 0; border-bottom: 1px solid var(--border); }
.trust-badge {
  display: flex; align-items: center; gap: .8rem;
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.4rem;
  transition: all .2s;
}
.trust-badge:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.trust-badge .t-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; flex-shrink: 0;
}
.trust-badge h6 { font-size: .85rem; font-weight: 700; margin: 0; }
.trust-badge p  { font-size: .75rem; color: var(--text-muted); margin: 0; }
.verified-seal {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #d1fae5; color: #065f46;
  border-radius: 20px; padding: .35rem 1rem;
  font-size: .78rem; font-weight: 700;
}
.verified-seal i { font-size: .85rem; }
.trust-logos-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.5rem; }
.trust-logo-pill {
  display: flex; align-items: center; gap: .6rem;
  border: 1px solid var(--border); border-radius: 40px;
  padding: .5rem 1.2rem; font-weight: 700; font-size: .88rem;
  background: var(--white); transition: all .2s;
}
.trust-logo-pill:hover { border-color: var(--primary); color: var(--primary); }
.trust-logo-pill i { font-size: 1.1rem; }

/* ── 19. CTA BANNER ── */
.cta-banner {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: #fff;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 250px; height: 250px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.cta-banner h3 { font-size: 1.8rem; font-weight: 800; color: #fff; }
.cta-banner p  { color: rgba(255,255,255,.85); font-size: 1rem; margin: .5rem 0 0; }
.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  padding: .75rem 2rem;
  border-radius: 10px;
  border: none;
  font-size: .95rem;
  transition: all .25s;
  display: inline-block;
  text-decoration: none;
}
.btn-white:hover { background: #f0f4ff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,.15); color: var(--primary); }
.btn-white-outline {
  background: transparent;
  color: #fff;
  font-weight: 700;
  padding: .7rem 2rem;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,.5);
  font-size: .95rem;
  transition: all .25s;
  display: inline-block;
  text-decoration: none;
}
.btn-white-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }

/* ── 20. DASHBOARD PREVIEW ── */
#dashboard { background: var(--bg-light); }
.dash-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.dash-card .dash-label { font-size: .72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .3rem; }
.dash-card .dash-val { font-size: 1.8rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.dash-card .dash-change { font-size: .78rem; font-weight: 600; display: inline-flex; align-items: center; gap: .3rem; }
.dash-change.up   { color: #059669; }
.dash-change.down { color: #dc2626; }
/* Bar Chart */
.bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 100px; padding: 0; }
.bar {
  flex: 1; border-radius: 6px 6px 0 0;
  background: var(--gradient);
  opacity: .7;
  transition: opacity .2s;
  position: relative;
}
.bar:hover { opacity: 1; }
.bar.highlight { opacity: 1; }
/* Platform rows */
.plat-row-item { display: flex; align-items: center; gap: .8rem; padding: .6rem 0; border-bottom: 1px solid var(--border); }
.plat-row-item:last-child { border: none; }
.plat-row-item .plat-name { font-size: .82rem; font-weight: 600; flex: 1; }
.plat-bar-wrap { flex: 2; background: var(--bg-light); border-radius: 20px; height: 8px; overflow: hidden; }
.plat-bar-fill { height: 100%; border-radius: 20px; background: var(--gradient); }
.plat-row-item .plat-pct { font-size: .78rem; font-weight: 700; color: var(--primary); min-width: 35px; text-align: right; }
/* Recent payouts table inside dashboard */
.payout-row { display: flex; align-items: center; gap: .8rem; padding: .55rem 0; border-bottom: 1px solid var(--border); }
.payout-row:last-child { border: none; }
.payout-row .pr-platform { font-size: .78rem; font-weight: 600; flex: 1; }
.payout-row .pr-amount { font-size: .88rem; font-weight: 800; color: var(--primary); }
.payout-row .pr-status { font-size: .7rem; font-weight: 700; padding: .15rem .6rem; border-radius: 20px; }
.pr-paid { background: #d1fae5; color: #065f46; }
.pr-pending { background: #fef3c7; color: #92400e; }

/* ── 21. EARNINGS CALCULATOR ── */
#calculator { background: var(--white); }
.calc-card {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
}
.calc-card h4 { color: #fff; font-size: 1.4rem; font-weight: 800; }
.calc-card .form-label { color: rgba(255,255,255,.9); font-size: .82rem; font-weight: 600; }
.calc-card .form-control,
.calc-card .form-select {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  border-radius: 10px;
  font-size: .9rem;
}
.calc-card .form-control::placeholder { color: rgba(255,255,255,.55); }
.calc-card .form-control:focus,
.calc-card .form-select:focus { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); box-shadow: none; color: #fff; }
.calc-card .form-select option { background: #2563EB; color: #fff; }
.calc-result {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
}
.calc-result .placeholder-text { text-align: center; color: var(--text-muted); padding: 2rem 0; }
.calc-result .placeholder-text i { font-size: 3rem; color: var(--border); display: block; margin-bottom: 1rem; }
.calc-result .result-platform { font-size: .82rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .3rem; }
.calc-result .result-range { font-size: 2.2rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.1; }
.calc-result .result-note { font-size: .78rem; color: var(--text-muted); margin-top: .3rem; }
.calc-result .result-divider { border-color: var(--border); margin: 1.2rem 0; }
.breakdown-row { display: flex; justify-content: space-between; align-items: center; padding: .4rem 0; font-size: .83rem; }
.breakdown-row span:first-child { color: var(--text-muted); }
.breakdown-row span:last-child  { font-weight: 700; color: var(--text-dark); }

/* ── 22. WHATSAPP FLOATING BUTTON ── */
#waBtn {
  position: fixed;
  bottom: 85px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 999;
  transition: transform .25s, box-shadow .25s;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
#waBtn:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,.55); color: #fff; animation: none; }
#waBtn .wa-tooltip {
  position: absolute;
  right: 66px; top: 50%; transform: translateY(-50%);
  background: #111827; color: #fff;
  font-size: .78rem; font-weight: 600;
  padding: .4rem .9rem; border-radius: 8px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
#waBtn .wa-tooltip::after {
  content: '';
  position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #111827;
}
#waBtn:hover .wa-tooltip { opacity: 1; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 32px rgba(37,211,102,.75), 0 0 0 10px rgba(37,211,102,.1); }
}

/* ── 23. LEGAL FOOTER STRIP ── */
.legal-strip {
  background: #0a0f1a;
  padding: .75rem 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.legal-strip p  { font-size: .75rem; color: #4b5563; margin: 0; }
.legal-strip a  { color: #6b7280; font-size: .75rem; text-decoration: none; transition: color .2s; }
.legal-strip a:hover { color: var(--primary); }

/* ── 24. FORM VALIDATION ── */
.form-control.is-invalid,
.form-select.is-invalid { border-color: #dc2626; }
.form-control.is-valid,
.form-select.is-valid   { border-color: #059669; }
.was-validated .form-control:invalid,
.was-validated .form-select:invalid { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,.1); }
.was-validated .form-control:valid,
.was-validated .form-select:valid   { border-color: #059669; }
.invalid-feedback { font-size: .78rem; color: #dc2626; }
#formError {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: .9rem 1.1rem;
  color: #dc2626;
  font-size: .88rem;
}

/* ── 25. PAYMENT PROOF SECTION ── */

/* Wise-style card wrapper */
.wise-proof-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,.10);
  overflow: hidden;
  border: 1.5px solid #e5e7eb;
}

/* Card header */
.wise-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: #f0fdf4;
  border-bottom: 1.5px solid #d1fae5;
}
.wise-card-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #9fe870;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wise-total-badge {
  margin-left: auto;
  background: #059669;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}

/* Transaction rows */
.wise-tx-list { padding: 6px 0; }
.wise-tx {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 24px;
  border-bottom: 1px solid #f3f4f6;
  transition: background .15s;
}
.wise-tx:last-child { border-bottom: none; }
.wise-tx:hover { background: #f9fafb; }
.wise-tx-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e7f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fb);
  font-size: .85rem;
  flex-shrink: 0;
}
.wise-tx-label {
  flex: 1;
  font-size: .92rem;
  color: #111827;
  font-weight: 500;
}
.wise-tx-amt {
  font-size: .95rem;
  font-weight: 700;
  color: #059669;
  letter-spacing: .01em;
}

/* Card footer */
.wise-card-footer {
  padding: 13px 24px;
  background: #f9fafb;
  border-top: 1.5px solid #e5e7eb;
  font-size: .78rem;
  color: #6b7280;
  text-align: center;
}

/* ── Proof combined total bar ── */
.proof-combined-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(37,99,235,.08);
  border: 1.5px solid var(--border);
  padding: 1.25rem 2rem;
  margin-bottom: .5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.pcb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 120px;
}
.pcb-label {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pcb-val {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
}
.pcb-sub {
  font-size: .7rem;
  color: var(--text-muted);
}
.pcb-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}
.wise-col  { color: #059669; }
.pp-col    { color: #003087; }
.yt-col    { color: #cc0000; font-weight: 700; }

/* ── YouTube proof card ── */
.yt-proof-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,.10);
  overflow: hidden;
  border: 1.5px solid #fecaca;
}
.yt-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: linear-gradient(135deg, #cc0000 0%, #ff4444 100%);
  border-bottom: 1.5px solid #fecaca;
}
.yt-card-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.yt-total-badge {
  margin-left: auto;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.35);
}
.yt-tx-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fee2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cc0000;
  font-size: .85rem;
  flex-shrink: 0;
}
.yt-status {
  font-size: .72rem;
  background: #fee2e2;
  color: #991b1b;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}
.yt-card-footer {
  padding: 13px 24px;
  background: #fff8f8;
  border-top: 1.5px solid #fecaca;
  font-size: .78rem;
  color: #991b1b;
  text-align: center;
}
/* YouTube: 16 items × 57px = 912px → animate -912px */
@keyframes proof-scroll-yt {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-912px); }
}
.yt-track { animation: proof-scroll-yt 20s linear infinite; }

/* ── Scroll window (4 items visible) ── */
.proof-scroll-window {
  height: 228px;   /* 4 × 57px rows */
  overflow: hidden;
  position: relative;
}
.proof-scroll-window::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: linear-gradient(to top, #fff 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
.paypal-proof-card .proof-scroll-window::after {
  background: linear-gradient(to top, #f0f4ff 0%, transparent 100%);
}
.yt-proof-card .proof-scroll-window::after {
  background: linear-gradient(to top, #fff8f8 0%, transparent 100%);
}
.proof-scroll-track {
  display: flex;
  flex-direction: column;
}
.wise-track {
  animation: proof-scroll-wise 18s linear infinite;
}
.paypal-track {
  animation: proof-scroll-pp 10s linear infinite;
}
/* Wise: 14 items × 57px = 798px → animate -798px (50% of 28 items) */
@keyframes proof-scroll-wise {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-798px); }
}
/* PayPal: 7 items × 57px = 399px → animate -399px (50% of 14 items) */
@keyframes proof-scroll-pp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-399px); }
}
/* Pause on hover */
.proof-scroll-window:hover .proof-scroll-track {
  animation-play-state: paused;
}

/* ── PayPal proof card ── */
.paypal-proof-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,.10);
  overflow: hidden;
  border: 1.5px solid #bfdbfe;
}
.paypal-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: linear-gradient(135deg, #003087 0%, #009cde 100%);
  border-bottom: 1.5px solid #bfdbfe;
}
.paypal-card-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.paypal-total-badge {
  margin-left: auto;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.35);
}
.paypal-tx-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e0f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fb);
  font-size: .85rem;
  flex-shrink: 0;
}
.wise-tx-status {
  font-size: .72rem;
  background: #d1fae5;
  color: #065f46;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}
.paypal-card-footer {
  padding: 13px 24px;
  background: #f0f7ff;
  border-top: 1.5px solid #bfdbfe;
  font-size: .78rem;
  color: #1e40af;
  text-align: center;
}

/* Trust badges */
.proof-badge {
  background: #fff;
  border: 1.5px solid #d1fae5;
  color: #065f46;
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

/* Stat cards on the right */
.proof-stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid #059669;
}
.proof-stat-label {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.proof-stat-val {
  font-size: 1.7rem;
  font-weight: 800;
  color: #059669;
  line-height: 1;
  margin-bottom: 4px;
}
.proof-stat-sub {
  font-size: .8rem;
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .wise-card-header { flex-wrap: wrap; }
  .wise-total-badge { margin-left: 0; }
  .proof-stat-val { font-size: 1.4rem; }
}

/* ── 17. UTILITIES ── */
.shadow-card { box-shadow: var(--shadow-sm); }
.radius-lg   { border-radius: var(--radius-lg); }

/* ── 18. RESPONSIVE HELPERS ── */
@media (max-width: 991.98px) {
  .steps-line::before { display: none; }
  .ai-service-card { padding: 2rem; }
  .banking-hero-card { padding: 2rem; }
}

@media (max-width: 767.98px) {
  #home { padding: 80px 0 60px; min-height: auto; }
  .hero-title { font-size: 1.9rem; }
  .hero-stats { gap: 1.5rem; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .table-custom { font-size: .75rem; }
  .table-custom thead th,
  .table-custom tbody td { padding: .7rem .8rem; }
  .banking-hero-card { flex-direction: column; }
  .partner-card { margin-bottom: 1rem; }
  .section-py { padding: 65px 0; }
  .payout-table-wrap { overflow-x: auto; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 1.65rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.2rem; }
  .platform-grid { gap: .7rem; }
  .platform-card { padding: 1rem; }
  .section-py { padding: 50px 0; }
}
