/* Modern Professional LoanWorx Styles */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

:root {
    /* Core Colors - Dark Professional Theme */
    --primary-black: #000000;
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --tertiary-dark: #2a2a2a;
    --accent-blue: #0080ff;
    --accent-cyan: #00d4ff;
    --accent-green: #00ff88;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #808080;
    --text-dark: #000000;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f0f0f0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0080ff 0%, #00d4ff 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, hsla(200, 100%, 50%, 0.3) 0px, transparent 50%),
                      radial-gradient(at 80% 0%, hsla(189, 100%, 56%, 0.2) 0px, transparent 50%),
                      radial-gradient(at 0% 50%, hsla(355, 100%, 93%, 0.1) 0px, transparent 50%);
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.24);
    --shadow-glow: 0 0 40px rgba(0, 128, 255, 0.3);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Header Styles */
.header {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar {
    padding: 1.25rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo a {
    display: block;
    text-decoration: none;
}

.logo-image {
    height: 42px;
    width: auto;
    transition: var(--transition-base);
}

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

.logo-image.white {
    display: block;
}

.logo-image.dark {
    display: none;
}

.header.scrolled .logo-image.white {
    display: none;
}

.header.scrolled .logo-image.dark {
    display: block;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    margin: 4px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

.header.scrolled .mobile-toggle span {
    background: var(--primary-black);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.header.scrolled .nav-link {
    color: var(--text-dark);
}

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

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

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

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--accent-blue);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--bg-white);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
    list-style: none;
    margin-top: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--accent-blue);
    transform: translateX(4px);
}

.btn-signin {
    background: var(--primary-black);
    color: var(--text-primary) !important;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

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

.btn-signin:hover::after {
    width: 0;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: var(--primary-black);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.5;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 128, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, -20px) rotate(1deg); }
    66% { transform: translate(20px, -10px) rotate(-1deg); }
}

@keyframes slowFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -15px) rotate(2deg); }
    50% { transform: translate(-15px, 10px) rotate(-1deg); }
    75% { transform: translate(-10px, -20px) rotate(1deg); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    opacity: 0.9;
}

.hero-cta-section {
    margin: var(--spacing-xl) 0;
}

/* Old expandable section styles removed - now using modal */

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0, 128, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 128, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

/* Hero Form */
.hero-form {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-form-hero {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

#hero-contact-form input:focus,
#hero-contact-form textarea:focus {
    color: #FAFAFA !important;
}

.contact-form-hero label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.required {
    color: var(--accent-cyan);
}

.contact-form-hero .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-hero input,
.contact-form-hero textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-base);
}

.contact-form-hero input:focus,
.contact-form-hero textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.1);
}

.contact-form-hero input::placeholder,
.contact-form-hero textarea::placeholder {
    color: var(--text-muted);
}

/* Form row layout for split fields */
.contact-form-hero .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form-hero .form-group.half {
    flex: 1;
    margin-bottom: 0;
}

/* Select dropdown styling */
.contact-form-hero select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-base);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.contact-form-hero select:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.1);
}

.contact-form-hero select option {
    background: var(--primary-dark);
    color: var(--text-primary);
    padding: 0.5rem;
}

/* Toggle switch for Funder/Broker */
.contact-form-hero .user-type-group {
    flex: 0 0 auto;
    min-width: 200px;
}

.toggle-switch {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 4px;
    width: 100%;
}

.toggle-switch input[type="radio"] {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.toggle-option {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    z-index: 2;
    margin-bottom: 0 !important;
}

.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: var(--gradient-primary);
    border-radius: calc(var(--radius-md) - 4px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.toggle-switch input[type="radio"]:nth-child(2):checked ~ .toggle-slider {
    transform: translateX(100%);
}

.toggle-switch input[type="radio"]:nth-child(2):checked + .toggle-option {
    color: var(--text-primary);
}

/* Responsive form row */
@media (max-width: 768px) {
    .contact-form-hero .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-form-hero .form-group.half {
        margin-bottom: 1.5rem;
    }
    
    .contact-form-hero .user-type-group {
        min-width: auto;
        margin-top: 1rem;
    }
}

.btn-dark-full {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 1.125rem;
    border-radius: var(--radius-md);
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 128, 255, 0.3);
}

.btn-dark-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 128, 255, 0.4);
}

/* PDF Section */
.pdf-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 50%, #fafbfc 100%);
    position: relative;
    overflow: hidden;
}

.pdf-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(0, 128, 255, 0.04) 0%, transparent 25%),
        radial-gradient(circle at 85% 75%, rgba(0, 212, 255, 0.03) 0%, transparent 25%);
    background-size: 250px 250px, 350px 350px;
    z-index: 0;
}

.pdf-section .container {
    position: relative;
    z-index: 1;
}

.pdf-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.pdf-stats {
    display: flex;
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
}

.pdf-stat {
    text-align: left;
}

.stat-big {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pdf-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.btn-dark {
    background: var(--primary-black);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    display: inline-block;
    box-shadow: var(--shadow-md);
}

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

.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary-black);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    display: inline-block;
}

.btn-outline-dark:hover {
    background: var(--primary-black);
    color: var(--text-primary);
    transform: translateY(-3px);
}

/* Captcha Styles */
.captcha-group {
    margin-bottom: var(--spacing-md);
}

.captcha-label {
    display: flex !important;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0 !important;
    width: fit-content;
    white-space: nowrap;
}

.captcha-checkbox {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    border: 2px solid #d1d5db !important;
    border-radius: 0 !important;
    background: white !important;
    cursor: pointer;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    position: relative;
    transition: var(--transition-fast);
    flex-shrink: 0;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
}

.captcha-checkbox:checked {
    background: var(--accent-blue) !important;
    border-color: var(--accent-blue) !important;
    border-radius: 0 !important;
}

.captcha-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 3px;
    height: 6px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.captcha-checkbox:hover {
    border-color: var(--accent-blue);
}

.captcha-text {
    user-select: none;
}

/* Remove validation border styles - using asterisk instead */

/* Phone Mockup */
.phone-mockup {
    width: 320px;
    height: 640px;
    background: linear-gradient(135deg, var(--primary-black), var(--secondary-dark));
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-slow);
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    border-radius: 28px;
    overflow: hidden;
}

.app-header {
    background: var(--bg-light);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.app-logo-image {
    height: 24px;
    width: auto;
}

.app-content {
    padding: 1.5rem;
}

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

.app-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.loan-offer {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--radius-lg);
}

.loan-offer h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.loan-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.loan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.loan-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.loan-value {
    font-weight: 600;
    color: var(--text-dark);
}

.loan-slider {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.loan-amount {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 80px;
    font-size: 0.9rem;
}

.slider-track {
    flex: 1;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    position: relative;
}

.slider-fill {
    height: 100%;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 0;
}

.slider-fill.green {
    background: var(--accent-green);
    width: 60%;
}

.slider-fill.red {
    background: #ff4444;
    width: 40%;
}

.slider-fill.yellow {
    background: #ffaa00;
    width: 70%;
}

.slider-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.slider-thumb.green {
    background: var(--accent-green);
    left: 60%;
}

.slider-thumb.red {
    background: #ff4444;
    left: 40%;
}

.slider-thumb.yellow {
    background: #ffaa00;
    left: 70%;
}

/* Features Section */
.features {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 50%, #fafbfc 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 35% 15%, rgba(0, 128, 255, 0.04) 0%, transparent 25%),
        radial-gradient(circle at 65% 85%, rgba(0, 212, 255, 0.03) 0%, transparent 25%);
    background-size: 180px 180px, 280px 280px;
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.features-list li {
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-muted);
    line-height: 1.7;
    transition: var(--transition-base);
}

.features-list li:hover {
    color: var(--text-dark);
    transform: translateX(5px);
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-list li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-primary);
    font-weight: bold;
    font-size: 0.75rem;
}

/* Tablet Mockup */
.tablet-mockup {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, var(--primary-black), var(--secondary-dark));
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: perspective(1000px) rotateY(5deg);
    transition: var(--transition-slow);
}

.tablet-mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.tablet-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}

.tablet-screen {
    width: 100%;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    min-height: 400px;
}

.dashboard-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.stat-box {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
    padding: 1rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.stat-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-table {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1rem;
    overflow: hidden;
}

.dashboard-table table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table th {
    text-align: left;
    padding: 0.75rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Section */
.services {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 50%, #fafbfc 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 128, 255, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(0, 212, 255, 0.03) 0%, transparent 25%);
    background-size: 200px 200px, 300px 300px;
    z-index: 0;
}


.services .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.service-item {
    padding: var(--spacing-xl);
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    position: relative;
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-blue);
}

.service-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    opacity: 0.3;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.service-description {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.75rem;
    line-height: 1.6;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

/* How It Works */
.how-it-works {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 50%, #fafbfc 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 128, 255, 0.04) 0%, transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.03) 0%, transparent 25%);
    background-size: 220px 220px, 320px 320px;
    z-index: 0;
}

.how-it-works .container {
    position: relative;
    z-index: 1;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto var(--spacing-md);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0, 128, 255, 0.3);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0 1rem;
    line-height: 1.6;
}

.process-connector {
    position: absolute;
    top: 35px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    z-index: 0;
    opacity: 0.3;
}

/* CTA Section */
.cta {
    padding: var(--spacing-3xl) 0;
    background: var(--primary-black);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.text-gradient-light {
    color: var(--text-secondary);
}

.cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    display: inline-block;
    box-shadow: var(--shadow-md);
}

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

/* Contact Section */
.contact {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 50%, #fafbfc 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 30%, rgba(0, 128, 255, 0.04) 0%, transparent 25%),
        radial-gradient(circle at 90% 70%, rgba(0, 212, 255, 0.03) 0%, transparent 25%);
    background-size: 200px 200px, 300px 300px;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-3xl);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.info-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: var(--spacing-md);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.1);
}

