/* Premium Hand-Crafted Design System */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
    --black: #000000;
    --black-soft: #0f0f0f;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-300: #d1d1d1;
    --gray-400: #9a9a9a;
    --gray-500: #6b6b6b;
    --gray-600: #4a4a4a;
    --gray-700: #333333;
    --gray-800: #1f1f1f;
    --gray-900: #0f0f0f;
    --accent: #0052ff;
    --accent-dark: #0039b3;
    --accent-light: #1a6bff;
    --accent-glow: rgba(0, 82, 255, 0.4);
    --gold: #d4af37;
    --gold-light: #e8d5a3;
    
    /* Premium Light mode */
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f5f5f5;
    --bg-dark: #000000;
    --text-primary: #000000;
    --text-secondary: #4a4a4a;
    --text-light: #6b6b6b;
    --border: #e8e8e8;
    --border-light: #f0f0f0;
    --nav-bg: rgba(255, 255, 255, 0.75);
    --nav-border: rgba(0, 0, 0, 0.08);
    
    /* Premium Shadow System */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.12);
    --shadow-2xl: 0 24px 96px rgba(0, 0, 0, 0.16);
    --shadow-accent: 0 8px 32px rgba(0, 82, 255, 0.2);
    --shadow-accent-lg: 0 16px 64px rgba(0, 82, 255, 0.3);
}

[data-theme="dark"] {
    --bg-primary: #000000;
    --bg-secondary: #0f0f0f;
    --bg-tertiary: #1a1a1a;
    --bg-dark: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --text-light: #737373;
    --border: #1f1f1f;
    --border-light: #262626;
    --nav-bg: rgba(0, 0, 0, 0.98);
    --nav-border: rgba(255, 255, 255, 0.08);
    
    /* Premium Dark Shadow System */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.7);
    --shadow-2xl: 0 24px 96px rgba(0, 0, 0, 0.8);
    --shadow-accent: 0 8px 32px rgba(0, 82, 255, 0.3);
    --shadow-accent-lg: 0 16px 64px rgba(0, 82, 255, 0.4);
    
    --black: #ffffff;
    --black-soft: #f5f5f5;
    --white: #000000;
    --gray-50: #0f0f0f;
    --gray-100: #1a1a1a;
    --gray-200: #262626;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    line-height: 1.75;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    font-weight: 400;
    transition: background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: -0.011em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1;
    will-change: scroll-position;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Premium Navigation */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: var(--nav-bg) !important;
    backdrop-filter: saturate(180%) blur(40px) !important;
    -webkit-backdrop-filter: saturate(180%) blur(40px) !important;
    border-bottom: 1px solid var(--nav-border);
    z-index: 9999 !important;
    padding: 0.75rem 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, background-color, backdrop-filter;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    min-height: 60px;
    max-height: 60px;
    margin: 0 !important;
}

/* Enhanced Liquid Glass for Light Mode Navigation */
:root:not([data-theme="dark"]) .navbar {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.85) 0%, 
        rgba(255, 255, 255, 0.75) 50%,
        rgba(250, 250, 250, 0.8) 100%) !important;
    backdrop-filter: blur(50px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(50px) saturate(200%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 8px 32px rgba(0, 0, 0, 0.04),
        0 4px 16px rgba(0, 0, 0, 0.02);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    border-bottom-color: var(--nav-border);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(0, 0, 0, 0.02);
    background: var(--nav-bg) !important;
    min-height: 56px;
    max-height: 56px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    padding: 0;
    height: 100%;
    justify-content: flex-start;
    margin-top: -7px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 82, 255, 0.2));
    transform-style: preserve-3d;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo:hover .logo-icon {
    transform: scale(1.1) rotateY(15deg) rotateX(5deg);
    filter: drop-shadow(0 6px 20px rgba(0, 82, 255, 0.5));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: scale(1.1) rotateY(15deg) rotateX(5deg) translateY(0);
    }
    50% {
        transform: scale(1.1) rotateY(15deg) rotateX(5deg) translateY(-3px);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.nav-logo:hover {
    opacity: 1;
}

.nav-logo:hover .logo-text {
    color: var(--accent);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

[data-theme="dark"] .logo-icon {
    filter: drop-shadow(0 2px 10px rgba(0, 82, 255, 0.3));
}

[data-theme="dark"] .nav-logo:hover .logo-icon {
    filter: drop-shadow(0 4px 16px rgba(0, 82, 255, 0.5));
}

[data-theme="dark"] .logo-icon circle[fill] {
    fill: url(#globe3DDark);
}

[data-theme="dark"] .logo-icon circle,
[data-theme="dark"] .logo-icon ellipse,
[data-theme="dark"] .logo-icon path {
    stroke: url(#globeGradientDark);
}

[data-theme="dark"] .logo-icon path[fill="url(#globeGradient)"] {
    fill: url(#globeGradientDark);
}

[data-theme="dark"] .logo-icon path[fill="url(#globe3D)"] {
    fill: url(#globe3DDark);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 100000 !important;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    transform: translateZ(0);
    will-change: transform;
    overflow: visible;
    position: relative;
    flex-shrink: 0;
    align-self: center;
    margin-top: -4px;
}

/* Premium 3D Liquid Glass Effect for Light Mode - Truly Transparent */
:root:not([data-theme="dark"]) .hamburger {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.05),
        0 1px 4px rgba(0, 0, 0, 0.03) !important;
}

/* Premium 3D Liquid Glass Effect for Dark Mode - Truly Transparent */
[data-theme="dark"] .hamburger {
    background: rgba(255, 255, 255, 0.01) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.25),
        0 4px 16px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15) !important;
}

/* Advanced 3D Liquid Glass Texture Pattern - Very Subtle */
.hamburger::before {
    display: none;
}

[data-theme="dark"] .hamburger::before {
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(0, 82, 255, 0.08) 0%, transparent 70%);
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.hamburger::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
}

[data-theme="dark"] .hamburger::after {
    background: transparent;
}

.hamburger:hover::after {
    opacity: 0;
}

.hamburger:hover {
    transform: translateY(-2px) scale(1.05);
}

/* Premium 3D Hover Effect for Light Mode - More Transparent */
:root:not([data-theme="dark"]) .hamburger:hover {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(0, 82, 255, 0.3) !important;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.05),
        0 0 16px rgba(0, 82, 255, 0.15) !important;
}

/* Premium 3D Hover Effect for Dark Mode - More Transparent */
[data-theme="dark"] .hamburger:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(25px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 82, 255, 0.25) !important;
}

.hamburger:active {
    transform: translateY(0);
}

.hamburger:active span {
    transform: scale(0.95);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.1),
        0 0 4px rgba(0, 82, 255, 0.2);
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
    transform-origin: center;
    opacity: 0.9;
}

[data-theme="dark"] .hamburger span {
    background: var(--text-primary);
    opacity: 0.95;
}

/* Clean bar design - no pseudo elements needed */
.hamburger span::before {
    display: none;
}

[data-theme="dark"] .hamburger span::before {
    display: none;
}

.hamburger:hover span {
    background: var(--accent);
    opacity: 1;
    transform: scaleX(1.1);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--accent);
    opacity: 1;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--accent);
    opacity: 1;
}

/* Active state hover */
.hamburger.active:hover {
    transform: translateY(-6px) translateZ(24px) rotateX(-2deg) scale(1.08);
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-primary);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 5rem 2.5rem 2.5rem;
    contain: layout style paint;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
    overflow-y: auto;
    border-left: 1px solid var(--border);
    z-index: 99999 !important;
}

