/* Root Variables - Standardized Design System */
:root {
    /* Colors */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    --accent-color: #f59e0b;
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --border-color: #e2e8f0;
    
    /* Shadows - Consistent elevation system */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Gradients - Consistent brand gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    /* Animation System - Standardized timing and easing */
    --duration-fast: 0.2s;
    --duration-normal: 0.3s;
    --duration-slow: 0.5s;
    --duration-slower: 0.8s;
    --easing-standard: cubic-bezier(0.4, 0, 0.2, 1);
    --easing-decelerate: cubic-bezier(0, 0, 0.2, 1);
    --easing-accelerate: cubic-bezier(0.4, 0, 1, 1);
    --easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Spacing System - Consistent spacing scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius System */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--background-white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container.team-container {
    max-width: 1400px;
}

/* Standardized Animation Library */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-2rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(2rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-0.5rem);
    }
    60% {
        transform: translateY(-0.25rem);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.5rem);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
    }
}

/* Modern Hero Animations */
@keyframes gradientShift {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    33% {
        transform: rotate(120deg) scale(1.1);
    }
    66% {
        transform: rotate(240deg) scale(0.95);
    }
}

@keyframes floatingParticles {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        transform: translateY(-20px) translateX(-5px);
    }
    75% {
        transform: translateY(-10px) translateX(10px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        text-shadow: 0 4px 30px rgba(255, 255, 255, 0.1), 0 8px 40px rgba(0, 0, 0, 0.3);
    }
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 0.95;
        transform: translateY(0);
    }
}

@keyframes statsFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonsFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes scrollIndicatorBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Header - Standardized */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-md);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all var(--duration-normal) var(--easing-standard);
}

header.scrolled {
    padding: var(--space-sm) 0;
    box-shadow: var(--shadow-lg);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeInDown var(--duration-slower) var(--easing-decelerate);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--duration-normal) var(--easing-standard);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--duration-normal) var(--easing-standard);
    animation: float 3s ease-in-out infinite;
}

.logo-icon:hover {
    transform: rotate(360deg) scale(1.05);
    box-shadow: var(--shadow-xl);
    animation: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 1rem;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--duration-normal) var(--easing-standard);
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left var(--duration-slow);
}

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: var(--background-light);
    transform: translateY(-2px);
}

.investor-link {
    background: var(--gradient-secondary) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 2rem !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-md) !important;
    animation: pulse 2s infinite;
}

.investor-link:hover {
    background: var(--gradient-accent) !important;
    transform: translateY(-3px) !important;
    box-shadow: var(--shadow-lg) !important;
    animation: none;
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--duration-normal) var(--easing-standard);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left var(--duration-slow);
}

.cta-button:hover::before {
    left: 100%;
}

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

/* Full-Page Hero Banner with Modern Visuals */
.hero {
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated Gradient Background */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    animation: gradientShift 20s ease-in-out infinite;
}

/* Floating Particles */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.7), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: floatingParticles 40s linear infinite;
    opacity: 0.8;
}

.hero .container {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    animation: heroContentFadeIn 2s ease-out;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 30%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: subtitleFadeIn 2s ease-out 0.5s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 4rem 0;
    flex-wrap: wrap;
    animation: statsFadeIn 2s ease-out 1s both;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 2.5rem;
    border-radius: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: #1a1a1a;
}

.hero-stat:hover {
    transform: translateY(-10px) scale(1.08);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 1);
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease-in-out;
}

.hero-stat:hover::before {
    left: 100%;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: none;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: buttonsFadeIn 2s ease-out 1.5s both;
}



/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    animation: scrollIndicatorBounce 2s ease-in-out infinite;
    z-index: 10;
    cursor: pointer;
}

.scroll-arrow {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: arrowBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.scroll-indicator:hover {
    color: white;
    transform: translateX(-50%) scale(1.1);
}

/* Standardized Button System */
.btn-primary, .btn-primary-white-background, .btn-secondary {
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all var(--duration-normal) var(--easing-standard);
    border: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

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

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

/* Features Section - Standardized */
.features {
    padding: var(--space-3xl) 0;
    background: var(--background-light);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(37, 99, 235, 0.03) 50%, transparent 100%);
}

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

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-3xl);
    color: var(--text-dark);
    font-weight: 800;
    position: relative;
    animation: fadeInUp var(--duration-slower) var(--easing-decelerate);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

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

