/* ============================================================
   Bridge Pay Solution — Premium Design (v2)
   ============================================================ */

:root {
  /* Light theme base */
  --bg: #ffffff;
  --bg-soft: #f8f7ff;
  --bg-muted: #f0eeff;
  --text: #1e1b4b;
  --text-body: #374151;
  --text-muted: #6b7280;
  --white: #ffffff;

  /* Brand */
  --primary: #6d28d9;
  --primary-hover: #5b21b6;
  --secondary: #4f46e5;
  --accent: #0ea5e9;
  --pink: #ec4899;
  --emerald: #10b981;
  --amber: #f59e0b;
  --orange: #f97316;
  --cyan: #06b6d4;
  --rose: #f43f5e;
  --indigo: #6366f1;

  /* Service card accent colors */
  --svc-1: #8b5cf6;
  --svc-2: #0ea5e9;
  --svc-3: #10b981;
  --svc-4: #f59e0b;
  --svc-5: #ec4899;
  --svc-6: #6366f1;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #6d28d9 0%, #4f46e5 50%, #0ea5e9 100%);
  --grad-hero: linear-gradient(135deg, #6d28d9 0%, #a855f7 60%, #ec4899 100%);
  --grad-text: linear-gradient(135deg, #7c3aed 0%, #0ea5e9 100%);
  --grad-warm: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
  --grad-cool: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
  --grad-green: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);

  /* Surfaces */
  --card-bg: #ffffff;
  --card-border: rgba(109, 40, 217, 0.1);
  --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.055), 0 1px 3px rgba(0, 0, 0, 0.035);
  --card-shadow-hover: 0 16px 40px rgba(109, 40, 217, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);

  /* UI */
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* about.css compatibility */
  --muted: #6b7280;
  --border: rgba(109, 40, 217, 0.1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
}

a  { text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
}

h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); }
h4 { font-size: 1rem;   font-weight: 700; color: var(--text); }
h5 {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}

