﻿/* ===================================================================
   ENTERPRISE FINTECH LANDING PAGE - PRODUCTION READY
   Color scheme driven by TenantContext (--tenant-primary, --tenant-secondary)
   Desktop-first, wide-screen optimized (1920px+)
   =================================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Tenant colors injected dynamically */
    --tenant-primary: #0066cc;
    --tenant-secondary: #00509e;
    --tenant-accent: #003d7a;
    
    /* Fixed design tokens */
    --white: #ffffff;
    --black: #1a1f36;
    --gray-100: #f7fafc;
    --gray-200: #edf2f7;
    --gray-600: #718096;
    --gray-900: #1a202c;
    
    /* Typography */
    --font-primary: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ===== BASE RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===== TOP HEADER - LOGO ONLY ===== */
.top-header {
    background: var(--white);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.header-logo {
    height: 60px;
    max-width: 100%;
    /*transition: transform 0.3s ease;*/
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease;
    will-change: transform; /* Optimize for transform animations */
    transform: translateZ(0); /* Force GPU acceleration */
    backface-visibility: hidden;
}

    .header-logo:hover {
        transform: scale(1.1);
       /* transform: translateY(-8px) translateZ(0);*/
    }

.header-contact-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.contact-item-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease;
    will-change: transform; /* Optimize for transform animations */
    transform: translateZ(0); /* Force GPU acceleration */
    backface-visibility: hidden;
}

    .contact-item-modern:hover {
        transform: scale(1.1);
       /* transform: translateY(-8px) translateZ(0);
        border-color: var(--tenant-primary);*/
    }

        .contact-item-modern:hover .contact-icon {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transform: scale(1.1);
        }

.contact-icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--tenant-primary), var(--tenant-secondary));
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.contact-info {
    text-align: left;
}

.contact-info small {
    display: block;
    font-size: 10px;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-info strong {
    display: block;
    font-size: 14px;
    color: var(--gray-900);
    font-weight: 600;
}

.contact-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--tenant-primary), var(--tenant-secondary));
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .btn-primary-modern:hover {        
        transform: translateY(-2px) scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        color: var(--white);
    }

.btn-primary-modern i {
    transition: transform 0.3s ease;
}

.btn-primary-modern:hover i {
    transform: translateX(4px);
}

/* ===== HERO SECTION - EXTRAORDINARY ANIMATED BACKGROUND WITH EXTRA LAYERS ===== */
.hero-section {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--tenant-primary) 0%, var(--tenant-secondary) 50%, var(--tenant-accent) 100%);
}

/* Layer 1: Animated Gradient Base */
.hero-gradient-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, var(--tenant-primary), var(--tenant-secondary), var(--tenant-accent), var(--tenant-primary));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.9;
    z-index: 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Layer 2: Moving Pattern with Radial Gradients */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes patternMove {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

/* Layer 3: Floating Particles (Pseudo-element Overlay) */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   /* background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);*/
    animation: particleFloat 25s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
    66% {
        transform: translate(-20px, 40px) scale(0.9);
        opacity: 0.4;
    }
}

/* Layer 4: Mesh Gradient Overlay (Extra Creative Layer) */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        linear-gradient(-45deg, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    background-size: 200% 200%;
    animation: meshMove 30s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes meshMove {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

/* Layer 5: Pulsing Light Spots (Dynamic Glow) */
.hero-gradient-animated::before,
.hero-gradient-animated::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 1;
}

.hero-gradient-animated::before {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero-gradient-animated::after {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    animation-delay: 4s;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.4;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.company-highlight {
    display: block;
    font-size: 58px;
    font-weight: 800;
  /*  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;*/
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 550px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background: var(--white);
    color: var(--tenant-primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    color: var(--tenant-primary);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.hero-image-container {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: gentleFloat 6s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    z-index: 3;
}

/* MOUSEOVER EFFECTS for Floating Cards */
/*.floating-card:hover {
    transform: translateY(-20px) scale(1.08) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.98));
    animation-play-state: paused;
}*/

.floating-card:hover i {
    transform: scale(1.5) rotate(5deg);
    color: var(--tenant-secondary);
}

.floating-card:hover strong {
    color: var(--tenant-primary);
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    25% {
        transform: translateY(-15px) rotate(1deg);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    }
    50% {
        transform: translateY(-8px) rotate(-0.5deg);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    }
    75% {
        transform: translateY(-12px) rotate(0.5deg);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    }
}

.floating-card i {
    font-size: 28px;
    color: var(--tenant-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-card div {
    text-align: left;
}

.floating-card small {
    display: block;
    font-size: 11px;
    color: var(--gray-600);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.floating-card strong {
    display: block;
    font-size: 16px;
    color: var(--gray-900);
    font-weight: 700;
    transition: all 0.3s ease;
}

.card-1 {
    top: -6%;
    left: 9%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: -12%;
    animation-delay: 4s;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--tenant-primary), var(--tenant-secondary));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--tenant-primary);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--tenant-primary), var(--tenant-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon-wrapper i {
    font-size: 32px;
    color: var(--white);
}

.feature-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ===== TRUST SECTION - PROFESSIONAL REDESIGN ===== */
.trust-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.trust-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--tenant-primary), var(--tenant-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.trust-icon-wrapper i {
    font-size: 36px;
    color: var(--white);
}

.trust-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.trust-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ===== FOOTER - COMPANY NAME ONLY ===== */
.landing-footer-modern {
    position: relative;
    background: linear-gradient(135deg, var(--gray-900), var(--black));
    color: var(--white);
    padding: 80px 0 40px;
    overflow: hidden;
}

.footer-brand-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 40px;
    }
    
    .company-highlight {
        font-size: 46px;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .header-contact-modern {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .contact-divider {
        display: none;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .company-highlight {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}







/* ----------------------------------------------
 * Generated by Animista on 2026-2-2 19:53:30
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation focus-in-expand
 * ----------------------------------------
 */
@-webkit-keyframes focus-in-expand {
    0% {
        letter-spacing: -0.5em;
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

/* ----------------------------------------------
 * Generated by Animista on 2026-2-2 19:58:35
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation focus-in-expand
 * ----------------------------------------
 */
@-webkit-keyframes focus-in-expand {
    0% {
        letter-spacing: -0.5em;
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
        visibility: hidden; /* Add this */
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
        visibility: visible; /* Add this */
    }
}

@keyframes focus-in-expand {
    0% {
        letter-spacing: -0.5em;
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
        visibility: hidden; /* Add this */
    }

    100% {        
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
        visibility: visible; /* Add this */
    }
}

.focus-in-expand {
    /* Hide initially */
    opacity: 0;
    visibility: hidden;   

    -webkit-animation: focus-in-expand 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1500ms both;
    animation: focus-in-expand 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1500ms both;
}