/* Premium Liquid Glass Effect for Light Mode Navigation Menu */
:root:not([data-theme="dark"]) .nav-menu {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.85) 50%,
        rgba(250, 250, 250, 0.9) 100%);
    backdrop-filter: blur(60px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(60px) saturate(200%) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        -8px 0 48px rgba(0, 0, 0, 0.15),
        -4px 0 24px rgba(0, 0, 0, 0.1),
        -2px 0 12px rgba(0, 0, 0, 0.08),
        inset 1px 0 0 rgba(255, 255, 255, 0.8),
        inset -1px 0 0 rgba(0, 0, 0, 0.02);
}

/* Premium Dark Mode Navigation Menu */
[data-theme="dark"] .nav-menu {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(15, 15, 15, 0.9) 50%,
        rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(60px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(60px) saturate(180%) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        -8px 0 48px rgba(0, 0, 0, 0.8),
        -4px 0 24px rgba(0, 0, 0, 0.6),
        -2px 0 12px rgba(0, 0, 0, 0.4),
        inset 1px 0 0 rgba(255, 255, 255, 0.05),
        inset -1px 0 0 rgba(0, 0, 0, 0.3);
}

.nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

[data-theme="dark"] .nav-menu::before {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.03) 0%, 
        rgba(255, 255, 255, 0.01) 50%,
        transparent 100%);
    opacity: 0.4;
}

.nav-menu.active {
    right: 0;
    z-index: 99999 !important;
}

/* Prevent layout shift when menu is open - Simple overflow hidden only */
body.nav-menu-open,
html.nav-menu-open {
    overflow: hidden !important;
    height: 100% !important;
    position: relative !important;
}

/* Ensure navbar stays visible and doesn't move when menu opens */
body.nav-menu-open .navbar,
html.nav-menu-open .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100000 !important;
    transition: none !important;
    margin: 0 !important;
    padding: 0.75rem 0 !important;
}

/* Prevent navbar and menu transitions when menu is open */
body.nav-menu-open .navbar,
html.nav-menu-open .navbar,
body.nav-menu-open .nav-menu,
html.nav-menu-open .nav-menu {
    transition: none !important;
}

/* Lock all content in place */
body.nav-menu-open main,
body.nav-menu-open section,
body.nav-menu-open .hero,
body.nav-menu-open .container,
body.nav-menu-open .hero-content,
body.nav-menu-open .hero-image-wrapper,
body.nav-menu-open .hero-buttons,
body.nav-menu-open .intro,
body.nav-menu-open .services-preview {
    position: relative !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure navigation menu is always on top when active */
body.nav-menu-open .btn,
body.nav-menu-open button:not(.hamburger),
body.nav-menu-open [class*="btn"],
body.nav-menu-open .cta-button,
body.nav-menu-open .call-button,
body.nav-menu-open .hero-cta,
body.nav-menu-open section,
body.nav-menu-open div:not(.nav-menu):not(.nav-menu *) {
    z-index: 1 !important;
    position: relative;
}

.nav-menu > * {
    position: relative;
    z-index: 1 !important;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1.25rem 0;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    border-bottom: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    text-transform: none;
    min-height: 3.5rem;
}

/* Enhanced border for light mode */
:root:not([data-theme="dark"]) .nav-link {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .nav-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 24px;
}

.nav-link.active::before {
    width: 4px;
    height: 100%;
    top: 0;
    background: var(--accent);
}

.nav-link:hover {
    color: var(--text-primary);
    padding-left: 2rem;
    min-height: 3.5rem;
}

/* Premium hover effect for nav links */
:root:not([data-theme="dark"]) .nav-link:hover {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0.2) 100%);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
}

[data-theme="dark"] .nav-link:hover {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(15px) saturate(120%);
    -webkit-backdrop-filter: blur(15px) saturate(120%);
}

.nav-link.active {
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.3125rem;
    padding-left: 2rem;
    background: var(--bg-secondary);
    letter-spacing: -0.025em;
    min-height: 3.5rem;
}

/* Premium glass effect for active nav link in light mode */
:root:not([data-theme="dark"]) .nav-link.active {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.4) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-left: 4px solid var(--accent);
    box-shadow: 
        inset 0 0 20px rgba(0, 82, 255, 0.05),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .nav-link.active {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-left: 4px solid var(--accent);
    box-shadow: 
        inset 0 0 20px rgba(0, 82, 255, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-link.cta-nav {
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 1.5rem 2rem;
    border-radius: 0;
    border: none;
    margin-top: 1.5rem;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    min-height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Premium glass effect for CTA button in light mode */
:root:not([data-theme="dark"]) .nav-link.cta-nav {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .nav-link.cta-nav {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.9) 100%);
    color: #000000;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Legal Section in Navigation */
.nav-menu li[style*="border-top"] {
    border-top: 1px solid var(--border) !important;
    padding-top: 0.75rem !important;
    margin-top: 0.5rem !important;
}

.nav-menu li[style*="border-top"] > span {
    display: block !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    color: var(--text-light) !important;
    margin-bottom: 0.75rem !important;
    padding-left: 0.5rem !important;
    font-family: 'Space Grotesk', sans-serif !important;
    position: relative !important;
    padding-bottom: 0.75rem !important;
}

/* Blue line under EXPLORE header - ONLY for section headers, not nav links */
.nav-menu li[style*="margin-bottom"] > span::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0.5rem !important;
    width: 80px !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(0, 82, 255, 0.8) 50%, transparent 100%) !important;
    box-shadow: 
        0 0 12px rgba(0, 82, 255, 0.6),
        0 0 24px rgba(0, 82, 255, 0.4),
        0 0 8px rgba(0, 82, 255, 0.8) !important;
    border-radius: 2px !important;
}

/* Ensure nav links NEVER have blue horizontal lines - only vertical bars */
.nav-link::after {
    display: none !important;
    content: none !important;
}

.nav-menu li[style*="border-top"] > span::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0.5rem !important;
    width: 80px !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(0, 82, 255, 0.8) 50%, transparent 100%) !important;
    box-shadow: 
        0 0 12px rgba(0, 82, 255, 0.6),
        0 0 24px rgba(0, 82, 255, 0.4),
        0 0 8px rgba(0, 82, 255, 0.8) !important;
    border-radius: 2px !important;
}

.nav-menu li[style*="border-top"] ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nav-menu li[style*="border-top"] ul li {
    margin: 0 !important;
}

.nav-menu li[style*="border-top"] ul .nav-link {
    padding: 1.25rem 0 !important;
    border-bottom: 1px solid var(--border) !important;
    font-size: 1.25rem !important;
    margin-left: 0 !important;
    position: relative !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: -0.02em !important;
    min-height: 3.5rem !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav-menu li[style*="border-top"] ul .nav-link::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    width: 0 !important;
    height: 2px !important;
    background: var(--accent) !important;
    transition: width 0.3s ease !important;
    z-index: 0 !important;
}

/* Ensure legal nav links NEVER have blue horizontal lines */
.nav-menu li[style*="border-top"] ul .nav-link::after {
    display: none !important;
    content: none !important;
}

.nav-menu li[style*="border-top"] ul .nav-link:hover::before {
    width: 24px !important;
}

.nav-menu li[style*="border-top"] ul .nav-link.active::before {
    width: 4px !important;
    height: 100% !important;
    top: 0 !important;
    background: var(--accent) !important;
}

.nav-menu li[style*="border-top"] ul .nav-link:hover {
    color: var(--text-primary) !important;
    padding-left: 2rem !important;
    min-height: 3.5rem !important;
}

/* Premium hover effect for legal nav links - EXACTLY same as main nav links */
:root:not([data-theme="dark"]) .nav-menu li[style*="border-top"] ul .nav-link:hover {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0.2) 100%) !important;
    backdrop-filter: blur(15px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(150%) !important;
}

[data-theme="dark"] .nav-menu li[style*="border-top"] ul .nav-link:hover {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%) !important;
    backdrop-filter: blur(15px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(120%) !important;
}

