/* =====================================================
   SEKA Money - Premium Fintech Design + VIBRANT COLORS
   ===================================================== */

:root {
  /* Vibrant Color Palette */
  --primary: #00D09E;
  --primary-dark: #00B386;
  --primary-light: #4EECC4;

  --purple: #7C3AED;
  --purple-light: #A78BFA;
  --blue: #3B82F6;
  --blue-light: #60A5FA;
  --pink: #EC4899;
  --orange: #F97316;
  --yellow: #FBBF24;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00D09E 0%, #00E6B0 50%, #4EECC4 100%);
  --gradient-purple: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
  --gradient-blue: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
  --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E1B4B 50%, #312E81 100%);
  --gradient-mesh: radial-gradient(at 40% 20%, rgba(124, 58, 237, 0.3) 0px, transparent 50%),
                   radial-gradient(at 80% 0%, rgba(0, 208, 158, 0.3) 0px, transparent 50%),
                   radial-gradient(at 0% 50%, rgba(59, 130, 246, 0.2) 0px, transparent 50%),
                   radial-gradient(at 80% 50%, rgba(236, 72, 153, 0.2) 0px, transparent 50%),
                   radial-gradient(at 0% 100%, rgba(124, 58, 237, 0.2) 0px, transparent 50%);

  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  --navy: #0F172A;
  --navy-light: #1E293B;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 100px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 60px rgba(0, 208, 158, 0.4);
  --shadow-glow-purple: 0 0 60px rgba(124, 58, 237, 0.3);

  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--gray-600);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--gray-900);
  font-weight: 600;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
}

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

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

/* =====================================================
   BUTTONS - Colorful
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0, 208, 158, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 208, 158, 0.5);
}

.btn-purple {
  background: var(--gradient-purple);
  color: white;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}

.btn-white {
  background: white;
  color: var(--gray-800);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

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

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.btn-store:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 208, 158, 0.4);
}

.btn-store svg {
  flex-shrink: 0;
}

.btn-store span {
  font-weight: 600;
}

/* =====================================================
   NAVBAR - Glass Effect
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 36px;
  width: auto;
}

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--navy);
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
}

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

.nav-links a:not(.btn) {
  padding: 10px 18px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-links a:not(.btn):hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* =====================================================
   HERO - Vibrant Dark with Mesh Gradient
   ===================================================== */
.hero {
  min-height: 100vh;
  padding: 140px 0 100px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  opacity: 0.8;
}

/* Animated gradient orbs */
.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 208, 158, 0.4) 0%, transparent 70%);
  filter: blur(60px);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-tag svg {
  width: 18px;
  height: 18px;
}

.hero h1 {
  color: white;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
}

/* Metrics Row */
.hero-metrics {
  display: flex;
  gap: 48px;
}

.metric {
  position: relative;
}

.metric::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
}

.metric:last-child::after {
  display: none;
}

.metric-value {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero Visual - Phone Mockup with Screenshot */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 580px;
  background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    var(--shadow-2xl),
    var(--shadow-glow-purple),
    inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 32px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 40px;
}

/* Floating Cards - Colorful */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatY 5s ease-in-out infinite;
}

.float-card-1 {
  top: 5%;
  right: -30px;
}

.float-card-2 {
  bottom: 10%;
  left: -30px;
  animation-delay: 2.5s;
}

.float-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-icon.success {
  background: linear-gradient(135deg, rgba(0, 208, 158, 0.15) 0%, rgba(0, 208, 158, 0.05) 100%);
}

.float-icon.chart {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(124, 58, 237, 0.05) 100%);
}

.float-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-900);
}

.float-subtext {
  font-size: 0.75rem;
  color: var(--gray-400);
}

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

/* =====================================================
   TRUST BAR - Gradient Background
   ===================================================== */
