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

:root {
    /* Brand Colors */
    --primary-purple: #6B46C1;
    --secondary-purple: #8B5CF6;
    --accent-purple: #A855F7;
    --light-purple: #C4B5FD;
    --dark-purple: #4C1D95;
    --neon-purple: #9333EA;
    --cursor-cyan: #00C2FF;
    
    /* Glow Colors for Tiles */
    --glow-reddish-pink: #fe2c54;
    --glow-navy-blue: #1e3a8a;
    --glow-electric-blue: #0ea5e9;
    --glow-sea-green: #10b981;
    --glow-orange: #f97316;
    --glow-violet: #8b5cf6;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #6B46C1 0%, #8B5CF6 50%, #A855F7 100%);
    --cta-gradient: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 50%, #FF6B9D 100%);
    --glass-gradient: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --cursor-gradient: linear-gradient(135deg, #00C2FF 0%, #0099CC 50%, #0077AA 100%);
    --header-gradient-dark: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(15, 15, 25, 0.95) 50%, rgba(20, 20, 35, 0.95) 100%);
    --header-gradient-light: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 50%, rgba(241, 245, 249, 0.95) 100%);
    
    /* Dark Theme (Default) */
    --bg-primary: #0A0A0F;
    --bg-secondary: #111118;
    --bg-tertiary: #1A1A24;
    --bg-card: rgba(30, 30, 46, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-glass-strong: rgba(255, 255, 255, 0.1);
    
    /* Enhanced Tile Glass Effect - Fully Black with Matt Glass */
    --tile-bg-black: rgba(0, 0, 0, 0.85);
    --tile-border-glass: rgba(255, 255, 255, 0.08);
    --tile-backdrop-blur: blur(20px) saturate(120%);
    
    --text-primary: #FFFFFF;
    --text-secondary: #E5E7EB;
    --text-muted: #9CA3AF;
    --text-accent: #A855F7;
    
    --border-glass: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(139, 92, 246, 0.3);
    --border-header: rgba(139, 92, 246, 0.2);
    
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
    --shadow-cursor: 0 0 30px rgba(0, 194, 255, 0.6);
    --shadow-header: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(139, 92, 246, 0.2);
    
    /* Typography */
    --font-primary: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-glow: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Grid Pattern Variables */
    --grid-size: 50px;
    --grid-opacity: 0.15;
    --grid-color: rgba(139, 92, 246, var(--grid-opacity));
    --grid-glow-color: rgba(139, 92, 246, 0.4);
}

[data-theme="light"] {
    --bg-primary: #FAFAFA;
    --bg-secondary: #F5F5F7;
    --bg-tertiary: #EEEEEE;
    --bg-card: rgba(255, 255, 255, 0.8);
    --bg-glass: rgba(0, 0, 0, 0.02);
    --bg-glass-strong: rgba(0, 0, 0, 0.05);
    
    /* Light theme tile adjustments */
    --tile-bg-black: rgba(0, 0, 0, 0.9);
    --tile-border-glass: rgba(255, 255, 255, 0.12);
    
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #6B7280;
    --text-accent: #6B46C1;
    
    --border-glass: rgba(0, 0, 0, 0.1);
    --border-accent: rgba(107, 70, 193, 0.2);
    --border-header: rgba(107, 70, 193, 0.15);
    
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(107, 70, 193, 0.2);
    --shadow-cursor: 0 0 30px rgba(0, 194, 255, 0.4);
    --shadow-header: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(107, 70, 193, 0.15);
    
    /* Light theme grid adjustments */
    --grid-opacity: 0.08;
    --grid-color: rgba(107, 70, 193, var(--grid-opacity));
    --grid-glow-color: rgba(107, 70, 193, 0.3);
}

/* Default System Cursor - No Custom Cursor */
* {
    cursor: auto;
}

a, button, input, textarea, select, [role="button"], [tabindex]:not([tabindex="-1"]) {
    cursor: pointer;
}

/* Global Ripple Glow Effects */
.ripple-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.ripple-orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #6B46C1 0%, transparent 70%);
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.ripple-orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #8B5CF6 0%, transparent 70%);
    top: 70%;
    right: 25%;
    animation-delay: 3s;
}

