/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ===== ACCESSIBILITY - SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #4f46e5;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* ===== ACCESSIBILITY - SCREEN READER ONLY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== ACCESSIBILITY - BETTER LINK STYLES ===== */
a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

a:hover {
    text-decoration-thickness: 2px;
}

/* Remove underline from buttons and navigation */
.btn, 
.nav-link, 
.dropdown-link,
.footer-link,
.logo-link {
    text-decoration: none;
}

/* Ensure focus is visible */
a:focus,
button:focus {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
}

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Colors */
    --primary-color: #4f46e5;
    --primary-dark: #3730a3;
    --primary-light: #6366f1;
    --secondary-color: #06b6d4;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    
    /* Grays */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 6rem 0;
    --card-padding: 2rem;
    
    /* Border Radius */
    --border-radius-sm: 0.375rem;
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-base: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Z-indexes */
    --z-preloader: 9999;
    --z-navbar: 1000;
    --z-dropdown: 1001;
    --z-notification: 9998;
}

/* ===== PRELOADER REMOVED FOR PERFORMANCE ===== */

@keyframes fadeOutPreloader {
    0% {
        opacity: 1;
        visibility: visible;
    }
    80% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
}

.preloader-content {
    text-align: center;
    color: white;
}

.logo-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo-loader .logo-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-right: 1rem;
    animation: pulse 2s infinite;
}

.logo-loader .logo-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: white;
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
}

.skip-loader {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.7;
    cursor: pointer;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: var(--z-navbar);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 700;
    font-size: 1.25rem;
    transition: transform var(--transition-fast);
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 800;
    margin-right: 0.75rem;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-900); /* Changed from gray-700 to gray-900 for better contrast */
    font-weight: 500;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

/* Dropdown */
.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: var(--z-dropdown);
    list-style: none;
    margin: 0;
}

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

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--gray-900); /* Changed from gray-700 to gray-900 for better contrast */
    text-decoration: none;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.dropdown-link:hover {
    background: var(--gray-50);
    color: var(--primary-color);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding-top: 80px;
}

/* Advanced KPI Banner */
.advanced-kpi-banner {
    margin: 2rem 0 3rem 0;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .kpi-grid {
        grid-template-columns: 1fr;
    }
}

.kpi-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    border-radius: 1.2rem;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.kpi-card.premium {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.kpi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

.kpi-content {
    color: white;
}

.kpi-value {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
    line-height: 1.1;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.kpi-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    color: white;
    line-height: 1.3;
}

.hero-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(103, 232, 249, 0.8) 0%, rgba(103, 232, 249, 0.2) 100%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 101, 101, 0.6) 0%, rgba(245, 101, 101, 0.1) 100%);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(196, 181, 253, 0.8) 0%, rgba(196, 181, 253, 0.2) 100%);
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}

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

.hero-text {
    color: white;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: white;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Dashboard Preview */
/* Premium Dashboard */
.premium-dashboard {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    padding: 2.5rem;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.premium-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: white;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.brand-subtitle {
    font-size: 0.875rem;
    opacity: 0.7;
}

.dashboard-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.control-button {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.control-button.active {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.status-pulse {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10b981;
    animation: statusPulse 2s infinite;
}

.dashboard-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dashboard-widget {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.dashboard-widget.large {
    grid-column: span 2;
}

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

.widget-header h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.widget-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.8;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

.transaction-flow {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.flow-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    animation: flowAnimation 4s ease-in-out infinite;
}

.flow-amount {
    font-weight: 700;
    font-size: 0.95rem;
}

.flow-route {
    font-size: 0.875rem;
    opacity: 0.8;
}

.flow-status {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.flow-status.success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.flow-status.processing {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mini-metric {
    text-align: center;
}

.mini-metric .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.mini-metric .metric-label {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.metric-change {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
}

.metric-change.positive {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.global-map {
    position: relative;
    height: 80px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    border-radius: 0.5rem;
    overflow: hidden;
}

.map-point {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
    animation: mapPulse 3s ease-in-out infinite;
}

.connection-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, #10b981, rgba(16, 185, 129, 0.3), #10b981);
    animation: connectionFlow 4s linear infinite;
}

.dashboard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    opacity: 0.8;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-stat {
    display: flex;
    gap: 0.5rem;
}

.stat-value {
    font-weight: 600;
}

.stat-value.security-high {
    color: #10b981;
    font-weight: 700;
}

/* Animations */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

@keyframes flowAnimation {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

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

@keyframes connectionFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.3), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Ensure 6 items display in 2 rows of 3 */
.features-grid .feature-card:nth-child(n+7) {
    display: none;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.feature-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== STATISTICS SECTION ===== */
.stats {
    padding: 4rem 0;
    background: var(--gray-900);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-light);
    display: block;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-300);
    font-weight: 500;
}

/* ===== SOLUTIONS SECTION ===== */
.solutions {
    padding: var(--section-padding);
    background: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.solution-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.1), transparent);
    transition: left 0.6s ease;
}

.solution-card:hover::before {
    left: 100%;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.solution-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
}

.solution-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    margin-bottom: 2rem;
}

.solution-features li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 1.5rem;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.solution-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive pricing grid */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        order: -1; /* Show featured plan first on mobile */
    }
}

.pricing-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-xl);
    padding: var(--card-padding);
    position: relative;
    transition: all var(--transition-base);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-600);
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
}