p { margin: 0; }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ── */
.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section { padding: 6rem 0; }
.section-soft { background: var(--bg-soft); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-header h2 { margin: 0.75rem 0; }
.section-header p  { color: var(--text-muted); font-size: 1.05rem; margin-top: 0.5rem; }

/* ── Pills ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.pill-primary,
.pill-purple {
  background: rgba(109, 40, 217, 0.08);
  border: 1px solid rgba(109, 40, 217, 0.22);
  color: var(--primary);
}

.pill-blue {
  background: rgba(14, 165, 233, 0.09);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: #0284c7;
}

.pill-pink {
  background: rgba(236, 72, 153, 0.08);
  border: 1px solid rgba(236, 72, 153, 0.25);
  color: #be185d;
}

.pill-green {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #059669;
}

.pill-light {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: white;
}

.pill-dot {
  width: 7px;
  height: 7px;
  background: var(--emerald);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.8); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
  pointer-events: none;
}

.btn:hover::after { left: 125%; }
.btn:hover { transform: translateY(-2px); }

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.btn-lg { padding: 0.9rem 2.1rem; font-size: 1rem; }

.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(109, 40, 217, 0.38);
  padding: 0.65rem 1.5rem;
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(109, 40, 217, 0.55);
  opacity: 0.95;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(109, 40, 217, 0.3);
  color: var(--primary);
  padding: 0.65rem 1.5rem;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(109, 40, 217, 0.06);
  box-shadow: 0 4px 16px rgba(109, 40, 217, 0.12);
}

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 0.65rem 1.5rem;
}

.btn-white:hover { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22); }

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 0.65rem 1.5rem;
}

.btn-outline-white:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.12);
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(109, 40, 217, 0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 24px rgba(109, 40, 217, 0.08), 0 1px 4px rgba(0,0,0,0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--grad-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(109, 40, 217, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(160deg, #fdfcff 0%, #f5f0ff 40%, #edf8ff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  will-change: transform;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(109, 40, 217, 0.14);
  top: -200px;
  left: -150px;
  animation: orbFloat 18s ease-in-out infinite alternate;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(14, 165, 233, 0.11);
  top: 0;
  right: -130px;
  animation: orbFloat 14s ease-in-out infinite alternate;
  animation-delay: -6s;
}

.orb-3 {
  width: 380px;
  height: 380px;
  background: rgba(236, 72, 153, 0.09);
  bottom: -80px;
  left: 35%;
  animation: orbFloat 22s ease-in-out infinite alternate;
  animation-delay: -11s;
}

.orb-4 {
  width: 260px;
  height: 260px;
  background: rgba(16, 185, 129, 0.07);
  bottom: 10%;
  right: 20%;
  animation: orbFloat 20s ease-in-out infinite alternate;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(35px, -55px) scale(1.1); }
  100% { transform: translate(-25px, 28px) scale(0.93); }
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109, 40, 217, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 40, 217, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { max-width: 580px; }

.hero-lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.78;
  margin: 1rem 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-methods {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.methods-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.methods-logos { display: flex; gap: 0.4rem; flex-wrap: wrap; }

.method-badge {
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.method-badge.bkash  { background: rgba(226,19,110,0.1);  color: #be185d; border: 1px solid rgba(226,19,110,0.22); }
.method-badge.nagad  { background: rgba(245,135,31,0.1);  color: #b45309; border: 1px solid rgba(245,135,31,0.24); }
.method-badge.rocket { background: rgba(131,50,172,0.1);  color: #7c3aed; border: 1px solid rgba(131,50,172,0.22); }
.method-badge.upay   { background: rgba(0,161,75,0.1);    color: #059669; border: 1px solid rgba(0,161,75,0.22); }
.method-badge.more   { background: var(--bg-muted);       color: var(--text-muted); border: 1px solid rgba(109,40,217,0.14); }

/* ── Dashboard card ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
}

.dashboard-card {
  width: 340px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1.75rem;
  padding: 1.65rem;
  box-shadow:
    0 24px 64px rgba(109, 40, 217, 0.16),
    0 4px 20px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(109, 40, 217, 0.12);
  animation: dashFloat 7s ease-in-out infinite;
  position: relative;
  z-index: 2;
  will-change: transform;
}

@keyframes dashFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(0.4deg); }
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.3rem;
}

.dash-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}

.dash-dot {
  width: 8px;
  height: 8px;
  background: var(--grad-primary);
  border-radius: 50%;
}

.dash-status {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.08);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}

.dash-volume { margin-bottom: 1.2rem; }

.dash-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.dash-amount {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1;
}

.dash-growth {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.18);
}

.dash-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(109, 40, 217, 0.08);
  border-bottom: 1px solid rgba(109, 40, 217, 0.08);
  margin-bottom: 1rem;
  text-align: center;
}

.mini-num {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mini-label {
  display: block;
  font-size: 0.62rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}

.pending-color { color: var(--amber); }
.success-color { color: var(--emerald); }
.error-color   { color: #ef4444; }

.dash-transactions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: hidden;
}

.txn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.65rem;
  border-radius: 0.75rem;
  font-size: 0.78rem;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.txn-success { background: rgba(16, 185, 129, 0.05); border: 1px solid rgba(16, 185, 129, 0.1); }
.txn-pending { background: rgba(245, 158, 11, 0.05); border: 1px solid rgba(245, 158, 11, 0.12); }

.txn-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
}

.txn-success .txn-icon {
  background: rgba(16, 185, 129, 0.12);
  color: var(--emerald);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.txn-pending .txn-icon {
  background: rgba(245, 158, 11, 0.12);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.txn-info { flex: 1; min-width: 0; }

.txn-name {
  display: block;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.txn-time {
  display: block;
  font-size: 0.67rem;
  color: var(--text-muted);
}

.txn-amount {
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.txn-amount.success { color: var(--emerald); }
.txn-amount.pending { color: var(--amber); }

/* ── Floating badges ── */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255,255,255,0.9);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  border: 1px solid rgba(109, 40, 217, 0.1);
}

.badge-secure {
  top: 18%;
  left: -22px;
  color: #059669;
  animation: badgeFloat 5s ease-in-out infinite;
}

.badge-instant {
  top: 52%;
  right: -16px;
  color: var(--amber);
  animation: badgeFloat 5s ease-in-out infinite;
  animation-delay: -1.7s;
}

