/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Standard */
    cursor: default; /* Optional: Changes the text cursor to a default cursor */
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Top Wrapper - Unified Background Container */
.top-wrapper {
    position: relative;
    min-height: 100vh;
    overflow: hidden; /* Ensure background effects stay within bounds */
}

/* Background Layers - Unified across top sections */
.bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease-out;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2.5rem 0;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: none;
    transition: background 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #00d4ff;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
    transition: filter 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    border-radius: 0.25rem;
    overflow: hidden;
    outline: none;
}

.nav a:focus-visible,
.nav a:focus,
.nav a:active,
.nav a:hover {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #00a8cc);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a::after {
    display: none;
}

.nav a:hover {
    color: #00d4ff;
    transform: none;
}

.nav a:hover::before {
    transform: scaleX(1);
}

.nav a:hover::after {
    left: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.hamburger-line {
    width: 28px;
    height: 2px;
    background: #00d4ff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-links li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-nav-links li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-nav-links li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #00d4ff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover {
    color: #00d4ff;
}

.mobile-nav-link:hover::after {
    transform: scaleX(1);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 12rem; /* More breathing room and ensures hero text is below fixed header */
    z-index: 100;
}

.hero-label {
    margin-top: 0.35rem;
    letter-spacing: 0.15em;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: #ffffff;
}

.line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
}