.nav-menu li[style*="border-top"] ul .nav-link.active {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.3125rem !important;
    padding-left: 2rem !important;
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    letter-spacing: -0.025em !important;
    min-height: 3.5rem !important;
}

/* Premium glass effect for active legal nav link - same as main nav links */
:root:not([data-theme="dark"]) .nav-menu li[style*="border-top"] ul .nav-link.active {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.4) 100%) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-left: 4px solid var(--accent) !important;
    box-shadow: 
        inset 0 0 20px rgba(0, 82, 255, 0.05),
        0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="dark"] .nav-menu li[style*="border-top"] ul .nav-link.active {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%) !important;
    backdrop-filter: blur(20px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
    border-left: 4px solid var(--accent) !important;
    box-shadow: 
        inset 0 0 20px rgba(0, 82, 255, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.nav-link.cta-nav::before {
    display: none;
}

.nav-link.cta-nav:hover {
    transform: translateY(-2px) scale(1.02);
    padding-left: 2rem;
}

/* Premium hover effect for CTA button in light mode */
:root:not([data-theme="dark"]) .nav-link.cta-nav:hover {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.95) 100%) !important;
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.3),
        0 6px 24px rgba(0, 0, 0, 0.2),
        0 0 24px rgba(0, 82, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(0, 82, 255, 0.3) !important;
}

/* Premium hover effect for CTA button in dark mode */
[data-theme="dark"] .nav-link.cta-nav:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.95) 100%) !important;
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.6),
        0 6px 24px rgba(0, 0, 0, 0.4),
        0 0 24px rgba(0, 82, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    border: 1px solid rgba(0, 82, 255, 0.4) !important;
    color: #000000 !important;
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gray-400);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    color: var(--text-secondary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1.25rem 1.5rem;
    margin: 1rem 0;
    border-radius: 0;
    overflow: hidden;
    min-height: 3.5rem;
    width: 100%;
}

/* Premium glass effect for theme toggle in light mode */
:root:not([data-theme="dark"]) .theme-toggle {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.7) 0%, 
        rgba(255, 255, 255, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 3px solid var(--gray-400);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
}

[data-theme="dark"] .theme-toggle {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--gray-400);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.theme-toggle:hover {
    background: var(--bg-primary);
    border-left-color: var(--accent);
    color: var(--text-primary);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-secondary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.theme-toggle:hover svg {
    stroke: var(--accent);
}

.theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg);
    position: relative;
}

.theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(90deg);
    position: absolute;
    left: 1.5rem;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(90deg);
}

[data-theme="dark"] .theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg);
}

[data-theme="dark"] .theme-toggle svg {
    stroke: var(--text-secondary);
}

[data-theme="dark"] .theme-toggle:hover svg {
    stroke: var(--accent);
}


/* Hero Section - Editorial Style */
.hero {
    margin-top: 0;
    padding-top: 90px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 3rem 0 3rem;
}

@media (min-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
}

[data-theme="dark"] .hero {
    background: var(--gray-900);
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 82, 255, 0.1) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

[data-theme="dark"] .hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 82, 255, 0.15) 50%, rgba(0, 0, 0, 0.9) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 20s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="dark"] .hero-title {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 4px 24px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.1);
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.6;
    max-width: 700px;
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

[data-theme="dark"] .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    opacity: 1;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8), 0 2px 12px rgba(0, 0, 0, 0.6), 0 0 12px rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.hero-tagline {
    font-size: clamp(1.0625rem, 2.5vw, 1.375rem);
    font-style: normal;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    font-weight: 400;
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

[data-theme="dark"] .hero-tagline {
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6), 0 0 10px rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.hero-phone-link {
    color: var(--accent) !important;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 4px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

.hero-phone-link:hover {
    color: var(--accent-light) !important;
    text-decoration-color: var(--accent-light);
    text-shadow: 0 0 12px rgba(0, 82, 255, 0.5), 0 0 24px rgba(0, 82, 255, 0.3);
    transform: translateY(-1px);
}

[data-theme="dark"] .hero-phone-link {
    color: var(--accent-light) !important;
    text-decoration-color: var(--accent-light);
}

[data-theme="dark"] .hero-phone-link:hover {
    color: var(--accent) !important;
    text-decoration-color: var(--accent);
    text-shadow: 0 0 16px rgba(0, 82, 255, 0.6), 0 0 32px rgba(0, 82, 255, 0.4), 0 0 48px rgba(0, 82, 255, 0.3);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1.25rem;
        flex-wrap: wrap;
    }
}

/* Premium Buttons - Square Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    min-width: auto;
    max-width: 100%;
    width: auto;
    border: none;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    transform: translateZ(0);
    will-change: transform;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    outline: none;
}

@media (min-width: 640px) {
    .btn {
        padding: 1.25rem 3rem;
        min-width: 200px;
    }
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff;
    border: none;
    box-shadow: 
        0 8px 32px rgba(0, 82, 255, 0.4),
        0 4px 16px rgba(0, 82, 255, 0.3),
        0 2px 8px rgba(0, 82, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    transform-style: preserve-3d;
    perspective: 1000px;
    transform: translateZ(5px) rotateX(2deg);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    border: none;
    color: #ffffff;
    transform: translateY(-4px) translateZ(15px) rotateX(0deg) scale(1.02);
    box-shadow: 
        0 20px 80px rgba(0, 82, 255, 0.7),
        0 16px 64px rgba(0, 82, 255, 0.6),
        0 8px 32px rgba(0, 82, 255, 0.5),
        0 4px 16px rgba(0, 82, 255, 0.4),
        0 2px 8px rgba(0, 82, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(50px) saturate(220%);
    -webkit-backdrop-filter: blur(50px) saturate(220%);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 82, 255, 0.3);
    color: #ffffff;
}

[data-theme="dark"] .btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff;
    border: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 0 8px rgba(0, 82, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 82, 255, 0.5),
        0 4px 16px rgba(0, 82, 255, 0.4),
        0 2px 8px rgba(0, 82, 255, 0.3);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
}

[data-theme="dark"] .btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    color: #ffffff;
}

.btn-secondary {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.85) 50%,
        rgba(250, 250, 250, 0.9) 100%);
    color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    position: relative;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(40px) saturate(200%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow;
    -webkit-backdrop-filter: blur(40px) saturate(200%);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-secondary:hover::after {
    opacity: 1;
}

.btn-secondary {
    transform-style: preserve-3d;
    perspective: 1000px;
    transform: translateZ(3px) rotateX(1deg);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.9) 50%,
        rgba(250, 250, 250, 0.95) 100%);
    border: 1px solid rgba(0, 82, 255, 0.3);
    color: var(--accent);
    transform: translateY(-4px) translateZ(12px) rotateX(0deg) scale(1.02);
    box-shadow: 
        0 20px 80px rgba(0, 82, 255, 0.25),
        0 16px 64px rgba(0, 82, 255, 0.2),
        0 8px 32px rgba(0, 82, 255, 0.15),
        0 4px 16px rgba(0, 82, 255, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(50px) saturate(220%);
    -webkit-backdrop-filter: blur(50px) saturate(220%);
}

.btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    color: var(--accent);
}

[data-theme="dark"] .btn-secondary {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.18) 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 0 8px rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        0 0 20px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
}

[data-theme="dark"] .btn-secondary:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.22) 100%);
    border: 1px solid rgba(0, 82, 255, 0.4);
    color: #ffffff;
    backdrop-filter: blur(50px) saturate(220%);
    -webkit-backdrop-filter: blur(50px) saturate(220%);
}

.btn-outline {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.75) 50%,
        rgba(0, 0, 0, 0.8) 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(0, 82, 255, 0.2);
    position: relative;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 0 8px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-outline:hover::after {
    opacity: 1;
}

.btn-outline:hover {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.85) 50%,
        rgba(0, 0, 0, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.4),
        0 6px 24px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 82, 255, 0.4);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
}

.btn-outline:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

[data-theme="dark"] .btn-outline {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 255, 255, 0.58) 100%);
    color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 1), 0 0 8px rgba(255, 255, 255, 0.6), 0 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 82, 255, 0.2);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
}

[data-theme="dark"] .btn-outline:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.7) 0%, 
        rgba(255, 255, 255, 0.65) 50%,
        rgba(255, 255, 255, 0.68) 100%);
    border-color: rgba(255, 255, 255, 0.7);
    color: #000000;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 0.7), 0 2px 3px rgba(0, 0, 0, 0.4);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.5),
        0 6px 24px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 82, 255, 0.3);
}

/* Sections */
section {
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 3rem 0;
    }
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
    color: var(--text-primary);
    letter-spacing: -0.045em;
    line-height: 1.05;
    position: relative;
    padding-bottom: 0;
    will-change: transform;
}

