/* ============================================
   SENTIFLOW TECHNOLOGIES - BRAND STANDARDS
   ============================================
   
   This stylesheet follows SentiFlow brand guidelines.
   Update CSS variables in :root section to match brand standards.
   
   Brand Guidelines Reference: SENTIFLOW-Branding.docx
   
   Key Brand Elements:
   - Primary Colors: Update --brand-primary, --brand-secondary, --brand-accent
   - Typography: Update --font-family-primary and font weights
   - Spacing: Use spacing scale (--spacing-*) for consistency
   - Border Radius: Use radius scale (--radius-*) for consistency
   
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Enhanced Focus States for Accessibility */
*:focus-visible {
    outline: 2px solid var(--brand-secondary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--brand-secondary);
    outline-offset: 3px;
}

/* Loading Animation */
@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--color-background);
    border-radius: 50%;
    animation: loading 0.6s linear infinite;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* ===== SENTIPAY BRAND COLORS - Dark Premium Aesthetic ===== */
    /* Primary Brand Colors */
    --brand-primary: #1B363A;           /* Deepest Teal for sections/footers */
    --brand-bg: #2D5A61;                /* Main Brand Teal / Hero Background */
    --brand-secondary: #00A372;         /* Emerald Green for Logic/CTAs */
    --brand-accent: #FFFFFF;            /* Pure white for bold headlines */
    --brand-highlight: #F2C94C;         /* Gold - Use sparingly for highlights */
    
    /* Secondary Brand Colors */
    --brand-red: #C1121F;               /* Warm Red - Cultural energy (Ghana & SA flags) */
    --brand-mint: #D2FFF6;              /* Light Mint - Fintech friendliness & clarity */
    --brand-concrete: #EEEEEE;          /* Concrete Grey - Neutral balance */
    
    /* Legacy color names (mapped to brand colors for compatibility) */
    --primary-blue: var(--brand-primary);
    --primary-teal: var(--brand-bg);
    --primary-green: var(--brand-secondary);
    --brand-bg-teal: var(--brand-bg);
    
    /* Neutral Colors - Dark Premium Theme */
    --color-text-primary: #FFFFFF;      /* Pure White for Headings */
    --color-text-secondary: rgba(255, 255, 255, 0.8);  /* Muted White for body text */
    --color-background: #FFFFFF;        /* Main background (for modals/overlays) */
    --color-background-light: #24494E;  /* Darker teal for cards */
    --color-border: rgba(255, 255, 255, 0.1);  /* Light border for glassmorphism */
    
    /* Legacy neutral names */
    --dark-text: var(--color-text-primary);
    --gray-text: var(--color-text-secondary);
    --light-gray: var(--color-background-light);
    --white: var(--color-background);
    
    /* ===== SENTIFLOW BRAND GRADIENTS ===== */
    --gradient-primary: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    --gradient-hero: linear-gradient(135deg, var(--brand-mint) 0%, rgba(242, 201, 76, 0.1) 100%);
    --gradient-accent: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-accent) 100%);
    
    /* ===== SENTIFLOW TYPOGRAPHY - Official Brand Standards ===== */
    /* Primary Font: Inter (clean, modern sans-serif with rounded edges, humanist curves) */
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;      /* For numbers, FX rates, fees, totals */
    --font-weight-bold: 700;         /* For headlines */
    --font-weight-extrabold: 800;
    
    /* Font Sizes - Brand Standard Scale */
    --font-size-xs: 0.75rem;      /* 12px */
    --font-size-sm: 0.875rem;     /* 14px */
    --font-size-base: 1rem;       /* 16px */
    --font-size-lg: 1.125rem;     /* 18px */
    --font-size-xl: 1.25rem;      /* 20px */
    --font-size-2xl: 1.5rem;      /* 24px */
    --font-size-3xl: 2rem;        /* 32px */
    --font-size-4xl: 2.5rem;      /* 40px */
    --font-size-5xl: 3rem;        /* 48px */
    
    /* ===== SPACING SYSTEM - Brand Standard ===== */
    --spacing-xs: 0.25rem;   /* 4px */
    --spacing-sm: 0.5rem;     /* 8px */
    --spacing-md: 1rem;      /* 16px */
    --spacing-lg: 1.5rem;     /* 24px */
    --spacing-xl: 2rem;       /* 32px */
    --spacing-2xl: 3rem;      /* 48px */
    --spacing-3xl: 4rem;      /* 64px */
    --spacing-4xl: 6rem;      /* 96px */
    
    /* ===== BORDER RADIUS - Brand Standard ===== */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* ===== SHADOWS - Brand Standard ===== */
    --shadow-sm: 0 1px 2px 0 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);
    
    /* ===== TRANSITIONS - Brand Standard ===== */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* ===== ANIMATION TIMINGS ===== */
    --animation-duration-fast: 0.2s;
    --animation-duration-base: 0.3s;
    --animation-duration-slow: 0.6s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: var(--font-weight-regular);
    background-color: var(--brand-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Prevent horizontal overflow on all elements */
* {
    box-sizing: border-box;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-accent);
    z-index: 10000;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s ease;
}

/* Navigation */
/* ===== NAVIGATION - Brand Standard ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(45, 90, 97, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    padding: var(--spacing-md) 0;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--brand-accent);
    transition: all var(--transition-base);
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.nav-brand:hover .brand-name {
    color: var(--brand-secondary);
}

.nav-brand:active {
    transform: scale(0.98);
}

.nav-brand .logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all var(--transition-base);
    animation: logoFadeIn 0.8s ease-out, logoPulse 2s ease-in-out 1s infinite;
    transform-origin: center;
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(123deg) brightness(98%) contrast(101%) drop-shadow(0 0 8px rgba(0, 163, 114, 0.5)); /* Emerald Green #00A372 */
}

