/* =============================
   Visa Global Server — Professional UI Refresh (Full)
   NOTE: Copywriting unchanged. Drop-in replacement for style.css
   ============================= */

/* === DESIGN TOKENS === */
:root {
  --visa-blue: #14205A;      /* Primary */
  --visa-ink: #0E163F;       /* Headlines */
  --visa-gold: #F7B600;      /* Accent */
  --ink: #1A2238;            /* Body text */
  --muted: #5E6A85;          /* Muted text */
  --bg: #FFFFFF;             /* Page bg */
  --bg-soft: #F6F8FC;        /* Section bg */
  --card: #FFFFFF;           /* Card bg */
  --border: #E6E9F2;         /* Subtle border */
  --shadow: 0 14px 30px -16px rgba(9, 23, 71, .22);
  --shadow-soft: 0 8px 24px -14px rgba(9, 23, 71, .18);
  --ff: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --container: 1160px;
}

/* === BASE & RESET === */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink); font-family: var(--ff); line-height: 1.65;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--visa-gold); outline-offset: 2px; border-radius: 6px; }
.container { width: min(var(--container), 92%); margin-inline: auto; }
section, .section { padding: 84px 0; }

h1, h2, h3, h4 { margin: 0; line-height: 1.2; font-weight: 700; color: var(--visa-ink); }
h1 { font-size: clamp(36px, 5vw, 56px); letter-spacing: .2px; }
h2 { font-size: clamp(26px, 3.2vw, 36px); }
h3 { font-size: clamp(18px, 2.2vw, 22px); }
h4 { font-size: 18px; font-weight: 600; }

p { margin: 0; color: var(--muted); }
strong { color: #2C3563; }
.section-header { max-width: 760px; margin: 0 auto 28px; text-align: center; }

/* === NEW: Section Header Accent === */
.section-header h2 {
  position: relative;
  padding-bottom: 12px;
}
.section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--visa-gold);
  border-radius: 2px;
}
.section-header p { margin-top: 20px; } /* Increased margin */
/* ================================== */

.section-header p strong { color: var(--visa-blue); }

/* === HEADER / NAV (unified: landing + article + docs) === */
.main-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  gap: 24px;
  max-width: var(--container);
  width: min(92%, var(--container));
  margin: 0 auto;
  min-height: 64px;
}

.main-header .logo {
  height: 32px;
  flex-shrink: 0;
}

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

.nav-link {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  position: relative;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--visa-blue);
  background: #F3F6FF;
}

