/* Material Design 3 - Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Material Design 3 Color System */
    --md-sys-color-primary: #0EA5E9;
    --md-sys-color-on-primary: #FFFFFF;
    --md-sys-color-primary-container: #E0F2FE;
    --md-sys-color-on-primary-container: #0C4A6E;
    
    --md-sys-color-secondary: #0284C7;
    --md-sys-color-on-secondary: #FFFFFF;
    --md-sys-color-secondary-container: #BAE6FD;
    --md-sys-color-on-secondary-container: #075985;
    
    --md-sys-color-surface: #FFFFFF;
    --md-sys-color-on-surface: #1E293B;
    --md-sys-color-surface-variant: #F8FAFC;
    --md-sys-color-on-surface-variant: #64748B;
    
    --md-sys-color-background: #FFFFFF;
    --md-sys-color-on-background: #1E293B;
    
    --md-sys-color-outline: #E2E8F0;
    --md-sys-color-outline-variant: #F1F5F9;
    
    /* Elevation colors */
    --md-sys-color-surface-1: #F8FAFC;
    --md-sys-color-surface-2: #F1F5F9;
    --md-sys-color-surface-3: #E2E8F0;
    
    /* Typography scale */
    --md-sys-typescale-display-large: 3.5rem;
    --md-sys-typescale-display-medium: 2.5rem;
    --md-sys-typescale-display-small: 2rem;
    --md-sys-typescale-headline-large: 2rem;
    --md-sys-typescale-headline-medium: 1.75rem;
    --md-sys-typescale-headline-small: 1.5rem;
    --md-sys-typescale-title-large: 1.375rem;
    --md-sys-typescale-title-medium: 1.125rem;
    --md-sys-typescale-body-large: 1rem;
    --md-sys-typescale-body-medium: 0.875rem;
    --md-sys-typescale-label-large: 0.875rem;
    
    /* Spacing */
    --md-sys-spacing-xs: 0.25rem;
    --md-sys-spacing-sm: 0.5rem;
    --md-sys-spacing-md: 1rem;
    --md-sys-spacing-lg: 1.5rem;
    --md-sys-spacing-xl: 2rem;
    --md-sys-spacing-xxl: 3rem;
    
    /* Border radius */
    --md-sys-shape-corner-extra-small: 0.25rem;
    --md-sys-shape-corner-small: 0.5rem;
    --md-sys-shape-corner-medium: 0.75rem;
    --md-sys-shape-corner-large: 1rem;
    --md-sys-shape-corner-extra-large: 1.5rem;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--md-sys-color-on-background);
    background-color: var(--md-sys-color-background);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    font-family: 'DM Sans', sans-serif;
    color: #6B7280;
    line-height: 1.75;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1F2937;
}

/* Specific heading styles */
h1 {
    font-weight: 700;
}

h2 {
    font-weight: 600;
}

h3 {
    font-weight: 600;
    color: #374151;
}

h4 {
    font-weight: 500;
    color: #374151;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--md-sys-spacing-md);
}

/* Material Design Elevations */
.md-elevation-1 {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.md-elevation-2 {
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.md-elevation-3 {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Navigation - Modern Trendy Design */
/* Enhanced Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), 0 4px 32px rgba(0, 0, 0, 0.03);
}

/* Navbar gradient overlay */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(14, 165, 233, 0.02) 0%, 
        rgba(255, 255, 255, 0) 20%, 
        rgba(255, 255, 255, 0) 80%, 
        rgba(2, 132, 199, 0.02) 100%);
    pointer-events: none;
}

.nav-blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(248, 251, 255, 0.95), 
        rgba(238, 246, 255, 0.8));
    z-index: -1;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--md-sys-spacing-md) 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo a:hover {
    transform: translateY(-2px) scale(1.02);
}

.logo a:hover .logo-icon {
    animation: logoRotate 0.6s ease-in-out;
}

@keyframes logoRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.1); }
    100% { transform: rotate(0deg) scale(1); }
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo a:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
}

.logo-icon svg {
    filter: drop-shadow(0 2px 4px rgba(14, 165, 233, 0.2));
    transition: filter 0.3s;
}

.logo a:hover .logo-icon svg {
    filter: drop-shadow(0 4px 8px rgba(14, 165, 233, 0.3));
}

.logo-text {
    font-size: 1.375rem;
    font-weight: 800;
    color: #1F2937;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    transition: all 0.3s;
}