/* Force emerald green for navbar logo - override any conflicting styles */
.navbar .nav-brand .logo {
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(123deg) brightness(98%) contrast(101%) drop-shadow(0 0 12px rgba(0, 163, 114, 0.8)) blur(0px) !important; /* Force Emerald Green #00A372 with premium glow */
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.nav-brand:hover .logo {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(123deg) brightness(98%) contrast(101%) drop-shadow(0 4px 15px rgba(0, 163, 114, 0.7)) !important;
    animation: logoShimmer 0.6s ease-in-out;
}

@keyframes logoShimmer {
    0% {
        filter: drop-shadow(0 4px 12px rgba(0, 163, 114, 0.5));
    }
    50% {
        filter: drop-shadow(0 4px 20px rgba(0, 163, 114, 0.8)) brightness(1.1);
    }
    100% {
        filter: drop-shadow(0 4px 12px rgba(0, 163, 114, 0.5));
    }
}

.nav-brand:active .logo {
    transform: scale(0.95) rotate(-2deg);
}

.brand-name {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: #FFFFFF !important; /* Pure White */
    letter-spacing: -0.02em; /* Brand standard letter spacing */
    transition: all var(--transition-base);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Ensure nav-links is visible on desktop */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
    }
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-base);
    font-size: var(--font-size-sm);
    letter-spacing: 0.01em;
    position: relative;
    padding: 0.75rem 1rem; /* Increased for touch target */
    min-height: 44px; /* Touch target minimum */
    display: flex;
    align-items: center;
    touch-action: manipulation; /* Prevent double-tap zoom */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-secondary);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-accent);
    transform: translateY(-2px);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px; /* Increased for touch target */
    z-index: 1001;
    min-width: 44px; /* Touch target minimum */
    min-height: 44px; /* Touch target minimum */
    align-items: center;
    justify-content: center;
    touch-action: manipulation; /* Prevent double-tap zoom */
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 40px !important; /* Reduce bottom padding from 80px to 40px */
    background: var(--brand-bg);
    overflow: hidden;
    opacity: 1 !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    z-index: 0;
}

.hero-abstract-path {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.15;
}

.hero-abstract-path svg {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 133, 63, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(242, 201, 76, 0.06) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Hero Floating Success Data Cards */
.hero-floating-cards {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    pointer-events: none;
}

.floating-card {
    background: rgba(36, 73, 78, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: floatCard 4s ease-in-out infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Floating card animations with horizontal staggering */
.floating-card:nth-child(1) {
    animation: floatCardStagger1 4s ease-in-out infinite;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    animation: floatCardStagger2 4s ease-in-out infinite;
    animation-delay: 1.3s;
}

.floating-card:nth-child(3) {
    animation: floatCardStagger3 4s ease-in-out infinite;
    animation-delay: 2.6s;
}

@keyframes floatCardStagger1 {
    0%, 100% { 
        transform: translateX(15px) translateY(0);
    }
    50% { 
        transform: translateX(15px) translateY(-15px);
    }
}

@keyframes floatCardStagger2 {
    0%, 100% { 
        transform: translateX(-10px) translateY(0);
    }
    50% { 
        transform: translateX(-10px) translateY(-15px);
    }
}

@keyframes floatCardStagger3 {
    0%, 100% { 
        transform: translateX(20px) translateY(0);
    }
    50% { 
        transform: translateX(20px) translateY(-15px);
    }
}

.floating-card:nth-child(1):hover {
    transform: translateX(15px) translateY(-5px) scale(1.05);
    background: rgba(36, 73, 78, 0.8);
    border-color: rgba(0, 163, 114, 0.3);
    box-shadow: 0 12px 40px rgba(0, 163, 114, 0.2);
}

.floating-card:nth-child(2):hover {
    transform: translateX(-10px) translateY(-5px) scale(1.05);
    background: rgba(36, 73, 78, 0.8);
    border-color: rgba(0, 163, 114, 0.3);
    box-shadow: 0 12px 40px rgba(0, 163, 114, 0.2);
}

.floating-card:nth-child(3):hover {
    transform: translateX(20px) translateY(-5px) scale(1.05);
    background: rgba(36, 73, 78, 0.8);
    border-color: rgba(0, 163, 114, 0.3);
    box-shadow: 0 12px 40px rgba(0, 163, 114, 0.2);
}

.card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(0, 163, 114, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #00A372;
}

.card-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.card-value {
    font-size: 0.9rem;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 1.2;
}

/* Live Rate Card */
.live-rate-card {
    position: absolute;
    top: 20%;
    right: 8%;
    background: rgba(36, 73, 78, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 163, 114, 0.3);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 6;
    animation: floatCard 4s ease-in-out infinite;
    animation-delay: 0.5s;
    transition: all 0.3s ease;
}

.live-rate-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(36, 73, 78, 0.8);
    border-color: rgba(0, 163, 114, 0.5);
    box-shadow: 0 12px 40px rgba(0, 163, 114, 0.2);
}

.live-rate-card.rate-live {
    border-color: rgba(0, 163, 114, 0.5);
}

.live-rate-card.rate-fallback {
    border-color: rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

.live-rate-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.live-dot {
    height: 8px;
    width: 8px;
    background-color: #00A372;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #00A372;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { 
        transform: scale(0.95); 
        box-shadow: 0 0 0 0 rgba(0, 163, 114, 0.7); 
    }
    70% { 
        transform: scale(1); 
        box-shadow: 0 0 0 10px rgba(0, 163, 114, 0); 
    }
    100% { 
        transform: scale(0.95); 
        box-shadow: 0 0 0 0 rgba(0, 163, 114, 0); 
    }
}

.live-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.live-rate-value {
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.live-rate-timestamp {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero visual container for grid layout */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.hero-content {
    position: relative;
    z-index: 10 !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    max-width: 680px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    padding-left: 0 !important; /* Absolute left align */
    opacity: 1 !important;
    visibility: visible !important;
}


.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-accent);
    margin-bottom: 2rem;
    margin-left: 0 !important;
    margin-right: auto !important;
    margin-top: 0 !important;
    box-shadow: var(--shadow-md);
    animation: fadeInDown 0.6s ease, badgePulse 2s ease-in-out infinite 1s;
    cursor: default;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: fit-content;
    text-align: left !important;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 133, 63, 0.1), transparent);
    transition: left 0.5s ease;
}