.contact-form .toggle-switch label{
    color: #000000;
}

.contact-form .toggle-switch input[type="radio"]:nth-child(2):checked + .toggle-option {
    color: #000000;
}

.contact-form-card .form-row {
    display: flex;
    gap: 1rem;
}

.contact-form .user-type-group{
    flex: 0 0 auto;
    min-width: 200px;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--text-primary);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

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

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: white;
    line-height: 1.7;
}

.footer-compliance {
    flex-shrink: 0;
}

.footer-soc-badge {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-soc-badge:hover {
    opacity: 1;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent-blue);
    transform: translateX(3px);
    display: inline-block;
}

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

/* Workflow Modal Button */
.workflow-modal-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border: 2px solid rgba(0, 128, 255, 0.15);
    border-radius: 16px;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    font-family: inherit;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.workflow-modal-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    border-color: rgba(0, 128, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 128, 255, 0.15);
    color: var(--text-dark);
}

.workflow-modal-btn .arrow-icon {
    color: var(--accent-blue);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.workflow-modal-btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: white;
    margin: auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    position: relative;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    padding-right: 3rem;
    line-height: 1.3;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: all 0.2s ease;
    font-family: inherit;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.05);
}

.modal-body {
    padding: 1.5rem 2rem 2rem;
}

.modal-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.modal-body p strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Modal footer removed - no longer needed */

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1rem 1.5rem;
    }
    
    /* Modal footer styles removed */
    
    .workflow-modal-btn {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-grid,
    .pdf-content,
    .features-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    /* Fix workflow steps spacing */
    .workflow-timeline {
        padding: 0 var(--spacing-md);
    }
    
    /* Fix integration partners spacing */
    .integration-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    /* Fix feature cards */
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    /* Ensure all cards have centered text and icons on mobile */
    .pdf-stat,
    .contact-info:not(.book-demo .contact-info),
    .dashboard-table th,
    .accordion-header {
        text-align: center !important;
    }
    
    /* Center any remaining left-aligned cards on mobile */
    .card:not(.process-card):not(.feature-tile):not(.integration-category):not(.benefit-item),
    .info-card,
    .stats-card {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Center icons and content within any card on mobile */
    .card .icon,
    .card .card-icon,
    .stats-card .icon,
    .info-card .icon {
        margin: 0 auto var(--spacing-sm) auto !important;
    }
    
    /* Center headings and text in cards */
    .card h3,
    .card h4,
    .card h5,
    .info-card h3,
    .info-card h4,
    .stats-card h3,
    .stats-card h4 {
        text-align: center !important;
    }
}

/* Intermediate tablet breakpoint for better nav spacing */
@media (max-width: 1200px) and (min-width: 1025px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100vw;
        height: calc(100vh - 80px);
        text-align: center;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-2xl) 0;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .header.scrolled .nav-menu {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: var(--spacing-lg) 0;
    }
    
    .nav-link {
        font-size: 1.125rem;
        padding: var(--spacing-md);
        display: block;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin: var(--spacing-lg) 0 var(--spacing-xl);
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-md);
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    /* Fix hero form width */
    .hero-form {
        width: 100%;
        margin-top: var(--spacing-xl);
    }
    
    .contact-form-hero,
    .contact-form {
        width: 100%;
    }
    
    /* Fix text areas */
    .form-group {
        margin-bottom: var(--spacing-lg);
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: var(--spacing-md);
        font-size: 1rem;
    }
    
    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    /* Fix process cards */
    .process-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .process-card {
        padding: var(--spacing-lg);
    }
    
    .card-number {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
        top: var(--spacing-md);
        right: var(--spacing-md);
    }
    
    .card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: var(--spacing-md);
    }
    
    .card-content h3 {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .card-content p {
        font-size: 0.9375rem;
        margin-bottom: var(--spacing-md);
    }
    
    .card-stat {
        padding-top: var(--spacing-sm);
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }
    
    /* Fix integration categories */
    .integration-categories {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .integration-category {
        padding: var(--spacing-lg);
        text-align: center;
    }
    
    /* Fix feature cards */
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .feature-tile {
        padding: var(--spacing-lg);
        text-align: center;
    }
    
    /* Fix partner items */
    .partners-row {
        padding: var(--spacing-md) 0;
    }
    
    .partner-item {
        min-width: 280px;
        padding: var(--spacing-md);
    }
    
    /* Fix case study cards */
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .case-study-card {
        padding: var(--spacing-lg);
    }
    
    /* Fix contact grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: var(--spacing-lg);
    }
    
    /* Fix footer navigation */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }
    
    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-xs);
        line-height: 1.8;
    }
    
    .footer-nav a {
        padding: var(--spacing-xs) var(--spacing-sm);
        display: inline-block;
    }
    
    .footer-dot {
        display: none;
    }
    
    .footer-nav a:not(:last-child)::after {
        content: '·';
        color: rgba(255, 255, 255, 0.6);
        margin-left: var(--spacing-sm);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    /* Fix screenshot gallery */
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    /* Fix bank coverage */
    .bank-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .bank-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    /* Fix benefit metrics */
    .workflow-benefits {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .benefit-metric {
        min-width: auto;
        padding: var(--spacing-lg);
    }
    
    /* Fix security grid */
    .security-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .security-main,
    .security-sidebar {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 1.875rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .stat-big {
        font-size: 2.5rem;
    }
    
    /* Fix very small screens */
    .process-cards {
        padding: 0 var(--spacing-sm);
        gap: var(--spacing-md);
    }
    
    .process-card {
        padding: var(--spacing-md);
    }
    
    .card-number {
        width: 28px;
        height: 28px;
        font-size: 0.6875rem;
    }
    
    .card-icon {
        width: 48px;
        height: 48px;
    }
    
    .card-content h3 {
        font-size: 1.125rem;
    }
    
    .card-content p {
        font-size: 0.875rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .stat-number {
        font-size: 1.125rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .feature-tile {
        padding: var(--spacing-md);
    }
    
    .bank-types-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-item {
        min-width: 240px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .footer-nav a:not(:last-child)::after {
        display: none;
    }
}/* New Homepage Sections */

/* Key Benefits Section */
.key-benefits {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 50%, #fafbfc 100%);
    position: relative;
    overflow: hidden;
}

.key-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 128, 255, 0.04) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 25%);
    background-size: 250px 250px, 350px 350px;
    z-index: 0;
}

.key-benefits .container {
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.benefit-tile {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    text-align: center;
}

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

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: var(--text-primary);
}

.benefit-tile h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.benefit-tile p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Platform Snapshot Section */
.platform-snapshot {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-white);
    position: relative;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

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

.pillar-card {
    padding: var(--spacing-xl);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    background: var(--bg-white);
}

.pillar-card:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-md);
}

.ui-mock-thumbnail {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #f0f5ff 0%, #e6f0ff 100%);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.mock-data-viz::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60%;
    height: 4px;
    background: var(--accent-blue);
    border-radius: 2px;
}

.mock-data-viz::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 40px;
    background: repeating-linear-gradient(
        90deg,
        rgba(0, 128, 255, 0.2),
        rgba(0, 128, 255, 0.2) 10px,
        transparent 10px,
        transparent 20px
    );
}

.mock-dashboard::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: rgba(0, 128, 255, 0.3);
    border-radius: var(--radius-sm);
}

.mock-dashboard::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50%;
    height: 50px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 128, 255, 0.2) 100%);
    border-radius: var(--radius-sm);
}

.mock-offers::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 128, 255, 0.3);
    border-radius: 50%;
}

.mock-integrations::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 20px;
    height: 20px;
    background: rgba(0, 128, 255, 0.3);
    border-radius: 50%;
}

.mock-integrations::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 20px;
    height: 20px;
    background: rgba(0, 212, 255, 0.3);
    border-radius: 50%;
}

.pillar-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.pillar-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.pillar-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.pillar-link:hover {
    color: var(--accent-cyan);
    text-decoration: underline;
}

/* Social Proof Section */
.social-proof {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 50%, #fafbfc 100%);
    position: relative;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.stat-counter {
    text-align: center;
    padding: var(--spacing-lg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    display: block;
    margin-top: var(--spacing-sm);
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-strip {
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
    opacity: 0.5;
    filter: grayscale(100%);
}

/* Who It's For Section */
.who-its-for {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-white);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.role-card {
    padding: var(--spacing-xl);
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    text-align: center;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

.role-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: var(--radius-full);
}

.role-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-blue);
}

.role-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.role-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Book Demo Section */
.book-demo {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 50%, #fafbfc 100%);
    position: relative;
}

.demo-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-3xl);
    max-width: 1000px;
    margin: 0 auto;
}