/* Gradient text on hover */
.logo a:hover .logo-text {
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #4B5563;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    overflow: hidden;
}

/* Nav link hover effect */
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(2, 132, 199, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 12px;
}

/* Animated underline */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #0EA5E9, #0284C7);
    border-radius: 1px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--md-sys-color-primary);
    background: rgba(14, 165, 233, 0.08);
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-icon {
    font-size: 18px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.nav-link:hover {
    color: var(--md-sys-color-primary);
    transform: translateY(-1px);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.5);
    list-style: none;
    padding: 8px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    margin-top: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 10px;
    margin-bottom: 4px;
}

.dropdown-menu a:last-child {
    margin-bottom: 0;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(2, 132, 199, 0.1) 100%);
    color: #111827;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.15);
}

.dropdown-icon-wrapper {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(2, 132, 199, 0.08) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-icon-wrapper .material-icons {
    font-size: 20px;
    color: var(--md-sys-color-primary);
    transition: all 0.3s ease;
}

.dropdown-menu a:hover .dropdown-icon-wrapper {
    background: linear-gradient(135deg, var(--md-sys-color-primary) 0%, var(--md-sys-color-secondary) 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.dropdown-menu a:hover .dropdown-icon-wrapper .material-icons {
    color: white;
    transform: scale(1.1);
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1F2937;
}

.dropdown-desc {
    font-size: 0.8125rem;
    color: #6B7280;
    font-family: 'DM Sans', sans-serif;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(2, 132, 199, 0.1) 100%);
    color: #111827;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.15);
}

.nav-divider {
    width: 1px;
    height: 24px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 8px;
}

.nav-login {
    gap: 6px;
}

.nav-login .material-icons {
    font-size: 18px;
}

.nav-cta-btn {
    background: linear-gradient(135deg, var(--md-sys-color-primary), var(--md-sys-color-secondary));
    color: white !important;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-cta-btn::before {
    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: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s;
}

.nav-cta-btn:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.nav-cta-btn .material-icons {
    font-size: 18px;
    transition: transform 0.3s;
}

.nav-cta-btn:hover .material-icons {
    transform: translateX(2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--md-sys-spacing-xs);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--md-sys-color-on-surface);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section - Enhanced Premium Design */
.hero {
    padding: calc(80px + var(--md-sys-spacing-xxl)) 0 var(--md-sys-spacing-xxl);
    background: linear-gradient(135deg, #F8FBFF 0%, #EEF6FF 50%, #E8F3FF 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Animated background gradient orbs */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(2, 132, 199, 0.06) 0%, transparent 50%);
    animation: floatBackground 30s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.03) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes floatBackground {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-50px, -50px) rotate(120deg); }
    66% { transform: translate(50px, -30px) rotate(240deg); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 var(--md-sys-spacing-md);
    padding-bottom: 60px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--md-sys-spacing-xl);
    color: #1F2937;
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

/* Animated underline */
.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #0EA5E9, #0284C7);
    border-radius: 3px;
    animation: expandWidth 1s ease-out 0.5s forwards;
    transform-origin: left;
    transform: scaleX(0);
}

@keyframes expandWidth {
    to { transform: scaleX(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-gradient {
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 50%, #0EA5E9 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    display: inline-block;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Glow effect on gradient text */
.text-gradient::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #0EA5E9, #0284C7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
}

.hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.375rem;
    color: #4B5563;
    margin-bottom: var(--md-sys-spacing-xxl);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: -0.01em;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    position: relative;
}

/* Highlight important words */
.hero-subtitle strong {
    color: #1F2937;
    font-weight: 600;
    position: relative;
}

.hero-subtitle strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(14, 165, 233, 0.3);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.hero:hover .hero-subtitle strong::after {
    transform: scaleX(1);
}

.cta-buttons {
    display: flex;
    gap: var(--md-sys-spacing-lg);
    margin-bottom: var(--md-sys-spacing-xl);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Enhanced app badges */
.app-badge {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.app-badge::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;
}

.app-badge:hover::before {
    left: 100%;
}

.app-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.app-badge img {
    height: 52px;
    transition: transform 0.3s;
    display: block;
}

.app-badge:hover img {
    transform: scale(1.05);
}

/* Dashboard Mockup - Enhanced Premium Design */
.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s backwards;
}

.dashboard-mockup {
    background: var(--md-sys-color-surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
    z-index: 5;
    width: 100%;
    max-width: 600px;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Floating browser frame glow */
.dashboard-mockup::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #0EA5E9, #0284C7);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.browser-bar {
    background: var(--md-sys-color-surface-1);
    padding: var(--md-sys-spacing-md);
    display: flex;
    align-items: center;
    gap: var(--md-sys-spacing-md);
    border-bottom: 1px solid var(--md-sys-color-outline-variant);
}

.browser-dots {
    display: flex;
    gap: var(--md-sys-spacing-xs);
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--md-sys-color-outline);
}

.browser-dots span:first-child {
    background: #FF5F57;
}

.browser-dots span:nth-child(2) {
    background: #FFBD2E;
}

.browser-dots span:last-child {
    background: #28CA42;
}

.browser-url {
    flex: 1;
    text-align: center;
    color: #6B7280;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.dashboard-content {
    display: flex;
    height: 400px;
}

.dashboard-sidebar {
    width: 200px;
    background: var(--md-sys-color-surface-1);
    padding: var(--md-sys-spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--md-sys-spacing-sm);
}

.sidebar-item {
    height: 40px;
    background: var(--md-sys-color-surface-2);
    border-radius: var(--md-sys-shape-corner-small);
}

.sidebar-item.active {
    background: var(--md-sys-color-primary-container);
}

.dashboard-main {
    flex: 1;
    padding: var(--md-sys-spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--md-sys-spacing-lg);
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--md-sys-spacing-md);
}

.mini-card {
    background: var(--md-sys-color-surface-1);
    height: 80px;
    border-radius: var(--md-sys-shape-corner-small);
    border: 1px solid var(--md-sys-color-outline-variant);
}

.chart-area {
    flex: 1;
    background: var(--md-sys-color-surface-1);
    border-radius: var(--md-sys-shape-corner-small);
    border: 1px solid var(--md-sys-color-outline-variant);
}

/* Stats Section - Enhanced Design */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
    color: var(--md-sys-color-on-primary);
    position: relative;
    overflow: hidden;
}

/* Animated background pattern */
.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
}

/* Wave decoration at bottom */
.stats-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80"><path fill="%23ffffff" d="M0,40 C360,80 720,80 1080,40 C1260,20 1380,10 1440,20 L1440,80 L0,80 Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

@keyframes rotateGradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-card {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: default;
}

/* Glow effect on hover */
.stat-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.4), transparent, rgba(255, 255, 255, 0.4));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card:hover::before {
    opacity: 1;
}