.feature-card {
    background: var(--background-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all var(--duration-slow) var(--easing-standard);
    animation: fadeInUp var(--duration-slower) var(--easing-decelerate);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left var(--duration-slow);
}

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

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

/* Staggered Animation Delays - Standardized */
.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.5s;
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    font-size: 2.5rem;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: all var(--duration-normal) var(--easing-standard);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-xl);
}

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

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--background-white);
    padding: 8rem 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--background-light);
    padding: 3rem;
    border-radius: 1.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
    border: 1px solid var(--border-color);
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
    font-weight: bold;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-left: 1.5rem;
}

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

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
}

.awards-section {
    text-align: center;
    background: var(--gradient-primary);
    padding: 4rem;
    border-radius: 1.5rem;
    color: white;
    box-shadow: var(--shadow-2xl);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.awards-section h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: white;
    font-weight: 800;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.award-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-xl);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s infinite;
}

.award-item:nth-child(2) .award-icon {
    animation-delay: 0.2s;
}

.award-item:nth-child(3) .award-icon {
    animation-delay: 0.4s;
}

.award-item:nth-child(4) .award-icon {
    animation-delay: 0.6s;
}

.award-item span {
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

/* Investment Opportunity Section */
.investment-opportunity {
    background: linear-gradient(135deg, var(--background-light) 0%, #e2e8f0 100%);
    padding: 8rem 0;
    position: relative;
}

.investment-opportunity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(37,99,235,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

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

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.investment-highlight {
    background: var(--background-white);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border-left: 5px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.investment-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.6s;
}

.investment-highlight:hover::before {
    left: 100%;
}

.investment-highlight:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-left-color: var(--secondary-color);
}

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

.investment-highlight p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
}

.investment-metrics {
    background: var(--background-white);
    padding: 4rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-2xl);
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    border: 1px solid var(--border-color);
}

.metrics-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.metric-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--background-light), #e2e8f0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

.metric-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-xl);
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.75rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.metric-card:hover .metric-number {
    color: white;
}

.metric-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.metric-card:hover .metric-label {
    color: white;
}

.metric-growth {
    font-size: 0.875rem;
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.metric-card:hover .metric-growth {
    color: rgba(255, 255, 255, 0.9);
}

.investment-cta {
    text-align: center;
    background: var(--background-white);
    padding: 4rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-2xl);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    border: 1px solid var(--border-color);
}

.investment-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
}

.investment-cta p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-lg);
}

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

.cta-buttons .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(44, 204, 211, 0.05) 0%, transparent 50%);
}

.stats .container {
    position: relative;
    z-index: 1;
    max-width: 1600px;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.stat-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.08);
}

.stat-item:nth-child(1) {
    animation: fadeInUp 0.6s ease-out;
}

.stat-item:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.stat-item:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.stat-item:nth-child(4) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 12px;
}

.stat-description {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.4;
}

/* Pricing Section */
.pricing {
    background: white;
    padding: 100px 0;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}
.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}
.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}
.pricing-card.featured:before {
    content: "Mais Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}
.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e293b;
}
.pricing-card .price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.pricing-card .period {
    color: var(--text-light);
    margin-bottom: 30px;
}
.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}
.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: var(--text-light);
}
.pricing-features li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 15px;
}

/* Team Section */
.team {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(44, 204, 211, 0.03) 0%, transparent 50%);
}

.team .container {
    position: relative;
    z-index: 1;
    max-width: 1800px;
}

.team-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-header p {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
}



/* Team Grid - Elegant Design */
.team-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 20px 40px 20px;
    justify-content: center;
    align-items: flex-start;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.team-grid::-webkit-scrollbar {
    height: 8px;
}