.demo-content h2 {
    margin-bottom: var(--spacing-md);
}

.demo-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.contact-info {
    background: rgba(0, 128, 255, 0.05);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-xl);
}

.contact-info p {
    margin: var(--spacing-xs) 0;
    color: var(--text-dark);
}

.contact-info a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.demo-form {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.demo-form .form-group {
    margin-bottom: var(--spacing-md);
}

.demo-form label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--bg-white);
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.form-success,
.form-error {
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    margin-top: var(--spacing-md);
    text-align: center;
}

.form-success {
    background: rgba(0, 255, 136, 0.1);
    color: #00a85a;
}

.form-error {
    background: rgba(255, 0, 0, 0.1);
    color: #d00;
}

/* Updated Footer Styles */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 0 0 auto;
}

.footer-links {
    flex: 1;
    text-align: right;
}

.footer-nav {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--accent-blue);
}

.footer-dot {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 var(--spacing-xs);
}

/* Responsive Design for New Sections */
@media (max-width: 968px) {
    .demo-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
        margin-top: var(--spacing-xl);
    }
    
    .footer-nav {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-soc-badge {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .benefits-grid,
    .pillars-grid,
    .stats-row,
    .roles-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-suffix {
        font-size: 1.5rem;
    }
}/* Page-specific Styles for Platform, About, Legal */

/* Page Hero */
.page-hero {
    padding: 120px 0 60px;
    background: var(--primary-black);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.3;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.page-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Platform Page Styles */
.platform-nav {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.platform-nav-link {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

.platform-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.platform-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-white);
    position: relative;
}

.platform-section.alt-bg {
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 50%, #fafbfc 100%);
}

.platform-section-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.section-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.platform-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.feature-list {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.feature-list li {
    padding: var(--spacing-sm) 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-muted);
    line-height: 1.7;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.why-matters {
    background: rgba(0, 128, 255, 0.05);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-xl);
}

.why-matters h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.micro-cta {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.micro-cta:hover {
    text-decoration: underline;
}

/* Platform Visual Elements */
.diagram-flow {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xl);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-xl);
}

.flow-step {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--bg-white);
    border: 1px solid rgba(0, 128, 255, 0.2);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--text-dark);
}

.flow-arrow {
    color: var(--accent-blue);
    font-size: 1.5rem;
}

.code-snippet {
    background: #1a1a1a;
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    overflow-x: auto;
}

.code-snippet pre {
    margin: 0;
    color: #00ff88;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.6;
}

.dashboard-mock {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.mock-header {
    background: var(--primary-black);
    color: var(--text-primary);
    padding: var(--spacing-md);
    font-weight: 600;
}

.mock-body {
    padding: var(--spacing-lg);
}

.queue-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.queue-flag {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.queue-flag.high {
    background: rgba(255, 0, 0, 0.1);
    color: #d00;
}

.queue-flag.medium {
    background: rgba(255, 165, 0, 0.1);
    color: #f90;
}

.queue-flag.low {
    background: rgba(0, 128, 255, 0.1);
    color: var(--accent-blue);
}

.offer-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    padding: var(--spacing-2xl);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

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

.step-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.step-label {
    font-weight: 600;
    color: var(--text-dark);
}

.architecture-diagram {
    padding: var(--spacing-2xl);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.arch-node {
    background: var(--primary-black);
    color: var(--text-primary);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.arch-connections {
    display: flex;
    justify-content: space-around;
    margin-bottom: var(--spacing-lg);
}

.arch-line {
    width: 2px;
    height: 40px;
    background: var(--accent-blue);
}

.arch-endpoints {
    display: flex;
    justify-content: space-around;
    gap: var(--spacing-md);
}

.arch-endpoint {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--bg-white);
    border: 1px solid rgba(0, 128, 255, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.platform-cta {
    padding: var(--spacing-3xl) 0;
    background: var(--primary-black);
    color: var(--text-primary);
    text-align: center;
}

/* About Page Styles */
.about-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-white);
}

.about-section.alt-bg {
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 50%, #fafbfc 100%);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-statement,
.vision-statement {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.workflow-timeline {
    margin-top: var(--spacing-2xl);
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

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

.workflow-step .step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.workflow-step .step-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.workflow-connector {
    width: 2px;
    height: 30px;
    background: rgba(0, 128, 255, 0.2);
    margin-left: 19px;
    margin-bottom: var(--spacing-lg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.value-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.about-cta {
    padding: var(--spacing-3xl) 0;
    background: var(--primary-black);
    color: var(--text-primary);
    text-align: center;
}

/* Legal Page Styles */
.legal-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-lg);
    background: rgba(0, 128, 255, 0.05);
    border-radius: var(--radius-md);
}

.legal-intro a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.legal-accordion {
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: var(--spacing-lg);
    background: var(--bg-white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
}

.accordion-header:hover {
    background: var(--bg-light);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.legal-text {
    padding: var(--spacing-xl);
    background: var(--bg-light);
}

.legal-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: var(--spacing-lg) 0 var(--spacing-sm) 0;
    color: var(--text-dark);
}

.legal-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.legal-text ul {
    margin-left: var(--spacing-lg);
    color: var(--text-muted);
}

.legal-footer {
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    text-align: center;
}

.legal-footer a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .platform-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .platform-nav {
        flex-direction: column;
    }
    
    .platform-nav-link {
        width: 100%;
        text-align: center;
    }
    
    .diagram-flow {
        flex-direction: column;
    }
    
    .offer-flow {
        flex-direction: column;
    }
    
    .arch-endpoints {
        flex-direction: column;
    }
}/* Ultra Modern Section Enhancements */

/* ============================================
   KEY BENEFITS SECTION - PREMIUM REDESIGN
   ============================================ */
.key-benefits {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    position: relative;
    overflow: hidden;
}

.key-benefits::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 128, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 20%, rgba(0, 255, 136, 0.03) 0%, transparent 40%);
    animation: floatGradient 20s ease-in-out infinite;
}

@keyframes floatGradient {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.benefit-tile {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 48px 32px;
    border-radius: 24px;
    border: 1px solid rgba(0, 128, 255, 0.08);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.benefit-tile:hover::before {
    transform: translateX(100%);
}

.benefit-tile:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 128, 255, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 128, 255, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.benefit-tile:hover .benefit-icon {
    background: var(--gradient-primary);
    transform: rotate(5deg) scale(1.1);
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-blue);
    transition: all 0.4s ease;
}

.benefit-tile:hover .benefit-icon svg {
    color: white;
    transform: scale(1.1);
}

.benefit-tile h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.benefit-tile p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ============================================
   PLATFORM SNAPSHOT - MODERN CARDS
   ============================================ */
.platform-snapshot {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.pillar-card {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pillar-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 128, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pillar-card:hover::after {
    opacity: 1;
}

.pillar-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 40px rgba(0, 128, 255, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 128, 255, 0.2);
}

.ui-mock-thumbnail {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #f0f5ff 0%, #e0ebff 100%);
    border-radius: 16px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui-mock-thumbnail::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 20px;
    animation: pulse 2s ease-in-out infinite;
}

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

.pillar-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.pillar-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.pillar-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.pillar-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.pillar-link:hover {
    color: var(--accent-cyan);
    gap: 12px;
}

.pillar-link:hover::after {
    transform: translateX(4px);
}

/* ============================================
   SOCIAL PROOF - ANIMATED STATS
   ============================================ */
.social-proof {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 128, 255, 0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.social-proof::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite reverse;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 64px;
    position: relative;
    z-index: 1;
}

.stat-counter {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 128, 255, 0.08);
    transition: all 0.4s ease;
}

.stat-counter:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 128, 255, 0.15);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0080ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: inline-block;
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0080ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    display: block;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   WHO IT'S FOR - PREMIUM CARDS
   ============================================ */
.who-its-for {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

.role-card {
    padding: 48px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.03) 0%, rgba(0, 212, 255, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.role-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 24px 48px rgba(0, 128, 255, 0.12),
        0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 128, 255, 0.15);
}

.role-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.08) 0%, rgba(0, 212, 255, 0.04) 100%);
    border-radius: 24px;
    position: relative;
    transition: all 0.4s ease;
}

.role-card:hover .role-icon {
    transform: rotate(-5deg) scale(1.1);
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.15) 0%, rgba(0, 212, 255, 0.08) 100%);
}

.role-icon svg {
    width: 48px;
    height: 48px;
    color: var(--accent-blue);
    transition: all 0.4s ease;
}

.role-card:hover .role-icon svg {
    transform: scale(1.1);
}

.role-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.role-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* ============================================
   BOOK DEMO - GLASSMORPHISM DESIGN
   ============================================ */
.book-demo {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafb 0%, #f0f5f9 100%);
    position: relative;
    overflow: hidden;
}

.book-demo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 128, 255, 0.05) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}

.demo-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.demo-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-dark) 0%, rgba(0, 128, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.demo-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-info {
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.08) 0%, rgba(0, 212, 255, 0.04) 100%);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(0, 128, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-info p {
    margin: 12px 0;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.contact-info a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-info a:hover {
    color: var(--accent-cyan);
    transform: translateX(4px);
}

.demo-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 4px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 128, 255, 0.08);
}

.demo-form .form-group {
    margin-bottom: 28px;
}