.ripple-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #A855F7 0%, transparent 70%);
    bottom: 30%;
    left: 70%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

/* Enhanced Tile Base Styles for 3D Effect with Black Glass */
.tile {
    transform-style: preserve-3d;
    will-change: transform, box-shadow, border-color;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    position: relative;
    overflow: hidden;
    transition: transform 0.1s ease-out, box-shadow var(--transition-glow), border-color var(--transition-glow);
    
    /* Enhanced Black Glass Effect */
    background: var(--tile-bg-black) !important;
    border: 1px solid var(--tile-border-glass) !important;
    backdrop-filter: var(--tile-backdrop-blur) !important;
    -webkit-backdrop-filter: var(--tile-backdrop-blur) !important;
}

/* Tile Side Glow Effect - Only on the borders/sides */
.tile::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: transparent;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-glow), box-shadow var(--transition-glow);
    pointer-events: none;
}

/* Side Glow Color Classes - Only glows around the edges */
.tile.glow-reddish-pink::before {
    box-shadow: 
        0 0 20px rgba(254, 44, 84, 0.6),
        0 0 40px rgba(254, 44, 84, 0.3),
        0 0 60px rgba(254, 44, 84, 0.1);
}

.tile.glow-navy-blue::before {
    box-shadow: 
        0 0 20px rgba(30, 58, 138, 0.6),
        0 0 40px rgba(30, 58, 138, 0.3),
        0 0 60px rgba(30, 58, 138, 0.1);
}

.tile.glow-electric-blue::before {
    box-shadow: 
        0 0 20px rgba(14, 165, 233, 0.6),
        0 0 40px rgba(14, 165, 233, 0.3),
        0 0 60px rgba(14, 165, 233, 0.1);
}

.tile.glow-sea-green::before {
    box-shadow: 
        0 0 20px rgba(16, 185, 129, 0.6),
        0 0 40px rgba(16, 185, 129, 0.3),
        0 0 60px rgba(16, 185, 129, 0.1);
}

.tile.glow-orange::before {
    box-shadow: 
        0 0 20px rgba(249, 115, 22, 0.6),
        0 0 40px rgba(249, 115, 22, 0.3),
        0 0 60px rgba(249, 115, 22, 0.1);
}

.tile.glow-violet::before {
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.6),
        0 0 40px rgba(139, 92, 246, 0.3),
        0 0 60px rgba(139, 92, 246, 0.1);
}

/* Active Glow State - Only shows the side glow */
.tile.glow-active::before {
    opacity: 1;
}

/* Enhanced Glow Effects for Tiles */
.tile.glow-reddish-pink.glow-active {
  box-shadow: 
    0 0 5px rgba(255, 107, 107, 1),
    0 0 20px rgba(255, 107, 107, 0.9),
    0 0 40px rgba(255, 107, 107, 0.8),
    0 0 80px rgba(255, 107, 107, 0.6),
    0 0 120px rgba(255, 107, 107, 0.4),
    0 0 160px rgba(255, 107, 107, 0.2);
}

.tile.glow-navy-blue.glow-active {
  box-shadow: 
    0 0 5px rgba(30, 58, 138, 1),
    0 0 20px rgba(30, 58, 138, 0.9),
    0 0 40px rgba(30, 58, 138, 0.8),
    0 0 80px rgba(30, 58, 138, 0.6),
    0 0 120px rgba(30, 58, 138, 0.4),
    0 0 160px rgba(30, 58, 138, 0.2);
}

.tile.glow-electric-blue.glow-active {
  box-shadow: 
    0 0 5px rgba(0, 194, 255, 1),
    0 0 20px rgba(0, 194, 255, 0.9),
    0 0 40px rgba(0, 194, 255, 0.8),
    0 0 80px rgba(0, 194, 255, 0.6),
    0 0 120px rgba(0, 194, 255, 0.4),
    0 0 160px rgba(0, 194, 255, 0.2);
}

.tile.glow-sea-green.glow-active {
  box-shadow: 
    0 0 5px rgba(52, 211, 153, 1),
    0 0 20px rgba(52, 211, 153, 0.9),
    0 0 40px rgba(52, 211, 153, 0.8),
    0 0 80px rgba(52, 211, 153, 0.6),
    0 0 120px rgba(52, 211, 153, 0.4),
    0 0 160px rgba(52, 211, 153, 0.2);
}