.line-1 {
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.line-2 {
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.line-3 {
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-description {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
    position: relative;
    z-index: 100;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 100;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #00d4ff;
    color: #050505;
    border: 2px solid #00d4ff;
}

.btn-primary:hover {
    background: transparent;
    color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: #00d4ff;
    color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* Background Layers */
.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.bg-layer-1 {
    background: linear-gradient(45deg, #050505 0%, #0a0a0a 50%, #050505 100%);
    animation: gradientShift 20s ease-in-out infinite;
}

.bg-layer-2 {
    background: radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    transform: translateX(-10px) translateY(-10px);
}

.bg-layer-3 {
    background: radial-gradient(circle at 70% 60%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    transform: translateX(10px) translateY(10px);
}

.bg-layer-4 {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.02) 0%, transparent 50%);
    animation: subtlePulse 15s ease-in-out infinite alternate;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuOSIgbnVtT2N0YXZlcz0iNCIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPjwvZmlsdGVyPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjbm9pc2UpIiBvcGFjaXR5PSIwLjA1Ii8+PC9zdmc+');
    opacity: 0.5;
    pointer-events: none;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes subtlePulse {
    0% {
        opacity: 0.1;
    }
    100% {
        opacity: 0.2;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentlePulse {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes fadeInMedia {
    to {
        opacity: 1;
    }
}

.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.bg-layer-1 {
    background: linear-gradient(45deg, #050505 0%, #0a0a0a 50%, #050505 100%);
    animation: gradientShift 20s ease-in-out infinite;
}

.bg-layer-2 {
    background: radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    transform: translateX(-10px) translateY(-10px);
}

.bg-layer-3 {
    background: radial-gradient(circle at 70% 60%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    transform: translateX(10px) translateY(10px);
}

.bg-layer-4 {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.02) 0%, transparent 50%);
    animation: subtlePulse 15s ease-in-out infinite alternate;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuOSIgbnVtT2N0YXZlcz0iNCIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPjwvZmlsdGVyPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjbm9pc2UpIiBvcGFjaXR5PSIwLjA1Ii8+PC9zdmc+');
    opacity: 0.5;
    pointer-events: none;
}


.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: #ffffff;
}

.line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
}

.line-1 {
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.line-2 {
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.line-3 {
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-description {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #00d4ff;
    color: #050505;
    border: 2px solid #00d4ff;
}

.btn-primary:hover {
    background: transparent;
    color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: #00d4ff;
    color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* Animations */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes subtlePulse {
    0% {
        opacity: 0.1;
    }
    100% {
        opacity: 0.2;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Capabilities Section */
.capabilities {
    padding: 20rem 0 15rem; /* More top padding for separation, but bg continues */
    background: transparent; /* Allow bg layers to show through */
    position: relative;
    z-index: 20;
}

.capabilities-intro {
    text-align: center;
    margin-bottom: 12rem;
}

.intro-label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 0.25rem;
}

.intro-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.01em;
}

.intro-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    align-items: start;
}

/* Capability Columns - Clean Three-Column Layout */
.capability-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.capability-column.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Media Styling - More Integrated */
.capability-media {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1.6;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
    transition: all 0.6s ease;
}

.media-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(0, 212, 255, 0.02));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.05);
}

.media-placeholder::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    animation: gentlePulse 3s ease-in-out infinite;
}

.media-placeholder img,
.media-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    opacity: 0;
    animation: fadeInMedia 0.6s ease-out 0.2s forwards;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.media-placeholder img.loaded,
.media-placeholder video {
    opacity: 1;
}

.media-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.capability-column:hover .media-placeholder {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.2), 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(0, 212, 255, 0.08);
    transform: translateY(-6px) scale(1.01);
}

.capability-column:hover .media-placeholder::before {
    opacity: 1;
}

.capability-column:hover .media-placeholder img,
.capability-column:hover .media-placeholder video {
    transform: scale(1.03);
}

.capability-block:hover .media-placeholder {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.2), 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(-10px);
}

.capability-block:hover .media-placeholder::before {
    opacity: 1;
}

.capability-block:hover .media-placeholder img,
.capability-block:hover .media-placeholder video {
    transform: scale(1.05);
}

/* Content Styling */
.capability-content {
    padding: 0;
    max-width: 500px;
}

.capability-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.capability-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.capability-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 300;
}

.capability-column:hover .capability-title {
    color: #00d4ff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .capabilities {
        padding: 12rem 0 8rem;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .capability-block {
        gap: 4rem;
        padding: 3rem;
    }

    .capability-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .capabilities {
        padding: 10rem 0 6rem;
    }

    .capabilities-intro {
        margin-bottom: 6rem;
    }

    .intro-headline {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }

    .intro-description {
        font-size: 1rem;
    }

    .capability-block {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem;
    }

    .capability-block--systems .capability-content {
        order: 1;
    }

    .capability-block--systems .capability-media {
        order: 2;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .media-placeholder {
        aspect-ratio: 16 / 10;
    }

    .capability-content {
        padding: 0;
    }

    .capability-title {
        font-size: 1.8rem;
    }

    .capability-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .intro-headline {
        font-size: 1.75rem;
    }

    .capability-number {
        font-size: 0.8rem;
    }

    .capability-title {
        font-size: 1.5rem;
    }

    .capability-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .capability-block {
        gap: 2rem;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .capabilities {
        padding: 6rem 0;
    }

    .capabilities-intro {
        margin-bottom: 4rem;
    }

    .intro-headline {
        font-size: 2.5rem;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .capability-content {
        padding: 1rem 0;
    }

    .capability-title {
        font-size: 1.75rem;
    }

    .capability-description {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .header {
        padding: 1.5rem 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .nav ul {
        gap: 1.5rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-headline {
        font-size: clamp(2.5rem, 12vw, 6rem);
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .capability-card {
        padding: 1.5rem;
    }
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process {
    position: relative;
    padding: 15rem 0;
    background: #050505;
    overflow: hidden;
}

.process-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-intro {
    text-align: center;
    margin-bottom: 10rem;
    position: relative;
    z-index: 10;
}

/* Process Timeline Container */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 10;
}

/* Vertical Timeline Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #00d4ff 0%, rgba(0, 212, 255, 0.4) 100%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transition: height 0.3s ease-out;
}

/* Process Steps */
.process-steps {
    position: relative;
    z-index: 10;
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 12rem;
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.process-step.active .step-glow-orb {
    opacity: 1;
    transform: scale(1);
}

/* Alternate Layout for Even Steps */
.process-step:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.process-step:nth-child(even) .step-number {
    order: 2;
    text-align: left;
}

.process-step:nth-child(even) .step-content {
    order: 1;
    text-align: right;
}

/* Step Number */
.step-number {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(6rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #00d4ff 0%, rgba(0, 212, 255, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-align: right;
    opacity: 0.15;
    transition: all 0.6s ease;
}

.process-step:hover .step-number,
.process-step.active .step-number {
    opacity: 0.3;
    transform: scale(1.05);
}

/* Step Content */
.step-content {
    position: relative;
    z-index: 10;
}

.step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    transition: color 0.4s ease;
}

.process-step:hover .step-title,
.process-step.active .step-title {
    color: #00d4ff;
}

.step-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    max-width: 400px;
    transition: color 0.4s ease;
}

.process-step:hover .step-description,
.process-step.active .step-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Glow Orb Effect */
.step-glow-orb {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 5;
    filter: blur(20px);
}

.process-step:hover .step-glow-orb {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Decorative Elements */
.process-step::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #00d4ff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6), 0 0 40px rgba(0, 212, 255, 0.3);
    z-index: 15;
    opacity: 0;
    transition: all 0.4s ease;
}

.process-step.active::before {
    opacity: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.7;
    }
}

/* Hover Card Effect */
.process-step::after {
    content: '';
    position: absolute;
    inset: -2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, transparent 60%);
    border: 1px solid rgba(0, 212, 255, 0);
    border-radius: 2rem;
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.process-step:hover::after {
    opacity: 1;
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process {
        padding: 10rem 0;
    }

    .process-intro {
        margin-bottom: 8rem;
    }

    .process-step {
        gap: 3rem;
        margin-bottom: 10rem;
    }

    .step-number {
        font-size: clamp(5rem, 10vw, 8rem);
    }

    .step-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
}

@media (max-width: 768px) {
    .process {
        padding: 8rem 0;
    }

    .process-intro {
        margin-bottom: 6rem;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 8rem;
        text-align: center;
    }

    .process-step:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .process-step:nth-child(even) .step-number {
        order: 1;
        text-align: center;
    }

    .process-step:nth-child(even) .step-content {
        order: 2;
        text-align: center;
    }

    .step-number {
        text-align: center;
        font-size: clamp(4rem, 15vw, 6rem);
        margin-bottom: 1rem;
    }

    .step-content {
        text-align: center;
    }

    .step-description {
        max-width: 100%;
        margin: 0 auto;
    }

    .timeline-line {
        left: 2rem;
    }

    .process-step::before {
        left: 2rem;
    }

    .step-glow-orb {
        left: 2rem;
    }
}

@media (max-width: 480px) {
    .process {
        padding: 6rem 0;
    }

    .process-intro {
        margin-bottom: 4rem;
    }

    .process-step {
        margin-bottom: 6rem;
    }

    .step-number {
        font-size: 3.5rem;
    }

    .step-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .step-description {
        font-size: 1rem;
    }
}

/* ============================================
   FEATURED WORK SECTION
   ============================================ */

.featured-work {
    position: relative;
    padding: 15rem 0;
    background: #050505;
    overflow: hidden;
}

.work-intro {
    text-align: center;
    margin-bottom: 8rem;
    position: relative;
    z-index: 10;
}

/* Work Grid - Asymmetric Premium Layout */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 10;
}

/* Work Cards */
.work-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(60px);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    display: block;
}

.work-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.work-card:nth-child(1) {
    transition-delay: 0.1s;
}

.work-card:nth-child(2) {
    transition-delay: 0.2s;
}

.work-card:nth-child(3) {
    transition-delay: 0.3s;
}

.work-card:nth-child(4) {
    transition-delay: 0.4s;
}

/* Large Cards */
.work-card--large {
    grid-column: span 1;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

/* Small Cards */
.work-card--small {
    grid-column: span 1;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.work-card:hover .card-glow {
    opacity: 1;
}

/* Card Image */
.card-image {
    position: relative;
    width: 100%;
    flex: 1;
    overflow: hidden;
    background: #0a0a0a;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.work-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.08), 0 8px 30px rgba(0, 0, 0, 0.4);
}

.work-card:hover .card-image img {
    transform: scale(1.05);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    transition: all 0.4s ease;
    z-index: 1;
}

.work-card:hover .image-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

/* Card Content */
.card-content {
    position: relative;
    padding: 3rem;
    z-index: 3;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .card-content {
    transform: translateY(-10px);
}

/* Card Category */
.card-category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #00d4ff;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.work-card:hover .card-category {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* Card Title */
.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.work-card:hover .card-title {
    color: #00d4ff;
}

/* Card Description */
.card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.work-card:hover .card-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Card Link */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #00d4ff;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .card-link {
    opacity: 1;
    transform: translateX(0);
}

.card-link .arrow-icon {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .card-link .arrow-icon {
    transform: translateX(5px);
}

.work-card:hover .card-link span {
    color: #ffffff;
}

/* Diagonal Accent Line */
.card-accent-line {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #00d4ff 100%);
    transform: rotate(45deg) translateX(50px);
    transform-origin: right;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 4;
}

.work-card:hover .card-accent-line {
    opacity: 0.6;
    transform: rotate(45deg) translateX(0);
}

/* Subtle Glow Behind Card */
.work-card::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: -1;
    filter: blur(30px);
}

.work-card:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-work {
        padding: 10rem 0;
    }

    .work-intro {
        margin-bottom: 6rem;
    }

    .work-card--large {
        min-height: 500px;
    }

    .work-card--small {
        min-height: 350px;
    }

    .card-content {
        padding: 2.5rem;
    }

    .card-accent-line {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .featured-work {
        padding: 8rem 0;
    }

    .work-intro {
        margin-bottom: 4rem;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .work-card--large,
    .work-card--small {
        grid-column: span 1;
        min-height: 450px;
    }

    .card-content {
        padding: 2rem;
    }

    .card-title {
        font-size: 1.75rem;
    }

    .card-accent-line {
        width: 80px;
    }

    /* Show link on mobile by default */
    .card-link {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .featured-work {
        padding: 6rem 0;
    }

    .work-card--large,
    .work-card--small {
        min-height: 400px;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .card-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .card-category {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .card-accent-line {
        width: 60px;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    position: relative;
    padding: 15rem 0;
    background: #050505;
    overflow: hidden;
}

.about-intro {
    text-align: center;
    margin-bottom: 8rem;
}

.about-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 6rem;
}

.about-card {
    position: relative;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(60px);
}

.about-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-card:nth-child(1) {
    transition-delay: 0.1s;
}

.about-card:nth-child(2) {
    transition-delay: 0.2s;
}

.about-card:nth-child(3) {
    transition-delay: 0.3s;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.1);
}

.about-card .card-icon {
    margin-bottom: 2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.about-card:hover .card-icon {
    opacity: 1;
    transform: scale(1.1);
}

.about-card .card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.about-card:hover .card-title {
    color: #00d4ff;
}

.about-card .card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

@media (max-width: 1024px) {
    .about {
        padding: 10rem 0;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 8rem 0;
    }

    .about-intro {
        margin-bottom: 6rem;
    }

    .about-lead {
        font-size: 1.125rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 4rem;
    }

    .about-card {
        padding: 2rem;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    position: relative;
    padding: 15rem 0;
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.contact-content {
    position: relative;
    z-index: 10;
}

.contact-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.contact-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.info-item strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.info-note {
    font-size: 0.875rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.contact-form-wrapper {
    position: relative;
    z-index: 10;
}

.contact-form {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    background: rgba(0, 0, 0, 0.7);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2300d4ff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.125rem;
    padding: 1.25rem 2rem;
    cursor: pointer;
    border: none;
}

/* Form Status Messages */
.form-status {
    display: none;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-status.show {
    display: flex;
}

.form-status svg {
    flex-shrink: 0;
}

.form-status p {
    margin: 0;
}

.form-status-info {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
}

.form-status-success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.form-status-error {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
}

@media (max-width: 1024px) {
    .contact {
        padding: 10rem 0;
    }

    .contact-wrapper {
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 8rem 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-headline {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 6rem 0;
    }

    .contact-headline {
        font-size: 2rem;
    }

    .contact-description {
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    position: relative;
    padding: 6rem 0 3rem;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.footer-nav {
    display: flex;
    justify-content: center;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #00d4ff;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact {
    display: flex;
    justify-content: flex-end;
}

.footer-email {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-email::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

.footer-email:hover {
    color: #00d4ff;
}

.footer-email:hover::after {
    width: 100%;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-nav {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-contact {
        justify-content: center;
    }
}

/* Mobile Navigation Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-link {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .mobile-nav-link {
        font-size: 1.75rem;
    }
}