.demo-form label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: white;
    box-shadow: 
        0 0 0 4px rgba(0, 128, 255, 0.1),
        0 4px 8px rgba(0, 128, 255, 0.05);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #0080ff 0%, #0066dd 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn-full:hover::before {
    width: 600px;
    height: 600px;
}

.btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 24px rgba(0, 128, 255, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ============================================
   SECTION HEADERS - ENHANCED
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ============================================
   ANIMATIONS & INTERACTIONS
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 968px) {
    .demo-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .demo-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .key-benefits,
    .platform-snapshot,
    .social-proof,
    .who-its-for,
    .book-demo {
        padding: 80px 0;
    }
    
    .benefits-grid,
    .pillars-grid,
    .roles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-suffix {
        font-size: 2rem;
    }
    
    .demo-form {
        padding: 32px;
    }
}/* Ultra Modern Section Enhancements */

/* ============================================
   KEY BENEFITS SECTION - PREMIUM REDESIGN
   ============================================ */
.key-benefits {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    position: relative;
    overflow: hidden;
}

.key-benefits::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 128, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 20%, rgba(0, 255, 136, 0.03) 0%, transparent 40%);
    animation: floatGradient 20s ease-in-out infinite;
}

@keyframes floatGradient {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.benefit-tile {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 48px 32px;
    border-radius: 24px;
    border: 1px solid rgba(0, 128, 255, 0.08);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.benefit-tile:hover::before {
    transform: translateX(100%);
}

.benefit-tile:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 128, 255, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 128, 255, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.benefit-tile:hover .benefit-icon {
    background: var(--gradient-primary);
    transform: rotate(5deg) scale(1.1);
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-blue);
    transition: all 0.4s ease;
}

.benefit-tile:hover .benefit-icon svg {
    color: white;
    transform: scale(1.1);
}

.benefit-tile h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.benefit-tile p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ============================================
   PLATFORM SNAPSHOT - MODERN CARDS
   ============================================ */
.platform-snapshot {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.pillar-card {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pillar-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 128, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pillar-card:hover::after {
    opacity: 1;
}

.pillar-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 40px rgba(0, 128, 255, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 128, 255, 0.2);
}

.ui-mock-thumbnail {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #f0f5ff 0%, #e0ebff 100%);
    border-radius: 16px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui-mock-thumbnail::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 20px;
    animation: pulse 2s ease-in-out infinite;
}

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

.pillar-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.pillar-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.pillar-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.pillar-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.pillar-link:hover {
    color: var(--accent-cyan);
    gap: 12px;
}

.pillar-link:hover::after {
    transform: translateX(4px);
}

/* ============================================
   SOCIAL PROOF - ANIMATED STATS
   ============================================ */
.social-proof {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 128, 255, 0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.social-proof::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite reverse;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 64px;
    position: relative;
    z-index: 1;
}

.stat-counter {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 128, 255, 0.08);
    transition: all 0.4s ease;
}

.stat-counter:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 128, 255, 0.15);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0080ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: inline-block;
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0080ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    display: block;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   WHO IT'S FOR - PREMIUM CARDS
   ============================================ */
.who-its-for {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

.role-card {
    padding: 48px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.03) 0%, rgba(0, 212, 255, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.role-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 24px 48px rgba(0, 128, 255, 0.12),
        0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 128, 255, 0.15);
}

.role-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.08) 0%, rgba(0, 212, 255, 0.04) 100%);
    border-radius: 24px;
    position: relative;
    transition: all 0.4s ease;
}

.role-card:hover .role-icon {
    transform: rotate(-5deg) scale(1.1);
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.15) 0%, rgba(0, 212, 255, 0.08) 100%);
}

.role-icon svg {
    width: 48px;
    height: 48px;
    color: var(--accent-blue);
    transition: all 0.4s ease;
}

.role-card:hover .role-icon svg {
    transform: scale(1.1);
}

.role-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.role-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* ============================================
   BOOK DEMO - GLASSMORPHISM DESIGN
   ============================================ */
.book-demo {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafb 0%, #f0f5f9 100%);
    position: relative;
    overflow: hidden;
}

.book-demo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 128, 255, 0.05) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}

.demo-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.demo-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-dark) 0%, rgba(0, 128, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.demo-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-info {
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.08) 0%, rgba(0, 212, 255, 0.04) 100%);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(0, 128, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-info p {
    margin: 12px 0;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.contact-info a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-info a:hover {
    color: var(--accent-cyan);
    transform: translateX(4px);
}

.demo-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 4px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 128, 255, 0.08);
}

.demo-form .form-group {
    margin-bottom: 28px;
}

.demo-form label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: white;
    box-shadow: 
        0 0 0 4px rgba(0, 128, 255, 0.1),
        0 4px 8px rgba(0, 128, 255, 0.05);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #0080ff 0%, #0066dd 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn-full:hover::before {
    width: 600px;
    height: 600px;
}

.btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 24px rgba(0, 128, 255, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ============================================
   SECTION HEADERS - ENHANCED
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ============================================
   ANIMATIONS & INTERACTIONS
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 968px) {
    .demo-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .demo-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .key-benefits,
    .platform-snapshot,
    .social-proof,
    .who-its-for,
    .book-demo {
        padding: 80px 0;
    }
    
    .benefits-grid,
    .pillars-grid,
    .roles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-suffix {
        font-size: 2rem;
    }
    
    .demo-form {
        padding: 32px;
    }
}/* ============================================
   PLATFORM PAGE - PREMIUM REDESIGN
   ============================================ */

/* Platform Hero - Enhanced */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 128, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 40%);
    animation: floatGradient 20s ease-in-out infinite;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.02));
}

.page-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.03em;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out;
}

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

.page-intro {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 900px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Platform Navigation Pills */
.platform-nav {
    display: flex;
    gap: 20px;
    margin-top: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.platform-nav-link {
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.platform-nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 128, 255, 0.3) 0%, transparent 70%);
    transition: width 0.6s ease, height 0.6s ease;
}

.platform-nav-link:hover::before {
    width: 200px;
    height: 200px;
}

.platform-nav-link:hover {
    background: rgba(0, 128, 255, 0.15);
    border-color: rgba(0, 128, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 128, 255, 0.2);
}

/* Platform Sections - Modern Design */
.platform-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.platform-section.alt-bg {
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
}

.platform-section.alt-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 128, 255, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 40%);
}

.platform-section-header {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.section-number {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.3) 0%, rgba(0, 212, 255, 0.2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    line-height: 1;
}

.platform-section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

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

.platform-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list li {
    padding: 16px 0;
    padding-left: 40px;
    position: relative;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    color: var(--text-dark);
    transform: translateX(8px);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 6px;
}

.feature-list li::after {
    content: '✓';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 14px;
}

.why-matters {
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.06) 0%, rgba(0, 212, 255, 0.03) 100%);
    padding: 32px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 128, 255, 0.1);
    backdrop-filter: blur(10px);
}

.why-matters h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.why-matters p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Enhanced Visual Elements */
.diagram-flow {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 40px;
    background: linear-gradient(135deg, #f8fafb 0%, #f0f5f9 100%);
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.flow-step {
    padding: 16px 24px;
    background: white;
    border: 2px solid rgba(0, 128, 255, 0.15);
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
}

.flow-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 128, 255, 0.15);
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.05) 0%, rgba(0, 212, 255, 0.02) 100%);
}

.flow-arrow {
    color: var(--accent-blue);
    font-size: 2rem;
    font-weight: bold;
}

.code-snippet {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 20px;
    padding: 32px;
    overflow-x: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.code-snippet pre {
    margin: 0;
    color: #00ff88;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.8;
}

.dashboard-mock {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.dashboard-mock:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 128, 255, 0.15);
}

.platform-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    color: var(--text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.platform-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 128, 255, 0.1) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}

.platform-cta h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.platform-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* ============================================
   ABOUT PAGE - PREMIUM REDESIGN
   ============================================ */

.about-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.about-section.alt-bg {
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    text-align: center;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.mission-statement,
.vision-statement {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.5;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.04) 0%, rgba(0, 212, 255, 0.02) 100%);
    border-radius: 24px;
    border: 1px solid rgba(0, 128, 255, 0.08);
}

.section-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Enhanced Workflow Timeline */
.workflow-timeline {
    margin-top: 80px;
    position: relative;
    padding: 0 40px;
}

.workflow-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
    transform: translateX(-50%);
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.workflow-step:nth-child(even) {
    flex-direction: row-reverse;
}

.workflow-step .step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--accent-blue);
    color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 128, 255, 0.2);
}

.workflow-step .step-content {
    flex: 1;
    padding: 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 128, 255, 0.08);
    transition: all 0.3s ease;
}

.workflow-step:nth-child(even) .step-content {
    margin-right: calc(50% + 40px);
}

.workflow-step:nth-child(odd) .step-content {
    margin-left: calc(50% + 40px);
}

.workflow-step .step-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 128, 255, 0.15);
}

.workflow-step .step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.workflow-step .step-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Enhanced Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.value-card {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 128, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 128, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.value-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 128, 255, 0.15);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.about-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    color: var(--text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 128, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 40%);
    animation: floatGradient 15s ease-in-out infinite;
}

