/* ==========================================================================
   PAYLIGN GLOBAL DESIGN SYSTEM & STYLESHEET
   Modern Global Payments & Multi-Currency Platform
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Brand Color Palette */
  --bg-dark: #08070d;
  --bg-canvas: #0c0a12;
  --bg-card: #151322;
  --bg-card-hover: #1a172c;
  --bg-card-glass: rgba(21, 19, 34, 0.75);
  --bg-elevated: #1e1a34;
  --bg-input: #12101e;

  /* Accents & Brand Gradients */
  --primary: #6366f1;
  --primary-light: #818cf8;
  --primary-dark: #4338ca;
  --brand-purple: #7c3aed;
  --brand-violet: #483d8b;
  --brand-glow: rgba(124, 58, 237, 0.25);
  --accent-emerald: #10b981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.2);
  --accent-blue: #3b82f6;
  --accent-amber: #f59e0b;
  --accent-rose: #f43f5e;

  /* Text Tokens */
  --text-primary: #f8f7fc;
  --text-secondary: #9e9ab8;
  --text-muted: #6b6785;
  --text-inverse: #0c0a12;

  /* Borders & Shadows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(124, 58, 237, 0.4);
  --border-active: #6366f1;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.25);
  --shadow-emerald-glow: 0 0 30px rgba(16, 185, 129, 0.25);

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Layout Transitions */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-width: 1240px;
  --header-height: 80px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-canvas);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(circle at 15% 15%, rgba(99, 102, 241, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(124, 58, 237, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
}

img,
svg,
picture {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Typography & Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

p {
  color: var(--text-secondary);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #d8d4fd 50%, #9e9ab8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #a78bfa 0%, #818cf8 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-emerald {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pill Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  color: #c7d2fe;
  backdrop-filter: blur(8px);
}

.badge-pill .pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-emerald);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-purple) 0%, var(--primary) 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(124, 58, 237, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.6);
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.btn-emerald {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.6);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-icon-only {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* App Store Download Badges */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1.35rem;
  background: #151324;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.store-btn:hover {
  background: #1d1933;
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.store-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-btn-text .subtitle {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.store-btn-text .title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
  background: rgba(12, 10, 18, 0.6);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(12, 10, 18, 0.92);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.logo-brand img {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

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

.nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-purple);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
  z-index: 1001;
}

.nav-toggle:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-cta {
  display: none;
}

/* Hero Section */
.hero-section {
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-item .value {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-primary);
}

.hero-stat-item .label {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* App Showcase Phone Mockup */
.mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glow-orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, rgba(99, 102, 241, 0.1) 60%, transparent 80%);
  filter: blur(50px);
  z-index: 0;
  animation: floatOrb 8s infinite alternate ease-in-out;
}

@keyframes floatOrb {
  0% {
    transform: translate(-20px, -20px) scale(0.95);
  }

  100% {
    transform: translate(20px, 20px) scale(1.05);
  }
}

.phone-card-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  background: #0f0d19;
  border: 7px solid #252038;
  border-radius: 46px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.75), 0 0 45px rgba(124, 58, 237, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.phone-card-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.85), 0 0 55px rgba(124, 58, 237, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.phone-screen-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 38px;
  background: #090812;
  display: flex;
}

.phone-screen-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.phone-glare {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 40%, transparent 60%);
  pointer-events: none;
  border-radius: inherit;
}

.mini-tx-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.mini-tx-icon.receive {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
}

.mini-tx-icon.send {
  background: rgba(244, 63, 94, 0.15);
  color: var(--accent-rose);
}

.mini-tx-icon.swap {
  background: rgba(99, 102, 241, 0.15);
  color: var(--primary-light);
}

/* Floating Badges on Hero */
.floating-badge {
  position: absolute;
  padding: 0.75rem 1.1rem;
  background: rgba(26, 23, 44, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  animation: floatCard 6s ease-in-out infinite alternate;
}

.floating-badge.badge-top-left {
  top: 10%;
  left: -25px;
}

.floating-badge.badge-bottom-right {
  bottom: 8%;
  right: -25px;
  animation-delay: -3s;
}

@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-12px);
  }
}

/* Trust Bar / Supported Currencies */
.trust-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(15, 13, 24, 0.4);
}

.trust-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.trust-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.currency-marquee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  max-width: 1100px;
  margin: 0 auto;
}

.currency-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.currency-chip:hover {
  border-color: var(--primary-light);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.currency-chip img,
.currency-chip svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.currency-symbol-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 4px;
  border-radius: var(--radius-xs);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-mono);
}

.currency-symbol-badge.badge-usd {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.15);
}

.currency-symbol-badge.badge-eur {
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.15);
}

.currency-symbol-badge.badge-gbp {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.15);
}

.currency-symbol-badge.badge-ngn {
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
}

.currency-symbol-badge.badge-ghs {
  color: #eab308;
  background: rgba(234, 179, 8, 0.15);
}

.currency-symbol-badge.badge-kes {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.15);
}

.currency-symbol-badge.badge-zar {
  color: #06b6d4;
  background: rgba(6, 182, 212, 0.15);
}

.currency-symbol-badge.badge-rwf {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
}

.currency-symbol-badge.badge-ugx {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.15);
}

.currency-symbol-badge.badge-cfa {
  color: #34d399;
  background: rgba(52, 211, 153, 0.15);
}

/* Feature Grid Section */
.features-section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-purple), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), var(--shadow-glow);
  background: var(--bg-card-hover);
}

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

.feature-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.12);
  color: var(--primary-light);
  font-size: 1.4rem;
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.feature-icon-box.emerald {
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-emerald);
  border-color: rgba(16, 185, 129, 0.25);
}

