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

html {
    scroll-behavior: smooth;
}

/* Optimize scrolling performance */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* GPU acceleration for better performance */
.hero,
.value-proposition,
.capabilities,
.contact {
    transform: translateZ(0);
    will-change: transform;
}

/* Optimize elements that frequently change */
.value-item,
.capability-card,
.contact-item {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Reduce repaints during scroll */
.hero::before,
.hero::after,
.capabilities::before,
.contact::before {
    will-change: opacity;
    transform: translateZ(0);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* Enhanced section typography */
.section-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    display: block;
    position: relative;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #000000, transparent);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-description {
    font-size: 1.1875rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 65ch;
}

.section-subtitle {
    font-size: 1.1875rem;
    color: #666;
    max-width: 70ch;
    margin: 0 auto;
    line-height: 1.7;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 300px;
    filter: none;
    background: transparent;
    mix-blend-mode: multiply;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #000;
}

.contact-btn {
    background: #000;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 2px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    text-align: center;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 25%, #2a1a4a 50%, #1a1a3a 75%, #0a0a1a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(75, 0, 130, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 45% 10%, rgba(25, 25, 112, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 90%, rgba(72, 61, 139, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 25% 80%, rgba(123, 104, 238, 0.06) 0%, transparent 30%),
        linear-gradient(180deg, rgba(25, 25, 112, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="orbitGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23e6e6fa;stop-opacity:0.2"/><stop offset="30%" style="stop-color:%239370db;stop-opacity:0.15"/><stop offset="70%" style="stop-color:%234b0082;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%236495ed;stop-opacity:0.18"/></linearGradient><linearGradient id="starGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ffffff;stop-opacity:0.9"/><stop offset="50%" style="stop-color:%23e6e6fa;stop-opacity:0.7"/><stop offset="100%" style="stop-color:%239370db;stop-opacity:0.5"/></linearGradient></defs><g opacity="0.5"><circle cx="600" cy="400" r="120" fill="none" stroke="url(%23orbitGrad)" stroke-width="1.8"/><circle cx="600" cy="400" r="200" fill="none" stroke="url(%23orbitGrad)" stroke-width="1.2"/><circle cx="600" cy="400" r="300" fill="none" stroke="url(%23orbitGrad)" stroke-width="1"/><ellipse cx="600" cy="400" rx="250" ry="150" fill="none" stroke="url(%23orbitGrad)" stroke-width="0.8" transform="rotate(45 600 400)"/><ellipse cx="600" cy="400" rx="180" ry="320" fill="none" stroke="url(%23orbitGrad)" stroke-width="0.9" transform="rotate(-30 600 400)"/><ellipse cx="600" cy="400" rx="350" ry="180" fill="none" stroke="url(%23orbitGrad)" stroke-width="0.7" transform="rotate(15 600 400)"/><circle cx="600" cy="400" r="10" fill="url(%23starGrad)"/><circle cx="720" cy="320" r="3" fill="url(%23starGrad)" opacity="0.8"/><circle cx="480" cy="480" r="2.5" fill="url(%23starGrad)" opacity="0.9"/><circle cx="650" cy="250" r="2" fill="url(%23starGrad)" opacity="0.7"/><circle cx="420" cy="380" r="2.5" fill="url(%23starGrad)" opacity="0.8"/><circle cx="780" cy="450" r="2" fill="url(%23starGrad)" opacity="0.6"/><circle cx="550" cy="300" r="1.5" fill="%23dda0dd" opacity="0.6"/><circle cx="680" cy="500" r="1" fill="%23ba55d3" opacity="0.5"/><circle cx="380" cy="320" r="1.2" fill="%236495ed" opacity="0.7"/></g></svg>') center/cover;
    opacity: 0.7;
    z-index: 0;
    animation: orbitRotate 60s linear infinite;
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e6e6fa 25%, #dda0dd 50%, #9370db 75%, #e6e6fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    text-shadow: 0 4px 30px rgba(147, 112, 219, 0.3);
    letter-spacing: -0.02em;
    animation: titleGalaxy 4s ease-in-out infinite alternate;
}

@keyframes titleGalaxy {
    0% { 
        background-position: 0% 50%;
        text-shadow: 0 4px 30px rgba(147, 112, 219, 0.3);
    }
    100% { 
        background-position: 100% 50%;
        text-shadow: 0 4px 40px rgba(221, 160, 221, 0.4);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

/* Hero section primary button - matching outline style */
.hero .btn-primary {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.hero .btn-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Default primary button for other sections */
.btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    font-weight: 600;
}

.btn-primary:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
    border-color: #333;
}


/* Value Proposition Section */
.value-proposition {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.value-proposition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, transparent 50%, rgba(0, 0, 0, 0.02) 100%);
    z-index: 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #000000, #333333);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-item:hover::before {
    opacity: 1;
}

.value-item:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.value-item:hover .value-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.value-content {
    flex: 1;
}

.value-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.value-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* About Section */
.about {
    padding: 6rem 0;
}

.about-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}


.about-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn {
    padding: 0.875rem 2rem;
    border: 2px solid #000;
    background: transparent;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn:hover {
    background: #000;
    color: #fff;
}

/* Hero section outline button styling */
.hero .btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Default outline button for other sections */
.btn-outline {
    border: 2px solid #000;
    background: transparent;
    color: #000;
}

.btn-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #666;
}

/* Capabilities Section */
.capabilities {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.capabilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 0;
}

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

.capabilities-header {
    text-align: center;
    margin-bottom: 5rem;
}

.capabilities-header .section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.capabilities .section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.capability-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.capability-card::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) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.capability-card:hover::before {
    opacity: 1;
}

.capability-card:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.capability-card.large {
    grid-column: span 1;
}

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

.capability-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.capability-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}