.about-cta h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.about-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .platform-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .workflow-timeline::before {
        left: 40px;
    }
    
    .workflow-step {
        flex-direction: column !important;
        align-items: flex-start;
    }
    
    .workflow-step .step-number {
        position: relative;
        left: 0;
        transform: none;
        margin-bottom: 20px;
    }
    
    .workflow-step .step-content {
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-intro {
        font-size: 1.25rem;
    }
    
    .platform-nav {
        flex-direction: column;
    }
    
    .platform-nav-link {
        width: 100%;
        text-align: center;
    }
    
    .section-number {
        font-size: 3rem;
    }
    
    .platform-section-header h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LEGAL PAGE - MODERN ENHANCEMENTS
   ============================================ */
.legal-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    position: relative;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.7;
}

.legal-intro a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.legal-intro a:hover {
    color: var(--accent-cyan);
}

.legal-accordion {
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 128, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.legal-accordion:hover {
    box-shadow: 0 8px 24px rgba(0, 128, 255, 0.1);
    transform: translateY(-2px);
}

.accordion-header {
    width: 100%;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accordion-header:hover::before,
.accordion-header[aria-expanded="true"]::before {
    opacity: 1;
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.04) 0%, rgba(0, 212, 255, 0.02) 100%);
}

.accordion-header[aria-expanded="true"] {
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.06) 0%, rgba(0, 212, 255, 0.03) 100%);
}

.accordion-icon {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--accent-blue);
    transition: all 0.3s ease;
    display: inline-block;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.legal-text {
    padding: 32px;
    color: var(--text-muted);
    line-height: 1.8;
}

.legal-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 20px;
}

.legal-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
}

.legal-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.legal-text ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-text ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.legal-text ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.legal-footer {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.06) 0%, rgba(0, 212, 255, 0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 128, 255, 0.1);
    text-align: center;
}

.legal-footer p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.legal-footer a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.legal-footer a:hover {
    color: var(--accent-cyan);
    text-decoration: underline;
}

/* ============================================
   SIMPLIFIED CTA SECTION OVERRIDE
   ============================================ */
.book-demo .cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.book-demo .cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-dark) 0%, rgba(0, 128, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.book-demo .demo-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.book-demo .btn-lg {
    padding: 18px 48px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 48px;
    display: inline-block;
}

.book-demo {
    background: var(--bg-light) !important;
    padding: 120px 0 !important;
}

.book-demo .cta-content h2 {
    color: var(--text-primary) !important;
}

.book-demo .demo-subtitle {
    color: var(--text-secondary) !important;
}

.book-demo .contact-info {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    display: inline-block;
    text-align: left;
    margin-top: 20px;
}

.book-demo .contact-info p {
    color: var(--text-secondary) !important;
}

.book-demo .contact-info a {
    color: var(--brand-primary) !important;
}

/* ============================================
   PREMIUM DARK THEME FOR HOME PAGE SECTIONS
   ============================================ */

/* Premium Key Benefits Section - Fixed */
.key-benefits {
    padding: 120px 0 !important;
    background: var(--bg-white) !important;
    position: relative;
    overflow: hidden;
}

.key-benefits::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 128, 255, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.6;
    z-index: 0;
}

.key-benefits::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -25%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.5;
    z-index: 0;
}

/* Premium Platform Snapshot */
.platform-snapshot {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%) !important;
    position: relative;
    overflow: hidden;
    padding: 120px 0 !important;
}

.platform-snapshot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 128, 255, 0.2), transparent);
    z-index: 1;
}

.platform-snapshot::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 128, 255, 0.2), transparent);
    z-index: 1;
}

/* Premium Social Proof - Dark Background */
.social-proof {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%) !important;
    position: relative;
    overflow: hidden;
    padding: 120px 0 !important;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 128, 255, 0.05) 0%, transparent 70%);
    opacity: 0.8;
    z-index: 0;
}

.social-proof::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.03) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

/* Premium Who It's For Section */
.who-its-for {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%) !important;
    position: relative;
    overflow: hidden;
    padding: 120px 0 !important;
}

.who-its-for::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 128, 255, 0.2), transparent);
    z-index: 1;
}

.who-its-for::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 128, 255, 0.2), transparent);
    z-index: 1;
}

/* Optimized GPU-accelerated animations */
@keyframes simpleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Premium section headers */
.section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 80px !important;
    text-align: center;
}

/* White text for dark background sections */
.social-proof .section-header h2 {
    color: #ffffff !important;
}

/* Dark text for light background sections */
.key-benefits .section-header h2,
.platform-snapshot .section-header h2,
.who-its-for .section-header h2,
.book-demo .section-header h2 {
    color: var(--text-dark) !important;
}

.section-header h2 {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
    opacity: 0.8;
}

/* Enhanced section content positioning */
.benefits-grid,
.pillars-grid,
.stats-row,
.roles-grid {
    position: relative;
    z-index: 1;
}

/* Premium card styles - light backgrounds */
.key-benefits .benefit-tile {
    background: var(--bg-white) !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

.key-benefits .benefit-tile h3 {
    color: var(--text-dark) !important;
}

.key-benefits .benefit-tile p {
    color: var(--text-secondary) !important;
}

.key-benefits .benefit-tile .benefit-icon {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%) !important;
}

.key-benefits .benefit-tile .benefit-icon svg {
    color: #ffffff !important;
}

.social-proof .stat-counter {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
}

.social-proof .stat-number,
.social-proof .stat-suffix {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-proof .stat-label {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Platform snapshot cards stay light for contrast */
.platform-snapshot .pillar-card {
    background: white !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important;
}

/* Who it's for cards stay light */
.who-its-for .role-card {
    background: white !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important;
}

/* Optimized smooth hover effects */
.benefit-tile,
.pillar-card,
.stat-counter,
.role-card {
    will-change: transform;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out !important;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.benefit-tile:hover,
.pillar-card:hover,
.stat-counter:hover,
.role-card:hover {
    transform: translateY(-8px) translateZ(0) !important;
}

.key-benefits .benefit-tile:hover {
    border-color: rgba(0, 128, 255, 0.3) !important;
    box-shadow: 0 20px 40px rgba(0, 128, 255, 0.2) !important;
}

.social-proof .stat-counter:hover {
    border-color: rgba(0, 212, 255, 0.3) !important;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2) !important;
}

.platform-snapshot .pillar-card:hover,
.who-its-for .role-card:hover {
    box-shadow: 0 16px 32px rgba(0, 128, 255, 0.15) !important;
}

/* Enhanced Visual Flow Between Sections */
.key-benefits + .platform-snapshot,
.platform-snapshot + .social-proof,
.social-proof + .who-its-for,
.who-its-for + .book-demo {
    margin-top: 0 !important;
}

/* Section dividers removed for cleaner design */

/* Simplified visual elements - removed for performance */

/* Enhanced responsive design for visual elements */
@media (max-width: 1200px) {
    .section-header h2 {
        font-size: 3rem !important;
    }
    
    .key-benefits::after,
    .platform-snapshot::after,
    .social-proof::after,
    .who-its-for::after {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 968px) {
    .key-benefits,
    .platform-snapshot,
    .social-proof,
    .who-its-for {
        padding: 100px 0 !important;
    }
    
    .section-header h2 {
        font-size: 2.5rem !important;
    }
    
    .section-header {
        margin-bottom: 60px !important;
    }
    
    /* Simplify animations on smaller screens */
    .key-benefits::before,
    .platform-snapshot::before,
    .social-proof::before,
    .who-its-for::before {
        animation-duration: 60s;
        opacity: 0.5;
    }
    
    /* Reduce overlapping sections on mobile */
    .key-benefits + .platform-snapshot,
    .platform-snapshot + .social-proof,
    .social-proof + .who-its-for,
    .who-its-for + .book-demo {
        margin-top: 0;
        padding-top: 100px !important;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem !important;
    }
    
    /* Hide some decorative elements on very small screens for performance */
    .key-benefits::after,
    .platform-snapshot::after,
    .social-proof::after,
    .who-its-for::after {
        display: none;
    }
    
    .platform-snapshot .container::before,
    .social-proof .container::before {
        display: none;
    }
}

/* Simplified entrance animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.key-benefits,
.platform-snapshot,
.social-proof,
.who-its-for {
    animation: fadeIn 0.6s ease-out;
}
/* =============================================================================
   LOANWORX FINTECH DESIGN SYSTEM
   Clean, professional, modern fintech aesthetic
   ============================================================================= */

/* =============================================================================
   ROOT VARIABLES
   ============================================================================= */
:root {
    /* Brand Colors */
    --brand-primary: #0066ff;
    --brand-secondary: #00d4ff;
    --brand-success: #00c896;
    --brand-dark: #000000;
    
    /* Text Colors */
    --text-primary: #ffffff; /* Keep white for dark backgrounds like hero */
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-light: #a0aec0;
    --text-white: #ffffff;
    --text-dark: #1a1a1a; /* Dark text for light backgrounds */
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-gray: #edf2f7;
    --bg-dark: #1a202c;
    --bg-black: #000000;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    --gradient-light: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
}

/* =============================================================================
   HOME PAGE - CLEAN FINTECH SECTIONS
   ============================================================================= */

/* Why Teams Pick LoanWorx Section */
.key-benefits {
    padding: 100px 0 !important;
    background: var(--bg-white) !important;
    position: relative;
    overflow: hidden;
}

.key-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-primary) 50%, transparent);
    opacity: 0.2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.benefit-tile {
    background: var(--bg-white) !important;
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid #e2e8f0 !important;
    box-shadow: var(--shadow-sm) !important;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-tile:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--brand-primary) !important;
}