.hero-badge:hover::before {
    left: 100%;
}

.hero-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 133, 63, 0.2);
}

.hero-badge span:last-child {
    transition: all 0.3s ease;
}

.hero-badge:hover span:last-child {
    color: var(--brand-accent);
    font-weight: 700;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: var(--shadow-md);
    }
    50% {
        box-shadow: 0 4px 12px rgba(0, 133, 63, 0.2);
    }
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--brand-accent);
    letter-spacing: -0.03em; /* Brand standard for headlines */
    animation: fadeInUp 0.8s ease;
    overflow: hidden;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    display: inline-block !important;
    width: 100% !important;
}

.hero-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) rotateX(90deg);
    animation: slideInWord 0.6s ease forwards;
    margin-right: 0.3em;
    cursor: default;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hero-title span:hover {
    transform: translateY(-8px) scale(1.15) !important;
    text-shadow: 0 5px 15px rgba(0, 133, 63, 0.3);
}

.hero-title span:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-title span:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-title span:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-title span:nth-child(4) {
    animation-delay: 0.4s;
}

.hero-title span:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes slideInWord {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

/* Text shimmer effect */
@keyframes textShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.gradient-text {
    background: linear-gradient(135deg, #00A372 0%, #FFFFFF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s linear infinite, textPulse 2s ease-in-out infinite;
    display: inline-block;
    position: relative;
}

@keyframes textPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.gradient-text::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: #00A372;
    opacity: 0.25;
    filter: blur(7px);
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

/* Duplicate removed - using the animated version above */

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: var(--font-weight-bold);
    color: var(--brand-accent);
    margin: 0 0 2rem 0 !important;
    letter-spacing: -0.02em;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    display: block !important;
    transition: all 0.3s ease;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    width: 100% !important;
    cursor: default;
}

.hero-subtitle:hover {
    transform: scale(1.05) translateX(5px);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.hero-description {
    font-size: var(--font-size-lg);
    color: #FFFFFF !important;
    margin: 0 0 2rem 0 !important;
    line-height: 1.6 !important;
    font-weight: var(--font-weight-regular);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    width: 100% !important;
    position: relative !important;
    z-index: 10 !important;
    transform: none !important;
    animation: none !important;
    transition: all 0.3s ease;
}

.hero-description:hover {
    color: var(--brand-accent);
    transform: translateY(-3px);
}

/* Force visibility - override any inline styles */
.hero-description[style*="opacity"],
.hero-description[style*="visibility"],
.hero-description[style*="display"] {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    color: #FFFFFF !important;
}

.hero-description span[style*="opacity"],
.hero-description span[style*="visibility"],
.hero-description span[style*="color"] {
    opacity: 1 !important;
    visibility: visible !important;
    color: #FFFFFF !important;
}

/* Remove any remaining span junk */
.hero-description span, 
.hero-subtitle span,
.hero-social-proof-text span {
    display: inline !important;
    opacity: 1 !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    animation: none !important;
    color: inherit !important;
    visibility: visible !important;
}

.hero-description span:nth-child(1) { animation-delay: 1.2s; }
.hero-description span:nth-child(2) { animation-delay: 1.25s; }
.hero-description span:nth-child(3) { animation-delay: 1.3s; }
.hero-description span:nth-child(4) { animation-delay: 1.35s; }
.hero-description span:nth-child(5) { animation-delay: 1.4s; }
.hero-description span:nth-child(6) { animation-delay: 1.45s; }
.hero-description span:nth-child(7) { animation-delay: 1.5s; }
.hero-description span:nth-child(8) { animation-delay: 1.55s; }
.hero-description span:nth-child(9) { animation-delay: 1.6s; }
.hero-description span:nth-child(10) { animation-delay: 1.65s; }
.hero-description span:nth-child(11) { animation-delay: 1.7s; }
.hero-description span:nth-child(12) { animation-delay: 1.75s; }
.hero-description span:nth-child(13) { animation-delay: 1.8s; }
.hero-description span:nth-child(14) { animation-delay: 1.85s; }
.hero-description span:nth-child(15) { animation-delay: 1.9s; }
.hero-description span:nth-child(16) { animation-delay: 1.95s; }
.hero-description span:nth-child(17) { animation-delay: 2s; }
.hero-description span:nth-child(18) { animation-delay: 2.05s; }
.hero-description span:nth-child(19) { animation-delay: 2.1s; }
.hero-description span:nth-child(20) { animation-delay: 2.15s; }

.hero-description span:hover {
    transform: translateY(-3px) scale(1.1);
    color: var(--brand-accent);
    font-weight: var(--font-weight-semibold);
}

/* Hero Social Proof Text - Always Visible */
.hero-social-proof-text {
    font-size: var(--font-size-base);
    color: #FFFFFF !important;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    font-weight: var(--font-weight-medium);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    width: 100% !important;
    position: relative !important;
    z-index: 10 !important;
    letter-spacing: 0.02em;
}

@keyframes fadeInWord {
    to {
        opacity: 1;
    }
}

/* Waitlist Form */
.waitlist-form {
    margin-bottom: 1.5rem !important; /* Reduced from 3rem to tighten spacing */
    animation: fadeInUp 1.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 1rem;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.waitlist-form::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.waitlist-form:hover::before {
    opacity: 1;
}

.form-group {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 1rem;
    flex-wrap: wrap;
}

.form-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-family: inherit;
    transition: all var(--transition-base);
    background: #24494E;
    backdrop-filter: blur(12px);
    color: var(--color-text-primary);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-height: 44px; /* Touch target minimum */
    touch-action: manipulation; /* Prevent double-tap zoom */
    -webkit-appearance: none; /* Remove iOS styling */
    appearance: none;
}

.form-input::placeholder {
    color: var(--color-text-secondary);
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-secondary);
    background: rgba(36, 73, 78, 0.8);
    box-shadow: 0 0 0 4px rgba(0, 163, 114, 0.15), 0 4px 12px rgba(0, 163, 114, 0.1), 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.form-input:focus::placeholder {
    opacity: 0.4;
}

.form-input:hover:not(:focus) {
    border-color: var(--brand-primary);
    box-shadow: 0 2px 8px rgba(13, 27, 42, 0.08);
}

/* ===== BUTTONS - Brand Standard with Enhanced Interactions ===== */
.btn-primary,
.waitlist-link {
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--brand-secondary);
    color: var(--brand-accent);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.02em;
    font-family: var(--font-family-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    white-space: nowrap;
    box-shadow: 0 0 15px rgba(0, 163, 114, 0.3);
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    will-change: transform;
    min-height: 44px; /* Touch target minimum */
    min-width: 44px; /* Touch target minimum */
    touch-action: manipulation; /* Prevent double-tap zoom */
}

.waitlist-link {
    justify-content: center;
}

.btn-primary::before,
.waitlist-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover,
.waitlist-link:hover {
    transform: translateY(-4px) scale(1.02);
    background: #00BF86;
    box-shadow: 0 0 20px rgba(0, 163, 114, 0.4), 0 12px 24px -8px rgba(0, 163, 114, 0.2);
}

.btn-primary:hover::before,
.waitlist-link:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:active,
.waitlist-link:active {
    transform: translateY(-1px) scale(0.98);
    transition: transform 0.1s ease;
}

.btn-primary:focus,
.waitlist-link:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 133, 63, 0.3), var(--shadow-xl);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.form-note {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    opacity: 0;
    animation: fadeInUp 0.6s ease 1.6s forwards;
    transition: all 0.3s ease;
    margin-top: 1rem !important;
    margin-bottom: 1.5rem !important; /* Tight gap to connect with social proof counters */
    width: fit-content;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.form-note:hover {
    color: var(--brand-accent);
    transform: translateY(-2px);
}

.form-note span {
    transition: all 0.3s ease;
}

.form-note:hover .check-icon {
    transform: scale(1.2) rotate(360deg);
    color: var(--brand-secondary);
}

.check-icon {
    color: var(--brand-secondary);
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Social Proof */
.social-proof {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 0 !important; /* Bring counters up to meet hero content */
    margin-left: 0 !important;
    margin-right: auto !important;
    padding-top: 0 !important;
    padding-left: 0 !important;
    animation: fadeInUp 1.6s ease;
    opacity: 1 !important;
    visibility: visible !important;
    width: fit-content;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    transition: all var(--transition-base);
    cursor: pointer;
    padding: 0 1rem 0 0 !important; /* Right padding only to keep flush left */
    border-radius: var(--radius-md);
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
}

.proof-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background: rgba(0, 133, 63, 0.05);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.proof-item:hover::before {
    opacity: 1;
}

.proof-item {
    will-change: transform;
}

.proof-item:hover {
    transform: translateY(-8px) scale(1.08);
}

.proof-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.proof-number {
    font-size: 2rem;
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    transition: transform var(--transition-base);
    animation: textShimmer 4s linear infinite;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
}

.proof-item:hover .proof-number {
    transform: scale(1.15) rotate(2deg);
    animation: numberBounce 0.6s ease;
}

@keyframes numberBounce {
    0%, 100% {
        transform: scale(1.15) rotate(2deg);
    }
    50% {
        transform: scale(1.25) rotate(-2deg);
    }
}

.proof-label {
    display: block;
    font-size: 0.75rem;
    color: #FFFFFF !important;
    font-weight: 500;
    opacity: 0.8;
    visibility: visible !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Countries Section */
.countries-section {
    padding: 80px 0;
    background: var(--brand-primary);
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Corridor Selector */
.corridor-selector {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.corridor-label {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
}

.corridor-select {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    background: #1B363A;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    min-width: 250px;
    min-height: 44px; /* Touch target minimum */
    appearance: none;
    -webkit-appearance: none; /* Remove iOS styling */
    touch-action: manipulation; /* Prevent double-tap zoom */
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2300A372' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.corridor-select:hover {
    border-color: var(--brand-secondary);
    box-shadow: var(--shadow-md);
}

.corridor-select:focus {
    outline: none;
    border-color: var(--brand-secondary);
    box-shadow: 0 0 0 3px rgba(0, 163, 114, 0.3), 0 0 15px rgba(0, 163, 114, 0.2);
}

.countries-connection {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.country-card {
    background: rgba(36, 73, 78, 0.8);
    padding: 3rem 2rem;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 163, 114, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 200px;
    min-height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    will-change: transform;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.country-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(36, 73, 78, 0.85);
    border-color: rgba(0, 163, 114, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 163, 114, 0.2);
}

.country-flag {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 1.5rem;
}

.flag-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.country-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.country-card p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-secondary);
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Brighten the "Send to" card on hover for better interaction feedback */
.country-card:hover h3 {
    color: var(--brand-accent);
}

.country-card:hover p {
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.9);
}

.connection-arrow {
    font-size: 2rem;
    color: var(--brand-secondary);
    opacity: 0.8;
    filter: drop-shadow(0 0 8px rgba(0, 163, 114, 0.5));
    flex-shrink: 0;
    transition: all 0.3s ease;
    animation: arrowPulse 2s infinite ease-in-out;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.5;
    }
    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

.supported-networks {
    margin-top: 2rem;
}

.networks-label {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.networks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.network-badge {
    background: rgba(0, 163, 114, 0.08);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
    color: #4ade80;
    border: 1px solid rgba(0, 163, 114, 0.2);
    backdrop-filter: blur(4px);
    transition: all var(--transition-base);
    min-height: 36px; /* Touch-friendly, close to 44px */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.network-badge:hover {
    background: rgba(0, 163, 114, 0.15);
    color: #6ee7b7;
    border-color: rgba(0, 163, 114, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 163, 114, 0.2);
}

/* Value Propositions Section */
.value-props {
    padding: 100px 0;
    background: var(--brand-bg);
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-prop-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(36, 73, 78, 0.6);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    height: 100%;
    will-change: transform, opacity;
}

.value-prop-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.value-prop-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-secondary);
    background: radial-gradient(circle at top left, rgba(0, 163, 114, 0.1), rgba(36, 73, 78, 0.8));
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.value-prop-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00A372;
    transition: filter 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, filter;
}

.value-prop-icon svg {
    width: 56px;
    height: 56px;
    stroke: currentColor;
    filter: drop-shadow(0 0 12px rgba(0, 163, 114, 0.5));
    transition: filter 0.4s ease;
}

.value-prop-card:hover .value-prop-icon svg {
    filter: drop-shadow(0 0 15px rgba(0, 163, 114, 0.8));
}

.value-prop-card:hover .value-prop-icon {
    transform: scale(1.1);
}

.value-prop-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.value-prop-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1rem;
    flex-grow: 1;
}

/* Payout Options Section */
.payout-options {
    padding: 100px 0;
    background: var(--brand-primary);
}

.payout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.payout-card {
    background: linear-gradient(180deg, rgba(36, 73, 78, 0.8) 0%, rgba(27, 54, 58, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid rgba(0, 163, 114, 0.5);
    opacity: 0;
    transform: translateY(30px);
}

.payout-card.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.payout-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(180deg, rgba(45, 90, 97, 0.9) 0%, rgba(36, 73, 78, 0.9) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-top-color: rgba(0, 163, 114, 0.8);
}

.payout-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: filter;
}

.payout-card:hover .payout-icon {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
}

.payout-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.payout-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Payment Options Section */
.payment-options {
    padding: 100px 0;
    background: var(--brand-bg);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-card {
    background: rgba(36, 73, 78, 0.4);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
}

.payment-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.payment-card:hover {
    transform: translateY(-8px);
    background: rgba(36, 73, 78, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-color: var(--brand-secondary);
}

.payment-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00A372;
    filter: drop-shadow(0 0 5px rgba(0, 163, 114, 0.4));
    transition: all 0.3s ease;
}

.payment-icon svg {
    width: 48px;
    height: 48px;
    stroke: currentColor;
}

.payment-card:hover .payment-icon {
    filter: drop-shadow(0 0 12px rgba(0, 163, 114, 0.8));
    transform: scale(1.1);
}

.payment-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.payment-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--brand-primary);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-text-primary);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    position: relative;
    display: inline-block;
    cursor: default;
}

.section-title.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-title:hover {
    transform: translateY(-5px) scale(1.02);
    text-shadow: 0 5px 20px rgba(0, 133, 63, 0.2);
}

.section-title::after {
    content: '';
    display: block;
    width: 0;
    height: 4px;
    background: var(--gradient-accent);
    margin: 1rem auto 0;
    border-radius: 2px;
    transition: width 0.8s ease 0.3s;
}

.section-title.revealed::after {
    width: 100px;
}

.section-title.revealed:hover::after {
    width: 150px;
    height: 5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 80px;
}

.feature-card {
    background: rgba(36, 73, 78, 0.6);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 133, 63, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(36, 73, 78, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 163, 114, 0.5);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 0 10px rgba(0, 163, 114, 0.5));
    transition: filter 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #00A372;
    will-change: transform, filter;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    stroke: currentColor;
}

.feature-card:hover .feature-icon {
    filter: drop-shadow(0 0 15px rgba(0, 163, 114, 0.8));
    transform: scale(1.1);
}

.zero-fees-icon {
    filter: drop-shadow(0 0 10px rgba(0, 163, 114, 0.5));
    transition: all 0.4s ease;
}

.zero-fees-card {
    border: 1px solid rgba(0, 163, 114, 0.3);
}

.zero-fees-card:hover {
    border-color: rgba(0, 163, 114, 0.5);
}

.zero-fees-card:hover .zero-fees-icon {
    filter: drop-shadow(0 0 18px rgba(0, 163, 114, 0.9));
    transform: scale(1.15);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
    transition: all var(--transition-base);
    position: relative;
    display: inline-block;
    cursor: default;
}

.feature-card:hover .feature-title {
    color: var(--brand-secondary);
    transform: translateX(8px) scale(1.05);
    text-shadow: 0 3px 10px rgba(0, 133, 63, 0.2);
}

.feature-title::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 4px;
    height: 60%;
    background: var(--brand-secondary);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.feature-card:hover .feature-title::before {
    transform: translateY(-50%) scaleX(1);
}

.feature-description {
    color: var(--color-text-secondary);
    line-height: 1.7;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-description {
    color: var(--color-text-primary);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--brand-primary);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: nowrap;
    gap: 0;
}

.step {
    flex: 1;
    position: relative;
    padding: 0 1rem;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand-secondary);
    color: var(--color-background);
    font-size: 1.5rem;
    font-weight: var(--font-weight-extrabold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 15px rgba(0, 163, 114, 0.5);
    position: relative;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.5);
    animation: stepPulse 2s ease-in-out infinite;
    will-change: transform, box-shadow;
}

.step-number:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 20px rgba(0, 163, 114, 0.7);
}