.tile.glow-orange.glow-active {
  box-shadow: 
    0 0 5px rgba(255, 142, 83, 1),
    0 0 20px rgba(255, 142, 83, 0.9),
    0 0 40px rgba(255, 142, 83, 0.8),
    0 0 80px rgba(255, 142, 83, 0.6),
    0 0 120px rgba(255, 142, 83, 0.4),
    0 0 160px rgba(255, 142, 83, 0.2);
}

.tile.glow-violet.glow-active {
  box-shadow: 
    0 0 5px rgba(139, 92, 246, 1),
    0 0 20px rgba(139, 92, 246, 0.9),
    0 0 40px rgba(139, 92, 246, 0.8),
    0 0 80px rgba(139, 92, 246, 0.6),
    0 0 120px rgba(139, 92, 246, 0.4),
    0 0 160px rgba(139, 92, 246, 0.2);
}

/* Enhanced Tile Hover Effects */
.tile.glow-active {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(8px) scale(1.05);
  transition: all 0.3s ease-in-out;
  z-index: 10;
}

/* Enhanced Border Glow on Hover - Subtle border color change */
.tile.glow-active.glow-reddish-pink {
    border-color: rgba(254, 44, 84, 0.4) !important;
}

.tile.glow-active.glow-navy-blue {
    border-color: rgba(30, 58, 138, 0.4) !important;
}

.tile.glow-active.glow-electric-blue {
    border-color: rgba(14, 165, 233, 0.4) !important;
}

.tile.glow-active.glow-sea-green {
    border-color: rgba(16, 185, 129, 0.4) !important;
}

.tile.glow-active.glow-orange {
    border-color: rgba(249, 115, 22, 0.4) !important;
}

.tile.glow-active.glow-violet {
    border-color: rgba(139, 92, 246, 0.4) !important;
}

/* Professional Icon Styles */
.service-icon,
.trust-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.service-icon i,
.trust-icon i {
    font-size: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon i,
.trust-card:hover .trust-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Interactive Grid Pattern */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s ease;
}

.grid-pattern:hover {
    background-image: 
        linear-gradient(var(--grid-glow-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-glow-color) 1px, transparent 1px);
    filter: drop-shadow(0 0 10px var(--grid-glow-color));
}

/* ===== HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 8px 16px;
    background: transparent;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.hidden {
    transform: translateY(-100%);
}

.header-capsule {
    background: #000000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 0.75px solid rgba(32, 178, 170, 0.6);
    box-shadow: 0 0 1.2px #20B2AA, inset 0 0 1.2px rgba(32, 178, 170, 0.3);
    border-radius: 50px;
    padding: 6px 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    max-width: 750px;
    margin: 0 auto;
    height: 44px;
    display: flex;
    align-items: center;
}

.header-capsule:hover {
    border-color: #20B2AA;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(32, 178, 170, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.logo h1 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none; 
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: -0.005em;
    transition: all 0.2s ease;
    position: relative;
    line-height: 1;
    white-space: nowrap;
    padding: 2px 0;
    flex-shrink: 0;
}

.nav-link:hover {
    color: #20B2AA;
    text-shadow: 0 0 8px rgba(32, 178, 170, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #20B2AA;
    transition: width 0.2s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    white-space: nowrap;
    flex-shrink: 0;
}

.theme-toggle {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 20px;
    transition: all 0.2s ease;
    line-height: 1;
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: rgba(32, 178, 170, 0.1);
    color: #20B2AA;
}

.cta-header {
    background: transparent;
    border: 0.75px solid rgba(32, 178, 170, 0.6);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: -0.005em;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
    white-space: nowrap;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-header:hover {
    border-color: #20B2AA;
    background: rgba(32, 178, 170, 0.05);
    box-shadow: 0 0 15px rgba(32, 178, 170, 0.2);
    color: #20B2AA;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    gap: 3px;
    width: 28px;
    height: 28px;
    justify-content: center;
    align-items: center;
}

.mobile-toggle span {
    display: block;
    width: 16px;
    height: 1.5px;
    background: #ffffff;
    transition: all 0.2s ease;
    border-radius: 1px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header {
        padding: 6px 12px;
    }
    
    .header-capsule {
        padding: 4px 16px;
        height: 40px;
    }
    
    .header-content {
        gap: 16px;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-actions .theme-toggle {
        display: none;
    }
    
    .cta-header {
        font-size: 0.75rem;
        padding: 5px 12px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 4px 8px;
    }
    
    .header-capsule {
        padding: 3px 12px;
        height: 36px;
    }
    
    .logo h1 {
        font-size: 1rem;
    }
    
    .cta-header {
        font-size: 0.7rem;
        padding: 4px 10px;
        height: 26px;
    }
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav .nav-link {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
}

.mobile-nav .theme-toggle {
    font-size: 1.3rem;
    padding: 8px 12px;
    height: auto;
    width: auto;
}

.mobile-nav .cta-header {
    font-size: 1rem;
    padding: 10px 20px;
    height: auto;
}

/* Hero Section with Grid Pattern and Ripple Effects */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: calc(100px + var(--space-3xl)) 0 var(--space-3xl);
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

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

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #6B46C1 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #8B5CF6 0%, transparent 70%);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #A855F7 0%, transparent 70%);
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
    transition: all 0.3s ease;
}