[data-theme="dark"] .section-title {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.intro {
    background-color: var(--bg-primary);
    padding: 2.5rem 0;
    position: relative;
}

/* Liquid Glass Effect for Intro Section in Light Mode */
:root:not([data-theme="dark"]) .intro {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.4) 50%,
        rgba(250, 250, 250, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

@media (min-width: 768px) {
    .intro {
        padding: 3rem 0;
    }
}

.intro-text {
    font-size: clamp(1.375rem, 3.5vw, 2rem);
    line-height: 1.85;
    color: var(--text-secondary);
    text-align: left;
    max-width: 900px;
    margin: 0;
    letter-spacing: -0.02em;
    font-weight: 500;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

[data-theme="dark"] .intro-text {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

/* Feature Checkmark - Premium 3D Design */
.feature-checkmark {
    width: auto;
    height: auto;
    min-width: auto;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: none;
    border: none;
    box-shadow: none;
}

.feature-checkmark svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    transform: translateZ(8px) rotateX(5deg);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: 
        drop-shadow(0 4px 12px rgba(0, 82, 255, 0.5))
        drop-shadow(0 2px 6px rgba(0, 82, 255, 0.4))
        drop-shadow(0 1px 3px rgba(0, 82, 255, 0.3))
        drop-shadow(0 0 8px rgba(0, 82, 255, 0.2));
}

.feature-checkmark svg path {
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: 
        drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3))
        drop-shadow(0 -1px 2px rgba(0, 0, 0, 0.2));
}

.feature-item:hover .feature-checkmark svg {
    transform: translateZ(15px) rotateX(0deg) scale(1.15);
    filter: 
        drop-shadow(0 6px 20px rgba(0, 82, 255, 0.6))
        drop-shadow(0 3px 10px rgba(0, 82, 255, 0.5))
        drop-shadow(0 1px 5px rgba(0, 82, 255, 0.4))
        drop-shadow(0 0 12px rgba(0, 82, 255, 0.3));
}

[data-theme="dark"] .feature-checkmark svg {
    filter: 
        drop-shadow(0 4px 12px rgba(0, 82, 255, 0.6))
        drop-shadow(0 2px 6px rgba(0, 82, 255, 0.5))
        drop-shadow(0 1px 3px rgba(0, 82, 255, 0.4))
        drop-shadow(0 0 10px rgba(0, 82, 255, 0.4));
}

[data-theme="dark"] .feature-item:hover .feature-checkmark svg {
    filter: 
        drop-shadow(0 6px 20px rgba(0, 82, 255, 0.7))
        drop-shadow(0 3px 10px rgba(0, 82, 255, 0.6))
        drop-shadow(0 1px 5px rgba(0, 82, 255, 0.5))
        drop-shadow(0 0 15px rgba(0, 82, 255, 0.5));
}

@media (min-width: 768px) {
    .feature-checkmark svg {
        width: 36px;
        height: 36px;
    }
}

/* Services Preview */
.services-preview {
    background-color: var(--bg-primary);
    padding: 2.5rem 0;
    position: relative;
}

/* Liquid Glass Effect for Services Preview in Light Mode */
:root:not([data-theme="dark"]) .services-preview {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.4) 50%,
        rgba(250, 250, 250, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

@media (min-width: 768px) {
    .services-preview {
        padding: 3rem 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
}

.services-grid > * {
    border-bottom: 1px solid var(--border-light);
}

.services-grid > *:last-child {
    border-bottom: none;
}

.service-card {
    background-color: var(--bg-primary);
    padding: 2rem 1.5rem;
    border: none;
    text-align: left;
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: visible;
    box-shadow: none;
    border-radius: 0;
    will-change: transform;
}

@media (min-width: 768px) {
    .service-card {
        padding: 2.5rem 2rem;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

/* Liquid Glass Effect for Service Cards in Light Mode */
:root:not([data-theme="dark"]) .service-card::before {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.7) 50%,
        rgba(250, 250, 250, 0.8) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
}

.service-card:hover::before {
    opacity: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
}

:root:not([data-theme="dark"]) .service-card:hover::before {
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.08),
        0 6px 24px rgba(0, 0, 0, 0.04),
        0 2px 8px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}


.service-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover {
    transform: translateY(-8px) translateZ(25px) rotateX(3deg);
}

.service-icon-wrapper {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    border: none !important;
    border-radius: 0;
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: visible;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: none !important;
    will-change: transform;
}

/* Premium Liquid Glass Effect for Light Mode - No Box */
:root:not([data-theme="dark"]) .service-icon-wrapper {
    background: none !important;
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: none !important;
    box-shadow: none !important;
}

.service-icon-wrapper::before,
.service-icon-wrapper::after,
.service-icon-wrapper-large::before,
.service-icon-wrapper-large::after,
.contact-icon-wrapper::before,
.contact-icon-wrapper::after {
    display: none !important;
}

[data-theme="dark"] .service-icon-wrapper::after {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0) 100%);
    opacity: 0.3;
}

.service-card:hover .service-icon-wrapper::before {
    opacity: 1;
}

.service-icon {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
    stroke-width: 2;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transform: translateZ(10px);
}

/* 3D Icon Gradient Effect */
.service-icon path,
.service-icon rect,
.service-icon circle,
.service-icon line {
    stroke: currentColor;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.service-card:hover .service-icon-wrapper {
    transform: translateY(-8px) translateZ(30px) rotateX(0deg) rotateY(3deg);
    border-color: var(--accent);
    box-shadow: 
        0 20px 70px rgba(0, 82, 255, 0.4),
        0 16px 56px rgba(0, 82, 255, 0.35),
        0 8px 28px rgba(0, 82, 255, 0.25),
        0 4px 14px rgba(0, 82, 255, 0.2),
        0 2px 8px rgba(0, 82, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

:root:not([data-theme="dark"]) .service-card:hover .service-icon-wrapper {
    box-shadow: 
        0 20px 60px rgba(0, 82, 255, 0.25),
        0 16px 48px rgba(0, 82, 255, 0.2),
        0 8px 24px rgba(0, 82, 255, 0.12),
        0 4px 12px rgba(0, 82, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02),
        0 0 0 1px rgba(0, 82, 255, 0.1) inset;
}

.service-card:hover .service-icon {
    color: var(--accent);
    transform: scale(1.1) translateZ(20px);
    filter: drop-shadow(0 4px 8px rgba(0, 82, 255, 0.3));
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

[data-theme="dark"] .service-card h3 {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.125rem;
    letter-spacing: -0.015em;
    position: relative;
    z-index: 1;
    font-weight: 500;
    max-width: 100%;
}

[data-theme="dark"] .service-card p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .service-card p {
    color: var(--text-secondary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Process Section */
.process {
    background-color: var(--bg-primary);
    padding: 2.5rem 0;
    position: relative;
}

/* Liquid Glass Effect for Process Section in Light Mode */
:root:not([data-theme="dark"]) .process {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.4) 50%,
        rgba(250, 250, 250, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

@media (min-width: 768px) {
    .process {
        padding: 5rem 0;
    }
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-steps {
        gap: 2rem;
    }
}

.process-step {
    background-color: transparent;
    padding: 0;
    text-align: left;
    padding-left: 0;
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 1rem;
}

@media (min-width: 768px) {
    .process-step {
        gap: 1.5rem;
    }
}

.process-step::before {
    display: none;
}

.process-step:hover::before {
    display: none;
}

.step-number {
    width: auto;
    height: auto;
    min-width: 0;
    background: none !important;
    color: var(--accent);
    border: none !important;
    border-radius: 0;
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    position: relative;
    letter-spacing: -0.05em;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: stepNumberFloat 3s ease-in-out infinite;
    /* Premium 3D Text Effect - No Box */
    text-shadow: 
        0 0 20px rgba(0, 82, 255, 0.6),
        0 0 40px rgba(0, 82, 255, 0.4),
        0 0 60px rgba(0, 82, 255, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 82, 255, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateZ(20px) rotateX(8deg) rotateY(-5deg);
    filter: drop-shadow(0 0 15px rgba(0, 82, 255, 0.5));
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
    line-height: 1;
    padding: 0;
    margin: 0;
    box-shadow: none !important;
}

/* Enhanced 3D for Light Mode */
:root:not([data-theme="dark"]) .step-number {
    background: none !important;
    color: var(--accent);
    border: none !important;
    box-shadow: none !important;
    text-shadow: 
        0 0 25px rgba(0, 82, 255, 0.7),
        0 0 50px rgba(0, 82, 255, 0.5),
        0 0 75px rgba(0, 82, 255, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 82, 255, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.15);
    filter: drop-shadow(0 0 20px rgba(0, 82, 255, 0.6)) drop-shadow(0 4px 8px rgba(0, 82, 255, 0.3));
}

/* Smooth floating animation for step numbers */
@keyframes stepNumberFloat {
    0%, 100% {
        transform: translateZ(20px) rotateX(8deg) rotateY(-5deg) translateY(0px);
    }
    50% {
        transform: translateZ(25px) rotateX(6deg) rotateY(-3deg) translateY(-4px);
    }
}

/* Staggered animation delays for each step */
.process-step:nth-child(1) .step-number {
    animation-delay: 0s;
}

.process-step:nth-child(2) .step-number {
    animation-delay: 0.3s;
}

.process-step:nth-child(3) .step-number {
    animation-delay: 0.6s;
}

.step-number::before {
    content: attr(data-number);
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(0, 82, 255, 0.2);
    transform: translateZ(-10px) translateY(2px);
    z-index: -1;
    filter: blur(2px);
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%) translateZ(-5px);
    pointer-events: none;
    z-index: -1;
}

.process-step {
    transform-style: preserve-3d;
    perspective: 1000px;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.process-step:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step:nth-child(2) {
    animation-delay: 0.3s;
}

.process-step:nth-child(3) {
    animation-delay: 0.5s;
}

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

.process-step {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-step:hover {
    transform: translateX(8px);
}

.process-step:hover .step-number {
    animation: none;
    transform: translateZ(40px) rotateX(0deg) rotateY(8deg) scale(1.15);
    text-shadow: 
        0 0 30px rgba(0, 82, 255, 0.9),
        0 0 60px rgba(0, 82, 255, 0.7),
        0 0 90px rgba(0, 82, 255, 0.5),
        0 6px 12px rgba(0, 0, 0, 0.4),
        0 12px 24px rgba(0, 82, 255, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 25px rgba(0, 82, 255, 0.8)) drop-shadow(0 6px 12px rgba(0, 82, 255, 0.5));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Enhanced 3D on Hover for Light Mode */
:root:not([data-theme="dark"]) .process-step:hover .step-number {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    text-shadow: 
        0 0 35px rgba(0, 82, 255, 0.9),
        0 0 70px rgba(0, 82, 255, 0.7),
        0 0 100px rgba(0, 82, 255, 0.5),
        0 6px 12px rgba(0, 0, 0, 0.25),
        0 12px 24px rgba(0, 82, 255, 0.6),
        0 4px 8px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 0 30px rgba(0, 82, 255, 0.8)) drop-shadow(0 8px 16px rgba(0, 82, 255, 0.5));
}

/* Enhanced 3D glow pulse on hover */
.process-step:hover .step-number::after {
    animation: numberPulse 1.5s ease-in-out infinite;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.3) 0%, transparent 70%);
}

@keyframes numberPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

[data-theme="dark"] .step-number {
    background: none !important;
    color: var(--accent-light);
    border: none !important;
    box-shadow: none !important;
    text-shadow: 
        0 0 30px rgba(0, 82, 255, 0.8),
        0 0 60px rgba(0, 82, 255, 0.6),
        0 0 90px rgba(0, 82, 255, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.5),
        0 8px 16px rgba(0, 82, 255, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 20px rgba(0, 82, 255, 0.7)) drop-shadow(0 4px 8px rgba(0, 82, 255, 0.4));
}

[data-theme="dark"] .process-step:hover .step-number {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    text-shadow: 
        0 0 40px rgba(0, 82, 255, 1),
        0 0 80px rgba(0, 82, 255, 0.8),
        0 0 120px rgba(0, 82, 255, 0.6),
        0 6px 12px rgba(0, 0, 0, 0.6),
        0 12px 24px rgba(0, 82, 255, 0.6),
        0 4px 8px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 0 30px rgba(0, 82, 255, 0.9)) drop-shadow(0 8px 16px rgba(0, 82, 255, 0.6));
}

@media (min-width: 768px) {
    .step-number {
        min-width: 0;
        font-size: 3rem;
    }
}

.process-step h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    margin-top: 0;
    color: var(--text-primary);
    letter-spacing: -0.035em;
    line-height: 1.25;
    grid-column: 2;
}

[data-theme="dark"] .process-step h3 {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .process-step h3 {
        font-size: 1.875rem;
        margin-bottom: 1rem;
        margin-top: 0.5rem;
    }
}

[data-theme="dark"] .process-step h3 {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.process-step p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.75;
    letter-spacing: -0.015em;
    font-weight: 500;
    grid-column: 2;
    margin-top: 0;
}

[data-theme="dark"] .process-step p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .process-step p {
    color: var(--text-secondary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Portfolio Preview */
.portfolio-preview {
    background-color: var(--bg-primary);
    padding: 2.5rem 0;
    position: relative;
}

/* Liquid Glass Effect for Portfolio Preview Section in Light Mode */
:root:not([data-theme="dark"]) .portfolio-preview {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.4) 50%,
        rgba(250, 250, 250, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

@media (min-width: 768px) {
    .portfolio-preview {
        padding: 3rem 0;
    }
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .portfolio-grid {
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

.portfolio-card {
    background-color: transparent;
    border: none;
    overflow: visible;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    will-change: transform;
}

/* Liquid Glass Effect for Portfolio Cards in Light Mode */
:root:not([data-theme="dark"]) .portfolio-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.4) 50%,
        rgba(250, 250, 250, 0.5) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    padding: 0;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
}

.portfolio-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

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

.portfolio-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.portfolio-card:hover {
    transform: translateY(-14px) translateZ(30px) rotateX(2deg);
    box-shadow: 
        0 32px 128px rgba(0, 0, 0, 0.2),
        0 16px 64px rgba(0, 82, 255, 0.3),
        0 8px 32px rgba(0, 82, 255, 0.2);
    will-change: transform;
}

:root:not([data-theme="dark"]) .portfolio-card:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.6) 50%,
        rgba(250, 250, 250, 0.7) 100%);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 16px 64px rgba(0, 0, 0, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(0, 82, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
}

.portfolio-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--bg-secondary);
    margin-bottom: 2rem;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.02);
}

.portfolio-content {
    padding: 0;
}

.portfolio-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    line-height: 1.2;
}

[data-theme="dark"] .portfolio-card h3 {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .portfolio-card h3 {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.portfolio-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1.125rem;
    letter-spacing: -0.015em;
    font-weight: 500;
}

[data-theme="dark"] .portfolio-card p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .portfolio-card p {
    color: var(--text-secondary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Portfolio Full Page */
.portfolio-intro {
    padding: 2.5rem 0 2rem;
    background-color: var(--bg-primary);
    position: relative;
}

/* Liquid Glass Effect for Portfolio Intro in Light Mode */
:root:not([data-theme="dark"]) .portfolio-intro {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.4) 50%,
        rgba(250, 250, 250, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.portfolio-description {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: left;
    max-width: 800px;
    margin: 0;
    letter-spacing: -0.01em;
}

[data-theme="dark"] .portfolio-description {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.portfolio-full {
    background-color: var(--bg-secondary);
    padding: 2.5rem 0;
    position: relative;
}

/* Liquid Glass Effect for Portfolio Full in Light Mode */
:root:not([data-theme="dark"]) .portfolio-full {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.4) 50%,
        rgba(250, 250, 250, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.portfolio-item {
    background-color: transparent;
    border: none;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.portfolio-item:hover {
    transform: translateY(-8px) translateZ(15px) rotateX(1deg);
}

.portfolio-item .portfolio-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    margin-bottom: 3rem;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.02);
}

.portfolio-content {
    padding: 0;
}

.portfolio-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.portfolio-type {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.portfolio-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
    max-width: 700px;
}

/* CTA Banner */
.cta-banner {
    background: var(--bg-dark);
    color: var(--white);
    text-align: left;
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Liquid Glass Overlay for CTA Banner in Light Mode */
:root:not([data-theme="dark"]) .cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%,
        rgba(250, 250, 250, 0.08) 100%);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    pointer-events: none;
    z-index: 0;
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 3rem 0;
    }
}

[data-theme="dark"] .cta-banner {
    background: var(--gray-900);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 20s ease-in-out infinite;
}

.cta-banner h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    line-height: 1.02;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

[data-theme="dark"] .cta-banner h2 {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 4px 24px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.15);
    font-weight: 700;
}

.cta-banner p {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}

[data-theme="dark"] .cta-banner p {
    color: rgba(255, 255, 255, 0.95);
    opacity: 1;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8), 0 2px 12px rgba(0, 0, 0, 0.6), 0 0 12px rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        gap: 1.25rem;
        flex-wrap: wrap;
    }
}

.cta-section {
    text-align: left;
    padding: 2.5rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    background: radial-gradient(circle at center, rgba(0, 82, 255, 0.18) 0%, transparent 70%), var(--bg-secondary);
}

/* Liquid Glass Effect for CTA Section in Light Mode */
:root:not([data-theme="dark"]) .cta-section {
    background: radial-gradient(circle at center, rgba(0, 82, 255, 0.18) 0%, transparent 70%), linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.4) 50%,
        rgba(250, 250, 250, 0.5) 100%);
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);
    border: none;
    box-shadow: none;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }
}