.price-period {
    font-size: 1rem;
    color: var(--gray-500);
}

.price-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-description {
    color: var(--gray-600);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-600);
}

.pricing-features .fas {
    color: var(--success-color);
    font-size: 0.875rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background: white;
}

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

.about-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-color);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: var(--gray-600);
    line-height: 1.5;
}

.about-visual {
    display: grid;
    gap: 1.5rem;
}

.visual-card {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    color: white;
    text-align: center;
    transition: transform var(--transition-base);
}

.visual-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.visual-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 1rem;
}

.visual-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.visual-card p {
    opacity: 0.9;
    line-height: 1.5;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

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

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

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

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: var(--error-color);
}

.form-error {
    color: var(--error-color);
    font-size: 0.875rem;
    min-height: 1.25rem;
}

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

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

.info-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 1rem;
}

.info-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--gray-600);
    line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    background: var(--gradient-primary);
    margin-right: 0.75rem;
}

.footer-description {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-base);
}

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

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

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* ===== NOTIFICATION ===== */
.notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border-left: 4px solid var(--success-color);
    padding: 1rem 1.5rem;
    transform: translateX(400px);
    transition: transform var(--transition-base);
    z-index: var(--z-notification);
    min-width: 300px;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    border-left-color: var(--error-color);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-icon {
    font-size: 1.25rem;
    color: var(--success-color);
}

.notification.error .notification-icon {
    color: var(--error-color);
}