.benefit-tile .benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary) !important;
    border-radius: var(--radius-lg);
}

.benefit-tile .benefit-icon svg {
    width: 32px;
    height: 32px;
    color: var(--text-white) !important;
}

.benefit-tile h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark) !important;
}

.benefit-tile p {
    color: var(--text-secondary) !important;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Everything You Need Section */
.platform-snapshot {
    padding: 100px 0 !important;
    background: var(--bg-light) !important;
    position: relative;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.pillar-card {
    background: var(--bg-white) !important;
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid #e2e8f0 !important;
    box-shadow: var(--shadow-sm) !important;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--shadow-xl) !important;
    border-color: var(--brand-primary) !important;
}

.pillar-card .ui-mock-thumbnail {
    width: 100%;
    height: 180px;
    background: var(--gradient-light);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    position: relative;
}

/* Ensure images show properly in thumbnails */
.pillar-card .ui-mock-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

/* Hide the pseudo-element for thumbnails with images */
.ui-mock-thumbnail::before {
    display: none;
}

/* Platform page visual styling */
.platform-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.platform-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pillar-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark) !important;
}

.pillar-card p {
    color: var(--text-secondary) !important;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pillar-link {
    color: var(--brand-primary) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.pillar-link:hover {
    gap: 10px;
}

/* Built for MCA Speed Section - Dark Background */
.social-proof {
    padding: 100px 0 !important;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%) !important;
    position: relative;
}

.social-proof .section-header h2,
.social-proof .section-title {
    color: #ffffff !important;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-top: 60px;
}

.stat-counter {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Made for Your Role Section */
.who-its-for {
    padding: 100px 0 !important;
    background: var(--bg-white) !important;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.role-card {
    padding: 48px 40px;
    background: var(--bg-white) !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm) !important;
    transition: all 0.3s ease;
    text-align: center;
}

.role-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--shadow-xl) !important;
    border-color: var(--brand-primary) !important;
}

.role-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    border: 2px solid var(--brand-primary);
}

.role-icon svg {
    width: 40px;
    height: 40px;
    color: var(--brand-primary) !important;
}

.role-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark) !important;
}

.role-card p {
    color: var(--text-secondary) !important;
    line-height: 1.6;
}

/* See LoanWorx in Action Section */
.book-demo {
    padding: 100px 0 !important;
    background: var(--bg-light) !important;
    border-top: 1px solid #e2e8f0;
}

.book-demo .cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.book-demo .section-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: var(--text-dark) !important;
    margin-bottom: 20px;
}

.book-demo .demo-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary) !important;
    margin-bottom: 32px;
}

.book-demo .btn-lg {
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.book-demo .btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.book-demo .contact-info {
    margin-top: 48px;
    padding: 32px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    border: 1px solid #e2e8f0;
    display: inline-block;
}

.book-demo .contact-info p {
    margin: 8px 0;
    color: var(--text-secondary) !important;
}

.book-demo .contact-info a {
    color: var(--brand-primary) !important;
    text-decoration: none;
    font-weight: 600;
}

.book-demo .contact-info a:hover {
    text-decoration: underline;
}

/* =============================================================================
   PLATFORM PAGE - CLEAN FINTECH DESIGN
   ============================================================================= */

.page-hero {
    padding: 120px 0 80px !important;
    background: var(--gradient-dark) !important;
    color: var(--text-white);
}

.page-title {
    font-size: 3rem !important;
    font-weight: 800 !important;
    margin-bottom: 24px;
    color: var(--text-white) !important;
}

.page-intro {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.platform-nav {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-nav-link {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-white) !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.platform-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.platform-section {
    padding: 100px 0 !important;
    background: var(--bg-white) !important;
}

.platform-section.alt-bg {
    background: var(--bg-light) !important;
}

.platform-section-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.section-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 102, 255, 0.1);
    line-height: 1;
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.platform-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary) !important;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-secondary) !important;
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--brand-success);
    font-weight: bold;
    font-size: 1.2rem;
}

.why-matters {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--brand-primary);
}

.why-matters h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary) !important;
}

.why-matters p {
    color: var(--text-secondary) !important;
    line-height: 1.6;
}

.platform-cta {
    padding: 100px 0 !important;
    background: var(--gradient-dark) !important;
    text-align: center;
}

.platform-cta h2 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: var(--text-white) !important;
    margin-bottom: 16px;
}

.platform-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 32px;
}

.platform-cta .btn {
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.platform-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

/* =============================================================================
   GLOBAL SECTION STYLES
   ============================================================================= */

.section-header {
    text-align: center;
    margin-bottom: 60px !important;
    position: relative;
    z-index: 1;
}

.section-header h2,
.section-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: var(--text-dark) !important;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Override for sections with dark backgrounds */
.social-proof .section-header h2,
.social-proof .section-title {
    color: var(--text-white) !important;
}

/* Clean hover states */
.benefit-tile:hover,
.pillar-card:hover,
.role-card:hover {
    transform: translateY(-4px) translateZ(0) !important;
}

/* Responsive Design */
@media (max-width: 968px) {
    .platform-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .stats-row,
    .benefits-grid,
    .pillars-grid,
    .roles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .section-header h2,
    .section-title {
        font-size: 2rem !important;
    }
    
    .page-title {
        font-size: 2.5rem !important;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-suffix {
        font-size: 1.5rem;
    }
}

/* ============================================
   NEW SECTIONS STYLES
   ============================================ */

/* What We Do Section */
.what-we-do {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-white);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-top: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Process Flow Cards */
.process-flow {
    margin-top: var(--spacing-3xl);
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto;
}

.process-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 128, 255, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.process-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 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(0, 128, 255, 0.15);
    border-color: rgba(0, 128, 255, 0.2);
}

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

.card-number {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 36px;
    height: 36px;
    background: rgba(0, 128, 255, 0.1);
    color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.process-card:hover .card-number {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.process-card:hover .card-icon {
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.15) 0%, rgba(0, 212, 255, 0.15) 100%);
    transform: scale(1.05);
}

.card-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    line-height: 1.3;
}

.card-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
}

.card-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.25rem;
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 128, 255, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #0080ff;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.15) 0%, rgba(0, 212, 255, 0.15) 100%);
    transform: scale(1.05);
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1d21;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.step-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* Enhanced Benefits Section */
.workflow-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
    padding: 0 2rem;
}

.benefit-metric {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, #1a1d21 0%, #2d3748 100%);
    border-radius: 24px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.benefit-metric:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 128, 255, 0.2), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.benefit-metric:hover::before {
    opacity: 1;
}

.metric-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #00d4ff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.benefit-metric:hover .metric-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.3) 0%, rgba(0, 212, 255, 0.3) 100%);
}

.metric-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.metric-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* Responsive Timeline Design */
@media (max-width: 768px) {
    .workflow-timeline {
        padding: 0 1rem;
    }
    
    .timeline-line {
        left: 40px;
        width: 2px;
    }
    
    .workflow-step {
        flex-direction: row !important;
        align-items: flex-start;
        margin-bottom: 3rem;
    }
    
    .step-indicator {
        position: relative;
        left: 0;
        transform: none;
        margin-right: 2rem;
    }
    
    .step-number {
        width: 64px;
        height: 64px;
        font-size: 1rem;
        box-shadow: 0 4px 16px rgba(0, 128, 255, 0.3);
    }
    
    .step-card {
        margin: 0 !important;
        max-width: none;
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .step-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .step-card p {
        font-size: 1rem;
    }
    
    .workflow-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
        padding: 0 1rem;
    }
    
    .benefit-metric {
        padding: 2rem 1.5rem;
    }
    
    .metric-value {
        font-size: 2.5rem;
    }
}

/* Integrations Overview */
.integrations-overview {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-light);
}

.integration-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.integration-category {
    padding: var(--spacing-xl);
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 128, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.integration-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0080ff, #00d4ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.integration-category:hover {
    box-shadow: 0 12px 40px rgba(0, 128, 255, 0.15);
    transform: translateY(-8px);
}

.integration-category:hover::before {
    opacity: 1;
}

.integration-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #0080ff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.integration-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.integration-category:hover .integration-icon {
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.15) 0%, rgba(0, 212, 255, 0.15) 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 128, 255, 0.2);
}

.integration-category:hover .integration-icon::before {
    opacity: 1;
}

.integration-icon svg {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.integration-category:hover .integration-icon svg {
    transform: scale(1.1);
}

.integration-category h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-black);
    line-height: 1.3;
}

.integration-category p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Our Customers */
.our-customers {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.customer-segments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

.customer-segment {
    text-align: center;
    padding: var(--spacing-xl);
}

.segment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.segment-icon svg {
    color: white;
}

.customer-segment h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-black);
}

.customer-segment p {
    color: var(--text-muted);
    line-height: 1.6;
}

.customer-vision {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-2xl);
}