@keyframes stepPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 163, 114, 0.4), var(--shadow-lg);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 163, 114, 0.6), 0 0 35px rgba(0, 163, 114, 0.3), var(--shadow-lg);
    }
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--brand-secondary);
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-base);
}

.step:hover .step-number::before {
    opacity: 1;
    transform: scale(1.1);
    animation: pulse 2s ease-in-out infinite;
}

.step-number.animate-in {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s ease, transform 0.5s var(--transition-bounce);
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    display: inline-block;
    cursor: default;
}

.step.animate-in .step-title {
    opacity: 1;
    transform: translateY(0);
}

.step:hover .step-title {
    color: var(--brand-secondary);
    transform: translateY(-5px) scale(1.05);
    text-shadow: 0 3px 10px rgba(0, 133, 63, 0.2);
    letter-spacing: 0.02em;
}

.step-description {
    color: var(--gray-text);
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.step.animate-in .step-description {
    opacity: 1;
    transform: translateY(0);
}

.step:hover .step-description {
    color: var(--color-text-primary);
}

/* Hide connector divs on desktop, use pseudo-elements instead */
.step-connector {
    display: none;
}

/* Use pseudo-elements for horizontal connecting lines on desktop */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(50% + 30px); /* Start from center of step number */
    width: calc(100% - 60px); /* Connect to next step number */
    height: 0;
    border-top: 3px dashed rgba(0, 163, 114, 0.4);
    box-shadow: 0 0 8px rgba(0, 163, 114, 0.3);
    z-index: 0;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        max-width: 100%;
    }
    
    .step {
        flex: none;
        width: 100%;
        max-width: 400px;
        padding: 0;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .step-connector {
        display: block;
        width: 2px;
        height: 40px;
        border-top: none;
        border-left: 2px dashed rgba(0, 163, 114, 0.3);
        margin: 1rem auto;
        top: 0;
        flex: none;
        width: 2px;
        height: 40px;
    }
}