.cta-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.045em;
    line-height: 1.05;
}

[data-theme="dark"] .cta-section h2 {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.4);
}

.cta-section p {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    font-weight: 500;
    line-height: 1.7;
}

[data-theme="dark"] .cta-section p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Page Header */
.page-header {
    margin-top: 0;
    padding-top: 90px;
    padding-bottom: 2.5rem;
    background: var(--bg-dark);
    color: var(--white);
    text-align: left;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .page-header {
        padding-bottom: 3rem;
    }
}

[data-theme="dark"] .page-header {
    background: var(--gray-900);
}

.page-header-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 82, 255, 0.1) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

[data-theme="dark"] .page-header-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 82, 255, 0.15) 50%, rgba(0, 0, 0, 0.9) 100%);
}

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

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.045em;
    line-height: 1;
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .page-header h1 {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 4px 24px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.15);
}

.page-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    opacity: 0.9;
    position: relative;
    z-index: 1;
    letter-spacing: -0.015em;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    line-height: 1.6;
}

[data-theme="dark"] .page-subtitle {
    color: rgba(255, 255, 255, 0.95);
    opacity: 1;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8), 0 2px 12px rgba(0, 0, 0, 0.6), 0 0 12px rgba(255, 255, 255, 0.1);
}

/* About Page */
.about-content {
    padding: 2.5rem 0;
    background-color: var(--bg-primary);
    position: relative;
}