.trust-bar {
  padding: 32px 0;
  background: linear-gradient(90deg, var(--primary) 0%, var(--blue) 50%, var(--purple) 100%);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.trust-item svg {
  width: 22px;
  height: 22px;
  opacity: 0.9;
}

.trust-item span {
  font-size: 0.9375rem;
  font-weight: 600;
}

/* =====================================================
   FEATURES - Colorful Cards
   ===================================================== */
.features {
  padding: 120px 0;
  background: var(--gray-50);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.03) 0%, transparent 100%);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
  position: relative;
}

.section-eyebrow {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-500);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.feature-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: var(--transition);
}

.feature-card:nth-child(1)::before { background: var(--gradient-primary); }
.feature-card:nth-child(2)::before { background: var(--gradient-purple); }
.feature-card:nth-child(3)::before { background: var(--gradient-blue); }
.feature-card:nth-child(4)::before { background: linear-gradient(135deg, var(--pink) 0%, #F472B6 100%); }
.feature-card:nth-child(5)::before { background: linear-gradient(135deg, var(--orange) 0%, #FB923C 100%); }
.feature-card:nth-child(6)::before { background: linear-gradient(135deg, var(--yellow) 0%, #FCD34D 100%); }

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-card:nth-child(1) .feature-icon { background: linear-gradient(135deg, rgba(0, 208, 158, 0.15) 0%, rgba(0, 208, 158, 0.05) 100%); color: var(--primary); }
.feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(124, 58, 237, 0.05) 100%); color: var(--purple); }
.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%); color: var(--blue); }
.feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(236, 72, 153, 0.05) 100%); color: var(--pink); }
.feature-card:nth-child(5) .feature-icon { background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.05) 100%); color: var(--orange); }
.feature-card:nth-child(6) .feature-icon { background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0.05) 100%); color: var(--orange); }

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--gray-900);
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* =====================================================
   SCREENSHOTS GALLERY
   ===================================================== */
.screenshots-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, white 50%, var(--gray-50) 100%);
  overflow: hidden;
}

.screenshots-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 20px 0;
}

.screenshot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.screenshot-item:hover {
  transform: translateY(-12px);
}

.screenshot-item:nth-child(2),
.screenshot-item:nth-child(4) {
  margin-top: 40px;
}

.screenshot-phone {
  position: relative;
  width: 200px;
  height: 420px;
  background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 36px;
  padding: 8px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.screenshot-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #000;
  border-radius: 16px;
  z-index: 10;
}

.screenshot-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 30px;
}

.screenshot-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: 8px 16px;
  background: white;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}

/* =====================================================
   HOW IT WORKS - Colorful Steps
   ===================================================== */
.how-it-works {
  padding: 120px 0;
  background: white;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(16.66% + 40px);
  right: calc(16.66% + 40px);
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--purple) 50%, var(--blue) 100%);
  border-radius: 4px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step-card:nth-child(1) .step-number {
  background: var(--gradient-primary);
  box-shadow: 0 10px 40px rgba(0, 208, 158, 0.4);
}

.step-card:nth-child(2) .step-number {
  background: var(--gradient-purple);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.4);
}

.step-card:nth-child(3) .step-number {
  background: var(--gradient-blue);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
}

.step-card:hover .step-number {
  transform: scale(1.1);
}

.step-card h3 {
  margin-bottom: 10px;
}

.step-card p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  max-width: 280px;
  margin: 0 auto;
}

/* =====================================================
   AFRICA SECTION - Gradient Dark
   ===================================================== */
.africa-section {
  padding: 120px 0;
  background: var(--gradient-hero);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.africa-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  opacity: 0.6;
}

.africa-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.africa-text h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.africa-text > p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  line-height: 1.7;
}

.africa-features {
  display: grid;
  gap: 16px;
}

.africa-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.africa-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateX(8px);
}

.africa-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.africa-feature-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}