.customer-vision p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* Modern Features Section */
.features-modern {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.features-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(0, 128, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Interactive Feature Navigation */
.feature-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.feature-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(0, 128, 255, 0.1);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.feature-nav-btn.active::before,
.feature-nav-btn:hover::before {
    width: 200px;
    height: 200px;
}

.feature-nav-btn.active {
    background: linear-gradient(135deg, #0080ff 0%, #00d4ff 100%);
    border-color: #0080ff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 128, 255, 0.3);
}

.feature-nav-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 128, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 128, 255, 0.15);
}

.nav-icon {
    width: 1.25rem;
    height: 1.25rem;
    z-index: 1;
    position: relative;
    fill: currentColor;
    transition: all 0.3s ease;
}

.nav-text {
    z-index: 1;
    position: relative;
}

/* Feature Content Areas */
.features-content {
    position: relative;
}

.feature-category {
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.feature-category.active {
    display: block;
}

/* Hero Feature Layout */
.features-hero {
    margin-bottom: 4rem;
}

.hero-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 24px;
    border: 1px solid rgba(0, 128, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.hero-feature::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.feature-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #0080ff 0%, #00d4ff 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-feature h3 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-feature p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.feature-stats .stat-label {
    color: var(--text-muted) !important;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0080ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

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

/* Integration Logos */
.integration-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.logo-item {
    padding: 0.5rem 1rem;
    background: rgba(0, 128, 255, 0.05);
    border: 1px solid rgba(0, 128, 255, 0.1);
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0080ff;
}

/* Verification Features */
.verification-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.verify-item {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Feature Visuals */
.hero-feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-mockup {
    width: 300px;
    height: 200px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.processing-animation {
    width: 100%;
    height: 100%;
    position: relative;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #0080ff 50%, transparent 100%);
    animation: scanMove 2s ease-in-out infinite;
}

.data-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    animation: dataPointPulse 1.5s ease-in-out infinite;
}

@keyframes scanMove {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(180px); opacity: 1; }
}

@keyframes dataPointPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* CRM Integration Visual */
.crm-integration-visual {
    width: 350px;
    height: 250px;
    position: relative;
    padding: 20px;
}

.crm-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 2;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid rgba(0, 128, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 128, 255, 0.1);
}

.step-icon.central {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0080ff 0%, #00d4ff 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 12px 40px rgba(0, 128, 255, 0.3);
    animation: pulse-central 3s ease-in-out infinite;
}

.step-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.flow-arrow {
    margin: 0 -10px;
    z-index: 1;
    animation: flow-pulse 2s ease-in-out infinite;
}

.banks-connection {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.bank-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.bank-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 128, 255, 0.1);
    border: 2px solid rgba(0, 128, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
}

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

.bank-connection-line {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    animation: dash-flow 3s linear infinite;
}

.data-flow-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.data-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #0080ff 0%, #00d4ff 100%);
    border-radius: 50%;
    opacity: 0;
    animation: particle-flow 4s ease-in-out infinite;
}

.data-particle:nth-child(1) {
    animation-delay: 0s;
    top: 45%;
    left: 15%;
}

.data-particle:nth-child(2) {
    animation-delay: 1.3s;
    top: 45%;
    left: 15%;
}

.data-particle:nth-child(3) {
    animation-delay: 2.6s;
    top: 45%;
    left: 15%;
}

@keyframes pulse-central {
    0%, 100% { transform: scale(1); box-shadow: 0 12px 40px rgba(0, 128, 255, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 16px 48px rgba(0, 128, 255, 0.4); }
}

@keyframes flow-pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes dash-flow {
    0% { stroke-dashoffset: 20; }
    100% { stroke-dashoffset: 0; }
}

@keyframes particle-flow {
    0% { 
        opacity: 0; 
        transform: translateX(0); 
    }
    20% { 
        opacity: 1; 
    }
    80% { 
        opacity: 1; 
        transform: translateX(200px); 
    }
    100% { 
        opacity: 0; 
        transform: translateX(220px); 
    }
}

.step-icon:hover {
    transform: scale(1.1);
    border-color: rgba(0, 128, 255, 0.4);
    box-shadow: 0 12px 40px rgba(0, 128, 255, 0.2);
}

.step-icon.central:hover {
    transform: scale(1.1);
    box-shadow: 0 16px 50px rgba(0, 128, 255, 0.4);
}

/* Security Shield */
.security-shield {
    width: 200px;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-layers {
    position: relative;
    width: 120px;
    height: 120px;
}

.shield-layer {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    animation: shieldRotate 4s linear infinite;
}

.layer-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 128, 255, 0.3);
    animation-direction: normal;
}

.layer-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-color: rgba(0, 128, 255, 0.5);
    animation-direction: reverse;
}

.layer-3 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-color: #0080ff;
    animation-duration: 6s;
}

.shield-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    z-index: 2;
}

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

/* Modern Feature Grid */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-tile {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 128, 255, 0.08);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0080ff, #00d4ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-tile:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 60px rgba(0, 128, 255, 0.1);
    border-color: rgba(0, 128, 255, 0.15);
}

.feature-tile:hover .tile-icon {
    fill: var(--accent-cyan);
    transform: scale(1.1);
}

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

.tile-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    fill: var(--accent-blue);
    transition: all 0.3s ease;
}