/* Icon for each stat */
.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
    position: relative;
}

/* Staggered animation delays */
.stat-card:nth-child(1) .stat-icon { animation-delay: 0s; }
.stat-card:nth-child(2) .stat-icon { animation-delay: 1s; }
.stat-card:nth-child(3) .stat-icon { animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}

/* Underline decoration */
.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.stat-label {
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'DM Sans', sans-serif;
}

/* Sparkle effect */
.stat-card::after {
    content: '✨';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    opacity: 0;
    animation: sparkle 3s ease-in-out infinite;
}

.stat-card:nth-child(1)::after { animation-delay: 0.5s; }
.stat-card:nth-child(2)::after { animation-delay: 1.5s; }
.stat-card:nth-child(3)::after { animation-delay: 2.5s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.8) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

/* Animated counter on load */
.stat-number[data-count] {
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating particles animation */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #0EA5E9, #0284C7);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 20s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 25s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 20s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 28s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 22s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; animation-duration: 25s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; animation-duration: 30s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; animation-duration: 18s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; animation-duration: 24s; }
.particle:nth-child(9) { left: 90%; animation-delay: 16s; animation-duration: 20s; }
.particle:nth-child(10) { left: 95%; animation-delay: 18s; animation-duration: 26s; }

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Trust indicators container */
.hero-trust-container {
    position: absolute;
    bottom: 20px;
    right: 0;
    z-index: 1;
    width: auto;
}

/* Trust indicators */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
    position: relative;
    overflow: hidden;
}

.hero-trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(2, 132, 199, 0.05) 100%);
    pointer-events: none;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.trust-item span:last-child {
    line-height: 1.2;
    text-align: center;
    white-space: pre-line;
}

.trust-item:hover {
    background: rgba(14, 165, 233, 0.08);
    transform: translateY(-2px);
    color: #0EA5E9;
}