.grid-pattern:hover {
    background-image: 
        linear-gradient(var(--grid-glow-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-glow-color) 1px, transparent 1px);
    filter: drop-shadow(0 0 10px var(--grid-glow-color));
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.dynamic-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    min-width: 600px;
    text-align: left;
}

.cursor {
    color: var(--accent-purple);
    animation: blink 1s infinite;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.hero-description {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.description-column {
    /* Remove all scroll-triggered animations - show immediately */
    opacity: 1;
    transform: translateY(0);
    transition: all var(--transition-normal);
}

.description-column p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: var(--space-lg);
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.description-column p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.description-column p:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-accent);
}

.description-column p:hover::before {
    transform: scaleX(1);
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin: var(--space-3xl) 0;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    min-width: 160px;
    position: relative;
    overflow: hidden;
    /* Remove scroll-triggered animations - show immediately */
    opacity: 1;
    transform: translateY(0);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cursor-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-card:hover::after {
    transform: scaleX(1);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-primary {
    background: var(--cta-gradient);
    color: white;
    border: none;
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.4);
}

.cta-glow {
    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.6s;
}

.cta-primary:hover .cta-glow {
    left: 100%;
}

/* Services Introduction with Grid Pattern and Ripple Effects */
.services-intro {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
    position: relative;
    margin-top: var(--space-3xl);
    overflow: hidden;
}

.services-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.services-intro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    pointer-events: auto;
    z-index: 1;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.services-intro::after:hover {
    background-image: 
        linear-gradient(var(--grid-glow-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-glow-color) 1px, transparent 1px);
    filter: drop-shadow(0 0 10px var(--grid-glow-color));
}

/* Add ripple effects to services intro */
.services-intro .ripple-orb-1 {
    top: 10%;
    left: 20%;
}

.services-intro .ripple-orb-2 {
    top: 60%;
    right: 15%;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

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

/* Services Grid with Grid Pattern and Ripple Effects */
.services {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    pointer-events: auto;
    z-index: 1;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.services::before:hover {
    background-image: 
        linear-gradient(var(--grid-glow-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-glow-color) 1px, transparent 1px);
    filter: drop-shadow(0 0 10px var(--grid-glow-color));
}

/* Add ripple effects to services */
.services .ripple-orb-1 {
    top: 20%;
    left: 10%;
}

.services .ripple-orb-2 {
    top: 70%;
    right: 20%;
}

.services .ripple-orb-3 {
    bottom: 10%;
    left: 60%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    position: relative;
    z-index: 2;
}

.service-card {
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-xl);
    transition: all 0.1s ease-out;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* Remove scroll-triggered animations - show immediately */
    opacity: 1;
    transform: translateY(0);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    line-height: 1.3;
    transition: color var(--transition-glow);
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
    transition: color var(--transition-glow);
}

/* Statement Section with Faded Grid Pattern */
.statement-section {
    padding: var(--space-2xl) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.statement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.statement-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    pointer-events: auto;
    z-index: 1;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.statement-section::after:hover {
    background-image: 
        linear-gradient(var(--grid-glow-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-glow-color) 1px, transparent 1px);
    filter: drop-shadow(0 0 10px var(--grid-glow-color));
}

.statement-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    cursor: pointer;
    /* Remove scroll-triggered animations - show immediately */
    opacity: 1;
    transform: translateY(0);
}

.statement-text {
    font-family: var(--font-primary);
    font-size: clamp(1.125rem, 2.25vw, 1.5rem);
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.4;
    position: relative;
    font-style: italic;
}

/* About Section with Grid Pattern */
.about-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    pointer-events: auto;
    z-index: 1;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.about-section::before:hover {
    background-image: 
        linear-gradient(var(--grid-glow-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-glow-color) 1px, transparent 1px);
    filter: drop-shadow(0 0 10px var(--grid-glow-color));
}

/* Add ripple effects to about section */
.about-section .ripple-orb-1 {
    top: 30%;
    left: 5%;
}

.about-section .ripple-orb-2 {
    bottom: 20%;
    right: 10%;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.about-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.intro-text {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-xl);
    text-align: center;
    color: var(--text-primary);
}

.about-text p {
    margin-bottom: var(--space-lg);
}

.features-list {
    background: var(--bg-glass);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    margin: var(--space-xl) 0;
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
}

.features-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-gradient);
    border-radius: 0 4px 4px 0;
}

