:root {
    /* McKinsey-inspired Primary Colors */
    --primary-900: #000000;
    --primary-800: #1a1a1a;
    --primary-700: #2d2d2d;
    --primary-600: #404040;
    --primary-500: #666666;
    
    /* McKinsey Accent Colors */
    --mckinsey-blue: #0073e6;
    --mckinsey-teal: #00a0b0;
    --mckinsey-orange: #ff6b35;
    --mckinsey-green: #7cb342;
    --mckinsey-purple: #6a4c93;
    
    /* Professional Neutrals */
    --neutral-50: #ffffff;
    --neutral-100: #f8f9fa;
    --neutral-200: #e9ecef;
    --neutral-300: #dee2e6;
    --neutral-400: #ced4da;
    --neutral-500: #adb5bd;
    --neutral-600: #6c757d;
    --neutral-700: #495057;
    --neutral-800: #343a40;
    --neutral-900: #212529;
    
    /* Semantic Colors */
    --success: #28a745;
    --warning: #ffc107;
    --error: #dc3545;
    --info: var(--mckinsey-blue);
    
    /* Professional Gradients */
    --gradient-primary: linear-gradient(135deg, var(--mckinsey-blue) 0%, var(--mckinsey-teal) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--mckinsey-purple) 0%, var(--mckinsey-blue) 100%);
    --gradient-tertiary: linear-gradient(135deg, var(--mckinsey-teal) 0%, var(--mckinsey-green) 100%);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

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

/* Responsive media */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: var(--neutral-50);
    overflow-x: hidden;
    background: var(--primary-900);
    font-feature-settings: 'kern', 'liga', 'clig', 'calt';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Light Theme */
body.light-theme {
    --primary-900: #ffffff;
    --primary-800: #f8f9fa;
    --primary-700: #e9ecef;
    --primary-600: #dee2e6;
    --primary-500: #adb5bd;
    --neutral-50: #000000;
    --neutral-100: #000000;
    --neutral-200: #000000;
    --neutral-300: #000000;
    --neutral-400: #000000;
    --neutral-500: #000000;
    --neutral-600: #000000;
    color: #000000;
    background: #ffffff;
}

body.light-theme h1,
body.light-theme h2,
body.light-theme h3,
body.light-theme h4,
body.light-theme h5,
body.light-theme h6,
body.light-theme p,
body.light-theme span,
body.light-theme div,
body.light-theme li,
body.light-theme a,
body.light-theme label,
body.light-theme strong {
    color: #000000 !important;
}

body.light-theme .navbar {
    background: #ffffff;
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #6c757d;
}

body.light-theme .service-card,
body.light-theme .feature,
body.light-theme .testimonial {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .footer-contact-form input,
body.light-theme .footer-contact-form textarea {
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.02);
    color: #212529;
}

body.light-theme .footer-contact-form input::placeholder,
body.light-theme .footer-contact-form textarea::placeholder {
    color: #6c757d;
}

body.light-theme .popular-badge {
    color: #212529;
}

body.light-theme .contact-form input,
body.light-theme .contact-form textarea,
body.light-theme .contact-form select {
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.02);
    color: var(--neutral-50);
}

body.light-theme .contact-form-section {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .contact-main {
    background: var(--primary-700);
}

/* Services Page */
.services-hero {
    padding: 5rem 0 2rem;
    background: var(--primary-900);
    text-align: center;
    margin-bottom: 3rem;
}

.services-overview {
    padding: 4rem 0;
    background: var(--primary-800);
}

.service-detail-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
    position: relative;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 115, 230, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.service-detail-card h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--neutral-50);
    margin-bottom: 1rem;
}