.trust-item .material-icons {
    font-size: 24px;
    color: #0EA5E9;
    background: rgba(14, 165, 233, 0.1);
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trust-item:hover .material-icons {
    background: #0EA5E9;
    color: white;
    transform: scale(1.1);
}

.trust-divider {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, transparent 0%, rgba(14, 165, 233, 0.3) 20%, rgba(14, 165, 233, 0.3) 80%, transparent 100%);
    border-radius: 1px;
}

/* Floating UI cards around mockup */
.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: floatCard 6s ease-in-out infinite;
    z-index: 10;
}

.floating-card-1 {
    top: -20px;
    right: -40px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 50px;
    left: -60px;
    animation-delay: 2s;
}

.floating-card-3 {
    top: 50%;
    right: -80px;
    animation-delay: 4s;
    transform: translateY(-50%);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(2deg); }
    75% { transform: translateY(10px) rotate(-2deg); }
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0EA5E9, #0284C7);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.floating-card-icon .material-icons {
    color: white;
    font-size: 24px;
}

.floating-card-text {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.floating-card-subtext {
    font-size: 0.75rem;
    color: #6B7280;
    font-family: 'DM Sans', sans-serif;
}

/* Features Section - Material Design 3 */
.features-section {
    padding: var(--md-sys-spacing-xxl) 0;
    background: var(--md-sys-color-surface);
}

.section-title {
    font-size: var(--md-sys-typescale-display-small);
    text-align: center;
    margin-bottom: var(--md-sys-spacing-md);
    color: var(--md-sys-color-on-surface);
    font-weight: 400;
}

.section-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    color: #6B7280;
    text-align: center;
    margin-bottom: var(--md-sys-spacing-xxl);
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--md-sys-spacing-lg);
}

.feature-card {
    background: var(--md-sys-color-surface);
    padding: var(--md-sys-spacing-xl);
    border-radius: var(--md-sys-shape-corner-large);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--md-sys-color-outline-variant);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--md-sys-color-primary);
    background: var(--md-sys-color-primary-container);
}

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--md-sys-spacing-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--md-sys-color-primary-container);
    border-radius: var(--md-sys-shape-corner-large);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--md-sys-color-primary);
    transform: scale(1.1);
}

.feature-icon .material-icons {
    font-size: 32px;
    color: var(--md-sys-color-primary);
}

.feature-card:hover .feature-icon .material-icons {
    color: var(--md-sys-color-on-primary);
}

.feature-card h3 {
    margin-bottom: var(--md-sys-spacing-md);
    color: var(--md-sys-color-on-surface);
    font-size: var(--md-sys-typescale-title-large);
    font-weight: 500;
}

.feature-card p {
    font-family: 'DM Sans', sans-serif;
    color: #6B7280;
    font-size: 0.9375rem;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* About Sections */
.about-section {
    padding: var(--md-sys-spacing-xxl) 0;
}

.about-section.bg-light {
    background: var(--md-sys-color-surface-variant);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Detailed Features */
.detailed-features {
    padding: var(--md-sys-spacing-xxl) 0;
    background: var(--md-sys-color-surface-variant);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--md-sys-spacing-xxl);
    align-items: center;
    margin-bottom: var(--md-sys-spacing-xxl);
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse .feature-content {
    direction: ltr;
}

.feature-label {
    font-size: 0.75rem;
    color: var(--md-sys-color-primary);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: var(--md-sys-spacing-sm);
    display: inline-block;
    text-transform: uppercase;
}

.feature-content h2 {
    font-size: var(--md-sys-typescale-headline-large);
    margin-bottom: var(--md-sys-spacing-md);
    color: var(--md-sys-color-on-surface);
    font-weight: 400;
}

.feature-content p {
    font-family: 'DM Sans', sans-serif;
    color: #6B7280;
    margin-bottom: var(--md-sys-spacing-lg);
    font-size: 1.0625rem;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-family: 'DM Sans', sans-serif;
    padding: var(--md-sys-spacing-sm) 0;
    color: #4B5563;
    position: relative;
    padding-left: var(--md-sys-spacing-xl);
    font-size: 0.9375rem;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--md-sys-color-primary);
    font-weight: bold;
    font-size: 1.2em;
}

.feature-image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--md-sys-shape-corner-large);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
    width: 100%;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.feature-img:hover {
    transform: scale(1.05);
}

/* FAQs Section */
.faqs-section {
    padding: var(--md-sys-spacing-xxl) 0;
    background: var(--md-sys-color-surface);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: var(--md-sys-spacing-xl);
}