.features-list h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--accent-purple);
}

.features-list ul {
    list-style: none;
    padding-left: 0;
}

.features-list li {
    padding: var(--space-sm) 0;
    position: relative;
    padding-left: var(--space-xl);
    color: var(--text-secondary);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
    font-weight: bold;
    font-size: 1rem;
}

.emphasis-text {
    font-size: 1.125rem;
    text-align: center;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.closing-text {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: var(--accent-purple);
}

/* Redesigned Comparison Section - 2 Columns: Others vs Astrux */
.comparison-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    pointer-events: auto;
    z-index: 1;
    opacity: 0.2;
    mask: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    transition: all 0.3s ease;
}

.comparison-section::before:hover {
    background-image: 
        linear-gradient(var(--grid-glow-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-glow-color) 1px, transparent 1px);
    filter: drop-shadow(0 0 10px var(--grid-glow-color));
}

.comparison-container {
    position: relative;
    z-index: 2;
}

.comparison-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.comparison-header .section-title {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
}

.comparison-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-column {
    transform-style: preserve-3d;
    will-change: transform, box-shadow, border-color;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    position: relative;
    overflow: hidden;
    transition: transform 0.1s ease-out, box-shadow var(--transition-glow), border-color var(--transition-glow);
    
    /* Enhanced Black Glass Effect */
    background: var(--tile-bg-black) !important;
    border: 1px solid var(--tile-border-glass) !important;
    backdrop-filter: var(--tile-backdrop-blur) !important;
    -webkit-backdrop-filter: var(--tile-backdrop-blur) !important;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    cursor: pointer;
}

/* Side Glow Effect for Comparison Columns */
.comparison-column::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: transparent;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-glow), box-shadow var(--transition-glow);
    pointer-events: none;
}

.comparison-column.others::before {
    box-shadow: 
        0 0 20px rgba(239, 68, 68, 0.6),
        0 0 40px rgba(239, 68, 68, 0.3),
        0 0 60px rgba(239, 68, 68, 0.1);
}

.comparison-column.astrux::before {
    box-shadow: 
        0 0 20px rgba(34, 197, 94, 0.6),
        0 0 40px rgba(34, 197, 94, 0.3),
        0 0 60px rgba(34, 197, 94, 0.1);
}

.comparison-column:hover::before {
    opacity: 1;
}

.comparison-column.others:hover {
    border-color: rgba(239, 68, 68, 0.4) !important;
}

.comparison-column.astrux:hover {
    border-color: rgba(34, 197, 94, 0.4) !important;
}

.comparison-column-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--border-glass);
}

.comparison-column-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.comparison-column.others .comparison-column-header h3 {
    color: #ef4444;
}

.comparison-column.astrux .comparison-column-header h3 {
    color: #22c55e;
}

.comparison-column-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.comparison-features {
    list-style: none;
    padding: 0;
}