.service-detail-card > p {
    color: var(--neutral-400);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-offerings,
.service-benefits {
    margin-bottom: 1.5rem;
}

.service-offerings h4,
.service-benefits h4 {
    color: var(--neutral-50);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.service-offerings ul,
.service-benefits ul {
    list-style: none;
    padding: 0;
}

.service-offerings li,
.service-benefits li {
    color: var(--neutral-400);
    font-size: 0.9rem;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.service-offerings li::before,
.service-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--mckinsey-blue);
}

.process-section {
    padding: 4rem 0;
    background: var(--primary-900);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 115, 230, 0.2);
    border-color: var(--mckinsey-blue);
    background: rgba(0, 115, 230, 0.05);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--mckinsey-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: var(--neutral-50);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--neutral-400);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* About Page */
.about-hero {
    padding: 8rem 0 4rem;
    background: var(--primary-900);
    text-align: center;
}

.about-story {
    padding: 4rem 0;
    background: var(--primary-800);
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    color: var(--neutral-50);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--neutral-400);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item h3 {
    color: var(--mckinsey-blue);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--neutral-400);
    font-size: 0.9rem;
    margin: 0;
}

.mission-vision {
    padding: 4rem 0;
    background: var(--primary-900);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: var(--mckinsey-teal);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
}

.mv-card h3 {
    color: var(--neutral-50);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--neutral-400);
    line-height: 1.6;
}

.team-section {
    padding: 4rem 0;
    background: var(--primary-800);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    width: 200px;
    height: 240px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.team-member:nth-child(1) {
    background: linear-gradient(135deg, rgba(0, 115, 230, 0.1), rgba(0, 115, 230, 0.05));
    border-color: rgba(0, 115, 230, 0.2);
}

.team-member:nth-child(2) {
    background: linear-gradient(135deg, rgba(0, 160, 176, 0.1), rgba(0, 160, 176, 0.05));
    border-color: rgba(0, 160, 176, 0.2);
    margin-top: -30px;
}

.team-member:nth-child(3) {
    background: linear-gradient(135deg, rgba(123, 179, 66, 0.1), rgba(123, 179, 66, 0.05));
    border-color: rgba(123, 179, 66, 0.2);
    margin-top: -30px;
}

.team-member:nth-child(4) {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    border-color: rgba(245, 158, 11, 0.2);
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member:nth-child(1):hover {
    background: linear-gradient(135deg, rgba(0, 115, 230, 0.2), rgba(0, 115, 230, 0.1));
    border-color: var(--mckinsey-blue);
}

.team-member:nth-child(2):hover {
    background: linear-gradient(135deg, rgba(0, 160, 176, 0.2), rgba(0, 160, 176, 0.1));
    border-color: var(--mckinsey-teal);
}

.team-member:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(123, 179, 66, 0.2), rgba(123, 179, 66, 0.1));
    border-color: var(--mckinsey-green);
}

.team-member:nth-child(4):hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
    border-color: var(--mckinsey-orange);
}