/* Trust Section */
.trust-section {
    padding: var(--spacing-4xl) 0;
    background: radial-gradient(circle at center, #2D5A61 0%, #1B363A 100%);
}

.trust-content {
    text-align: center;
}

.trust-section .section-title::after {
    width: 0;
    margin-left: auto;
    margin-right: auto;
}

.trust-section .section-title.revealed::after {
    width: 60px !important;
}

.trust-section .section-title.revealed:hover::after {
    width: 60px !important;
    height: 4px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge {
    text-align: center;
    max-width: 320px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    will-change: transform, opacity;
}

.trust-badge.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trust-badge:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.trust-badge:hover .badge-icon-large {
    transform: translateY(-5px);
}

.trust-badge:hover .badge-icon-large svg {
    filter: drop-shadow(0 0 18px rgba(0, 163, 114, 0.7));
    transform: scale(1.05);
}

.badge-icon-large {
    height: 60px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00A372;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, filter;
}

.badge-icon-large svg {
    width: 70px;
    height: 70px;
    stroke: currentColor;
    fill: none;
    transition: all var(--transition-base);
    filter: drop-shadow(0 0 10px rgba(0, 163, 114, 0.4));
}

.trust-badge h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
    transition: all var(--transition-base);
}

.trust-badge:hover h4 {
    color: var(--brand-secondary);
    transform: translateY(-3px);
}

.trust-badge p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all var(--transition-base);
}