.nav-link-docs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.nav-link-docs:hover {
  color: var(--visa-blue);
  background: #F3F6FF;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-actions .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.mobile-menu-toggle,
.nav-close-btn { display: none; }

/* === BUTTONS & BADGES === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px; border-radius: 12px; border: 1px solid var(--border);
  font-weight: 600; transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--visa-blue); color: #fff; border-color: var(--visa-blue); box-shadow: 0 6px 18px -8px rgba(20,32,90,.45); }
.btn-primary:hover { filter: brightness(1.07); }
.btn-secondary { background: #fff; color: var(--visa-blue); border-color: var(--visa-blue); }
.btn-secondary:hover { background: #F3F6FF; }

.badge-featured {
  display: inline-block; padding: 6px 10px; border-radius: 999px; font-size: 12px; letter-spacing: .3px;
  background: rgba(247,182,0,.12); color: var(--visa-blue); border: 1px solid #FBE7AA;
}

/* === HERO (Billboard) === */
.hero--billboard { position: relative; padding: 0; min-height: 78vh; display: grid; place-items: center; text-align: center; }
.hero--billboard .hero-media { position: absolute; inset: 0; overflow: hidden; min-height: 420px; }
.hero--billboard .hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero--billboard .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7, 14, 52, .55) 0%, rgba(7, 14, 52, .65) 36%, rgba(7, 14, 52, .75) 100%);
}
.hero-billboard-inner { position: relative; z-index: 2; width: 100%; }
.hero-copy { color: #fff; max-width: 820px; margin: auto; padding: 40px 0; }
.hero-headline { color: #fff; letter-spacing: .6px; text-shadow: 0 8px 22px rgba(0,0,0,.35); }
.hero-subtitle { font-size: clamp(16px, 2.1vw, 20px); color: rgba(255,255,255,.92); margin: 16px 0 24px; }
.hero-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-cta .btn-primary { background: var(--visa-gold); color: #101C4E; border-color: var(--visa-gold); }
.hero-cta .btn-secondary { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.3); }
.hero-cta .btn-secondary:hover { background: rgba(255,255,255,.24); }

/* === TRUST BAR === */
.trust-bar-section { padding: 18px 0; background: #F8FAFF; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: center; }
.trust-item {
  display: flex;
  flex-direction: column; /* Stacked layout */
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 12px; /* Space between icon and text */
  padding: 12px 8px;
}
.trust-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--visa-blue);
  font-size: 22px;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0; /* Prevent shrinking */
}
.trust-item p {
  margin: 0;
  font-size: .9rem; /* Slightly smaller to fit */
  font-weight: 600;
  color: var(--ink); /* Darker text */
  letter-spacing: .1px;
  line-height: 1.4;
}

/* === FEATURE SECTION === */
.feature-section { background: #fff; }

/* === FLOW / TIMELINE === */
.flow-section { background: var(--bg-soft); }
.timeline { position: relative; display: grid; gap: 18px; max-width: 900px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; top: 10px; bottom: 10px; left: 22px; width: 2px; background: linear-gradient(var(--visa-gold), #FFD875); opacity: .55; }
.timeline-item { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; }
.timeline-step { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-weight: 700; color: #0F1B4A; background: #FFF5CC; border: 1px solid #FFE08A; box-shadow: var(--shadow-soft); }
.timeline-content { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow-soft); }
.timeline-content h4 { margin: 0 0 6px; color: var(--visa-ink); }

/* === PRICING === */
.section--pricing { background: #fff; }

/* === NEW: PRICING TABS === */
.pricing-switcher {
  display: flex;
  justify-content: center;
  margin: 0 auto 32px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 5px;
  width: max-content;
}
.pricing-switcher button {
  background: transparent;
  border: none;
  padding: 10px 24px;
  border-radius: 99px;
  cursor: pointer;
  font-weight: 600;
  color: var(--muted);
  transition: background .2s ease, color .2s ease;
  font-family: var(--ff);
  font-size: 15px;
}
.pricing-switcher button.active {
  background: var(--visa-blue);
  color: #fff;
  box-shadow: 0 4px 12px -4px rgba(20, 32, 90, .35);
}
.pricing-tab-content {
  display: none;
}
.pricing-tab-content.active {
  display: block;
}
.pricing-grid-annual {
  display: grid;
  justify-content: center;
}
.pricing-grid-annual .pricing-card {
  max-width: 420px; /* Make the single card a decent width */
}
/* ======================== */


.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pricing-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 22px; display: flex; flex-direction: column; gap: 12px; position: relative; box-shadow: var(--shadow-soft); }
.pricing-card.featured { border-color: var(--visa-blue); outline: 3px solid rgba(20, 32, 90, .08); transform: translateY(-2px); }
.pricing-header h3 { margin: 0 0 6px; color: var(--visa-ink); }
.price { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; font-size: 32px; font-weight: 700; color: var(--visa-blue); }
.price .original del { opacity: .6; }
.price .sale { font-weight: 800; font-size: 1.25em; }
.period { font-size: 14px; color: var(--muted); }
.pricing-features { list-style: none; padding: 0; margin: 10px 0 16px; display: grid; gap: 8px; }
.pricing-features li { padding-left: 26px; position: relative; color: #2E3A61; }
.pricing-features li::before { content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 12px; border-radius: 3px; background: var(--visa-gold); }
.pricing-card .btn { margin-top: auto; }
.discount-badge { font-size: .75rem; padding: .2rem .5rem; border-radius: .375rem; background: #FFE9E9; color: #C00000; }

/* === FOOTER === */
.main-footer { background: var(--visa-blue); color: #EAF0FF; text-align: center; padding: 30px 0; }
.main-footer .logo { height: 30px; opacity: .95; }
.main-footer .copyright { margin-top: 12px; color: rgba(255,255,255,.86); font-size: .95rem; }

/* === POPUP (Security Notice) === */
.popup-overlay {
  position: fixed; inset: 0; display: flex; justify-content: center; align-items: center; z-index: 2000;
  background: rgba(7, 14, 52, 0.72); opacity: 1; visibility: visible; transition: opacity .25s ease, visibility .25s ease;
}
.popup-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.popup-container {
  background: #fff; padding: 26px 30px; border-radius: 14px; box-shadow: var(--shadow);
  width: min(560px, 92%); transform: translateY(0); transition: transform .25s ease;
}
.popup-overlay.hidden .popup-container { transform: translateY(8px); }
.popup-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 14px; margin-bottom: 18px; border-bottom: 1px solid var(--border); }
.popup-header h2 { font-size: 1.25rem; color: var(--visa-ink); }
.popup-close-btn { background: transparent; border: 0; font-size: 1.8rem; line-height: 1; color: #6B7280; cursor: pointer; }
.popup-close-btn:hover { color: #111827; }
.popup-body p { margin-bottom: 1em; line-height: 1.6; color: #4B5563; }
.popup-footer { margin-top: 18px; text-align: right; }
.popup-footer .btn-primary { padding: 12px 22px; font-size: 1rem; }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .container { width: 94%; }
}

@media (max-width: 1040px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  /* Show hamburger, collapse desktop nav */
  .mobile-menu-toggle { display: inline-block; cursor: pointer; background: transparent; border: 0; font-size: 28px; color: var(--visa-blue); }
  .header-actions { display: none; }
  .nav-container { position: relative; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; width: 100%; background: #fff; border-top: 1px solid var(--border);
    box-shadow: 0 10px 20px -5px rgba(13,28,73,.12); padding: 10px 0; display: flex; flex-direction: column; align-items: center; gap: 6px;
    opacity: 0; transform: translateY(-10px); visibility: hidden; pointer-events: none; transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav-links .nav-link,
  .nav-links .nav-link-docs { width: 100%; text-align: center; padding: 12px 20px; }
  .nav-links .nav-link:hover { background: var(--bg-soft); }
  .nav-links .nav-link::after { display: none; }
  .nav-links.show-menu { opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; }

  /* Layout grids */
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  section, .section { padding: 64px 0; }
  .timeline::before { left: 18px; }
  .timeline-item { grid-template-columns: 40px 1fr; }
  .timeline-step { width: 40px; height: 40px; }
}

@media (max-width: 576px) {
  /* TRUST BAR: horizontal scroll for small screens */
  .trust-bar-grid { display: flex; overflow-x: auto; gap: 1.25rem; padding-bottom: .75rem; -ms-overflow-style: none; scrollbar-width: none; }
  .trust-bar-grid::-webkit-scrollbar { display: none; }
  .trust-item { flex-shrink: 0; width: 240px; justify-content: center; }
}

/* === MISC. POLISH === */
/* Reduce CLS by reserving space for hero media */
.hero--billboard .hero-media { min-height: 420px; }

/* Subtle hover raise for cards */
.pricing-card:hover, .timeline-content:hover { box-shadow: var(--shadow); transform: translateY(-2px); transition: box-shadow .22s ease, transform .22s ease; }

/* Landing: clearer section rhythm and professional spacing */
.hero-copy { padding: 48px 0 56px; }
.section-header h2 { letter-spacing: -0.02em; }
.feature-section .section-header p { font-size: 1.05rem; line-height: 1.7; }
.articles-section { padding-top: 72px; padding-bottom: 88px; }
.article-card { border-radius: 16px; overflow: hidden; }
.article-content { padding: 22px 24px; }
.article-title { font-size: 1.1rem; line-height: 1.35; margin-bottom: 10px; }
.article-title a, .article-card-link { color: inherit; }
.article-card-link:hover .article-read-more { text-decoration: underline; }

/* Accessibility niceties */
.nav-link:focus-visible { outline: 2px solid var(--visa-gold); outline-offset: 4px; border-radius: 6px; }
.btn:focus-visible { outline: 2px solid var(--visa-gold); outline-offset: 3px; }

/* Utility for visually-hidden text if needed */
.visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }


/* === STYLE UNTUK SEKSI GRAFIK MARKET === */
.market-section {
  background-color: var(--bg-soft); /* Latar putih biasa */
  padding: 60px 0;
}

.tradingview-widget-container {
  border-radius: 16px;
  overflow: hidden; /* Memastikan sudut widget ikut melengkung */
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

/* === STYLE UNTUK NOTIFIKASI TRANSAKSI REAL-TIME === */
.notification-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  
  /* Tampilan */
  background-color: var(--card);
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 14px 18px;
  
  /* Layout Internal */
  display: flex;
  align-items: center;
  gap: 12px;

  /* Animasi & State Awal */
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out, visibility 0.4s;
}

.notification-popup.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.notification-image {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--visa-blue);
  color: var(--visa-gold);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
}

.notification-content p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.notification-text strong {
  color: var(--ink);
  font-weight: 600;
}

.notification-text a {
  color: var(--visa-blue);
  font-weight: 600;
  text-decoration: none;
}
.notification-text a:hover {
  text-decoration: underline;
}

.notification-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.notification-meta span {
  font-size: 12px;
  color: var(--muted);
}

.payment-logo {
  height: 16px;
  width: auto;
}

.notification-close {
  position: absolute;
  top: 4px;
  right: 8px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.notification-close:hover {
  color: var(--ink);
}

/* Penyesuaian untuk Tampilan Mobile */
@media (max-width: 576px) {
  .notification-popup {
    left: 15px;
    right: 15px;
    width: auto; /* Lebar otomatis */
    bottom: 15px;
  }
}

/* === STYLE UNTUK SEKSI ARTIKEL === */

.articles-section {
  background-color: var(--bg-soft); /* Warna latar yang lembut */
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 kolom di layar besar */
  gap: 24px;
  margin-top: 30px;
}

.article-card {
  background-color: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden; /* Agar sudut gambar mengikuti kartu */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.article-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.article-image-placeholder {
  height: 200px;
  background-color: var(--visa-blue);
  display: grid;
  place-items: center;
  color: var(--visa-gold);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2px;
}

.article-content {
  padding: 20px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.article-category {
  font-weight: 600;
  color: var(--visa-blue);
}

.article-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.article-snippet {
  font-size: 15px;
  margin-bottom: 16px;
  /* Batasi teks hanya 2 baris */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-read-more {
  font-weight: 600;
  color: var(--visa-blue);
}

/* Penyesuaian untuk Tampilan Mobile */
@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr; /* 1 kolom di mobile */
  }
}

/* === STYLE UNTUK TABEL TRANSAKSI === */
.transactions-section {
  padding-bottom: 80px; /* Beri jarak lebih ke footer */
}

/* Wrapper ini yang membuat tabel bisa di-scroll di mobile */
.table-responsive-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  /* Indikator scroll untuk browser webkit (Chrome, Safari) */
  -webkit-overflow-scrolling: touch;
}

.transaction-table {
  width: 100%;
  min-width: 1200px; /* REVISI: Lebar minimum ditambah untuk kolom baru */
  border-collapse: collapse;
  background-color: var(--card);
}

.transaction-table th,
.transaction-table td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
  white-space: nowrap; /* Mencegah teks turun baris */
}

.transaction-table thead th {
  background-color: var(--bg-soft);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.transaction-table tbody tr:last-child td {
  border-bottom: none; /* Hapus border di baris terakhir */
}

.transaction-table tbody tr:hover {
  background-color: var(--bg-soft);
}

.user-cell, .card-cell {
  font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
  font-size: 15px;
}

.country-cell {
  display: flex;
  align-items: center;
}

.country-cell img {
  height: 15px;
  width: 20px;
  margin-right: 10px;
  border-radius: 2px;
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
}

/* === UX POLISH PATCH v2025-10-04 === */
h1 { margin-bottom: 10px; }
.hero-subtitle { max-width: 760px; margin-inline: auto; }
.section-header + * { margin-top: 26px; }
.stack > * + * { margin-top: var(--stack, 12px); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 960px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }
.nav-container { padding: 12px 0; }
.nav-link { font-weight: 600; letter-spacing: .2px; }
.table-responsive-wrapper { position: relative; }
.transaction-table thead th { position: sticky; top: 0; z-index: 1; box-shadow: inset 0 -1px 0 var(--border); }
.amount-header, .amount-cell { text-align: right; font-variant-numeric: tabular-nums; }
.transaction-table tbody tr:nth-child(odd) { background: #FCFDFE; }
.transaction-table tbody tr:hover { background: #F4F7FF; }
.article-card, .pricing-card, .timeline-content { transition: transform .18s ease, box-shadow .18s ease; }
.article-card:hover, .pricing-card:hover, .timeline-content:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
  .trust-bar-section {
        background: #f8fafc;
        padding: 60px 0;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .trust-bar-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 30px;
        align-items: stretch;
    }

    .trust-item {
        background: #ffffff;
        padding: 35px 25px;
        border-radius: 16px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid #f1f5f9;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .trust-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        border-color: #e2e8f0;
    }

    .trust-icon-box {
        background: #eff6ff;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 28px;
        color: #1e3a8a;
    }

    .trust-item p {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        color: #1e293b;
        margin: 0;
        font-size: 1.1rem;
        letter-spacing: -0.025em;
    }

    .trust-item span.sub-text {
        display: block;
        margin-top: 8px;
        font-size: 0.9rem;
        color: #64748b;
        font-weight: 400;
        line-height: 1.5;
    }
.faq-section { background: var(--bg-soft); }
.faq-accordion { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-soft); padding: 16px 18px; }
.faq-item summary { cursor: pointer; list-style: none; font-weight: 700; color: var(--visa-ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item p { margin-top: 10px; color: #384766; }
.hero-headline { text-shadow: 0 10px 24px rgba(0,0,0,.35); }
.hero-subtitle { color: rgba(255,255,255,.94); }
.main-footer .copyright { letter-spacing: .2px; }