.member-photo {
    width: 60px;
    height: 60px;
    background: var(--mckinsey-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.75rem;
}

.team-member h4 {
    color: var(--neutral-50);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.member-title {
    color: var(--mckinsey-blue);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.member-bio {
    color: var(--neutral-400);
    font-size: 0.7rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.certifications {
    padding: 4rem 0;
    background: var(--primary-900);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: var(--mckinsey-green);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
}

.cert-item h4 {
    color: var(--neutral-50);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.cert-item p {
    color: var(--neutral-400);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
    
    .services-hero,
    .about-hero {
        padding: 6rem 0 3rem;
    }
}

body.light-theme .hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

body.light-theme .services,
body.light-theme .testimonials,
body.light-theme .why-choose,
body.light-theme .contact-hero,
body.light-theme .services-hero,
body.light-theme .about-hero,
body.light-theme .process-section,
body.light-theme .mission-vision,
body.light-theme .certifications {
    background: #ffffff;
}

body.light-theme .services-overview,
body.light-theme .contact-main,
body.light-theme .about-story,
body.light-theme .team-section {
    background: #f8f9fa;
}

body.light-theme .service-card,
body.light-theme .feature,
body.light-theme .testimonial,
body.light-theme .service-detail-card,
body.light-theme .contact-form-section,
body.light-theme .stat-item,
body.light-theme .mv-card,
body.light-theme .team-member,
body.light-theme .cert-item {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .contact-form input,
body.light-theme .contact-form textarea,
body.light-theme .contact-form select {
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.02);
    color: #212529;
}

body.light-theme .contact-form input::placeholder,
body.light-theme .contact-form textarea::placeholder {
    color: #6c757d;
}

html {
    scroll-behavior: smooth;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero content animations */
.hero-content > * {
    opacity: 0;
    transform: translateY(30px);
}

.hero-badge {
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-content h1 {
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-content p {
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-stats {
    animation: fadeInUp 0.8s ease 1s forwards;
}

/* Data visualization animations */
.data-visualization {
    animation: fadeInRight 1s ease 0.5s forwards;
    opacity: 0;
}

/* Navbar animation */
.navbar {
    transform: translateY(-100%);
    animation: slideInFromTop 0.6s ease forwards;
}

/* Button hover effects */
.cta-btn {
    position: relative;
    overflow: hidden;
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

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

/* Service card animations */
.service-card:nth-child(1) { animation: fadeInUp 0.8s ease 0.1s forwards; opacity: 0; }
.service-card:nth-child(2) { animation: fadeInUp 0.8s ease 0.2s forwards; opacity: 0; }
.service-card:nth-child(3) { animation: fadeInUp 0.8s ease 0.3s forwards; opacity: 0; }
.service-card:nth-child(4) { animation: fadeInUp 0.8s ease 0.4s forwards; opacity: 0; }

/* Feature animations */
.feature:nth-child(1) { animation: fadeInUp 0.8s ease 0.1s forwards; opacity: 0; }
.feature:nth-child(2) { animation: fadeInUp 0.8s ease 0.2s forwards; opacity: 0; }
.feature:nth-child(3) { animation: fadeInUp 0.8s ease 0.3s forwards; opacity: 0; }
.feature:nth-child(4) { animation: fadeInUp 0.8s ease 0.4s forwards; opacity: 0; }

/* Team member animations */
.team-member:nth-child(1) { animation: fadeInUp 0.8s ease 0.1s forwards; opacity: 0; }
.team-member:nth-child(2) { animation: fadeInUp 0.8s ease 0.2s forwards; opacity: 0; }
.team-member:nth-child(3) { animation: fadeInUp 0.8s ease 0.3s forwards; opacity: 0; }
.team-member:nth-child(4) { animation: fadeInUp 0.8s ease 0.4s forwards; opacity: 0; }

/* Icon pulse on hover */
.service-card:hover .service-icon,
.feature:hover .feature-icon {
    animation: pulse 1s infinite;
}

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

/* Navigation */
.navbar {
    background: var(--primary-900);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

.mobile-menu-toggle {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block !important;
        background: none;
        border: none;
        color: var(--neutral-300);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }
    
    .mobile-menu-toggle:hover {
        color: var(--neutral-50);
    }
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-300);
    cursor: pointer;
    transition: all 0.2s ease;
}

.theme-toggle:hover {
    background: var(--mckinsey-blue);
    border-color: var(--mckinsey-blue);
    color: white;
}

.logo {
    position: relative;
}

.logo a {
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo a {
    pointer-events: auto;
}

.logo img {
    height: 50px;
    width: 122px;
    transition: opacity 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.logo-light {
    display: none;
}

body.light-theme .logo-dark {
    display: none;
}

body.light-theme .logo-light {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: var(--neutral-300);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    position: relative;
    padding: 0.5rem 1rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--neutral-50);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background: var(--mckinsey-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 100%);
    min-height: 60vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 6rem 0 2rem;
    color: var(--neutral-50);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 115, 230, 0.05) 100%);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(69, 183, 209, 0.2) 0%, transparent 50%);
}

.hero-content {
    padding: 0 2rem;
    z-index: 2;
    position: relative;
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(0, 115, 230, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: var(--space-2xl);
    border: 1px solid rgba(0, 115, 230, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.hero-badge:hover {
    background: rgba(0, 115, 230, 0.15);
    border-color: rgba(0, 115, 230, 0.3);
}

.hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.01em;
    color: var(--neutral-50);
}

.gradient-text {
    color: var(--mckinsey-blue);
    font-weight: 400;
    position: relative;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    margin-bottom: var(--space-3xl);
    color: var(--neutral-400);
    line-height: 1.6;
    max-width: 90%;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
    justify-content: flex-start;
}

.cta-btn {
    padding: 0.75rem 2rem;
    border-radius: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    min-width: 140px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--mckinsey-blue) 0%, var(--mckinsey-teal) 100%);
    color: var(--neutral-50);
    border: 2px solid transparent;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 115, 230, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

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

.cta-btn.primary:hover {
    background: linear-gradient(135deg, #005bb5 0%, #008a9a 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 115, 230, 0.5);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--neutral-50);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.hero-visual .hero-stats {
    position: absolute;
    right: 0;
    top: 1%;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    z-index: 10;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.stat {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(0, 115, 230, 0.05);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 115, 230, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
}

.stat:nth-child(1) { animation: fadeInUp 0.8s ease 1.1s forwards; }
.stat:nth-child(2) { animation: fadeInUp 0.8s ease 1.2s forwards; }
.stat:nth-child(3) { animation: fadeInUp 0.8s ease 1.3s forwards; }

.stat:hover {
    background: rgba(0, 115, 230, 0.1);
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(0, 115, 230, 0.2);
    box-shadow: 0 10px 30px rgba(0, 115, 230, 0.2);
}

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

.stat p {
    font-size: 0.875rem;
    color: var(--neutral-400);
    margin: 0;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.earth-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#earth {
    position: relative;
    width: 400px;
    height: 400px;
    background: transparent;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--mckinsey-blue);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { top: 80%; left: 30%; animation-delay: 2s; }

.network-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mckinsey-teal), transparent);
    animation: lineGlow 3s ease-in-out infinite;
}

.network-line:nth-child(7) { top: 30%; left: 20%; width: 200px; transform: rotate(45deg); }
.network-line:nth-child(8) { top: 60%; left: 10%; width: 150px; transform: rotate(-30deg); }
.network-line:nth-child(9) { top: 80%; left: 40%; width: 180px; transform: rotate(15deg); }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.8; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: transparent;
    color: var(--mckinsey-blue);
    padding: 0.25rem 0;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 2px solid var(--mckinsey-blue);
    position: relative;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    margin-bottom: var(--space-lg);
    color: var(--neutral-50);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.section-header p {
    font-size: 1rem;
    color: var(--neutral-400);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--primary-800);
    position: relative;
    margin-bottom: 3rem;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 115, 230, 0.03) 100%);
    pointer-events: none;
}



.services-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-name {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--neutral-50);
    font-weight: 500;
}

.service-name:hover,
.service-name.active {
    background: rgba(0, 115, 230, 0.1);
    border-color: var(--mckinsey-blue);
    transform: translateX(10px);
}

.services-content {
    position: relative;
    min-height: 400px;
}

.service-detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--mckinsey-blue);
}



.service-detail.active {
    opacity: 1;
    transform: translateY(0);
}

.service-detail h3,
.service-detail p,
.service-detail li {
    color: var(--neutral-50);
}

.service-detail ul {
    list-style: none;
    padding: 0;
}

.service-detail li {
    padding: 0.375rem 0;
    position: relative;
    padding-left: 1.25rem;
}

.service-detail li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.375rem;
    color: var(--mckinsey-blue);
    font-weight: bold;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--mckinsey-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 115, 230, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: rgba(0, 115, 230, 0.1);
    color: var(--neutral-50);
    border-color: var(--mckinsey-blue);
    box-shadow: 0 4px 20px rgba(0, 115, 230, 0.2);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--mckinsey-blue);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--neutral-50);
    margin-bottom: var(--space-xl);
    transition: all 0.2s ease;
}