.notification-message {
    color: var(--gray-700);
    font-weight: 500;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow-lg);
        padding: 2rem 1.5rem;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .payment-flow-diagram {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .features-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* ===== SOLUTION PAGES DENSE LAYOUTS ===== */

/* Solution Hero Section */
.solution-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.solution-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content-main {
    padding-right: 2rem;
}

.breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.solution-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.solution-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-metrics-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.metric-item {
    text-align: center;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    display: block;
}

.metric-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.hero-actions-compact {
    display: flex;
    gap: 1rem;
}

.hero-visual-compact {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.processing-dashboard-mini {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    color: var(--text-primary);
}

.dashboard-header-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.status-indicator.live {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.transaction-stream {
    space: 0.5rem;
    margin-bottom: 1rem;
}

.tx-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.875rem;
}

.tx-item:last-child {
    border-bottom: none;
}

.tx-amount {
    font-weight: 600;
}

.success-rate-bar {
    background: #f3f4f6;
    height: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.rate-fill {
    background: linear-gradient(90deg, #10b981, #059669);
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.rate-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

/* Dense Features Section */
.solution-features-dense {
    padding: 0;
    background: #f8fafc;
}

.features-dense-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    min-height: 600px;
}

.features-header-section {
    background: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title-compact {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle-compact {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-highlights-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.highlight-tag {
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

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

.feature-card-dense {
    background: white;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-card-dense:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.feature-card-dense.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.feature-icon-dense {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card-dense.primary .feature-icon-dense {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-title-dense {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-desc-dense {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.feature-benefits-compact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-benefits-compact li {
    font-size: 0.875rem;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.25rem;
}

.feature-benefits-compact li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

.feature-card-dense.primary .feature-benefits-compact li::before {
    color: white;
}

/* Processing Flow Section */
.processing-flow-section {
    padding: 4rem 0;
    background: white;
}

.flow-content-grid {
    display: grid;
    gap: 3rem;
}

.flow-diagram-compact {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.flow-step-compact {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 2px solid #e5e7eb;
}

.flow-step-compact:nth-child(odd) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
}

.flow-step-compact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.flow-step-compact p {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.step-details span {
    font-size: 0.75rem;
    opacity: 0.7;
}

.flow-arrow-compact {
    font-size: 2rem;
    color: #667eea;
    font-weight: 600;
    text-align: center;
}

.retry-flow {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.retry-flow h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.retry-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.retry-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    text-align: center;
    min-width: 120px;
}

.retry-icon {
    font-size: 1.5rem;
}

.retry-arrow {
    font-size: 1.5rem;
    color: #667eea;
}

/* Benefits & Performance Section */
.benefits-performance-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
}

.benefits-perf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.benefit-items-compact {
    display: grid;
    gap: 1.5rem;
}

.benefit-card-compact {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-icon-compact {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-content-compact h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-content-compact p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.benefit-metric {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
}

.performance-dashboard-compact {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.perf-header {
    margin-bottom: 2rem;
}

.perf-status.live {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #059669;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.perf-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.perf-metric-card {
    text-align: center;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
}

.metric-value-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.metric-label-small {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.metric-trend {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.metric-trend.positive {
    color: #059669;
}

.volume-chart-compact h4 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 0.5rem;
    height: 80px;
    margin-bottom: 0.5rem;
}

.bar {
    width: 20px;
    background: linear-gradient(to top, #667eea, #764ba2);
    border-radius: 2px 2px 0 0;
    position: relative;
    transition: height 0.3s ease;
}

.bar span {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Integration Technical Section */
.integration-technical-section {
    padding: 4rem 0;
    background: white;
}

.integration-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.code-example-compact {
    background: #1a1a1a;
    border-radius: 1rem;
    overflow: hidden;
    margin-top: 2rem;
}

.code-tabs {
    display: flex;
    background: #2d2d2d;
    padding: 0;
}

.tab {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 0.875rem;
}

.tab.active {
    background: #1a1a1a;
    color: white;
}

.code-content {
    padding: 1.5rem;
}

.code-content pre {
    margin: 0;
    overflow-x: auto;
}

.code-content code {
    color: #e5e7eb;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    font-size: 0.875rem;
    line-height: 1.5;
}

.code-response {
    border-top: 1px solid #2d2d2d;
    padding: 1.5rem;
}

.code-response h5 {
    color: #888;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.integration-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.integration-card {
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.integration-card:hover {
    border-color: var(--primary);
    background: #f8fafc;
}

.integration-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.integration-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.integration-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.integration-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
}

.tools-list-compact {
    display: grid;
    gap: 1rem;
}

.tool-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.75rem;
}

.tool-item i {
    font-size: 1.25rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
}

.tool-content h5 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.tool-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Security & Compliance Section */
.security-compliance-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: white;
}

.security-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

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

.security-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.security-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.security-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.security-card p {
    font-size: 0.9375rem;
    opacity: 0.9;
}

.compliance-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.compliance-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
}

.compliance-flag {
    font-size: 1.5rem;
}

.compliance-content h5 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.compliance-content p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

.fraud-protection-stats {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.fraud-protection-stats h4 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.fraud-stat {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.fraud-stat:last-child {
    border-bottom: none;
}

.stat-value {
    font-weight: 700;
    color: #fbbf24;
}

.stat-label {
    opacity: 0.8;
}

/* Customer Success Section */
.customer-success-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.success-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.875rem;
    opacity: 0.8;
}

.company-logo {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.testimonial-metrics {
    display: grid;
    gap: 1rem;
}

.testimonial-metrics .metric {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
}

.testimonial-metrics .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.testimonial-metrics .metric-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.customer-logos-section h4 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

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

.customer-logo {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.customer-logo:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-placeholder {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Pricing & Next Steps Section */
.pricing-next-steps-section {
    padding: 4rem 0;
    background: white;
}

.pricing-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.pricing-cards-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.pricing-card-mini {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.pricing-card-mini.enterprise {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.pricing-card-mini h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price-mini {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.pricing-card-mini.enterprise .price-mini {
    color: white;
}

.pricing-card-mini p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.features-mini {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.features-mini li {
    font-size: 0.875rem;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.25rem;
}

.features-mini li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

.pricing-card-mini.enterprise .features-mini li::before {
    color: white;
}

.pricing-note {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 1.5rem;
}

.steps-list {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.cta-actions-compact {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.support-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: #f8fafc;
    padding: 1rem;
    border-radius: 0.75rem;
}

.support-note i {
    color: var(--primary);
}

/* IBAN Specific Styles */
.iban-dashboard-mini {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    color: var(--text-primary);
}

.iban-details {
    margin-bottom: 1rem;
}

.iban-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.875rem;
}

.iban-item:last-child {
    border-bottom: none;
}

.iban-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.iban-value {
    font-family: 'SF Mono', monospace;
    font-weight: 600;
}

.iban-status.active {
    color: #059669;
    font-weight: 600;
}

.balance-overview {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.balance-item {
    flex: 1;
    text-align: center;
}

.currency {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.amount {
    font-weight: 700;
    color: var(--primary);
}

.sepa-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sepa-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    text-align: center;
    min-width: 120px;
}

.sepa-icon {
    font-size: 1.5rem;
}

.sepa-arrow {
    font-size: 1.5rem;
    color: #667eea;
}

.regulatory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.regulatory-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.regulatory-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.regulatory-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.regulatory-card p {
    font-size: 0.9375rem;
    opacity: 0.9;
}

.eu-countries-grid {
    display: grid;
    gap: 2rem;
}

.country-group h5 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.country-list {
    display: grid;
    gap: 0.5rem;
}

.country {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
}

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

.coverage-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.coverage-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    color: #fbbf24;
}

.coverage-stat .stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.currency-distribution {
    margin-top: 2rem;
}

.currency-distribution h4 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.currency-bars {
    display: grid;
    gap: 0.5rem;
}

.currency-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.currency-label {
    font-size: 0.875rem;
    font-weight: 600;
    min-width: 40px;
}

.bar-fill {
    background: linear-gradient(90deg, #667eea, #764ba2);
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.iban-pricing-table {
    background: #f8fafc;
    border-radius: 1rem;
    overflow: hidden;
    margin: 2rem 0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-item {
    font-weight: 500;
}

.pricing-value {
    font-weight: 700;
    color: var(--primary);
}

.compliance-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.compliance-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.compliance-card i {
    font-size: 1.25rem;
    width: 30px;
    text-align: center;
}

.compliance-card h5 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.compliance-card p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

/* Embedded Finance Specific Styles */
.embedded-platform-demo {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    color: var(--text-primary);
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
}

.financial-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.service-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.service-widget i {
    font-size: 1.25rem;
    color: var(--primary);
}

.service-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
}

.service-status.active {
    background: #dcfce7;
    color: #059669;
}

.service-status.pending {
    background: #fef3c7;
    color: #d97706;
}

.revenue-preview {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.revenue-preview h5 {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.revenue-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.revenue-growth {
    font-size: 0.75rem;
    color: #059669;
}

.revenue-streams {
    margin-top: 2rem;
}

.revenue-streams h4 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.revenue-bars {
    display: grid;
    gap: 0.5rem;
}

.revenue-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.revenue-label {
    font-size: 0.875rem;
    font-weight: 600;
    min-width: 80px;
}

.revenue-model-table {
    background: #f8fafc;
    border-radius: 1rem;
    overflow: hidden;
    margin: 2rem 0;
}

.revenue-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.revenue-row:last-child {
    border-bottom: none;
}

.revenue-service {
    font-weight: 500;
}

.revenue-share {
    font-weight: 700;
    color: var(--primary);
    font-family: monospace;
}

.revenue-note {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 1.5rem;
}

/* Crypto Specific Styles */
.crypto-conversion-demo {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    color: var(--text-primary);
}

.conversion-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
}

.conversion-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.crypto-input, .fiat-output {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    width: 100%;
}

.crypto-symbol, .fiat-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.crypto-details, .fiat-details {
    flex: 1;
}

.crypto-amount, .fiat-amount {
    font-weight: 700;
    font-size: 1.125rem;
}

.crypto-value, .fiat-fee {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.conversion-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
}

.conversion-arrow i {
    font-size: 1.25rem;
}

.conversion-arrow span {
    font-size: 0.75rem;
    font-weight: 600;
}

.supported-cryptos {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.crypto-badge {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.crypto-flows-grid {
    display: grid;
    gap: 3rem;
    margin-top: 2rem;
}

.crypto-flow-section h3 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
}

.crypto-flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.crypto-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    min-width: 150px;
}

.step-icon.crypto {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.crypto-step h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.crypto-step p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.crypto-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.crypto-categories {
    display: grid;
    gap: 2rem;
}

.crypto-category h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.crypto-list {
    display: grid;
    gap: 1rem;
}

.crypto-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.crypto-item .crypto-symbol {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.crypto-info {
    flex: 1;
}

.crypto-info h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.crypto-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.crypto-price {
    font-weight: 700;
    color: var(--primary);
}

.defi-note {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.crypto-volume-chart {
    margin-top: 2rem;
}

.crypto-volume-chart h4 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.volume-distribution {
    display: grid;
    gap: 0.5rem;
}

.volume-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.volume-label {
    font-size: 0.875rem;
    font-weight: 600;
    min-width: 50px;
}

.bar-fill.btc {
    background: linear-gradient(90deg, #f7931a, #ff9500);
}

.bar-fill.eth {
    background: linear-gradient(90deg, #627eea, #4c6ef5);
}

.bar-fill.usdc {
    background: linear-gradient(90deg, #2775ca, #1c7ed6);
}

.bar-fill.others {
    background: linear-gradient(90deg, #6c757d, #495057);
}

.crypto-pricing-table {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-tier {
    background: #f8fafc;
    border-radius: 1rem;
    overflow: hidden;
}

.pricing-tier h4 {
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    margin: 0;
    font-weight: 600;
}

.compliance-highlights {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.compliance-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.75rem;
}

.compliance-highlight i {
    font-size: 1.25rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
}

.compliance-content h5 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.compliance-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Design for Solution Pages */
@media (max-width: 1024px) {
    .solution-hero-grid,
    .features-dense-grid,
    .benefits-perf-grid,
    .integration-content-grid,
    .security-content-grid,
    .success-content-grid,
    .pricing-cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-hero-title {
        font-size: 2.5rem;
    }
    
    .hero-metrics-compact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flow-diagram-compact {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .flow-arrow-compact {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .solution-hero {
        padding: 80px 0 40px;
    }
    
    .solution-hero-title {
        font-size: 2rem;
    }
    
    .hero-metrics-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-actions-compact {
        flex-direction: column;
    }
    
    .features-grid-dense {
        grid-template-columns: 1fr;
    }
    
    .security-features-grid,
    .perf-metrics-grid,
    .integration-grid-compact,
    .pricing-cards-compact {
        grid-template-columns: 1fr;
    }
    
    .customer-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Additional responsive grids to prevent single boxes */
    .mission-grid,
    .stats-grid-large,
    .pricing-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .mission-grid,
    .stats-grid-large,
    .pricing-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== AI CHATBOT WIDGET ===== */
.chatbot-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    font-family: 'Inter', sans-serif;
    visibility: visible !important;
    display: block !important;
}

.chatbot-trigger {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10001;
}

.chatbot-trigger:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.chatbot-trigger.active {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.chatbot-trigger.active .fa-robot {
    transform: rotate(180deg);
}

.chatbot-icon {
    color: white;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.chatbot-pulse {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: chatbotPulse 2s infinite;
}

.chatbot-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 500px;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.chatbot-container.active {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.chatbot-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.chatbot-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.chatbot-info p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #f9fafb;
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
}

.chatbot-message {
    display: flex;
    gap: 0.75rem;
    animation: messageSlideIn 0.3s ease;
}

.chatbot-message.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.bot-message .message-avatar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.user-message .message-avatar {
    background: var(--gray-300);
    color: var(--gray-700);
}

.message-content {
    max-width: 70%;
}

.message-text {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    line-height: 1.4;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.user-message .message-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.message-time {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
    text-align: center;
}

.chatbot-input-area {
    border-top: 1px solid var(--gray-200);
    background: white;
}

.chatbot-options {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
}

.chatbot-option-btn {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.chatbot-option-btn:hover {
    border-color: var(--primary-color);
    background: var(--gray-50);
    transform: translateY(-1px);
}

.option-label {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.option-description {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.chatbot-input-wrapper {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 0.75rem;
}

.chatbot-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 1.5rem;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.chatbot-input:focus {
    border-color: var(--primary-color);
}

.chatbot-input:disabled {
    background: var(--gray-100);
    cursor: not-allowed;
}

.chatbot-send {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-send:hover:not(:disabled) {
    transform: translateY(-1px) scale(1.05);
}

.chatbot-send:disabled {
    background: var(--gray-300);
    cursor: not-allowed;
}

.chatbot-restart-btn {
    background: var(--gray-100);
    border: 2px solid var(--gray-300);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.chatbot-restart-btn:hover {
    background: var(--gray-200);
    border-color: var(--gray-400);
}

/* Animations */
@keyframes chatbotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Chatbot */
@media (max-width: 480px) {
    .chatbot-widget {
        bottom: 1rem;
        right: 1rem;
    }
    
    .chatbot-container {
        width: calc(100vw - 2rem);
        height: calc(100vh - 140px);
        right: -1rem;
        bottom: 70px;
    }
    
    .chatbot-trigger {
        width: 50px;
        height: 50px;
    }
    
    .chatbot-icon {
        font-size: 20px;
    }
}

/* ===== SOLUTION PAGES HERO ===== */
.solution-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding-top: 80px;
}

/* Adjust existing hero for solution pages */
body.solution-page .hero {
    min-height: 70vh;
    padding-top: 80px;
}

body.solution-page .hero-content {
    margin-top: 0;
}

/* ===== PAGE HERO STYLES ===== */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding-top: 80px;
}

.page-hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT PAGE STYLES ===== */
.company-story {
    padding: var(--section-padding);
    background: white;
}

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

.story-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-color);
    transition: all var(--transition-base);
}

.timeline-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    min-width: 60px;
}

.timeline-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.mission-vision {
    padding: var(--section-padding);
    background: var(--gray-50);
}

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

.mission-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 2rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

.team-section {
    padding: var(--section-padding);
    background: white;
}

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

.team-member {
    text-align: center;
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--border-radius-xl);
    transition: all var(--transition-base);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-avatar {
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto;
}

.member-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.stats-showcase {
    padding: var(--section-padding);
    background: var(--gray-900);
    color: white;
}

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

.stat-card-large {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.stat-card-large:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card-large .stat-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.stat-card-large .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-card-large .stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-card-large .stat-description {
    font-size: 0.875rem;
    opacity: 0.8;
    color: var(--gray-300);
}

.culture-section {
    padding: var(--section-padding);
    background: white;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.culture-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.culture-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-base);
}

.value-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.value-content p {
    color: var(--gray-600);
    line-height: 1.5;
}

.culture-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.office-card {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: var(--border-radius-xl);
    color: white;
    transition: all var(--transition-base);
}

.office-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.office-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-info p {
    opacity: 0.9;
    line-height: 1.5;
}

/* ===== PRICING PAGE STYLES ===== */
.pricing-controls {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 20%, #f8fafc 100%);
    text-align: center;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.toggle-label {
    font-weight: 500;
    color: var(--gray-700);
}

.toggle-switch {
    position: relative;
}

.toggle-input {
    display: none;
}

.toggle-slider {
    width: 60px;
    height: 30px;
    background: var(--gray-300);
    border-radius: 15px;
    cursor: pointer;
    transition: background var(--transition-base);
    display: block;
    position: relative;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform var(--transition-base);
}

.toggle-input:checked + .toggle-slider {
    background: var(--primary-color);
}

.toggle-input:checked + .toggle-slider::before {
    transform: translateX(30px);
}

.savings-badge {
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-main {
    padding: var(--section-padding);
    background: white;
}

.pricing-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Modern Pricing Grid - ALL 3 TILES IN ONE ROW */
.pricing-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

/* Remove the last-child special positioning - all cards equal width */
.pricing-grid-modern .pricing-card-modern:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
}

/* Responsive breakpoints for pricing grid */
@media (max-width: 1024px) {
    .pricing-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .pricing-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .pricing-card-modern.featured {
        transform: none;
        order: -1; /* Show featured plan first on mobile */
    }
}

.pricing-card-modern {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pricing-card-modern.featured {
    border-color: #6366f1;
    transform: scale(1.02);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.pricing-card-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.15);
}

.pricing-card-modern.featured:hover {
    transform: scale(1.02) translateY(-2px);
}

.pricing-badge-modern {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #6366f1;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header-modern {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title-modern {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.pricing-price-modern {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.price-currency-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

.price-amount-large {
    font-size: 4rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
    margin: 0 0.25rem;
}

.price-period-large {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.price-text-large {
    font-size: 3rem;
    font-weight: 700;
    color: #6366f1;
}

.pricing-description-modern {
    color: #6b7280;
    text-align: center;
    font-size: 1rem;
}

.pricing-features-modern {
    margin: 2rem 0;
}

.feature-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-modern li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #4b5563;
    font-size: 0.95rem;
}

.feature-list-modern .fas {
    color: #10b981;
    font-size: 0.875rem;
    width: 16px;
    flex-shrink: 0;
}

.pricing-footer-modern {
    text-align: center;
    margin-top: 2rem;
}

.btn-modern {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
}

.btn-primary-modern {
    background: #6366f1;
    color: white;
    border: 2px solid #6366f1;
}

.btn-primary-modern:hover {
    background: #4f46e5;
    border-color: #4f46e5;
    transform: translateY(-1px);
}

.btn-outline-modern {
    background: transparent;
    color: #6366f1;
    border: 2px solid #e5e7eb;
}

.btn-outline-modern:hover {
    background: #f3f4f6;
    border-color: #6366f1;
    color: #4f46e5;
    transform: translateY(-1px);
}

.pricing-card-enhanced {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card-enhanced.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-enhanced.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge-enhanced {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.pricing-header-enhanced {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.plan-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.plan-badge.starter {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.plan-badge.professional {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
}

.plan-badge.enterprise {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.pricing-title-enhanced {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.pricing-price-enhanced {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.pricing-description-enhanced {
    color: var(--gray-600);
    line-height: 1.5;
}

.pricing-features-enhanced {
    padding: 2rem;
}

.feature-group {
    margin-bottom: 2rem;
}

.feature-group:last-child {
    margin-bottom: 0;
}

.feature-group-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.feature-list .fas {
    color: var(--success-color);
    font-size: 0.75rem;
}

.pricing-footer-enhanced {
    padding: 2rem;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.pricing-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.add-ons-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

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

/* Responsive grid for add-ons */
@media (max-width: 1024px) {
    .add-ons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .add-ons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.add-on-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-xl);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.add-on-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.add-on-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
}

.add-on-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.add-on-description {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.add-on-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.add-on-features {
    list-style: none;
    text-align: left;
}

.add-on-features li {
    padding: 0.25rem 0;
    color: var(--gray-600);
    font-size: 0.875rem;
    position: relative;
    padding-left: 1rem;
}

.add-on-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.comparison-section {
    padding: var(--section-padding);
    background: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-900);
}

.feature-column {
    width: 40%;
    font-weight: 500;
}

.plan-column {
    width: 20%;
    text-align: center;
}

.featured-column {
    background: rgba(79, 70, 229, 0.05);
    position: relative;
}

.category-row td {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--gray-900);
}

.category-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.text-success {
    color: var(--success-color);
}

.text-muted {
    color: var(--gray-400);
}

.faq-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.faq-icon {
    color: var(--primary-color);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.cta-section {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive Design for New Pages */
@media (max-width: 1024px) {
    .story-grid,
    .culture-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pricing-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-enhanced.featured {
        transform: none;
    }
    
    .pricing-card-enhanced.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
        padding: 6rem 0 4rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .add-ons-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .stats-grid-large {
        grid-template-columns: 1fr;
    }
    
    .comparison-table-wrapper {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
}