.badge-globe {
  bottom: 18%;
  left: 5%;
  color: var(--secondary);
  animation: badgeFloat 5s ease-in-out infinite;
  animation-delay: -3.2s;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── Stats section ── */
.stats-section {
  background: var(--grad-primary);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

.stats-section::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 120px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 3px;
  border-radius: 999px;
  opacity: 0.6;
}

.stat-item:nth-child(1)::after { background: #c4b5fd; }
.stat-item:nth-child(2)::after { background: #7dd3fc; }
.stat-item:nth-child(3)::after { background: #6ee7b7; }
.stat-item:nth-child(4)::after { background: #fcd34d; }

.stat-num {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(255,255,255,0.2);
}

.stat-item:nth-child(1) .stat-num { color: #e9d5ff; }
.stat-item:nth-child(2) .stat-num { color: #bae6fd; }
.stat-item:nth-child(3) .stat-num { color: #a7f3d0; }
.stat-item:nth-child(4) .stat-num { color: #fef08a; }

.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.45rem;
}

/* ── About / Features ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2  { margin: 0.75rem 0 1rem; }

.section-lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 1.75rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.feature-card {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:nth-child(1)::before { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.feature-card:nth-child(2)::before { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.feature-card:nth-child(3)::before { background: linear-gradient(90deg, #10b981, #34d399); }
.feature-card:nth-child(4)::before { background: linear-gradient(90deg, #f97316, #fb923c); }

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(109, 40, 217, 0.22);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.icon-violet { background: linear-gradient(135deg, rgba(109,40,217,0.1), rgba(168,85,247,0.08)); border: 1px solid rgba(109, 40, 217, 0.16); }
.icon-blue   { background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(56,189,248,0.08)); border: 1px solid rgba(14, 165, 233, 0.18); }
.icon-green  { background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(52,211,153,0.08)); border: 1px solid rgba(16, 185, 129, 0.18); }
.icon-orange { background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(251,146,60,0.08)); border: 1px solid rgba(249, 115, 22, 0.18); }

.feature-card h3 { margin-bottom: 0.4rem; font-size: 0.98rem; }
.feature-card p  { font-size: 0.865rem; color: var(--text-muted); line-height: 1.65; }

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

/* Colored top border per card */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 1;
  transition: height var(--transition), opacity var(--transition);
}

.service-card:nth-child(1)::after { background: linear-gradient(90deg, #8b5cf6, #6366f1); }
.service-card:nth-child(2)::after { background: linear-gradient(90deg, #0ea5e9, #22d3ee); }
.service-card:nth-child(3)::after { background: linear-gradient(90deg, #10b981, #34d399); }
.service-card:nth-child(4)::after { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.service-card:nth-child(5)::after { background: linear-gradient(90deg, #ec4899, #f9a8d4); }
.service-card:nth-child(6)::after { background: linear-gradient(90deg, #6366f1, #818cf8); }

.service-card:nth-child(1) { border-top-color: rgba(139, 92, 246, 0.2); }
.service-card:nth-child(2) { border-top-color: rgba(14, 165, 233, 0.2); }
.service-card:nth-child(3) { border-top-color: rgba(16, 185, 129, 0.2); }
.service-card:nth-child(4) { border-top-color: rgba(245, 158, 11, 0.2); }
.service-card:nth-child(5) { border-top-color: rgba(236, 72, 153, 0.2); }
.service-card:nth-child(6) { border-top-color: rgba(99, 102, 241, 0.2); }

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

.service-card:nth-child(1):hover { box-shadow: 0 16px 40px rgba(139,92,246,0.16); }
.service-card:nth-child(2):hover { box-shadow: 0 16px 40px rgba(14,165,233,0.16); }
.service-card:nth-child(3):hover { box-shadow: 0 16px 40px rgba(16,185,129,0.16); }
.service-card:nth-child(4):hover { box-shadow: 0 16px 40px rgba(245,158,11,0.16); }
.service-card:nth-child(5):hover { box-shadow: 0 16px 40px rgba(236,72,153,0.16); }
.service-card:nth-child(6):hover { box-shadow: 0 16px 40px rgba(99,102,241,0.16); }

.service-num {
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.08em;
  background: rgba(109, 40, 217, 0.06);
  border: 1px solid rgba(109, 40, 217, 0.15);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.service-card:nth-child(1) .service-num { color: #8b5cf6; background: rgba(139,92,246,0.07); border-color: rgba(139,92,246,0.18); }
.service-card:nth-child(2) .service-num { color: #0284c7; background: rgba(14,165,233,0.07); border-color: rgba(14,165,233,0.18); }
.service-card:nth-child(3) .service-num { color: #059669; background: rgba(16,185,129,0.07); border-color: rgba(16,185,129,0.18); }
.service-card:nth-child(4) .service-num { color: #b45309; background: rgba(245,158,11,0.07); border-color: rgba(245,158,11,0.18); }
.service-card:nth-child(5) .service-num { color: #be185d; background: rgba(236,72,153,0.07); border-color: rgba(236,72,153,0.18); }
.service-card:nth-child(6) .service-num { color: #4338ca; background: rgba(99,102,241,0.07); border-color: rgba(99,102,241,0.18); }

.service-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
  transition: transform 0.35s ease;
}

.service-card:hover .service-icon { transform: scale(1.12) translateY(-2px); }

.service-card h3 { margin-bottom: 0.55rem; }
.service-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.2rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap var(--transition);
}

.service-card:nth-child(1) .service-link { color: #8b5cf6; }
.service-card:nth-child(2) .service-link { color: #0284c7; }
.service-card:nth-child(3) .service-link { color: #059669; }
.service-card:nth-child(4) .service-link { color: #b45309; }
.service-card:nth-child(5) .service-link { color: #be185d; }
.service-card:nth-child(6) .service-link { color: #4338ca; }

.service-link span { transition: transform var(--transition); }
.service-link:hover { gap: 0.55rem; }
.service-link:hover span { transform: translateX(4px); }

/* ── Marquee ── */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 130px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.marquee-track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  margin-bottom: 0.75rem;
}

.marquee-forward { animation: marqueeForward 30s linear infinite; }
.marquee-reverse { animation: marqueeReverse 35s linear infinite; }

@keyframes marqueeForward {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeReverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.marquee-item:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.14);
  border-color: rgba(109, 40, 217, 0.24);
  background: var(--bg-soft);
}

.pm-flag { font-size: 1.1rem; }

/* ── Industries ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1.6rem 1rem;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  text-align: center;
  cursor: default;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.industry-card:nth-child(1)::before { background: linear-gradient(90deg, #ec4899, #f9a8d4); }
.industry-card:nth-child(2)::before { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.industry-card:nth-child(3)::before { background: linear-gradient(90deg, #10b981, #6ee7b7); }
.industry-card:nth-child(4)::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.industry-card:nth-child(5)::before { background: linear-gradient(90deg, #f59e0b, #fcd34d); }
.industry-card:nth-child(6)::before { background: linear-gradient(90deg, #f97316, #fdba74); }
.industry-card:nth-child(7)::before { background: linear-gradient(90deg, #6366f1, #a5b4fc); }
.industry-card:nth-child(8)::before { background: linear-gradient(90deg, #06b6d4, #67e8f9); }
.industry-card:nth-child(9)::before { background: linear-gradient(90deg, #f43f5e, #fda4af); }
.industry-card:nth-child(10)::before { background: linear-gradient(90deg, #22c55e, #86efac); }

.industry-card:nth-child(1):hover  { border-color: rgba(236,72,153,0.25); box-shadow: 0 12px 32px rgba(236,72,153,0.12); }
.industry-card:nth-child(2):hover  { border-color: rgba(14,165,233,0.25); box-shadow: 0 12px 32px rgba(14,165,233,0.12); }
.industry-card:nth-child(3):hover  { border-color: rgba(16,185,129,0.25); box-shadow: 0 12px 32px rgba(16,185,129,0.12); }
.industry-card:nth-child(4):hover  { border-color: rgba(139,92,246,0.25); box-shadow: 0 12px 32px rgba(139,92,246,0.12); }
.industry-card:nth-child(5):hover  { border-color: rgba(245,158,11,0.25); box-shadow: 0 12px 32px rgba(245,158,11,0.12); }
.industry-card:nth-child(6):hover  { border-color: rgba(249,115,22,0.25); box-shadow: 0 12px 32px rgba(249,115,22,0.12); }
.industry-card:nth-child(7):hover  { border-color: rgba(99,102,241,0.25); box-shadow: 0 12px 32px rgba(99,102,241,0.12); }
.industry-card:nth-child(8):hover  { border-color: rgba(6,182,212,0.25);  box-shadow: 0 12px 32px rgba(6,182,212,0.12); }
.industry-card:nth-child(9):hover  { border-color: rgba(244,63,94,0.25);  box-shadow: 0 12px 32px rgba(244,63,94,0.12); }
.industry-card:nth-child(10):hover { border-color: rgba(34,197,94,0.25);  box-shadow: 0 12px 32px rgba(34,197,94,0.12); }

.industry-card:hover {
  transform: translateY(-6px);
}

.ind-icon {
  font-size: 2rem;
  display: block;
  transition: transform 0.35s ease;
}

.industry-card:hover .ind-icon { transform: scale(1.2) translateY(-2px); }

.industry-card span:last-child {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

/* ── Global Reach ── */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.reach-col-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(109, 40, 217, 0.16);
}

.reach-upcoming { color: var(--accent);       border-bottom-color: rgba(14, 165, 233, 0.22); }
.reach-request  { color: var(--pink);          border-bottom-color: rgba(236, 72, 153, 0.22); }

.country-cards  { display: flex; flex-direction: column; gap: 0.6rem; }

.country-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: white;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.country-card:hover {
  transform: translateX(5px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(109, 40, 217, 0.22);
}

.country-upcoming { background: rgba(14, 165, 233, 0.03); border-color: rgba(14, 165, 233, 0.14); }
.country-request  { background: rgba(236, 72, 153, 0.03); border-color: rgba(236, 72, 153, 0.14); }
.country-upcoming:hover { border-color: rgba(14, 165, 233, 0.32); box-shadow: 0 8px 24px rgba(14,165,233,0.1); }
.country-request:hover  { border-color: rgba(236, 72, 153, 0.32); box-shadow: 0 8px 24px rgba(236,72,153,0.1); }

.country-flag { font-size: 1.65rem; }

.country-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.country-code {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: monospace;
  letter-spacing: 0.03em;
  margin-top: 0.1rem;
}

/* ── CTA ── */
.cta-section {
  position: relative;
  background: var(--grad-hero);
  padding: 7rem 0;
  overflow: hidden;
  text-align: center;
}

.cta-orbs { position: absolute; inset: 0; pointer-events: none; }

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.25);
  top: -120px;
  left: -100px;
  animation: orbFloat 16s ease-in-out infinite alternate;
}

.cta-orb-2 {
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.18);
  bottom: -90px;
  right: -80px;
  animation: orbFloat 20s ease-in-out infinite alternate;
  animation-delay: -9s;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  margin: 0.75rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  text-shadow: 0 2px 16px rgba(0,0,0,0.15);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.78;
  margin-bottom: 2.2rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: #0d0820;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), rgba(14,165,233,0.5), transparent);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
  gap: 3rem;
  padding: 4.5rem 0 3rem;
}

.footer-logo { color: white; margin-bottom: 0.75rem; }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.42);
  max-width: 240px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links-col h5 { color: rgba(255, 255, 255, 0.85); }

.footer-links-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.44);
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links-col a:hover {
  color: rgba(255, 255, 255, 0.92);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.3rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.32);
}

/* ── Back to top ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(109, 40, 217, 0.45);
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 200;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  box-shadow: 0 8px 28px rgba(109, 40, 217, 0.6);
  transform: translateY(-3px) scale(1.05);
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .industries-grid     { grid-template-columns: repeat(4, 1fr); }
  .footer-container    { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 960px) {
  .hero-container      { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-text           { max-width: 100%; }
  .hero-actions        { justify-content: center; }
  .hero-methods        { justify-content: center; }
  .hero-visual         { order: -1; }
  .float-badge         { display: none; }
  .about-grid          { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .reach-grid          { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .hero-visual { padding: 1.5rem 0; }
  .dashboard-card { width: 310px; }
}

@media (max-width: 720px) {
  .section             { padding: 4rem 0; }
  .stats-grid          { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.1rem;
    border-bottom: 1px solid rgba(109, 40, 217, 0.1);
    box-shadow: 0 12px 32px rgba(109, 40, 217, 0.1);
    z-index: 99;
  }
  .nav-links.is-open   { display: flex; }
  .hamburger           { display: flex; }
  .nav-actions         { display: none; }
  .industries-grid     { grid-template-columns: repeat(3, 1fr); }
  .features-grid       { grid-template-columns: 1fr; }
  .dashboard-card      { width: 300px; }
  .footer-container    { grid-template-columns: 1fr; gap: 2rem; }
  .back-to-top         { bottom: 1.5rem; right: 1.5rem; }
}

@media (max-width: 500px) {
  .services-grid,
  .industries-grid     { grid-template-columns: repeat(2, 1fr); }
  .cta-actions         { flex-direction: column; align-items: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .stat-num            { font-size: 2.4rem; }
  .dashboard-card      { width: 290px; }
  .hero                { padding: 4rem 0 3.5rem; }
}

@media (max-width: 380px) {
  .industries-grid     { grid-template-columns: repeat(2, 1fr); }
  .dashboard-card      { width: 100%; max-width: 290px; }
}