.service-card:hover .service-icon {
    background: var(--mckinsey-teal);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    color: var(--neutral-50);
    line-height: 1.4;
}

.service-card.featured h3 {
    color: white;
}

.service-card p {
    color: var(--neutral-400);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 300;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

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

.service-features li {
    padding: 0.375rem 0;
    color: var(--neutral-400);
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.85rem;
    font-weight: 300;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.375rem;
    color: var(--mckinsey-blue);
    font-weight: bold;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .service-features li::before {
    color: white;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--mckinsey-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: var(--primary-900);
    position: relative;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 115, 230, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    border-color: var(--mckinsey-blue);
    box-shadow: 0 8px 25px rgba(0, 115, 230, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--mckinsey-blue);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neutral-50);
    margin: 0 auto var(--space-xl);
    transition: all 0.3s ease;
}

.feature-icon i {
    color: var(--neutral-50);
}

.feature:hover .feature-icon {
    background: #4da6ff;
    transform: scale(1.1);
}

.feature:hover .feature-icon i {
    color: white;
}

.feature h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    color: var(--neutral-50);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.feature:hover h3 {
    color: var(--mckinsey-blue);
}

.feature p {
    color: var(--neutral-500);
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.feature:hover p {
    color: var(--neutral-300);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--mckinsey-teal);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neutral-50);
    margin: 0 auto var(--space-xl);
    transition: all 0.2s ease;
}