/* Liquid Glass Effect for About Content in Light Mode */
:root:not([data-theme="dark"]) .about-content {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.4) 50%,
        rgba(250, 250, 250, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.about-main {
    margin-bottom: 3rem;
}

.about-image {
    width: 100%;
    max-width: 800px;
    height: 250px;
    object-fit: cover;
    margin: 0 0 2rem 0;
    display: block;
}

@media (min-width: 768px) {
    .about-image {
        height: 400px;
    }
}

@media (min-width: 1024px) {
    .about-image {
        height: 500px;
    }
}

.lead-text {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.5;
    letter-spacing: -0.02em;
    font-weight: 600;
}

[data-theme="dark"] .lead-text {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.about-text p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.015em;
    max-width: 800px;
    font-weight: 500;
}

[data-theme="dark"] .about-text p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.mission-card {
    background-color: var(--bg-secondary);
    padding: 2rem 1.5rem;
    border-left: 3px solid var(--accent);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-sm);
    border: none;
    position: relative;
    overflow: hidden;
}

/* Liquid Glass Effect for Mission Cards in Light Mode */
:root:not([data-theme="dark"]) .mission-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.85) 0%, 
        rgba(255, 255, 255, 0.75) 50%,
        rgba(250, 250, 250, 0.8) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-left: 3px solid var(--accent);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
}

@media (min-width: 768px) {
    .mission-card {
        padding: 3.5rem 3rem;
    }
}

.mission-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mission-card:hover {
    transform: translateX(12px) translateZ(15px) rotateY(2deg);
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-lg), 0 8px 32px rgba(0, 82, 255, 0.1);
    border-left-width: 4px;
}

:root:not([data-theme="dark"]) .mission-card:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.85) 50%,
        rgba(250, 250, 250, 0.9) 100%);
    backdrop-filter: blur(35px) saturate(200%);
    -webkit-backdrop-filter: blur(35px) saturate(200%);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.08),
        0 6px 24px rgba(0, 0, 0, 0.04),
        0 2px 8px rgba(0, 82, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
}

.mission-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.035em;
    line-height: 1.2;
}

[data-theme="dark"] .mission-card h2 {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.mission-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1.125rem;
    letter-spacing: -0.015em;
    font-weight: 500;
}

[data-theme="dark"] .mission-card p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.star-decoration {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.mission-card {
    position: relative;
}

.premium-star {
    width: 80px;
    height: 80px;
    animation: starFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(0, 82, 255, 0.25));
}