.trust-badge:hover p {
    color: var(--color-text-primary);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--brand-primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(36, 73, 78, 0.5);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateX(-20px);
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.faq-item:hover {
    background: rgba(45, 90, 97, 0.6);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(0, 133, 63, 0.1);
}

/* Active state with left border accent */
.faq-item:has(.faq-question[aria-expanded="true"]),
.faq-item.active {
    border-left: 4px solid var(--brand-secondary);
    background: rgba(36, 73, 78, 0.6);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    cursor: pointer;
    display: flex;
    min-height: 44px; /* Touch target minimum */
    touch-action: manipulation; /* Prevent double-tap zoom */
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question span:first-child {
    transition: all 0.3s ease;
    display: inline-block;
}

.faq-question:hover span:first-child {
    color: var(--brand-secondary);
    transform: translateX(5px);
    font-weight: 700;
}

/* Color shift when accordion is open */
.faq-question[aria-expanded="true"] span:first-child {
    color: #00A372;
    font-weight: 700;
}

.faq-question:hover {
    background: rgba(0, 133, 63, 0.05);
    padding-left: 1.75rem;
}

.faq-question:active {
    background: rgba(0, 133, 63, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--brand-primary);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    color: var(--brand-secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.faq-answer.active p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1B363A 0%, #2D5A61 100%);
    color: var(--color-background);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 1rem;
    color: var(--color-text-primary);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-section.revealed .cta-title {
    opacity: 1;
    transform: translateY(0);
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    color: var(--color-text-secondary);
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.cta-section.revealed .cta-description {
    opacity: 0.95;
    transform: translateY(0);
}

/* Ensure CTA button matches hero button styling */
.cta-section .btn-primary,
.cta-section .waitlist-link {
    background: #00A372;
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(0, 163, 114, 0.3);
    border-radius: 12px;
}

.cta-section .btn-primary:hover,
.cta-section .waitlist-link:hover {
    transform: translateY(-3px);
    background: #00BF86;
    box-shadow: 0 0 25px rgba(0, 163, 114, 0.5);
}

.waitlist-form-inline .form-input {
    background: #24494E;
    backdrop-filter: blur(12px);
}

.waitlist-form-inline .btn-primary {
    background: var(--brand-secondary);
    color: var(--color-text-primary);
    box-shadow: 0 0 15px rgba(0, 163, 114, 0.3);
}

.waitlist-form-inline .btn-primary:hover {
    background: #00BF86;
    box-shadow: 0 0 25px rgba(0, 163, 114, 0.5);
}

/* Footer */
.footer {
    background: var(--brand-primary);
    color: var(--color-background);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

.footer .container {
    padding-bottom: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-secondary), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 0;
    padding-bottom: 4rem;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-brand-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0;
    height: auto;
    padding-top: 0;
    min-height: 24px;
    align-items: center;
}

.footer-brand .logo {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
    transition: all var(--transition-base);
    animation: footerLogoFadeIn 0.8s ease-out 0.2s both, footerLogoFloat 3s ease-in-out 1.2s infinite;
    transform-origin: center;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0;
}

@keyframes footerLogoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes footerLogoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-4px) scale(1.02);
    }
}

.footer-brand-header:hover .logo {
    transform: translateY(-6px) scale(1.1) rotate(5deg);
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
    animation: footerLogoShimmer 0.6s ease-in-out;
}

@keyframes footerLogoShimmer {
    0% {
        filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(255, 255, 255, 0.5)) brightness(1.3);
    }
    100% {
        filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
    }
}

.footer-brand-header:active .logo {
    transform: translateY(-2px) scale(0.95) rotate(-2deg);
}

.footer-brand .brand-name {
    color: var(--color-background);
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
    transition: all var(--transition-base);
    line-height: 1.2;
    margin-top: 0;
    padding-top: 0;
    display: flex;
    align-items: center;
}

.footer-brand-header:hover .brand-name {
    transform: translateX(4px);
    color: var(--brand-secondary);
    text-shadow: 0 2px 8px rgba(0, 133, 63, 0.3);
}

.footer-corridor-tagline {
    color: rgba(148, 163, 184, 1);
    font-size: 0.875rem;
    font-weight: var(--font-weight-regular);
    margin-top: 0.75rem;
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 320px;
    display: block;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInFromLeft 0.6s ease 0.3s forwards;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.5;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInFromLeft 0.6s ease 0.5s forwards;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 0;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInFromLeft 0.6s ease 0.7s forwards;
}

.footer-company-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInFromLeft 0.6s ease 0.9s forwards;
}