/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 0;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-info .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.contact-info .section-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.contact-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translate3d(8px, 0, 0);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-icon {
    color: #fff;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}


/* Footer */
.footer {
    padding: 3rem 0 2rem;
    background: #f8f9fa;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    font-style: italic;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 250px;
    filter: none;
    background: transparent;
    mix-blend-mode: multiply;
}

.footer-nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.footer-nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: #000;
}

.footer-divider {
    height: 1px;
    background: #e9ecef;
    width: 100%;
}


/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .contact-btn {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-img {
        height: 45px;
        max-width: 200px;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .about-content {
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .capability-card {
        padding: 2rem;
        text-align: center;
    }

    .capability-card.large {
        text-align: center;
    }

    .capabilities-header .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info .section-title {
        font-size: 2.5rem;
    }

    .contact-description {
        font-size: 1.125rem;
    }

    .contact-item {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .contact-item:hover {
        transform: translateY(-4px);
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-logo-img {
        height: 40px;
        max-width: 200px;
    }

    .footer-nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-item {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .capability-card {
        padding: 1.5rem;
    }

    .contact-details {
        gap: 1rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .value-item {
        padding: 2rem 1rem;
    }

    .value-title {
        font-size: 1.25rem;
    }
}

/* Optimized animations for better performance */
@media (prefers-reduced-motion: no-preference) {
    .capability-card,
    .value-item,
    .about-content,
    .contact-info,
    .contact-details {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .capability-card.animate-in,
    .value-item.animate-in,
    .about-content.animate-in,
    .contact-info.animate-in,
    .contact-details.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger delays for smoother appearance */
    .capability-card:nth-child(1) { transition-delay: 0.1s; }
    .capability-card:nth-child(2) { transition-delay: 0.2s; }
    .capability-card:nth-child(3) { transition-delay: 0.3s; }
    .capability-card:nth-child(4) { transition-delay: 0.4s; }

    .value-item:nth-child(1) { transition-delay: 0.1s; }
    .value-item:nth-child(2) { transition-delay: 0.2s; }
    .value-item:nth-child(3) { transition-delay: 0.3s; }
    .value-item:nth-child(4) { transition-delay: 0.4s; }
}

/* Optimized keyframes - removed complex animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Focus states for accessibility */
.nav-link:focus,
.contact-btn:focus,
.btn:focus,
.btn-link:focus,
.footer-nav-link:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #fff;
    }
    
    .capabilities {
        background: #fff;
    }
    
    .footer {
        background: #fff;
    }
}