.team-grid::-webkit-scrollbar-track {
    background: rgba(226, 232, 240, 0.3);
    border-radius: 4px;
}

.team-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

.team-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #1d4ed8, var(--primary-color));
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex: 0 0 300px;
    width: 300px;
    min-width: 300px;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.02) 0%, 
        rgba(44, 204, 211, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.04);
    border-color: rgba(37, 99, 235, 0.1);
}

.member-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.member-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 100%);
    opacity: 0.08;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.member-avatar::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 70%);
    transform: rotate(-45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.team-member:hover .member-avatar {
    transform: scale(1.08);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 
        0 12px 32px rgba(37, 99, 235, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.team-member:hover .member-avatar::before {
    opacity: 0.15;
}

.team-member:hover .member-avatar::after {
    transform: rotate(-45deg) translateX(100%);
}

.member-info {
    width: 100%;
    max-width: 260px;
    position: relative;
    z-index: 2;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.member-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
}

.member-role::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--secondary-color));
    border-radius: 1px;
    opacity: 0.6;
}

.member-bio {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* FAQ Section */
.faq {
    background: white;
    padding: 100px 0;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}
.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    padding: 0 0 20px 0;
    color: var(--text-light);
    line-height: 1.6;
    display: none;
}
.faq-answer.active {
    display: block;
}

/* Contact Section */
.contact {
    background: var(--background-light);
    padding: 100px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}
.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #1e293b;
}
.contact-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}
.contact-details h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #1e293b;
}
.contact-details p {
    color: var(--text-light);
    margin: 0;
}
.demo-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.demo-form h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #1e293b;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e293b;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: transform 0.3s;
}
.submit-btn:hover {
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: var(--background-light);
    padding: 100px 0;
    text-align: center;
}
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e293b;
}
.cta-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 30px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-section h3 {
    margin-bottom: 20px;
    color: #60a5fa;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 10px;
}
.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-section ul li a:hover {
    color: #60a5fa;
}
.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
    color: #94a3b8;
}
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 18px;
}
.social-links a {
    color: #60a5fa;
    font-size: 1.7rem;
    transition: color 0.2s;
}
.social-links a:focus {
    outline: 3px solid #60a5fa;
    outline-offset: 2px;
}
.social-links a:hover {
    color: #fff;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1e293b;
    color: #fff;
    padding: 20px 10px 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    font-size: 1rem;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
}
.cookie-consent button {
    margin-left: 20px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-consent button:focus {
    outline: 3px solid #60a5fa;
    outline-offset: 2px;
}

/* Botão Voltar ao Topo */
#backToTop {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(100px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
#backToTop.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
#backToTop:hover {
    background: linear-gradient(135deg,#1d4ed8,#1e40af);
    transform: translateY(-3px);
}
#backToTop:active {
    transform: translateY(0);
}

/* Tab Navigation (Simulation Section) */
.tabs-container {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.tab-navigation {
    display: flex;
    background: var(--background-light);
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
}
.tab-button {
    flex: 1;
    min-width: 200px;
    padding: 20px 15px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    outline: none;
}

.tab-button:focus {
    outline: none;
    box-shadow: none;
}
.tab-button:hover {
    background: rgba(44, 204, 211, 0.05);
}
.tab-button.active {
    background: #fff;
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}
.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}
.tab-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tab-icon svg {
    width: 28px;
    height: 28px;
    transition: fill 0.3s ease;
}
.tab-button:not(.active) .tab-icon svg path {
    fill: var(--secondary-color);
}
.tab-button.active .tab-icon svg path {
    fill: var(--primary-color);
}

/* Tab Content */
.tabs-container {
    position: relative;
    margin-top: 60px;
}

.tab-content {
    display: none;
    padding: 60px 40px 40px;
    min-height: 500px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tab-content.active {
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.4s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.feature-text h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}
.feature-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
}
.feature-list {
    list-style: none;
    margin-bottom: 30px;
}
.feature-list li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}
.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}
.feature-visual {
    background: var(--background-light);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}