.premium-star path {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mission-card:hover .premium-star {
    transform: scale(1.15) rotate(10deg);
    filter: drop-shadow(0 0 20px rgba(0, 82, 255, 0.4));
    opacity: 0.8;
}

.mission-card:hover .premium-star path {
    opacity: 1;
}

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

[data-theme="dark"] .premium-star {
    filter: drop-shadow(0 0 18px rgba(0, 82, 255, 0.35));
    opacity: 0.5;
}

[data-theme="dark"] .mission-card:hover .premium-star {
    filter: drop-shadow(0 0 25px rgba(0, 82, 255, 0.5));
    opacity: 0.7;
}

/* Services Full Page */
.services-full {
    padding: 4rem 0;
    background-color: var(--bg-primary);
    position: relative;
}

/* Liquid Glass Effect for Services Full Page in Light Mode */
:root:not([data-theme="dark"]) .services-full {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.4) 50%,
        rgba(250, 250, 250, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

@media (min-width: 768px) {
    .services-full {
        padding: 5rem 0;
    }
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 6rem;
}

.service-item {
    background-color: transparent;
    padding: 0;
    border-left: 2px solid var(--border);
    padding-left: 3rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.service-item::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--accent);
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item:hover::before {
    height: 100%;
}

.service-item:hover {
    padding-left: 4rem;
}

.service-icon-wrapper-large {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    border: none !important;
    border-radius: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: visible;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: none !important;
}

/* Premium Liquid Glass Effect for Light Mode - No Box */
:root:not([data-theme="dark"]) .service-icon-wrapper-large {
    background: none !important;
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: none !important;
    box-shadow: none !important;
}

/* All pseudo-elements removed - no boxes */

.service-icon-large {
    width: 28px;
    height: 28px;
    color: var(--text-primary);
    stroke-width: 2;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transform: translateZ(10px);
}

/* 3D Icon Gradient Effect */
.service-icon-large path,
.service-icon-large rect,
.service-icon-large circle,
.service-icon-large line {
    stroke: currentColor;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.service-item:hover .service-icon-wrapper-large {
    transform: translateY(-4px) translateZ(20px) rotateX(5deg);
    border: none !important;
    box-shadow: none !important;
}

:root:not([data-theme="dark"]) .service-item:hover .service-icon-wrapper-large {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.service-item:hover .service-icon-large {
    color: var(--accent);
    transform: scale(1.1) translateZ(20px);
    filter: drop-shadow(0 4px 8px rgba(0, 82, 255, 0.3));
}

.service-item h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.035em;
    line-height: 1.25;
}

[data-theme="dark"] .service-item h2 {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.service-item p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1.125rem;
    letter-spacing: -0.015em;
    max-width: 700px;
    margin: 0;
    font-weight: 500;
}

[data-theme="dark"] .service-item p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.process-section {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 1px solid var(--border);
    position: relative;
}

/* Liquid Glass Effect for Process Section in Light Mode */
:root:not([data-theme="dark"]) .process-section {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.4) 50%,
        rgba(250, 250, 250, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
    .process-section {
        margin-top: 6rem;
        padding-top: 6rem;
    }
}

/* Contact Page */
.contact-content {
    padding: 2.5rem 0;
    background-color: var(--bg-primary);
    position: relative;
}

/* Liquid Glass Effect for Contact Content Section in Light Mode */
:root:not([data-theme="dark"]) .contact-content {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.4) 50%,
        rgba(250, 250, 250, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

@media (min-width: 768px) {
    .contact-content {
        padding: 3rem 0;
    }
}

.contact-intro {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-intro p {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 0 1.25rem 0;
    letter-spacing: -0.01em;
}

.contact-intro p:last-child {
    margin-bottom: 0;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border: none;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Liquid Glass Effect for Contact Buttons in Light Mode */
:root:not([data-theme="dark"]) .contact-btn {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.75) 0%, 
        rgba(255, 255, 255, 0.65) 50%,
        rgba(250, 250, 250, 0.7) 100%);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    border: none;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
    .contact-btn {
        padding: 1.75rem;
        gap: 1.5rem;
    }
}

.contact-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.contact-btn:hover::before {
    width: 4px;
}

.contact-btn {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-btn:hover {
    transform: translateX(8px) translateZ(12px) rotateY(1deg);
    border: none;
    background-color: var(--bg-primary);
}

:root:not([data-theme="dark"]) .contact-btn:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.85) 0%, 
        rgba(255, 255, 255, 0.75) 50%,
        rgba(250, 250, 250, 0.8) 100%);
    backdrop-filter: blur(60px) saturate(220%);
    -webkit-backdrop-filter: blur(60px) saturate(220%);
    border: none;
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.1),
        0 6px 24px rgba(0, 0, 0, 0.05);
}

.contact-icon-wrapper {
    width: 52px;
    height: 52px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    border: none !important;
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: visible;
    flex-shrink: 0;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: none !important;
}

/* Premium 3D Depth Layer - Subtle and Refined */
.contact-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%) translateZ(-12px);
    background: radial-gradient(circle, 
        rgba(0, 82, 255, 0.08) 0%,
        rgba(0, 82, 255, 0.04) 30%,
        transparent 60%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
    border-radius: 50%;
}

.contact-btn:hover .contact-icon-wrapper::before {
    opacity: 1;
}

/* Premium Liquid Glass Effect for Light Mode */
:root:not([data-theme="dark"]) .contact-icon-wrapper {
    background: none !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: none !important;
    box-shadow: none !important;
}

:root:not([data-theme="dark"]) .contact-icon-wrapper::before {
    background: radial-gradient(circle, 
        rgba(0, 82, 255, 0.12) 0%,
        rgba(0, 82, 255, 0.06) 30%,
        transparent 60%);
}

/* Dark Mode Premium Lighting */
[data-theme="dark"] .contact-icon-wrapper::before {
    background: radial-gradient(circle, 
        rgba(0, 82, 255, 0.15) 0%,
        rgba(0, 82, 255, 0.08) 30%,
        transparent 60%);
}

.contact-icon {
    width: 26px;
    height: 26px;
    color: var(--text-primary);
    stroke-width: 2.5;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 3;
    transform: translateZ(8px);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

/* Premium 3D Icon Styling - Clean and Refined */
.contact-icon path,
.contact-icon rect,
.contact-icon circle,
.contact-icon line,
.contact-icon polyline {
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

/* Light Mode - Subtle Premium Effect */
:root:not([data-theme="dark"]) .contact-icon {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}

:root:not([data-theme="dark"]) .contact-icon path,
:root:not([data-theme="dark"]) .contact-icon rect,
:root:not([data-theme="dark"]) .contact-icon circle,
:root:not([data-theme="dark"]) .contact-icon line,
:root:not([data-theme="dark"]) .contact-icon polyline {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

/* Dark Mode - Enhanced but Still Refined */
[data-theme="dark"] .contact-icon {
    filter: 
        drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3))
        drop-shadow(0 0 12px rgba(0, 82, 255, 0.15));
}

[data-theme="dark"] .contact-icon path,
[data-theme="dark"] .contact-icon rect,
[data-theme="dark"] .contact-icon circle,
[data-theme="dark"] .contact-icon line,
[data-theme="dark"] .contact-icon polyline {
    filter: 
        drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3))
        drop-shadow(0 0 6px rgba(0, 82, 255, 0.1));
}

/* Premium Hover Effect - Elegant and Refined */
.contact-btn:hover .contact-icon-wrapper {
    transform: translateY(-4px) translateZ(16px);
    border: none !important;
    box-shadow: none !important;
    background: none !important;
}

.contact-btn:hover .contact-icon-wrapper::before {
    opacity: 1;
    transform: translate(-50%, -50%) translateZ(-16px) scale(1.3);
}

