/* ===================================================================
   Airfloat Forex — Design System
   =================================================================== */

:root {
  /* Brand colors (constant across themes) */
  --navy: #0A2540;
  --action: #1A56DB;
  --action-700: #1546b8;
  --emerald: #059669;
  --emerald-700: #047857;
  --gold: #F59E0B;
  --up: #059669;
  --down: #DC2626;
  --wa: #25D366;
  --wa-700: #1da851;

  /* Theme-aware semantic tokens (light defaults) */
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --surface-2: #f1f5fb;
  --ink: #0F172A;
  --heading: #0A2540;
  --muted: #64748B;
  --hairline: #E2E8F0;
  --accent: #1A56DB;
  --header-bg: rgba(248,250,252,.72);
  --tint-blue: #eef4ff;
  --tint-emerald: #ecfdf5;
  --tint-gold: #fef6e7;
  --tint-navy: #eef2f9;
  --enq-panel: linear-gradient(140deg, #eff5ff, #f8fbff);
  --enq-panel-border: #e1ebfb;
  --ph-bg: #eef2f7;
  --ph-stripe: #e6ecf3;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15,23,42,.06);
  --shadow-md: 0 4px 12px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.05);
  --shadow-lg: 0 1px 3px rgba(15,23,42,.06), 0 12px 32px rgba(15,23,42,.08);
  --shadow-xl: 0 24px 60px rgba(10,37,64,.18);

  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 22px;
  --r-pill: 999px;

  /* Type */
  --display: "Manrope", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --nav-h: 68px;
}

[data-theme="dark"] {
  --bg: #0a1422;
  --surface: #13223a;
  --surface-2: #1a2c47;
  --ink: #d7e2f1;
  --heading: #f4f8fd;
  --muted: #93a6c4;
  --hairline: rgba(255,255,255,.09);
  --accent: #6f9bff;
  --header-bg: rgba(9,17,30,.78);
  --tint-blue: rgba(80,130,250,.16);
  --tint-emerald: rgba(16,185,129,.16);
  --tint-gold: rgba(245,158,11,.16);
  --tint-navy: rgba(255,255,255,.07);
  --enq-panel: linear-gradient(140deg, rgba(80,130,250,.13), rgba(255,255,255,.02));
  --enq-panel-border: rgba(255,255,255,.09);
  --ph-bg: #16243a;
  --ph-stripe: #1f3050;
  --shadow-md: 0 4px 14px rgba(0,0,0,.32), 0 1px 3px rgba(0,0,0,.4);
  --shadow-lg: 0 2px 6px rgba(0,0,0,.34), 0 16px 38px rgba(0,0,0,.48);
  --shadow-xl: 0 30px 70px rgba(0,0,0,.6);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .3s ease, color .3s ease;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 1.1; color: var(--heading); margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

.tnum { font-variant-numeric: tabular-nums; }

/* Layout helpers */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
section { scroll-margin-top: var(--nav-h); }

.section-pad { padding-block: clamp(64px, 9vw, 110px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 13px;
  letter-spacing: .04em; text-transform: uppercase; color: var(--action);
}
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.075rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-weight: 700; font-size: 0.975rem;
  padding: 13px 22px; border-radius: var(--r-pill);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn svg { width: 18px; height: 18px; }

.btn-primary { background: var(--action); color: #fff; box-shadow: 0 6px 16px rgba(26,86,219,.28); }
.btn-primary:hover { background: var(--action-700); box-shadow: 0 10px 24px rgba(26,86,219,.34); transform: translateY(-1px); }

.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 6px 16px rgba(37,211,102,.30); }
.btn-wa:hover { background: var(--wa-700); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(37,211,102,.36); }

.btn-emerald { background: var(--emerald); color: #fff; box-shadow: 0 6px 16px rgba(5,150,105,.26); }
.btn-emerald:hover { background: var(--emerald-700); transform: translateY(-1px); }

.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }

.btn-outline { background: var(--surface); color: var(--heading); border: 1px solid var(--hairline); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: #cbd5e1; transform: translateY(-1px); }

.btn-lg { padding: 16px 28px; font-size: 1.02rem; }
.btn-block { width: 100%; }

:focus-visible { outline: 3px solid rgba(26,86,219,.55); outline-offset: 2px; border-radius: 6px; }

/* Pills / badges */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; font-family: var(--display);
  background: var(--surface); border: 1px solid var(--hairline); color: var(--heading); white-space: nowrap;
}
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); position: relative; flex: none; }
.dot-live::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  background: var(--emerald); opacity: .45; animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(.6); opacity: .5; } 100% { transform: scale(2.2); opacity: 0; } }