.comparison-features li {
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-size: 0.9rem;
    line-height: 1.5;
}

.comparison-features li:last-child {
    border-bottom: none;
}

.feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    margin-top: 2px;
}

.comparison-column.others .feature-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.comparison-column.astrux .feature-icon {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.feature-text {
    flex: 1;
    color: var(--text-secondary);
}

.comparison-column.others .feature-text {
    color: rgba(255, 255, 255, 0.7);
}

.comparison-column.astrux .feature-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.comparison-punchline {
    text-align: center;
    padding: var(--space-xl);
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    color: white;
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 2;
    margin-top: var(--space-2xl);
}

.comparison-punchline p {
    font-size: 1.125rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1.4;
}

/* Trust Section with Grid Pattern */
.trust-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    pointer-events: auto;
    z-index: 1;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-section::before:hover {
    background-image: 
        linear-gradient(var(--grid-glow-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-glow-color) 1px, transparent 1px);
    filter: drop-shadow(0 0 10px var(--grid-glow-color));
}

/* Add ripple effects to trust section */
.trust-section .ripple-orb-1 {
    top: 15%;
    left: 25%;
}

.trust-section .ripple-orb-2 {
    bottom: 25%;
    right: 30%;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
}

.trust-card {
    text-align: center;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    transition: all 0.1s ease-out;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* Remove scroll-triggered animations - show immediately */
    opacity: 1;
    transform: translateY(0);
}

.trust-card h3 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--accent-purple);
    transition: color var(--transition-glow);
}

.trust-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
    transition: color var(--transition-glow);
}

/* Testimonials Section with Faded Grid Pattern */
.testimonials-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    pointer-events: auto;
    z-index: 1;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.testimonials-section::before:hover {
    background-image: 
        linear-gradient(var(--grid-glow-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-glow-color) 1px, transparent 1px);
    filter: drop-shadow(0 0 10px var(--grid-glow-color));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
}

.testimonial-card {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    transition: all 0.1s ease-out;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* Remove scroll-triggered animations - show immediately */
    opacity: 1;
    transform: translateY(0);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--accent-purple);
    font-weight: bold;
    line-height: 1;
    margin-bottom: var(--space-md);
}

.testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    transition: color var(--transition-glow);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.author-info strong {
    display: block;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 2px;
    font-size: 0.95rem;
    transition: color var(--transition-glow);
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Enhanced Contact Section - NO GRID PATTERN */
.contact-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Add ripple effects to contact section */
.contact-section .ripple-orb-1 {
    top: 40%;
    left: 10%;
}

.contact-section .ripple-orb-2 {
    bottom: 30%;
    right: 15%;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.contact-content .section-title {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* New Two-Column Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.calendly-container {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    /* Ensure instant visibility */
    opacity: 1;
    visibility: visible;
    /* Match the height of the call info card */
    height: fit-content;
}

.calendly-inline-widget {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: none !important;
    background: transparent !important;
    /* Ensure instant loading */
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    /* Match the height of the call info card - approximately 773px */
    height: 773px !important;
}

.call-info {
    padding: var(--space-lg);
}

.call-info-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    /* This will determine the height that Calendly should match */
    min-height: 773px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.call-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.call-info-card h3 {
    font-family: var(--font-primary);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.call-info-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: var(--space-lg);
}

.call-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.call-cta {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    padding: var(--space-md);
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-purple);
}

.perfect-for h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.perfect-for ul {
    list-style: none;
    padding: 0;
}

.perfect-for li {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    padding-left: var(--space-lg);
    position: relative;
}

.perfect-for li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
    font-weight: bold;
    font-size: 1rem;
}

/* Footer - NO GRID PATTERN */
.footer {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    padding: var(--space-2xl) 0 var(--space-lg);
    border-top: 1px solid var(--border-glass);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-brand h3 {
    font-family: var(--font-primary);
    font-size: 1.375rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 1rem;
    font-weight: 500;
}

.footer-social h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 50%;
    transition: all var(--transition-normal);
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.social-link i {
    font-size: 1.375rem;
    transition: all var(--transition-normal);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    background: var(--bg-glass-strong);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-glass);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Remove all scroll-triggered animations */
@keyframes fadeInUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    /* Always visible - no scroll triggers */
    opacity: 1;
    transform: translateY(0);
    transition: all var(--transition-normal);
}

/* Mobile Optimizations */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .header {
        top: var(--space-md);
        max-width: calc(100vw - 1rem);
    }
    
    .header-capsule {
        padding: 0.6rem 1.25rem;
    }
    
    .header-content {
        gap: var(--space-lg);
    }
    
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .cta-header {
        padding: 0.45rem 0.9rem;
        font-size: 0.75rem;
    }
    
    .hero-description {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .stats-container {
        gap: var(--space-lg);
    }
    
    .comparison-layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .calendly-container {
        order: 2;
    }
    
    .call-info {
        order: 1;
        padding: 0;
    }
    
    .calendly-inline-widget {
        height: 450px !important;
    }
    
    .call-info-card {
        min-height: auto;
    }
    
    /* Reduce animation delays on mobile */
    .tile {
        transition-duration: 0.1s;
    }
    
    /* Adjust grid pattern for mobile */
    :root {
        --grid-size: 40px;
        --grid-opacity: 0.1;
    }
}

@media (max-width: 768px) {
    .header {
        top: 12px;
        padding: 0 16px;
    }
    
    .header.hidden {
        transform: translateY(-120%);
    }
    
    .header-capsule {
        padding: 6px 16px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: calc(120px + var(--space-2xl)) 0 var(--space-2xl);
        min-height: auto;
    }
    
    .hero-description {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        gap: var(--space-md);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .calendly-inline-widget {
        height: 450px !important;
    }
    
    .call-info-card {
        padding: var(--space-lg);
        min-height: auto;
    }
    
    .call-info-card h3 {
        font-size: 1.25rem;
    }
    
    /* Disable 3D tilt on mobile for better performance */
    .tile {
        transform-style: flat !important;
    }
    
    /* Disable hover effects on mobile */
    @media (hover: none) {
        .tile.glow-active::before {
            opacity: 0 !important;
        }
        
        .tile.glow-active {
            border-color: var(--tile-border-glass) !important;
        }
        
        .comparison-column:hover::before {
            opacity: 0 !important;
        }
        
        .comparison-column:hover {
            border-color: var(--tile-border-glass) !important;
        }
    }
    
    /* Smaller grid pattern for mobile */
    :root {
        --grid-size: 30px;
        --grid-opacity: 0.08;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .header {
        top: 8px;
        padding: 0 12px;
    }
    
    .header-capsule {
        padding: 4px 12px;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: calc(100px + var(--space-lg)) 0 var(--space-lg);
    }
    
    .description-column p {
        padding: var(--space-md);
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: var(--space-lg);
    }
    
    .testimonial-card {
        padding: var(--space-lg);
    }
    
    .dynamic-text {
        min-width: auto;
        text-align: center;
    }
    
    .calendly-inline-widget {
        height: 400px !important;
        min-width: 280px !important;
    }
    
    .call-info-card {
        padding: var(--space-md);
        min-height: auto;
    }
    
    .call-info-card h3 {
        font-size: 1.125rem;
    }
    
    .comparison-column {
        padding: var(--space-lg);
    }
    
    .comparison-column-header h3 {
        font-size: 1.25rem;
    }
    
    /* Even smaller grid pattern for small mobile */
    :root {
        --grid-size: 25px;
        --grid-opacity: 0.06;
    }
}

/* Accessibility & Performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .gradient-orb,
    .ripple-orb {
        animation: none;
    }
    
    .tile {
        transform: none !important;
        transition: none !important;
    }
    
    .tile::before {
        transition: none !important;
    }
    
    .comparison-column {
        transform: none !important;
        transition: none !important;
    }
    
    .comparison-column::before {
        transition: none !important;
    }
    
    .grid-pattern {
        transition: none !important;
    }
}

/* Focus states */
.nav-link:focus,
.cta-header:focus,
.cta-primary:focus,
.social-link:focus,
.theme-toggle:focus {
    outline: 2px solid var(--accent-purple);
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --border-glass: rgba(255, 255, 255, 0.3);
        --border-accent: rgba(139, 92, 246, 0.6);
        --tile-border-glass: rgba(255, 255, 255, 0.2);
        --grid-opacity: 0.25;
    }
}