.africa-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.africa-map-container {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 208, 158, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
  border: 2px solid rgba(0, 208, 158, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.africa-map-container::before {
  content: '';
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  border: 1px dashed rgba(124, 58, 237, 0.3);
}

.africa-map-container::after {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px dashed rgba(59, 130, 246, 0.3);
}

.africa-map-emoji {
  font-size: 140px;
  animation: rotate 30s linear infinite reverse;
}

/* Floating stats */
.map-stat {
  position: absolute;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  backdrop-filter: blur(10px);
}

.map-stat-1 {
  top: 5%;
  right: -10px;
  animation: floatY 4s ease-in-out infinite;
}

.map-stat-2 {
  bottom: 15%;
  left: -20px;
  animation: floatY 4s ease-in-out infinite 2s;
}

.map-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.map-stat-label {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =====================================================
   NOTICE SECTION - Trust Message
   ===================================================== */
.notice-section {
  padding: 80px 0;
  background: white;
}

.notice-card {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px 48px;
  background: linear-gradient(135deg, rgba(0, 208, 158, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 2px solid rgba(0, 208, 158, 0.2);
  border-radius: var(--radius-2xl);
  position: relative;
  overflow: hidden;
}

.notice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--gradient-primary);
}

.notice-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0, 208, 158, 0.3);
}

.notice-content h3 {
  font-size: 1.375rem;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.notice-content p {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

.notice-content strong {
  color: var(--primary-dark);
}

/* =====================================================
   CTA - Colorful Gradient Card
   ===================================================== */
.cta-section {
  padding: 120px 0;
  background: var(--gray-50);
}

.cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, #1E1B4B 50%, #312E81 100%);
  border-radius: var(--radius-2xl);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  opacity: 0.5;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 208, 158, 0.3) 0%, transparent 60%);
  filter: blur(40px);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-card .cta-content > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  color: white;
  transition: var(--transition);
}

.store-btn:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 208, 158, 0.4);
}

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

.store-info {
  text-align: left;
}

.store-label {
  display: block;
  font-size: 0.6875rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.store-name {
  display: block;
  font-size: 1.0625rem;
  font-weight: 600;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  padding: 72px 0 32px;
  background: var(--navy);
  color: white;
}

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

.footer-brand .logo {
  margin-bottom: 20px;
}

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

.footer-column h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  padding: 8px 0;
  transition: var(--transition);
}

.footer-column a:hover {
  color: white;
  padding-left: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--navy);
}

/* =====================================================
   MOBILE MENU
   ===================================================== */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 14px 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.mobile-menu .btn {
  margin-top: 8px;
  justify-content: center;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-metrics {
    justify-content: center;
  }

  .float-card {
    display: none;
  }

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

  .phone-mockup {
    width: 240px;
    height: 500px;
  }

  .screenshots-grid {
    gap: 20px;
    flex-wrap: wrap;
  }

  .screenshot-phone {
    width: 160px;
    height: 340px;
  }

  .screenshot-item:nth-child(2),
  .screenshot-item:nth-child(4) {
    margin-top: 0;
  }

  .africa-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .africa-visual {
    order: -1;
    margin-bottom: 40px;
  }

  .africa-features {
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 120px 0 80px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-metrics {
    flex-wrap: wrap;
    gap: 32px;
  }

  .metric::after {
    display: none;
  }

  .dashboard-card {
    padding: 24px;
  }

  .trust-bar .container {
    flex-wrap: wrap;
    gap: 24px;
  }

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

  .phone-mockup {
    width: 220px;
    height: 460px;
    border-radius: 40px;
  }

  .phone-notch {
    width: 100px;
    height: 28px;
  }

  .screenshots-grid {
    gap: 16px;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .screenshot-item {
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .screenshot-phone {
    width: 140px;
    height: 300px;
    border-radius: 28px;
  }

  .screenshot-notch {
    width: 60px;
    height: 18px;
    top: 8px;
  }

  .screenshot-label {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .steps-container::before {
    display: none;
  }

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

  .footer-brand p {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
  }

  .cta-card {
    padding: 56px 24px;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .notice-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }

  .notice-card::before {
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
  }

  .notice-icon {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .africa-map-container {
    width: 280px;
    height: 280px;
  }

  .africa-map-emoji {
    font-size: 100px;
  }

  .map-stat {
    display: none;
  }

  .trust-bar .container {
    gap: 16px;
  }

  .trust-item span {
    font-size: 0.8125rem;
  }
}