.arrow-up { color: var(--up); }
.arrow-down { color: var(--down); }

/* ===================================================================
   0. Top info bar
   =================================================================== */
.topbar { background: var(--navy); color: #c7d3e6; font-size: 0.82rem; }
.topbar .wrap { display: flex; align-items: center; gap: 28px; height: 40px; }
.tb-item { display: inline-flex; align-items: center; gap: 8px; color: #c7d3e6; white-space: nowrap; }
.tb-item svg { width: 15px; height: 15px; color: var(--gold); flex: none; }
.tb-item b { font-weight: 600; color: #fff; font-variant-numeric: tabular-nums; }
a.tb-item { transition: color .15s; }
a.tb-item:hover { color: #fff; }
.tb-addr { margin-right: auto; }
@media (max-width: 820px) { .tb-addr { display: none; } }
@media (max-width: 540px) {
  .topbar .wrap { gap: 18px; justify-content: space-between; }
  .topbar { font-size: 0.78rem; }
}

/* ===================================================================
   1. Header
   =================================================================== */
.header {
  position: sticky; top: 0; z-index: 100; height: var(--nav-h);
  background: var(--header-bg); backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--hairline);
}
.header .wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand-logo { width: 44px; height: 44px; border-radius: 50%; object-fit: contain; flex: none; }
.drawer-top .brand-logo { width: 38px; height: 38px; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: var(--heading); letter-spacing: -.02em; }
.brand-name span { color: var(--action); }

.nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav a {
  font-weight: 500; font-size: 0.95rem; color: var(--ink); padding: 9px 16px;
  border-radius: var(--r-pill); transition: background-color .15s, color .15s; white-space: nowrap;
}
.nav a:hover { background: rgba(26,86,219,.08); color: var(--action); }

.header-cta { display: flex; align-items: center; gap: 10px; flex: none; }
.header-cta .btn-wa { padding: 10px 18px; font-size: 0.92rem; }
.header-cta .btn-wa svg { width: 17px; height: 17px; }
.hamburger { display: none; width: 44px; height: 44px; border-radius: 11px; place-items: center; color: var(--heading); border: 1px solid var(--hairline); background: var(--surface); }
.hamburger svg { width: 23px; height: 23px; }

@media (max-width: 960px) {
  .nav { display: none; }
}
@media (max-width: 960px) { .hamburger { display: grid; } }
@media (max-width: 600px) { .header-cta .btn-desktop { display: none; } }

/* Mobile drawer */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(10,37,64,.45); z-index: 200; opacity: 0; pointer-events: none; transition: opacity .25s; backdrop-filter: blur(2px); }
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(82vw, 340px); z-index: 201;
  background: var(--surface); box-shadow: -20px 0 60px rgba(10,37,64,.2);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 20px;
}
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer-close { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--hairline); color: var(--heading); }
.drawer-close svg { width: 22px; height: 22px; }
.drawer-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: auto; }
.drawer-links a { padding: 14px 14px; border-radius: 12px; font-weight: 600; font-family: var(--display); color: var(--heading); font-size: 1.05rem; }
.drawer-links a:hover { background: var(--bg); }
.drawer .btn-wa { margin-top: 16px; }

/* ===================================================================
   2. Hero
   =================================================================== */