.mockup-window {
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
}
.mockup-header {
    background: #f1f5f9;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}
.mockup-dots {
    display: flex;
    gap: 6px;
}
.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}
.mockup-content {
    padding: 20px;
}
.mockup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mockup-input {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
}
.mockup-button {
    background: var(--primary-color);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.analytics-card {
    background: var(--background-light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}
.analytics-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}
.analytics-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero {
        min-height: 600px;
        padding: 2rem 0;
    }
    .hero h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: 1.5rem;
    }
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
        margin-bottom: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-primary-white-background,
    .hero-buttons .btn-secondary {
        min-width: 280px;
    }
    .hero-stats {
        gap: 1rem;
        margin: 2rem 0;
    }
    .hero-stat {
        min-width: 140px;
        padding: 1.5rem 1.5rem;
    }
    .simulation,
    .features,
    .team,
    .contact,
    .cta-section {
        padding: 40px 0;
    }
    .simulation h1 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .simulation-grid,
    .feature-content,
    .features-grid,
    .team-grid,
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        text-align: center;
    }
    .tab-navigation {
        flex-wrap: wrap;
    }
    .tab-button {
        min-width: 150px;
        padding: 15px 10px;
        font-size: 13px;
    }
    .tab-content {
        padding: 20px;
    }
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat {
        padding: 15px 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .investment-metrics {
        padding: 40px 20px;
    }
    
    .metrics-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .investment-cta {
        padding: 40px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .team-grid {
        gap: 30px;
        padding: 15px 15px 35px 15px;
        justify-content: flex-start;
    }
    
    .team-member {
        padding: 35px 25px;
        flex: 0 0 260px;
        width: 260px;
        min-width: 260px;
    }
    
    .member-avatar {
        width: 120px;
        height: 120px;
        font-size: 1.8rem;
        margin-bottom: 22px;
    }
    
    .member-info h3 {
        font-size: 1.25rem;
    }
    
    .member-role {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .member-bio {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

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

    .team-header h2 {
        font-size: 2.2rem;
    }

    .team-header p {
        font-size: 1.1rem;
    }

    .team .container {
        padding: 0 10px;
    }
    
    .team-grid {
        gap: 20px;
        padding: 10px 10px 30px 10px;
    }
    
    .team-member {
        padding: 30px 20px;
        flex: 0 0 220px;
        width: 220px;
        min-width: 220px;
    }

    .member-avatar {
        width: 100px;
        height: 100px;
        font-size: 1.5rem;
        margin-bottom: 18px;
    }
    
    .member-info h3 {
        font-size: 1.1rem;
    }
    
    .member-role {
        font-size: 0.75rem;
        letter-spacing: 0.8px;
        margin-bottom: 14px;
    }
    
    .member-bio {
        font-size: 0.8rem;
        line-height: 1.4;
        -webkit-line-clamp: 2;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.feature-card {
    animation: fadeInUp 0.6s ease-out;
}
.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}
.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}
a:focus, button:focus, .cta-button:focus, .btn-primary:focus, .btn-secondary:focus, .submit-btn:focus {
    outline: 3px solid #60a5fa;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px #bae6fd;
}

/* Loading states */
body.loading {
    overflow: hidden;
}

body.loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: 9999;
    animation: fadeOut 1s ease-out 1s forwards;
}

body.loading::after {
    content: '⚖️';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    z-index: 10000;
    animation: bounce 1s infinite, fadeOut 1s ease-out 1s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Enhanced form styling */
.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    background: white;
    padding: 0 0.5rem;
    font-weight: 500;
}

.form-group.focused label,
.form-group.has-value label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    font-size: 1rem;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    width: 100%;
    position: relative;
    overflow: hidden;
}

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

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

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

/* Enhanced Back to Top button */
#backToTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gradient-primary);
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    z-index: 1000;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Cookie consent styling */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background-white);
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    z-index: 1000;
    flex-wrap: wrap;
}

.cookie-consent span {
    color: var(--text-medium);
    font-size: 0.875rem;
    line-height: 1.5;
}

.cookie-consent button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.cookie-consent button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus, 
a:focus, 
input:focus, 
textarea:focus, 
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}