.faq-item {
    margin-bottom: var(--md-sys-spacing-md);
    border: 1px solid var(--md-sys-color-outline-variant);
    border-radius: var(--md-sys-shape-corner-medium);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--md-sys-color-primary);
}

.faq-question {
    width: 100%;
    padding: var(--md-sys-spacing-lg);
    background: var(--md-sys-color-surface);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #1F2937;
    text-align: left;
    transition: all 0.3s;
    letter-spacing: -0.01em;
    line-height: 1.5;
}

.faq-question:hover {
    background: var(--md-sys-color-surface-1);
}

.faq-question.active {
    background: var(--md-sys-color-primary-container);
    color: var(--md-sys-color-on-primary-container);
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--md-sys-color-surface-1);
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    font-family: 'DM Sans', sans-serif;
    padding: var(--md-sys-spacing-lg);
    color: #6B7280;
    line-height: 1.8;
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Mobile Section */
.mobile-section {
    padding: var(--md-sys-spacing-xxl) 0;
    background: var(--md-sys-color-surface-variant);
}

.mobile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--md-sys-spacing-xl);
    margin-top: var(--md-sys-spacing-xl);
}

.mobile-card {
    text-align: center;
    padding: var(--md-sys-spacing-xl);
}

.mobile-card .material-icons {
    font-size: 48px;
    color: var(--md-sys-color-primary);
    margin-bottom: var(--md-sys-spacing-md);
}

.mobile-card h3 {
    color: var(--md-sys-color-on-surface);
    margin-bottom: var(--md-sys-spacing-md);
    font-size: var(--md-sys-typescale-headline-small);
    font-weight: 500;
}

.mobile-card p {
    font-family: 'DM Sans', sans-serif;
    color: #6B7280;
    font-size: 0.9375rem;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* CTA Section - Impressive Design */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(14, 165, 233, 0.1) 0%, rgba(2, 132, 199, 0.2) 100%);
    z-index: 1;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 2;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-badge .material-icons {
    font-size: 18px;
}

.cta-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
}

.cta-highlight {
    background: linear-gradient(to right, #FBBF24, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.375rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.cta-number {
    font-weight: 700;
    font-size: 1.5rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    opacity: 0.95;
}

.cta-feature .material-icons {
    font-size: 20px;
    color: #FBBF24;
}

.cta-buttons-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: white;
    color: #0EA5E9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cta-button .material-icons {
    font-size: 20px;
    transition: transform 0.3s;
}

.cta-button.primary:hover .material-icons {
    transform: translateX(3px);
}

.cta-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.trust-avatars {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid #0EA5E9;
    margin-left: -1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0EA5E9;
}

.avatar:nth-child(1) { background: #FEE2E2; }
.avatar:nth-child(2) { background: #DBEAFE; }
.avatar:nth-child(3) { background: #E0E7FF; }
.avatar:nth-child(4) { background: #FEF3C7; }

.trust-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Floating Elements */
.cta-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card .material-icons {
    font-size: 20px;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 8%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 25%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Ripple Effect */
.button-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: scale(0);
    opacity: 1;
    pointer-events: none;
}

.button-ripple.active {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: var(--md-sys-spacing-xxl) 0 var(--md-sys-spacing-lg);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--md-sys-spacing-xl);
    margin-bottom: var(--md-sys-spacing-xl);
}

.footer-column h4 {
    margin-bottom: var(--md-sys-spacing-lg);
    font-size: var(--md-sys-typescale-title-medium);
    font-weight: 500;
    color: white;
}

.footer-column p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: var(--md-sys-spacing-sm);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--md-sys-spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--md-sys-typescale-body-medium);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--md-sys-color-primary);
    transform: translateY(-2px);
}

.footer-social .material-icons {
    font-size: 20px;
    color: white;
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 1rem;
}