.hero { position: relative; overflow: hidden; background: linear-gradient(150deg, #0A2540 0%, #103a66 55%, #1A56DB 130%); color: #fff; }
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(circle, rgba(255,255,255,.10) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000, transparent 75%);
}
.hero::after {
  content: ""; position: absolute; width: 620px; height: 620px; right: -180px; top: -220px;
  background: radial-gradient(circle, rgba(245,158,11,.20), transparent 65%); pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 70px); align-items: center; padding-block: clamp(54px, 7vw, 92px); }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px;
  padding: 7px 15px; border-radius: var(--r-pill); font-size: 13px; font-weight: 600; font-family: var(--display);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #e2ecff;
  backdrop-filter: blur(6px);
}
.hero h1 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.5rem); margin-bottom: 20px; max-width: 16ch; }
.hero h1 .hl { background: linear-gradient(100deg, #fcd34d 0%, #f59e0b 60%, #fbbf24 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .sub { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: #c7d6ee; max-width: 46ch; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.trust-micro { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 0.92rem; color: #cdddf4; }
.trust-micro span { display: inline-flex; align-items: center; gap: 7px; }
.trust-micro svg { width: 16px; height: 16px; color: var(--emerald); flex: none; }

/* Converter card */
.converter {
  background: var(--surface); border-radius: var(--r-xl); padding: 26px;
  box-shadow: var(--shadow-xl); border: 1px solid var(--hairline);
}
.converter-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.converter-head h3 { font-size: 1.15rem; }
.enquiry-card .converter-head h3 { font-size: 1.32rem; }
.conv-disclaimer { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.45; }

/* Enquiry card (hero centerpiece) */
.enquiry-card { padding: 30px; display: flex; flex-direction: column; }
.enquiry-card .pill-reply { background: var(--tint-emerald); border-color: transparent; color: var(--emerald); }
.enq-intro { color: var(--muted); font-size: 0.97rem; margin: -4px 0 22px; line-height: 1.55; }
.enquiry-card .field { margin-bottom: 18px; }
.enquiry-card select, .enquiry-card input { font-family: var(--body); }

/* Custom select */
.select-wrap { position: relative; }
.select-wrap select {
  -webkit-appearance: none; appearance: none; cursor: pointer;
  font-family: var(--display); font-weight: 600; font-size: 1.02rem; color: var(--heading);
  padding-right: 44px;
}
.select-wrap select:hover { border-color: #cbd5e1; }
.select-chev { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); width: 19px; height: 19px; color: var(--action); pointer-events: none; }

/* Benefits panel */
.enq-benefits {
  display: flex; flex-direction: column; gap: 12px; margin: 0 0 22px; padding: 18px 20px;
  background: var(--enq-panel); border: 1px solid var(--enq-panel-border); border-radius: var(--r-md);
}
.enq-benefits li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.94rem; font-weight: 500; color: var(--ink); line-height: 1.4; }
.enq-benefits li svg { width: 18px; height: 18px; color: var(--emerald); flex: none; margin-top: 1px; }
.enquiry-card .btn-wa { margin-top: auto; }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 38px; }
  .hero-text { max-width: 620px; }
}

/* ===================================================================
   3. Trust bar
   =================================================================== */
.trustbar { background: var(--surface); border-bottom: 1px solid var(--hairline); }
.trustbar .wrap { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: space-between; padding-block: 26px; }
.trust-mod { display: flex; align-items: center; gap: 11px; opacity: 0; transform: translateY(14px); }
.trust-mod.in { animation: rise .6s cubic-bezier(.2,.7,.3,1) forwards; }
.trust-mod .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--tint-blue); color: var(--action); display: grid; place-items: center; flex: none; }
.trust-mod .ic svg { width: 20px; height: 20px; }
.trust-mod span { font-family: var(--display); font-weight: 700; color: var(--heading); font-size: 0.96rem; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* ===================================================================
   4. Services bento
   =================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.svc-card {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--shadow-md); position: relative; overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #d3deee; }
.svc-card .svc-ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; }
.svc-card .svc-ic svg { width: 26px; height: 26px; }
.svc-card:nth-child(1) .svc-ic { background: var(--tint-blue); color: var(--action); }
.svc-card:nth-child(2) .svc-ic { background: var(--tint-emerald); color: var(--emerald); }
.svc-card:nth-child(3) .svc-ic { background: var(--tint-gold); color: var(--gold); }
.svc-card:nth-child(4) .svc-ic { background: var(--tint-navy); color: var(--heading); }
.svc-card h3 { font-size: 1.28rem; margin-bottom: 9px; }
.svc-card p { color: var(--muted); font-size: 1rem; margin-bottom: 18px; flex: 1; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--display); font-weight: 700; color: var(--action); font-size: 0.95rem; align-self: flex-start; }
.svc-link svg { width: 16px; height: 16px; transition: transform .2s; }
.svc-card:hover .svc-link svg { transform: translateX(3px); }
@media (max-width: 720px) { .services-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   4b. Western Union — authorised partner card
   =================================================================== */
.wu-strip { background: var(--bg); }
.wu-card {
  display: grid; grid-template-columns: 1.1fr .9fr;
  background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.wu-content { padding: clamp(30px, 4.5vw, 56px); }
.wu-eyebrow { color: #92660a; display: inline-flex; align-items: center; gap: 8px; }
.wu-dot { width: 8px; height: 8px; border-radius: 50%; background: #fedc00; box-shadow: 0 0 0 3px rgba(254,220,0,.25); }
.wu-content h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin: 14px 0 14px; max-width: 16ch; }
.wu-name { color: var(--heading); white-space: nowrap; }
.wu-content > p { color: var(--muted); font-size: 1.08rem; line-height: 1.6; max-width: 44ch; margin-bottom: 24px; }
.wu-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; }
.wu-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--ink); font-size: 1rem; }
.wu-list li svg { width: 20px; height: 20px; color: var(--emerald); flex: none; }