.feature:hover .feature-icon {
    background: var(--mckinsey-blue);
    transform: scale(1.05);
}

.feature h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    color: var(--neutral-50);
    line-height: 1.4;
}

.feature p {
    color: var(--neutral-500);
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: var(--primary-800);
    position: relative;
    margin-bottom: 3rem;
}

.testimonials-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-scroll {
    display: flex;
    animation: testimonialSlide 30s linear infinite;
    gap: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

@keyframes testimonialSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonial {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.2s ease;
    min-width: 350px;
    flex-shrink: 0;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--mckinsey-blue);
}

.testimonial:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 115, 230, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.stars {
    color: var(--mckinsey-orange);
    margin-bottom: var(--space-lg);
    font-size: 1rem;
    display: flex;
    gap: 2px;
}

.testimonial p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    color: var(--neutral-300);
    font-style: italic;
    font-weight: 300;
}

.client {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.client strong {
    color: var(--neutral-50);
    font-weight: 500;
    font-size: 0.9rem;
}

.client span {
    color: var(--neutral-500);
    font-size: 0.8rem;
    font-weight: 300;
}

/* Contact Page */
.contact-hero {
    padding: 8rem 0 4rem;
    background: var(--primary-900);
    text-align: center;
}

.contact-main {
    padding: 4rem 0;
    background: var(--primary-800);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--neutral-50);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--neutral-400);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: var(--mckinsey-blue);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.method-info h4 {
    color: var(--neutral-50);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.method-info p {
    color: var(--neutral-400);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-hero {
        padding: 6rem 0 3rem;
    }
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.02);
    color: var(--neutral-50);
    transition: all 0.2s ease;
    font-family: inherit;
    font-weight: 300;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--mckinsey-blue);
    box-shadow: 0 0 0 2px rgba(0, 115, 230, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--neutral-600);
    font-weight: 300;
}

.form-row input {
    margin-bottom: 0;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.02);
    color: var(--neutral-50);
    transition: all 0.2s ease;
    font-family: inherit;
    font-weight: 300;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--mckinsey-blue);
    box-shadow: 0 0 0 2px rgba(0, 115, 230, 0.1);
}

.contact-form select option {
    background: var(--primary-800);
    color: var(--neutral-50);
}

.contact-form button {
    background: var(--mckinsey-blue);
    color: var(--neutral-50);
    padding: 0.75rem 2rem;
    border: 1px solid var(--mckinsey-blue);
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    width: 100%;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.contact-form button:hover {
    background: #005bb5;
    border-color: #005bb5;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 115, 230, 0.3);
}

/* Footer */
footer {
    background: var(--primary-900);
    color: var(--neutral-300);
    padding: 3rem 0 1.5rem;
    position: relative;
    border-top: 1px solid rgba(0, 115, 230, 0.1);
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--neutral-50);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--neutral-400);
}

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

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