.feature-tile h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-tile p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Modern Features Responsive */
@media (max-width: 1200px) {
    .hero-feature {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .features-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .feature-nav {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .feature-nav-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .hero-feature {
        padding: 2rem;
        gap: 2rem;
    }
    
    .hero-feature h3 {
        font-size: 1.875rem;
    }
    
    .hero-feature p {
        font-size: 1rem;
    }
    
    .feature-stats {
        justify-content: center;
        gap: 3rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-mockup {
        width: 250px;
        height: 150px;
        padding: 15px;
    }
    
    .crm-integration-visual {
        width: 280px;
        height: 200px;
        padding: 15px;
    }
    
    .step-icon {
        width: 55px;
        height: 55px;
    }
    
    .step-icon.central {
        width: 70px;
        height: 70px;
    }
    
    .bank-icon {
        width: 40px;
        height: 40px;
    }
    
    .flow-arrow svg {
        width: 45px;
        height: 18px;
    }
    
    .security-shield {
        width: 150px;
        height: 150px;
    }
    
    .shield-layers {
        width: 100px;
        height: 100px;
    }
    
    .shield-center {
        font-size: 1.5rem;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-tile {
        padding: 1.5rem;
    }
    
    .tile-icon {
        width: 2rem;
        height: 2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-feature {
        padding: 1.5rem;
    }
    
    .feature-badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .hero-feature h3 {
        font-size: 1.5rem;
    }
    
    .feature-stats {
        gap: 2rem;
    }
    
    .integration-logos {
        justify-content: center;
    }
    
    .logo-item {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }
}

.feature-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-black);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0080ff, #00d4ff);
    border-radius: 2px;
}

.features-row {
    display: grid;
    gap: 2rem;
    align-items: stretch;
}

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

.features-row-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 128, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0080ff, #00d4ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 128, 255, 0.15);
}

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

.feature-card.featured {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid rgba(0, 128, 255, 0.12);
    position: relative;
}

.feature-card.featured::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card.featured:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #0080ff;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card.featured .feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.15) 0%, rgba(0, 212, 255, 0.15) 100%);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
    box-shadow: 0 8px 24px rgba(0, 128, 255, 0.2);
}

.feature-icon svg {
    transition: all 0.3s ease;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1rem;
    line-height: 1.3;
    flex-shrink: 0;
}

.feature-card.featured h4 {
    font-size: 1.375rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
    margin: 0;
}

.feature-card.featured p {
    font-size: 1rem;
}

/* Responsive Features Design */
@media (max-width: 1200px) {
    .features-row-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-row-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-row-4,
    .features-row-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1rem;
    }
    
    .feature-card.featured .feature-icon {
        width: 72px;
        height: 72px;
    }
    
    .feature-card h4 {
        font-size: 1.125rem;
    }
    
    .feature-card.featured h4 {
        font-size: 1.25rem;
    }
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Integration Partners */
.integration-partners {
    padding: var(--spacing-3xl) 0;
    background: white;
    position: relative;
    z-index: 2;
}

/* Mobile optimization for integration partners */
@media (max-width: 768px) {
    .integration-partners {
        padding: var(--spacing-2xl) 0;
    }
    
    .integration-partners .section-header {
        text-align: center;
        margin-bottom: var(--spacing-xl);
    }
    
    .integration-partners .section-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .integration-partners .section-subtitle {
        font-size: 1rem;
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .integration-partners {
        padding: var(--spacing-xl) 0;
    }
    
    .integration-partners .section-title {
        font-size: 1.75rem;
    }
    
    .integration-partners .section-subtitle {
        font-size: 0.9rem;
    }
}

/* Partners Container */
.partners-container {
    margin-top: var(--spacing-xl);
}

.partners-row {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-row:last-child {
    margin-bottom: 0;
}

.partners-track {
    display: flex;
    gap: var(--spacing-lg);
    animation-duration: 60s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}

.partners-track:not(:first-child) {
    margin-left: var(--spacing-lg);
}

.partners-row-right .partners-track {
    animation-name: slideRight;
}

.partners-row-left .partners-track {
    animation-name: slideLeft;
}

.partners-row:hover .partners-track {
    animation-play-state: paused;
}

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

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

/* Partner Items */
.partner-item {
    text-align: center;
    padding: var(--spacing-md);
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 128, 255, 0.08);
    transition: all 0.3s ease;
    width: 240px;
    min-width: 240px;
    max-width: 240px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0080ff, #00d4ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 16px 48px rgba(0, 128, 255, 0.2);
    z-index: 10;
}

.partner-item:hover::before {
    opacity: 1;
}

.partner-logo {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.partner-item:hover .partner-logo {
    transform: scale(1.1);
}

.partner-logo svg {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo svg {
    transform: scale(1.05);
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.partner-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.partner-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
    height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Screenshots Gallery */
.screenshots-gallery {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-light);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.screenshot-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.screenshot-item:hover {
    box-shadow: var(--shadow-xl);
    transform: scale(1.02);
}

.screenshot-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--bg-gray);
}

.screenshot-item p {
    padding: var(--spacing-md);
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
}

/* Video Demo */
.video-demo {
    padding: var(--spacing-3xl) 0;
    background: var(--primary-black);
    color: white;
}

.video-demo .section-title {
    color: white !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.video-demo .section-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

.video-wrapper {
    margin: var(--spacing-2xl) 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: black;
}

.video-wrapper iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
}

.video-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.highlight {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.highlight-time {
    font-weight: 700;
    color: var(--accent-blue);
}

.highlight-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Security & Trust Section */
.security-trust {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.security-content {
    margin-top: var(--spacing-2xl);
}

.security-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.security-main {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.soc-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: linear-gradient(145deg, #f8fafb 0%, #ffffff 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 128, 255, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.soc-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.soc-logo {
    height: 60px;
    width: auto;
    flex-shrink: 0;
}

.badge-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.badge-text p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.security-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.security-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.security-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.security-point {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.point-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-blue);
}

.point-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.point-text p {
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design for Security Section */
@media (max-width: 968px) {
    .security-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
}

@media (max-width: 768px) {
    .security-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .security-main {
        gap: var(--spacing-lg);
    }
    
    .soc-badge {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
        padding: var(--spacing-lg);
    }
    
    .soc-logo {
        height: 48px;
    }
    
    .badge-text h3 {
        font-size: 1.25rem;
    }
    
    .badge-text p {
        font-size: 0.875rem;
    }
    
    .security-text {
        text-align: center;
        padding: var(--spacing-lg);
        background: var(--bg-light);
        border-radius: var(--radius-lg);
    }
    
    .security-text h3 {
        font-size: 1.375rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .security-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .security-sidebar {
        gap: var(--spacing-md);
    }
    
    .security-point {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
        background: white;
        border-radius: var(--radius-md);
        border: 1px solid rgba(0, 128, 255, 0.08);
    }
    
    .point-icon {
        margin: 0 auto var(--spacing-sm);
        width: 48px;
        height: 48px;
    }
    
    .point-text h4 {
        font-size: 1rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .point-text p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .soc-badge {
        padding: var(--spacing-md);
    }
    
    .security-text {
        padding: var(--spacing-md);
    }
    
    .security-text h3 {
        font-size: 1.25rem;
    }
    
    .security-point {
        padding: var(--spacing-sm);
    }
    
    .point-icon {
        width: 40px;
        height: 40px;
    }
}

/* Case Studies */
.case-studies {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.case-study-card {
    padding: var(--spacing-xl);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

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

.case-study-metric {
    margin-bottom: var(--spacing-lg);
}

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

.case-study-metric .metric-description {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.case-study-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-black);
}

.case-study-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.case-study-results {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.result-item {
    font-size: 0.875rem;
}

.result-item strong {
    color: var(--primary-black);
}

/* Bank Coverage */
.bank-coverage {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-light);
}

.bank-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

.bank-stat {
    text-align: center;
    padding: var(--spacing-xl);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.stat-icon svg {
    color: var(--accent-blue);
}

.bank-stat h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-black);
}

.bank-stat p {
    color: var(--text-muted);
    line-height: 1.6;
}

.bank-features {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-xl);
}

.bank-features h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    color: var(--primary-black);
}

.bank-types-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.bank-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-lg);
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 128, 255, 0.08);
    text-align: center;
    font-weight: 600;
    color: var(--primary-black);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bank-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0080ff, #00d4ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bank-type:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 128, 255, 0.12);
}

.bank-type:hover::before {
    opacity: 1;
}

.bank-type-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: #0080ff;
    transition: all 0.3s ease;
}

.bank-type:hover .bank-type-icon {
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.15) 0%, rgba(0, 212, 255, 0.15) 100%);
    transform: scale(1.1);
}

.bank-type span {
    font-size: 0.95rem;
    line-height: 1.4;
}

.coverage-note {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Bank Types */
@media (max-width: 1200px) {
    .bank-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .bank-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .bank-type {
        padding: var(--spacing-md);
    }
    
    .bank-type-icon {
        width: 40px;
        height: 40px;
    }
}

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

/* Bank Types Section */
.bank-types {
    padding: var(--spacing-3xl) 0;
    background: white;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
}

.contact-info-card,
.contact-form-card {
    padding: var(--spacing-2xl);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.contact-info-card h3,
.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-black);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--accent-blue);
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    color: var(--primary-black);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-muted);
}

.contact-item a {
    color: var(--accent-blue);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.contact-form input,
.contact-form textarea {
    padding: var(--spacing-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.1);
}

/* Schedule Demo Section */
.schedule-demo {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.demo-content {
    margin-top: var(--spacing-2xl);
    text-align: center;
}

.demo-cta {
    margin-bottom: var(--spacing-2xl);
}

.demo-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 128, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 128, 255, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 128, 255, 0.12);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0080ff;
    border: 1px solid rgba(0, 128, 255, 0.15);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.15) 0%, rgba(0, 212, 255, 0.15) 100%);
    border-color: rgba(0, 128, 255, 0.25);
}

.benefit-content {
    flex: 1;
}

.benefit-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.benefit-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Demo Section */
@media (max-width: 768px) {
    .demo-benefits {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .benefit-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }
    
    .benefit-icon {
        width: 48px;
        height: 48px;
    }
    
    .benefit-content h4 {
        font-size: 1.125rem;
        text-align: center;
    }
    
    .benefit-content p {
        text-align: center;
        font-size: 0.95rem;
    }
}

/* Responsive Updates */
@media (max-width: 768px) {
    .workflow-step {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .case-study-results {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-item {
        min-width: 200px;
        padding: 1rem;
    }
    
    .partner-logo {
        width: 120px;
        height: 80px;
    }
    
    .partner-item h4 {
        font-size: 1rem;
    }
    
    .partner-item p {
        font-size: 0.8rem;
    }
}

/* Partners Grid (Static Layout) */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-xl) var(--spacing-lg);
    margin-top: var(--spacing-xl);
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: var(--spacing-lg);
}

.partners-grid .partner-logo {
    width: 140px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.partners-grid .partner-logo:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 128, 255, 0.15);
    border-color: rgba(0, 128, 255, 0.2);
}

.partners-grid .partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 128, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.partners-grid .partner-logo:hover::before {
    left: 100%;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .partners-grid .partner-logo:hover {
        transform: none;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        border-color: #e9ecef;
    }
    
    .partners-grid .partner-logo::before {
        display: none;
    }
    
    .partners-grid .partner-logo:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

.partners-grid .partner-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}


/* Large Desktop */
@media (max-width: 1400px) {
    .partners-grid {
        max-width: 1000px;
        gap: var(--spacing-lg) var(--spacing-md);
    }
}

/* Desktop/Large Tablet */
@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 900px;
        gap: var(--spacing-lg) var(--spacing-md);
        padding: var(--spacing-md);
    }
    
    .partners-grid .partner-logo {
        width: 130px;
        height: 85px;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
        padding: var(--spacing-sm);
        max-width: 700px;
    }
    
    .partners-grid .partner-logo {
        width: 120px;
        height: 80px;
        padding: var(--spacing-sm);
    }
}

/* Large Mobile */
@media (max-width: 700px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md) var(--spacing-sm);
        max-width: 500px;
    }
    
    .partners-grid .partner-logo {
        width: 140px;
        height: 90px;
        padding: var(--spacing-sm);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
        padding: var(--spacing-xs);
        max-width: 400px;
    }
    
    .partners-grid .partner-logo {
        width: 120px;
        height: 80px;
        padding: var(--spacing-xs);
        border-radius: var(--radius-sm);
    }
    
    .partners-grid .partner-logo:hover {
        transform: scale(1.02) translateY(-1px);
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xs);
        max-width: 320px;
    }
    
    .partners-grid .partner-logo {
        width: 100px;
        height: 70px;
        padding: var(--spacing-xs);
    }
}

/* Form Integration Styles */
.form-message {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    transition: var(--transition-base);
}

.form-message.success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.btn-loading::after {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form field text color - keep black text */
.form-group input,
.form-group textarea {
    color: #000000 !important;
}

/* Restore original focus styling with black text */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.1);
    color: #000000 !important;
}

/* Form validation styles - simplified */
.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #dc2626;
    color: #000000 !important;
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
    border-color: #16a34a;
    color: #000000 !important;
}

/* resize contact info card based on the content inside*/
.resize {
    align-self: start;
}

/* eliminate increment/decrement arrows on numeric inputs */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}