/* Branded showcase panel */
.wu-showcase {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  background: linear-gradient(150deg, #ffe23d 0%, #fedc00 55%, #f5c400 120%);
  padding: clamp(36px, 5vw, 56px); overflow: hidden;
}
.wu-showcase::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(5,5,5,.10) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 45%, #000, transparent 72%);
  mask-image: radial-gradient(ellipse 75% 75% at 50% 45%, #000, transparent 72%);
}
.wu-logo-chip {
  position: relative; z-index: 1; background: #fff; border-radius: var(--r-lg);
  padding: 36px 46px; box-shadow: 0 18px 44px rgba(120,90,0,.28); display: grid; place-items: center;
}
.wu-logo { height: 68px; width: auto; display: block; }
.wu-showcase-cap { position: relative; z-index: 1; font-family: var(--display); font-weight: 700; font-size: 0.92rem; color: #6b4e00; letter-spacing: .01em; }

@media (max-width: 800px) {
  .wu-card { grid-template-columns: 1fr; }
  .wu-showcase { order: -1; padding: clamp(30px, 7vw, 44px) 20px; gap: 16px; }
  .wu-logo-chip { padding: 26px 34px; }
  .wu-logo { height: 50px; }
  .wu-content h2 { max-width: none; }
  .wu-content > p { max-width: none; }
}
@media (max-width: 480px) {
  .wu-showcase { padding: 26px 16px; gap: 13px; }
  .wu-logo-chip { padding: 20px 28px; border-radius: var(--r-md); }
  .wu-logo { height: 40px; }
  .wu-showcase-cap { font-size: 0.8rem; text-align: center; }
  .wu-content { padding: 24px 18px; }
  .wu-content h2 { font-size: 1.45rem; line-height: 1.18; margin: 12px 0; }
  .wu-content > p { font-size: 0.98rem; margin-bottom: 18px; }
  .wu-list { gap: 10px; margin-bottom: 22px; }
  .wu-list li { font-size: 0.94rem; align-items: flex-start; gap: 10px; }
  .wu-list li svg { width: 18px; height: 18px; margin-top: 2px; }
  /* CTA: let it wrap & shrink instead of clipping on narrow phones */
  .wu-content .btn {
    width: 100%; white-space: normal; text-align: center; line-height: 1.3;
    padding: 14px 18px; font-size: 0.95rem;
  }
}
@media (max-width: 380px) {
  .wu-content h2 { font-size: 1.32rem; }
  .wu-content .btn { font-size: 0.9rem; gap: 7px; }
  .wu-content .btn svg { width: 16px; height: 16px; }
}

/* ===================================================================
   6. How it works
   =================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.step { position: relative; }
.step-badge {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: #fff;
  background: var(--navy); margin-bottom: 18px; position: relative; z-index: 2;
  box-shadow: 0 8px 20px rgba(10,37,64,.25);
}
.step:nth-child(odd) .step-badge { background: var(--navy); }
.step:nth-child(even) .step-badge { background: var(--gold); color: var(--navy); box-shadow: 0 8px 20px rgba(245,158,11,.3); }
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.98rem; }
.steps .connector { position: absolute; top: 28px; left: 0; right: 0; height: 2px; z-index: 0; }
.steps .connector::before { content: ""; position: absolute; left: 12.5%; right: 12.5%; top: 0; height: 2px; background: repeating-linear-gradient(90deg, var(--hairline) 0 8px, transparent 8px 16px); }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; } .steps .connector { display: none; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ===================================================================
   7. Why choose us
   =================================================================== */
.why { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.why::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.06) 1.2px, transparent 1.2px); background-size: 28px 28px; opacity: .6; -webkit-mask-image: radial-gradient(ellipse 70% 80% at 30% 20%, #000, transparent 70%); mask-image: radial-gradient(ellipse 70% 80% at 30% 20%, #000, transparent 70%); }
.why .wrap { position: relative; z-index: 1; }
.why .section-head h2 { color: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-tile { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 26px; transition: background-color .2s, transform .2s; }
.why-tile:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); }
.why-tile .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(245,158,11,.16); color: var(--gold); display: grid; place-items: center; margin-bottom: 16px; }
.why-tile:nth-child(3n+1) .ic { background: rgba(26,86,219,.22); color: #7fa8ff; }
.why-tile:nth-child(3n+2) .ic { background: rgba(5,150,105,.2); color: #4ade9f; }
.why-tile .ic svg { width: 23px; height: 23px; }
.why-tile h3 { color: #fff; font-size: 1.12rem; margin-bottom: 7px; }
.why-tile p { color: #aebfd6; font-size: 0.96rem; }
@media (max-width: 860px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   8. Testimonials
   =================================================================== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote-card { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; }
.quote-card .mark { font-family: var(--display); font-size: 3rem; line-height: .6; color: var(--gold); font-weight: 800; margin-bottom: 8px; }
.quote-card p { color: var(--ink); font-size: 1.05rem; line-height: 1.55; flex: 1; }
.quote-card .by { margin-top: 18px; display: flex; align-items: center; gap: 11px; }
.quote-card .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(140deg, var(--action), var(--navy)); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 700; flex: none; }
.quote-card .by .nm { font-family: var(--display); font-weight: 700; color: var(--heading); font-size: 0.95rem; }
.quote-card .by .role { font-size: 0.83rem; color: var(--muted); }
.google-cta { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; padding: 22px; border: 1px dashed var(--hairline); border-radius: var(--r-lg); background: var(--surface); text-align: center; }
.google-cta .gtext { color: var(--muted); font-size: 0.95rem; }
.google-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: var(--r-md); background: var(--bg); border: 1px solid var(--hairline); }
.google-badge .stars { color: var(--gold); letter-spacing: 2px; }
.google-badge .ph { font-size: 0.82rem; color: var(--muted); }
@media (max-width: 860px) { .quotes { grid-template-columns: 1fr; } }

/* ===================================================================
   9. About
   =================================================================== */
.about { background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.about-copy p { color: var(--muted); font-size: 1.08rem; margin-bottom: 18px; }
.about-copy p strong { color: var(--ink); font-weight: 600; }
.about-stats { display: flex; gap: 30px; margin-top: 26px; flex-wrap: wrap; }
.about-stats .stat .n { font-family: var(--display); font-weight: 800; font-size: 2rem; color: var(--action); }
.about-stats .stat .l { font-size: 0.9rem; color: var(--muted); }
.about-visual { aspect-ratio: 4/3; border-radius: var(--r-xl); overflow: hidden; position: relative; box-shadow: var(--shadow-lg); }
.about-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }

/* Image placeholder */
.img-ph { width: 100%; height: 100%; background-color: var(--ph-bg); background-image: repeating-linear-gradient(45deg, var(--ph-stripe) 0 12px, var(--ph-bg) 12px 24px); display: grid; place-items: center; }
.img-ph span { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12px; color: #94a3b8; background: rgba(255,255,255,.8); padding: 6px 12px; border-radius: 6px; }

/* ===================================================================
   10. FAQ
   =================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--action); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--display); font-weight: 700; color: var(--heading); font-size: 1.06rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex: none; width: 24px; height: 24px; display: grid; place-items: center; color: var(--action); transition: transform .25s; }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item summary .chev svg { width: 20px; height: 20px; }
.faq-body { padding: 0 22px 22px; color: var(--muted); font-size: 1rem; line-height: 1.65; }

/* ===================================================================
   11. Contact
   =================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.contact-grid.single { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
.contact-info { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.map-embed { width: 100%; height: 240px; border: none; display: block; background: #eef2f7; }
.contact-info-body { padding: 26px; }
.info-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--hairline); }
.info-row:last-of-type { border-bottom: none; }
.info-row .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--tint-blue); color: var(--action); display: grid; place-items: center; flex: none; }
.info-row .ic svg { width: 20px; height: 20px; }
.info-row .lbl { font-size: 0.8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; }
.info-row .val { font-family: var(--display); font-weight: 600; color: var(--heading); font-size: 1.02rem; }
.info-row a.val:hover { color: var(--action); }
.info-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--display); font-weight: 600; font-size: 0.88rem; color: var(--heading); margin-bottom: 7px; }
.field select {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--hairline); border-radius: var(--r-md); background: var(--bg);
  transition: border-color .15s, background-color .15s;
}
.field select:focus { outline: none; border-color: var(--action); background: var(--surface); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   12. Footer
   =================================================================== */
.footer { background: var(--navy); color: #c7d3e6; padding-top: 64px; }
.footer .wrap { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 44px; }
.footer h4 { color: #fff; font-size: 0.92rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 18px; font-weight: 700; }
.footer .f-brand .brand { gap: 12px; margin-bottom: 4px; }
.footer .f-brand .brand-logo { width: 46px; height: 46px; background: rgba(255,255,255,.92); padding: 2px; }
.footer .f-brand .brand-name { color: #fff; }
.footer .f-brand .brand-name span { color: #7fa8ff; }
.footer .f-mission { margin: 16px 0 20px; font-size: 0.96rem; color: #93a6c4; max-width: 34ch; }
.footer .socials { display: flex; gap: 10px; }
.footer .socials a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #c7d3e6; transition: background-color .2s, color .2s; }
.footer .socials a:hover { background: var(--action); color: #fff; }
.footer .socials svg { width: 19px; height: 19px; }
.footer ul li { margin-bottom: 11px; }
.footer ul a, .footer .f-contact span { font-size: 0.95rem; color: #aebfd6; transition: color .15s; }
.footer ul a:hover { color: #fff; }
.footer .f-contact li { display: flex; gap: 9px; align-items: flex-start; }
.footer .f-contact svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: #7fa8ff; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.1); padding-block: 26px; }
.footer-legal .wrap { display: block; padding-bottom: 0; }
.footer-legal p { font-size: 0.82rem; color: #7d90af; line-height: 1.7; margin-bottom: 10px; }
.footer-legal .disclosure { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-md); padding: 16px 18px; margin-bottom: 18px; }
.footer-legal .placeholder { color: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.footer-bottom a { color: #aebfd6; }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 860px) { .footer .wrap { grid-template-columns: 1fr 1fr; gap: 32px; } .footer .f-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer .wrap { grid-template-columns: 1fr; } }

/* ===================================================================
   Floating WhatsApp
   =================================================================== */
.fab-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  display: flex; align-items: center; gap: 0;
}
.fab-wa .fab-btn {
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 28px rgba(37,211,102,.45);
  animation: fabIn .5s cubic-bezier(.2,.8,.3,1.2) .8s both;
}
.fab-wa .fab-btn::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--wa); opacity: .55; animation: pulse 2.4s ease-out infinite; z-index: -1; }
.fab-wa .fab-btn svg { width: 32px; height: 32px; }
.fab-wa .tip {
  position: absolute; right: 72px; background: var(--navy); color: #fff; padding: 9px 14px;
  border-radius: var(--r-pill); font-size: 0.85rem; font-weight: 600; font-family: var(--display);
  white-space: nowrap; opacity: 0; transform: translateX(8px); transition: opacity .2s, transform .2s; pointer-events: none;
  box-shadow: var(--shadow-lg);
}
.fab-wa .tip::after { content: ""; position: absolute; right: -5px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 10px; height: 10px; background: var(--navy); }
.fab-wa:hover .tip { opacity: 1; transform: translateX(0); }
@keyframes fabIn { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }

/* ===================================================================
   Theme toggle
   =================================================================== */
.theme-toggle {
  width: 44px; height: 44px; border-radius: 11px; flex: none;
  display: grid; place-items: center; color: var(--heading);
  border: 1px solid var(--hairline); background: var(--surface);
  transition: background-color .2s, color .2s, border-color .2s;
}
.theme-toggle:hover { color: var(--action); border-color: var(--action); }
.theme-toggle svg { width: 21px; height: 21px; }
.theme-toggle .ic-moon { display: none; }
.theme-toggle .ic-sun { display: block; }
[data-theme="dark"] .theme-toggle .ic-moon { display: block; }
[data-theme="dark"] .theme-toggle .ic-sun { display: none; }
/* Drawer variant: full-width row */
.drawer-theme {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; padding: 13px 14px; margin-top: 6px; border-radius: 12px;
  border: 1px solid var(--hairline); background: var(--bg);
  font-family: var(--display); font-weight: 600; color: var(--heading); font-size: 1rem;
}
.drawer-theme .dt-label { display: flex; align-items: center; gap: 10px; }
.drawer-theme svg { width: 20px; height: 20px; }
.drawer-theme .ic-moon { display: none; }
[data-theme="dark"] .drawer-theme .ic-sun { display: none; }
[data-theme="dark"] .drawer-theme .ic-moon { display: block; }

/* Theme-aware refinements */
.trustbar { transition: background-color .3s ease; }
.btn-outline:hover { border-color: var(--action); }
.faq-item summary .chev,
.svc-link svg { transition: transform .2s, color .15s; }
[data-theme="dark"] .hero { background: linear-gradient(150deg, #06101e 0%, #0c2342 55%, #15366f 130%); }
[data-theme="dark"] .why { background: #081120; }
[data-theme="dark"] .footer { background: #081120; }
[data-theme="dark"] .google-badge { background: var(--surface); }
[data-theme="dark"] .map-embed { filter: invert(.9) hue-rotate(180deg) brightness(.95); }
[data-theme="dark"] .about-visual img,
[data-theme="dark"] .wu-logo-chip { filter: none; }

/* Dark: brighten accent-colored text & icons so they pop on dark surfaces */
[data-theme="dark"] .eyebrow,
[data-theme="dark"] .brand-name span,
[data-theme="dark"] .svc-link,
[data-theme="dark"] .faq-item summary .chev,
[data-theme="dark"] .select-chev,
[data-theme="dark"] .info-row a.val:hover,
[data-theme="dark"] .nav a:hover,
[data-theme="dark"] .theme-toggle:hover { color: var(--accent); }
[data-theme="dark"] .theme-toggle:hover { border-color: var(--accent); }
[data-theme="dark"] .nav a:hover { background: rgba(111,155,255,.12); }
[data-theme="dark"] .trust-mod .ic,
[data-theme="dark"] .svc-card:nth-child(1) .svc-ic,
[data-theme="dark"] .info-row .ic { color: var(--accent); }
[data-theme="dark"] .svc-card:nth-child(2) .svc-ic { color: #34d399; }
[data-theme="dark"] .svc-card:nth-child(3) .svc-ic { color: #fbbf24; }
[data-theme="dark"] .faq-item[open] { border-color: var(--accent); }
[data-theme="dark"] .btn-outline:hover { border-color: var(--accent); }
[data-theme="dark"] .converter { border-color: rgba(255,255,255,.12); }
[data-theme="dark"] .hero-eyebrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
[data-theme="dark"] .pill { background: var(--surface-2); }

/* ===================================================================
   Motion system
   =================================================================== */
/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 300;
  background: linear-gradient(90deg, var(--action), var(--gold));
  transform: scaleX(0); transform-origin: 0 50%; will-change: transform;
}

/* Scroll reveal — smooth spring easing + directional variants */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.16,.84,.34,1), transform .8s cubic-bezier(.16,.84,.34,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-rv="left"] { transform: translateX(-36px); }
.reveal[data-rv="right"] { transform: translateX(36px); }
.reveal[data-rv="scale"] { transform: scale(.94); }
.reveal[data-rv="left"].in,
.reveal[data-rv="right"].in,
.reveal[data-rv="scale"].in { transform: none; }

/* Hero entrance choreography (plays on first paint) */
.hero-text > *, .hero .converter { opacity: 0; }
.is-ready .hero-text > * { animation: heroRise .9s cubic-bezier(.16,.84,.34,1) both; }
.is-ready .hero-eyebrow { animation-delay: .08s; }
.is-ready .hero h1 { animation-delay: .18s; }
.is-ready .hero .sub { animation-delay: .30s; }
.is-ready .hero-cta { animation-delay: .42s; }
.is-ready .trust-micro { animation-delay: .54s; }
.is-ready .hero .converter { animation: heroCard 1.05s cubic-bezier(.16,.84,.34,1) .34s both; }
@keyframes heroRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes heroCard { from { opacity: 0; transform: translateY(38px) scale(.97); } to { opacity: 1; transform: none; } }

/* Ambient hero glow drift */
.hero::after { animation: glowDrift 14s ease-in-out infinite alternate; }
@keyframes glowDrift { from { transform: translate(0,0) scale(1); } to { transform: translate(-40px, 30px) scale(1.12); } }

/* Card hover lifts — springy */
.svc-card, .why-tile, .quote-card { transition: transform .35s cubic-bezier(.16,.84,.34,1), box-shadow .35s ease, border-color .25s, background-color .25s; will-change: transform; }
.converter { transition: transform .4s cubic-bezier(.16,.84,.34,1), box-shadow .4s ease, border-color .25s; }
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* Buttons — sheen sweep on hover */
.btn-primary, .btn-wa, .btn-emerald { position: relative; overflow: hidden; }
.btn-primary::after, .btn-wa::after, .btn-emerald::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); transition: none; pointer-events: none;
}
.btn-primary:hover::after, .btn-wa:hover::after, .btn-emerald:hover::after { animation: sheen .8s ease; }
@keyframes sheen { from { left: -120%; } to { left: 140%; } }

/* Nav links — animated underline */
.nav a { position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 5px; height: 2px;
  background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: 0 50%; transition: transform .28s cubic-bezier(.16,.84,.34,1);
}
.nav a:hover::after { transform: scaleX(1); }

/* Icon chips & accents spring on card hover */
.svc-card .svc-ic { transition: transform .35s cubic-bezier(.34,1.4,.5,1); }
.svc-card:hover .svc-ic { transform: scale(1.08) rotate(-3deg); }
.why-tile .ic { transition: transform .35s cubic-bezier(.34,1.4,.5,1); }
.why-tile:hover .ic { transform: scale(1.1); }
.theme-toggle svg { transition: transform .5s cubic-bezier(.16,.84,.34,1); }
.theme-toggle:hover svg { transform: rotate(35deg) scale(1.08); }
[data-theme="dark"] .theme-toggle:hover svg { transform: rotate(-18deg) scale(1.08); }

/* FAQ smooth open */
.faq-item[open] .faq-body { animation: faqIn .42s cubic-bezier(.16,.84,.34,1); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.faq-item { transition: box-shadow .25s ease, border-color .25s ease; }

/* Western Union showcase shimmer */
.wu-showcase::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  background-size: 250% 100%; animation: wuShimmer 7s ease-in-out infinite;
}
@keyframes wuShimmer { 0%,100% { background-position: 130% 0; } 50% { background-position: -30% 0; } }
.wu-logo-chip { transition: transform .4s cubic-bezier(.34,1.3,.5,1); }
.wu-card:hover .wu-logo-chip { transform: translateY(-4px) scale(1.02); }

/* Pulsing live dot already animates; smooth fab tooltip handled inline */

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, .hero-text > *, .hero .converter { opacity: 1 !important; transform: none !important; }
  .trust-mod { opacity: 1; transform: none; }
  .scroll-progress { display: none; }
}