.company-names {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.company-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInFromLeft 0.6s ease forwards;
}

.company-name:nth-child(1) {
    animation-delay: 1.1s;
}

.company-name:nth-child(2) {
    animation-delay: 1.3s;
}

.footer-column h4,
.footer-contact h4 {
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.5rem;
    margin-top: 0;
    padding-top: 0;
    color: var(--color-background);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.2;
    display: flex;
    align-items: center;
    height: 48px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column li {
    margin-bottom: 0;
}

.footer-column a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    position: relative;
    padding-left: 0;
    opacity: 0;
    transform: translateX(-10px);
    animation: fadeInSlide 0.5s ease forwards;
}

.footer-column a:nth-child(1) { animation-delay: 0.1s; }
.footer-column a:nth-child(2) { animation-delay: 0.2s; }
.footer-column a:nth-child(3) { animation-delay: 0.3s; }
.footer-column a:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.footer-column a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--brand-secondary);
    transition: width var(--transition-base);
}

.footer-column a:hover {
    color: var(--color-background);
    padding-left: 12px;
    transform: translateX(4px);
}

.footer-column a:hover::before {
    width: 8px;
}

.footer-column a:active {
    transform: translateX(2px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.contact-icon {
    color: var(--brand-secondary);
    flex-shrink: 0;
    opacity: 0.9;
    transition: all var(--transition-base);
}

.contact-item:hover .contact-icon {
    opacity: 1;
    transform: scale(1.1);
    color: var(--brand-accent);
}

.contact-link {
    color: var(--brand-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-base);
    display: inline-block;
    letter-spacing: 0.01em;
}

.contact-link:hover {
    color: var(--brand-accent);
    transform: translateX(4px);
    text-shadow: 0 0 8px rgba(242, 201, 76, 0.3);
}

.social-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.75rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: flex-start;
    width: auto;
}

.social-link {
    display: inline-flex !important;
    flex-shrink: 0;
    flex-grow: 0;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    width: auto;
    max-width: none;
    min-width: 44px; /* Touch target minimum */
    min-height: 44px; /* Touch target minimum */
    justify-content: center;
    touch-action: manipulation;
}

.social-link svg {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.social-link:hover {
    color: var(--brand-secondary);
    background: rgba(0, 163, 114, 0.15);
    border-color: rgba(0, 163, 114, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 163, 114, 0.2);
}

.social-link:hover svg {
    transform: scale(1.15) rotate(5deg);
    color: var(--brand-secondary);
}

.social-link:active {
    transform: translateY(-1px) scale(1.02);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #1B363A;
    margin-top: 0;
    margin-bottom: 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.company-entities {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}

.entity-divider {
    margin: 0 10px;
    color: var(--brand-secondary);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 163, 114, 0.6);
}

.footer-brand-statement {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.8;
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

.footer-bottom .copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.6;
    max-width: 100%;
    text-align: center;
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-base);
    padding: 0.5rem;
    min-height: 44px; /* Touch target minimum */
    display: inline-flex;
    align-items: center;
    touch-action: manipulation;
}

.footer-bottom-links a:hover {
    color: var(--brand-secondary);
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #24494E;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--brand-primary);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.modal-message {
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Ripple Effect for Interactive Elements */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
    z-index: 1;
}

.btn-primary .ripple,
.social-link .ripple {
    background: rgba(255, 255, 255, 0.4);
}

.footer-column a .ripple {
    background: rgba(0, 133, 63, 0.3);
}

/* Custom Tooltip */
.custom-tooltip {
    position: fixed;
    background: var(--brand-primary);
    color: var(--color-background);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    pointer-events: none;
    opacity: 0;
    transform: translateY(5px);
    transition: all var(--transition-base);
    z-index: 10000;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
}

.custom-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.custom-tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--brand-primary);
}

/* Input Feedback */
.input-feedback {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    font-size: 0.75rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    pointer-events: none;
}

.input-feedback.success {
    color: var(--brand-secondary);
}

.input-feedback.error {
    color: #EF4444;
}

.form-group {
    position: relative;
}