.footer-section ul li a {
    color: var(--neutral-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--mckinsey-blue);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-400);
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--mckinsey-blue);
    border-color: var(--mckinsey-blue);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--neutral-500);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--neutral-500);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--mckinsey-blue);
}

.footer-contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-form input,
.footer-contact-form textarea {
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--neutral-50);
    font-size: 0.85rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.footer-contact-form input:focus,
.footer-contact-form textarea:focus {
    outline: none;
    border-color: var(--mckinsey-blue);
    background: rgba(255, 255, 255, 0.04);
}

.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder {
    color: var(--neutral-600);
}

.footer-contact-form button {
    background: var(--mckinsey-blue);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.footer-contact-form button:hover {
    background: #005bb5;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .services-content {
        min-height: auto;
    }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-3xl);
        padding: 5rem 0 2rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .earth-container {
        width: 300px;
        height: 300px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cta-btn {
        min-width: 200px;
    }
}

/* Tablet Portrait */
@media (max-width: 900px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-sidebar {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .service-name {
        flex: 1;
        min-width: 200px;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-900);
        flex-direction: column;
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .nav-right .cta-btn {
        display: none;
    }
    
    .hero {
        padding: 5rem 0 3rem;
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-content p {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .services-sidebar {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-scroll {
        flex-direction: column;
        animation: none;
    }
    
    .testimonial {
        min-width: auto;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .earth-container {
        width: 250px;
        height: 250px;
    }
    
    .section-header h2 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .hero {
        padding: 4rem 0 2rem;
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .service-card,
    .feature,
    .testimonial {
        padding: 1.5rem 1rem;
    }
    
    .stat {
        padding: 1rem;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
    
    .earth-container {
        width: 200px;
        height: 200px;
    }
    
    .cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .services,
    .why-choose,
    .testimonials {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .service-card,
    .feature,
    .testimonial {
        padding: 1rem;
    }
    
    .earth-container {
        width: 150px;
        height: 150px;
    }
}

/* Industry Cards Animation */
.industry-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    min-width: 250px;
}

.industry-card:nth-child(1) { animation-delay: 0.1s; }
.industry-card:nth-child(2) { animation-delay: 0.2s; }
.industry-card:nth-child(3) { animation-delay: 0.3s; }
.industry-card:nth-child(4) { animation-delay: 0.4s; }

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.3), 0 0 20px rgba(0, 115, 230, 0.6), 0 0 40px rgba(0, 115, 230, 0.4);
    border-color: var(--mckinsey-blue);
}

.industries-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1rem;
}

.industries-grid .industry-card:nth-child(1) {
    margin-bottom: 0;
}

.industries-grid .industry-card:nth-child(2) {
    margin-bottom: 2rem;
}

.industries-grid .industry-card:nth-child(3) {
    margin-bottom: 4rem;
}

.industries-grid .industry-card:nth-child(4) {
    margin-bottom: 6rem;
}

.years-timeline {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.year-item {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--mckinsey-blue);
    text-shadow: 0 0 10px rgba(0, 115, 230, 0.8), 0 0 20px rgba(0, 115, 230, 0.6);
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

.year-item:nth-child(1) { animation-delay: 0s; }
.year-item:nth-child(2) { animation-delay: 0.2s; }
.year-item:nth-child(3) { animation-delay: 0.4s; }
.year-item:nth-child(4) { animation-delay: 0.6s; }
.year-item:nth-child(5) { animation-delay: 0.8s; }

@keyframes pulseGlow {
    0% { text-shadow: 0 0 10px rgba(0, 115, 230, 0.8), 0 0 20px rgba(0, 115, 230, 0.6); }
    100% { text-shadow: 0 0 15px rgba(0, 115, 230, 1), 0 0 30px rgba(0, 115, 230, 0.8); }
}

/* Solution Cards Animation */
.solution-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.solution-card:nth-child(1) { animation-delay: 0.1s; }
.solution-card:nth-child(2) { animation-delay: 0.2s; }
.solution-card:nth-child(3) { animation-delay: 0.3s; }
.solution-card:nth-child(4) { animation-delay: 0.4s; }

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.3), 0 0 20px rgba(0, 115, 230, 0.6), 0 0 40px rgba(0, 115, 230, 0.4);
    border-color: var(--mckinsey-blue);
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--mckinsey-blue);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .cta-btn,
    .nav-menu a,
    .service-name,
    .feature,
    .testimonial {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu a {
        padding: 1rem;
    }
    
    .service-card:hover,
    .feature:hover,
    .testimonial:hover {
        transform: none;
    }
    
    .cta-btn:hover {
        transform: none;
    }
}

/* Landscape phone orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
        padding: 3rem 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        margin-bottom: 1.5rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .abstract-shapes .shape {
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-900: #000000;
        --neutral-50: #ffffff;
        --neutral-400: #cccccc;
    }
    
    .service-card,
    .feature,
    .testimonial {
        border-width: 2px;
    }
}
/* SAP Solutions Triangle Layout */
.solutions-triangle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.triangle-top {
    display: flex;
    justify-content: center;
}

.triangle-bottom {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.solutions-triangle .solution-card {
    width: 250px;
    min-height: 200px;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.solutions-triangle .solution-card:hover {
    transform: translateY(-5px);
    border-color: var(--mckinsey-blue);
    background: rgba(0, 115, 230, 0.05);
    box-shadow: 0 8px 25px rgba(0, 115, 230, 0.2);
}

@media (max-width: 768px) {
    .triangle-bottom {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .solutions-triangle .solution-card {
        width: 100%;
        max-width: 300px;
    }
}
/* SAP Implementation Process Steps - One Line */
.sap-methodology .process-steps {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.sap-methodology .process-step {
    flex: 1;
    min-width: 200px;
}

@media (max-width: 768px) {
    .sap-methodology .process-steps {
        flex-direction: column;
    }
}
/* Fix white lines in dark theme */
body {
    border: none;
    outline: none;
}

* {
    border-color: rgba(255, 255, 255, 0.08);
}

.hero::before,
.hero::after {
    border: none;
}

section {
    border: none;
    outline: none;
}

.container {
    border: none;
}
/* Remove all white lines/margins in dark theme */
html, body {
    margin: 0;
    padding: 0;
    border: none;
    background: var(--primary-900);
}

.hero, .services, .why-choose, .testimonials, .business-benefits, .resources, .final-cta {
    border: none;
    margin: 0;
    border-top: none;
    border-bottom: none;
}

.navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0;
}
/* Careers page - 3 cards per row */
.services .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.services .service-card {
    height: 320px;
    display: flex;
    flex-direction: column;
}

.services .service-card h3 {
    height: 50px;
    display: flex;
    align-items: center;
}

.services .service-card p {
    height: 80px;
    overflow: hidden;
}

.services .service-features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .services .services-grid {
        grid-template-columns: 1fr;
    }
}
/* Header CTA Button Fix */
.nav-right .cta-btn.primary {
    background: var(--mckinsey-blue) !important;
    color: white !important;
    border: 2px solid var(--mckinsey-blue) !important;
    padding: 0.4rem 0.8rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    margin-right: 1rem !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    z-index: 1000 !important;
    position: relative !important;
    display: inline-block !important;
    vertical-align: middle !important;
    text-decoration: none !important;
    transition: none !important;
}

.nav-right .cta-btn.primary:hover {
    background: #005bb5 !important;
}
/* Hero Button Fix */
.hero-buttons .cta-btn.primary {
    background: #0073e6 !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    display: inline-block !important;
    z-index: 100 !important;
    position: relative !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    translate: none !important;
    rotate: none !important;
    scale: none !important;
}

.hero-buttons .cta-btn.primary:hover {
    background: #005bb5 !important;
}
/* Header Button Alignment Fix */
.nav-right {
    display: flex !important;
    align-items: center !important;
}

.nav-right .cta-btn.primary {
    align-self: center !important;
    height: fit-content !important;
}