.footer-contact .material-icons {
    font-size: 18px;
    color: var(--md-sys-color-primary);
    margin-top: 2px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Navbar scroll effects */
.navbar.scroll-down {
    transform: translateY(-100%);
}

.navbar.scroll-up {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Navbar on scroll */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 32px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

/* About Section Redesign */
.about-section {
    padding: var(--md-sys-spacing-xxl) 0;
}

.overview-section {
    background: linear-gradient(135deg, var(--md-sys-color-surface-variant) 0%, var(--md-sys-color-surface) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--md-sys-spacing-xxl);
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: var(--md-sys-color-primary-container);
    color: var(--md-sys-color-primary);
    padding: var(--md-sys-spacing-xs) var(--md-sys-spacing-md);
    border-radius: var(--md-sys-shape-corner-small);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: var(--md-sys-spacing-md);
    text-transform: uppercase;
}

.about-title {
    font-size: var(--md-sys-typescale-display-medium);
    color: var(--md-sys-color-on-surface);
    margin-bottom: var(--md-sys-spacing-lg);
    line-height: 1.2;
}

.about-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: var(--md-sys-spacing-xl);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.about-stats {
    display: flex;
    gap: var(--md-sys-spacing-xl);
}

.about-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: var(--md-sys-typescale-headline-large);
    font-weight: 700;
    color: var(--md-sys-color-primary);
    margin-bottom: var(--md-sys-spacing-xs);
}

.stat-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.about-image-container {
    position: relative;
    height: 500px;
}

.image-card {
    position: absolute;
    border-radius: var(--md-sys-shape-corner-large);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-card.primary {
    width: 65%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 2;
}

.image-card.secondary {
    width: 50%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: var(--md-sys-spacing-xxl) 0;
    background: var(--md-sys-color-surface);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--md-sys-spacing-xl);
}

.mv-card {
    background: var(--md-sys-color-surface-variant);
    padding: var(--md-sys-spacing-xxl);
    border-radius: var(--md-sys-shape-corner-large);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.mv-card:hover {
    transform: translateY(-4px);
    border-color: var(--md-sys-color-primary);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--md-sys-color-primary-container);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--md-sys-spacing-lg);
}

.mv-icon .material-icons {
    font-size: 40px;
    color: var(--md-sys-color-primary);
}

.mv-card h3 {
    font-size: var(--md-sys-typescale-headline-small);
    color: var(--md-sys-color-on-surface);
    margin-bottom: var(--md-sys-spacing-md);
}

.mv-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Team Section */
.team-section {
    padding: var(--md-sys-spacing-xxl) 0;
    background: var(--md-sys-color-surface-variant);
}

.team-header {
    text-align: center;
    margin-bottom: var(--md-sys-spacing-xxl);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--md-sys-spacing-xl);
}

.team-card {
    background: var(--md-sys-color-surface);
    padding: var(--md-sys-spacing-xl);
    border-radius: var(--md-sys-shape-corner-large);
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--md-sys-color-primary-container);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--md-sys-spacing-lg);
}

.team-avatar .material-icons {
    font-size: 48px;
    color: var(--md-sys-color-primary);
}

.team-card h4 {
    font-size: var(--md-sys-typescale-title-large);
    color: var(--md-sys-color-on-surface);
    margin-bottom: var(--md-sys-spacing-sm);
}

.team-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    color: #6B7280;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Initial state for animated elements */
.feature-card,
.feature-row,
.stat-card,
.faq-item,
.mobile-card,
.about-stat,
.image-card,
.mv-card,
.team-card {
    opacity: 0;
    transform: translateY(20px);
}

/* Responsive Design */
/* Tablet responsive styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .hero-text {
        padding-right: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --md-sys-typescale-display-large: 2.5rem;
        --md-sys-typescale-display-medium: 2rem;
        --md-sys-typescale-display-small: 1.75rem;
    }
    
    /* Mobile responsive trust indicators */
    .hero-trust {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding: 1.25rem 1.5rem;
    }
    
    .trust-item {
        padding: 0.5rem 0;
        justify-content: center;
    }
    
    .trust-divider {
        width: 100px;
        height: 2px;
        background: linear-gradient(to right, transparent 0%, rgba(14, 165, 233, 0.3) 20%, rgba(14, 165, 233, 0.3) 80%, transparent 100%);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: var(--md-sys-spacing-xl) 0;
        border-radius: 0 0 24px 24px;
        gap: 16px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-divider {
        width: 80%;
        height: 1px;
        margin: 16px auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--md-sys-color-surface-1);
        margin-top: var(--md-sys-spacing-sm);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-text {
        padding-right: 0;
    }

    .hero-title {
        font-size: var(--md-sys-typescale-display-medium);
    }

    .hero-image {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--md-sys-spacing-lg);
    }

    .feature-row {
        grid-template-columns: 1fr;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.125rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .floating-card {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image-wrapper {
        display: none;
    }

    .about-stats {
        flex-direction: column;
        gap: var(--md-sys-spacing-lg);
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .mobile-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--md-sys-color-primary);
    outline-offset: 2px;
}

/* Skip animation for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}