.form-input.valid {
    border-color: var(--brand-secondary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%2300853F' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-input.invalid {
    border-color: #EF4444;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23EF4444' d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath fill='%23EF4444' d='M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

/* Section Reveal Animation */
section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Interactive Hover States */
.feature-card,
.trust-badge {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Magnetic Button Effect */
.btn-primary {
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: visible;
}

.btn-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover .btn-glow {
    opacity: 1;
}

/* Interactive Feature Cards */
.feature-card {
    cursor: pointer;
}

.feature-card:active {
    transform: scale(0.98);
}

/* Interactive Step Numbers */
.step-number {
    cursor: pointer;
}

.step-number:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 20px rgba(0, 163, 114, 0.7);
}

/* Interactive FAQ Items */
.faq-item {
    cursor: pointer;
}

.faq-item:active {
    transform: scale(0.99);
}

/* Interactive Social Links */
.social-link {
    cursor: pointer;
}

/* Pulse animation for proof numbers */
@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.proof-item:hover .proof-number {
    animation: numberPulse 0.6s ease;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Loading state for buttons */
.btn-primary.loading {
    pointer-events: none;
    position: relative;
    color: transparent;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-badge {
        align-self: center;
    }
    
    .form-note {
        align-self: center;
        justify-content: center;
    }
    
    .waitlist-form {
        align-items: center;
    }
    
    .hero-visual {
        display: none; /* Hide cards on mobile to keep focus on the button */
    }
    
    .hero-floating-cards {
        display: none;
    }
    
    .live-rate-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(27, 54, 58, 0.98) !important; /* Dark teal background - more opaque */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px); /* Safari support */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 163, 114, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        display: flex !important; /* Ensure it's displayed */
    }
    
    .nav-links[aria-hidden="true"] {
        transform: translateX(-100%);
        visibility: hidden;
    }
    
    .nav-links[aria-hidden="false"],
    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links.active {
        transform: translateX(0) !important;
        visibility: visible !important;
    }

    .nav-links .nav-link {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        color: rgba(255, 255, 255, 0.9) !important; /* Ensure text is visible */
        transition: all 0.3s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
        touch-action: manipulation;
        font-size: 1rem;
        font-weight: 500;
    }
    
    .nav-links .nav-link:hover {
        color: var(--brand-secondary);
        padding-left: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .form-group {
        flex-direction: column;
    }

    .form-input,
    .btn-primary {
        width: 100%;
        min-height: 44px; /* Touch target minimum */
    }
    
    .form-input {
        font-size: 16px; /* Prevent iOS zoom on focus */
    }

    .social-proof {
        flex-direction: column;
        gap: 1.5rem;
    }

    .proof-divider {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-connector {
        display: block;
        width: 2px;
        height: 40px;
        border-top: none;
        border-left: 2px dashed rgba(0, 163, 114, 0.3);
        margin: 1rem auto;
        top: 0;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-column,
    .footer-contact {
        margin-bottom: 2rem;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .company-entities {
        font-size: 0.7rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .entity-divider {
        display: none;
    }
    
    .footer-brand-statement {
        font-size: 0.85rem;
    }
    
    .footer-bottom .copyright {
        font-size: 0.8rem;
    }

    .company-names {
        margin-top: 0.75rem;
    }

    .company-name {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .countries-section {
        padding: 60px 0;
    }

    .countries-connection {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .connection-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .country-card {
        padding: 2.5rem 1.5rem;
        min-width: auto;
        width: 100%;
        max-width: 280px;
        min-height: 280px;
        aspect-ratio: 1 / 1;
        margin: 0 auto;
    }
    
    .corridor-selector {
        padding: 8px 16px;
        gap: 0.75rem;
        flex-direction: column;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .country-flag {
        margin-bottom: 1.5rem;
    }
    
    .flag-img {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }
    
    .country-card h3 {
        font-size: 1.25rem;
        margin: 0.5rem 0;
    }
    
    .country-card p {
        font-size: 0.75rem;
        color: var(--brand-secondary);
    }

    .corridor-label {
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
    }

    .corridor-select {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        min-height: 44px; /* Touch target minimum */
        font-size: 16px; /* Prevent iOS zoom on focus */
        touch-action: manipulation;
    }
    
    .supported-networks {
        margin-top: 1.5rem;
    }
    
    .networks-label {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }

    .value-props-grid,
    .payout-grid,
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-prop-card,
    .payout-card,
    .payment-card {
        padding: 2rem 1.5rem;
    }

    .networks-list {
        flex-direction: column;
        align-items: center;
    }

    .network-badge {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* Extra small mobile devices (320px - 375px) */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }
    
    .section-title {
        font-size: 1.35rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .country-card {
        max-width: 240px;
        padding: 1.5rem 1rem;
    }
    
    .country-flag {
        width: 40px;
        height: 40px;
    }
    
    .btn-primary {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Hide floating cards and abstract path on mobile */
    .hero-floating-cards {
        display: none;
    }
    
    .hero-abstract-path {
        display: none;
    }
    
    .live-rate-card {
        display: none;
    }
    
    .countries-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .country-card {
        padding: 1.75rem 1.25rem;
        max-width: 260px;
    }
    
    .country-flag {
        width: 45px;
        height: 45px;
    }
    
    .country-card h3 {
        font-size: 1.1rem;
    }
    
    .country-card p {
        font-size: 0.65rem;
    }
    
    .corridor-selector {
        padding: 6px 12px;
        margin-bottom: 1.5rem;
    }
    
    .corridor-label {
        font-size: 0.85rem;
    }
    
    .corridor-select {
        font-size: 16px; /* Prevent iOS zoom on focus */
        padding: 0.75rem 1.25rem;
        min-height: 44px; /* Touch target minimum */
    }
    
    .network-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        max-width: 220px;
        min-height: 36px; /* Touch-friendly */
    }

    .feature-card {
        padding: 1.75rem 1.5rem;
    }

    .modal-content {
        padding: 1.5rem;
    }
}