.feature-icon-box.blue {
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent-blue);
  border-color: rgba(59, 130, 246, 0.25);
}

.feature-card h3 {
  font-size: 1.35rem;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.feature-list-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-emerald);
  flex-shrink: 0;
}

/* How It Works Steps */
.how-it-works-section {
  padding: 6rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-purple) 0%, var(--primary) 100%);
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
}

.step-card h3 {
  font-size: 1.15rem;
}

.step-card p {
  font-size: 0.9rem;
}

/* Security & Compliance Pillars */
.security-section {
  padding: 6rem 0;
  background: #0f0d19;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.security-pillars-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.security-pillar-item {
  display: flex;
  gap: 1.25rem;
  background: var(--bg-card);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.security-pillar-item:hover {
  border-color: var(--primary);
  background: var(--bg-card-hover);
}

.security-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.security-pillar-content h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.security-pillar-content p {
  font-size: 0.875rem;
}




/* Download CTA Banner Section */
.cta-banner-section {
  padding: 5rem 0 7rem 0;
}

.cta-banner-card {
  position: relative;
  background: linear-gradient(135deg, #1e1a38 0%, #110e20 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), var(--shadow-glow);
}

.cta-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 680px;
  z-index: 1;
}

.cta-banner-content .store-badges {
  justify-content: center;
}

/* Global Footer */
.site-footer {
  background: #07060b;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2.5rem 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand-col p {
  font-size: 0.875rem;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

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

.footer-link {
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   LEGAL / POLICY / CONTACT / DELETE ACCOUNT PAGES
   ========================================================================== */

.page-header-banner {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 3.5rem;
  background: linear-gradient(180deg, rgba(72, 61, 139, 0.15) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.page-header-banner h1 {
  margin-bottom: 0.75rem;
}

.legal-content-wrap {
  padding: 4rem 0 6rem 0;
}

.legal-document {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.legal-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-section h2 {
  font-size: 1.45rem;
  color: var(--text-primary);
  margin-top: 0.5rem;
}

.legal-section h3 {
  font-size: 1.15rem;
  color: var(--text-primary);
}

.legal-section p,
.legal-section li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.legal-section ul,
.legal-section ol {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-section ul {
  list-style: disc;
}

.legal-section ol {
  list-style: decimal;
}

.alert-callout {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  gap: 1rem;
}

.alert-callout.info {
  border-color: var(--primary);
  background: rgba(99, 102, 241, 0.08);
}

.alert-callout.warning {
  border-color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.08);
}

.alert-callout.danger {
  border-color: var(--accent-rose);
  background: rgba(244, 63, 94, 0.08);
}

.alert-callout.success {
  border-color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.08);
}

/* Forms & Inputs */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--bg-input);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-hint {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

/* Contact Page Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 980px;
  margin: 0 auto;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all var(--transition-fast);
}

.contact-info-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(99, 102, 241, 0.12);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

/* Toast Notification System */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  padding: 1rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  color: var(--text-primary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideToastIn 0.3s ease forwards;
  max-width: 380px;
}

.toast.success {
  border-left: 4px solid var(--accent-emerald);
}

.toast.error {
  border-left: 4px solid var(--accent-rose);
}

@keyframes slideToastIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {

  .hero-grid,
  .calc-grid,
  .security-grid,
  .cta-banner-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .features-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  :root {
    --header-height: 70px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    background: rgba(12, 10, 18, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 1.5rem 1.5rem 3rem 1.5rem;
    gap: 0;
    display: flex;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.35s;
    overflow-y: auto;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu .nav-link {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: #ffffff;
    padding-left: 0.5rem;
  }

  .nav-menu .nav-link.active::after {
    display: none;
  }

  .mobile-nav-cta {
    display: block;
    margin-top: 2rem;
    width: 100%;
  }

  .mobile-nav-cta .btn {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .trust-section {
    padding: 2.25rem 0;
  }

  .currency-marquee {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.55rem;
    width: 100%;
  }

  .currency-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.5rem;
    gap: 0.45rem;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    width: 100%;
  }

  .currency-chip img,
  .currency-chip svg {
    width: 18px;
    height: 18px;
  }

  .currency-symbol-badge {
    min-width: 20px;
    height: 20px;
    font-size: 0.72rem;
  }

  .features-grid,
  .steps-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner-card {
    padding: 2.5rem 1.5rem;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .mockup-wrapper {
    margin-top: 1.5rem;
  }

  .floating-badge.badge-top-left {
    top: 5%;
    left: -10px;
  }

  .floating-badge.badge-bottom-right {
    bottom: 5%;
    right: -10px;
  }

  .legal-document {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 520px) {
  .currency-marquee {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
  }

  .currency-chip {
    padding: 0.4rem 0.35rem;
    font-size: 0.75rem;
    gap: 0.35rem;
  }

  .currency-chip img,
  .currency-chip svg {
    width: 16px;
    height: 16px;
  }

  .currency-symbol-badge {
    min-width: 18px;
    height: 18px;
    font-size: 0.68rem;
    padding: 0 2px;
  }
}

@media (max-width: 480px) {
  .phone-card-frame {
    max-width: 270px;
    border-width: 5px;
    border-radius: 36px;
  }

  .phone-screen-container {
    border-radius: 30px;
  }

  .floating-badge {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }

  .floating-badge.badge-top-left {
    left: -5px;
    top: 2%;
  }

  .floating-badge.badge-bottom-right {
    right: -5px;
    bottom: 2%;
  }
}

/* Custom select arrow for form-control selects */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239e9ab8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px;
}