:root:not([data-theme="dark"]) .contact-btn:hover .contact-icon-wrapper {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

[data-theme="dark"] .contact-btn:hover .contact-icon-wrapper {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.contact-btn:hover .contact-icon {
    color: var(--accent);
    transform: translateZ(20px) scale(1.08);
    filter: 
        drop-shadow(0 4px 12px rgba(0, 82, 255, 0.3))
        drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
    stroke-width: 2.8;
}

.contact-btn:hover .contact-icon path,
.contact-btn:hover .contact-icon rect,
.contact-btn:hover .contact-icon circle,
.contact-btn:hover .contact-icon line,
.contact-btn:hover .contact-icon polyline {
    filter: 
        drop-shadow(0 2px 4px rgba(0, 82, 255, 0.25))
        drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

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

.contact-btn-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    margin-top: 0;
    letter-spacing: -0.03em;
    line-height: 1.25;
}

[data-theme="dark"] .contact-btn-content h3 {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.contact-btn-content p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    letter-spacing: -0.015em;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

[data-theme="dark"] .contact-btn-content p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Contact Info Text Section */
.contact-info-text {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    position: relative;
}

.contact-info-text > p {
    margin-bottom: 0.75rem;
}

.contact-info-text .facsimile {
    margin-bottom: 2.5rem;
}

.contact-info-text .company-name {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-info-text .company-location {
    color: var(--text-secondary);
    margin-top: 0;
    margin-bottom: 0;
}

/* Liquid Glass Effect for Contact Info Text in Light Mode */
:root:not([data-theme="dark"]) .contact-info-text {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0.2) 50%,
        rgba(250, 250, 250, 0.3) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 0;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-info-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-primary);
}

[data-theme="dark"] .contact-info-text p {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.contact-info-text strong {
    font-weight: 600;
    color: var(--text-primary);
}

[data-theme="dark"] .contact-info-text strong {
    color: #ffffff !important;
}

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

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

.business-info {
    background-color: var(--bg-secondary);
    padding: 4rem 3rem;
    margin-bottom: 5rem;
    border: 1px solid var(--border);
}

.business-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    padding: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-item a {
    color: var(--accent);
    text-decoration: none;
    font-size: 1.0625rem;
    transition: opacity 0.3s ease;
    letter-spacing: -0.01em;
}

.info-item a:hover {
    opacity: 0.7;
}

.info-item span {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    letter-spacing: -0.01em;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 0 2rem;
    background-color: var(--bg-primary);
}

[data-theme="dark"] .legal-content {
    background-color: #000000 !important;
}

[data-theme="dark"] body {
    background-color: #000000 !important;
}

@media (min-width: 768px) {
    .legal-content {
        padding: 4.5rem 0 2.5rem;
    }
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    background-color: transparent;
    padding: 0;
    color: #000000 !important;
}

[data-theme="dark"] .legal-text {
    color: #ffffff !important;
}

.legal-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #000000 !important;
    letter-spacing: -0.035em;
    line-height: 1.25;
}

[data-theme="dark"] .legal-text h2 {
    color: #ffffff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.legal-text h2:first-of-type {
    margin-top: 0;
}

.legal-text p {
    color: #000000 !important;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    letter-spacing: -0.015em;
    font-weight: 400;
}

[data-theme="dark"] .legal-text p {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.legal-text p:first-of-type {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-text p:nth-of-type(2) {
    font-weight: 600;
    margin-bottom: 2rem;
}

.legal-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: #000000 !important;
}

[data-theme="dark"] .legal-text ul {
    color: #ffffff !important;
}

.legal-text li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    font-size: 1.0625rem;
    letter-spacing: -0.015em;
    font-weight: 400;
    color: #000000 !important;
}

[data-theme="dark"] .legal-text li {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.legal-text strong {
    color: #000000 !important;
    font-weight: 700;
}

[data-theme="dark"] .legal-text strong {
    color: #ffffff !important;
}

.legal-text a {
    color: #000000 !important;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

[data-theme="dark"] .legal-text a {
    color: #ffffff !important;
    text-decoration: underline;
}

.legal-text a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Premium Footer */
.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 2rem;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 0 2.5rem;
    }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 82, 255, 0.5) 50%, transparent 100%);
    box-shadow: 
        0 0 16px rgba(0, 82, 255, 0.4),
        0 0 32px rgba(0, 82, 255, 0.2);
}

[data-theme="dark"] .footer {
    background-color: var(--gray-900);
    border-top-color: rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    position: relative;
}

@media (min-width: 768px) {
    .footer-content {
        gap: 6rem;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

.footer-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 82, 255, 0.8) 10%,
        rgba(0, 82, 255, 1) 25%,
        rgba(26, 107, 255, 1) 50%,
        rgba(0, 82, 255, 1) 75%,
        rgba(0, 82, 255, 0.8) 90%,
        transparent 100%);
    box-shadow: 
        0 0 20px rgba(0, 82, 255, 0.8),
        0 0 40px rgba(0, 82, 255, 0.6),
        0 0 60px rgba(0, 82, 255, 0.4),
        0 0 80px rgba(0, 82, 255, 0.2);
}

.footer-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-section h3 {
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(0, 82, 255, 0.8) 50%, transparent 100%);
    box-shadow: 
        0 0 12px rgba(0, 82, 255, 0.6),
        0 0 24px rgba(0, 82, 255, 0.4),
        0 0 8px rgba(0, 82, 255, 0.8);
    border-radius: 2px;
}

[data-theme="dark"] .footer-section h3 {
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(255, 255, 255, 0.1);
}

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

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

@media (min-width: 768px) {
    .footer-section li {
        margin-bottom: 2rem;
    }
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 1.125rem;
    letter-spacing: -0.01em;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    display: inline-block;
    position: relative;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .footer-section a {
        font-size: 1.25rem;
    }
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 0 6px rgba(255, 255, 255, 0.1);
}

.footer-section a:hover {
    color: #ffffff;
    padding-left: 0.75rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 0 8px rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.footer-section a:hover::before {
    width: 8px;
}

[data-theme="dark"] .footer-section a:hover {
    color: #ffffff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: left;
    padding-top: 1.5rem;
    position: relative;
    border-top: none;
    margin-top: 0;
}

@media (min-width: 768px) {
    .footer-bottom {
        padding-top: 2rem;
        margin-top: 2rem;
    }
}

.footer-bottom::before {
    display: none;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    font-weight: 500;
    text-shadow: 
        0 0 10px rgba(0, 82, 255, 0.5),
        0 0 20px rgba(0, 82, 255, 0.3),
        0 0 30px rgba(0, 82, 255, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.7;
    font-family: 'Space Grotesk', sans-serif;
}

@media (min-width: 768px) {
    .footer-bottom p {
        font-size: 1.5rem;
    }
}

[data-theme="dark"] .footer-bottom p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 
        0 0 12px rgba(0, 82, 255, 0.6),
        0 0 24px rgba(0, 82, 255, 0.4),
        0 0 36px rgba(0, 82, 255, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.5),
        0 1px 3px rgba(0, 0, 0, 0.4),
        0 0 8px rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 2.5rem;
    }
    
    .nav-link {
        padding: 0;
        border: none;
        font-size: 0.9375rem;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-link:hover {
        padding-left: 0;
        opacity: 0.6;
    }
    
    .nav-link.active {
        padding-left: 0;
        font-weight: 700;
        font-size: 0.9375rem;
        background: none;
        opacity: 1;
        color: var(--accent);
    }
    
    .nav-link.cta-nav {
        margin-top: 0;
        padding: 0.75rem 1.5rem;
        background: var(--black);
        color: var(--white);
    }
    
    .nav-link.cta-nav:hover {
        padding-left: 1.5rem;
        background: var(--black-soft);
    }
    
    .hero-content {
        text-align: left;
    }
    
    .section-title {
        text-align: left;
    }
    
    .intro-text {
        text-align: left;
    }
    
    .process-steps {
        gap: 2rem;
    }
    
    .mission-vision {
        flex-direction: row;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

a:focus,
button:focus {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}
