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

/* Import Modern Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
    /* Enhanced Brand Colors */
    --primary-blue: #1E40AF;
    --primary-blue-dark: #1E3A8A;
    --primary-blue-light: #3B82F6;
    --accent-blue: #60A5FA;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Enhanced Typography Scale */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px */
    --text-5xl: 3rem;        /* 48px */
    --text-6xl: 3.75rem;     /* 60px */
    --text-7xl: 4.5rem;      /* 72px */
    --text-8xl: 6rem;        /* 96px */
    --text-9xl: 8rem;        /* 128px */
    
    /* Enhanced Spacing Scale */
    --space-1: 0.25rem;      /* 4px */
    --space-2: 0.5rem;       /* 8px */
    --space-3: 0.75rem;      /* 12px */
    --space-4: 1rem;         /* 16px */
    --space-5: 1.25rem;      /* 20px */
    --space-6: 1.5rem;       /* 24px */
    --space-8: 2rem;         /* 32px */
    --space-10: 2.5rem;      /* 40px */
    --space-12: 3rem;        /* 48px */
    --space-16: 4rem;        /* 64px */
    --space-20: 5rem;        /* 80px */
    --space-24: 6rem;        /* 96px */
    --space-32: 8rem;        /* 128px */
    --space-40: 10rem;       /* 160px */
    --space-48: 12rem;       /* 192px */
    --space-64: 16rem;       /* 256px */
    --space-80: 20rem;       /* 320px */
    
    /* Enhanced 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);
    
    /* Border Radius */
    --radius-sm: 0.125rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    font-size: var(--text-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container with Enhanced Spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

/* Enhanced Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: var(--space-8);
}

h1 {
    font-size: clamp(4rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.05;
}

h2 {
    font-size: clamp(var(--text-4xl), 5vw, var(--text-7xl));
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h3 {
    font-size: clamp(var(--text-2xl), 3vw, var(--text-5xl));
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

h4 {
    font-size: var(--text-3xl);
    font-weight: 600;
    line-height: 1.4;
}

p {
    margin-bottom: var(--space-8);
    line-height: 1.8;
    color: var(--gray-600);
    font-size: var(--text-lg);
}

.text-large {
    font-size: var(--text-2xl);
    line-height: 1.7;
}

.text-muted {
    color: var(--gray-500);
}

/* Enhanced Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6) 0;
}

.nav-brand .brand-logo {
    height: 48px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-brand .brand-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: var(--space-12);
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-size: var(--text-lg);
}

.nav-link:hover {
    color: var(--primary-blue);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

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

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-10);
    border-radius: var(--radius-xl);
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: var(--text-lg);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 16px rgba(30, 64, 175, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn::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.5s;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: var(--white);
    box-shadow: 
        0 8px 32px rgba(30, 64, 175, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 48px rgba(30, 64, 175, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 3px solid var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.btn-large {
    padding: var(--space-6) var(--space-16);
    font-size: var(--text-xl);
    font-weight: 900;
    border-radius: var(--radius-2xl);
}

.cta-arrow {
    transition: transform 0.3s ease;
    font-weight: 900;
    font-size: 1.2em;
}

.btn:hover .cta-arrow {
    transform: translateX(6px);
}

/* Enhanced Layout Sections */
.section {
    padding: var(--space-48) 0;
}

.section-sm {
    padding: var(--space-24) 0;
}

.section-lg {
    padding: var(--space-64) 0;
}

/* Enhanced Hero Section */
.hero {
    padding: var(--space-48) 0 var(--space-32);
    text-align: center;
    background: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(30, 64, 175, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 64, 175, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 20% 80%, rgba(30, 64, 175, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(96, 165, 250, 0.03) 0%, transparent 50%);
    background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%, 100% 100%;
    pointer-events: none;
}

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

.hero-title {
    margin-bottom: var(--space-12);
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-4xl);
    color: var(--primary-blue);
    margin-bottom: var(--space-12);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-description {
    font-size: var(--text-2xl);
    color: var(--gray-600);
    margin-bottom: var(--space-16);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 500;
}

.hero-cta {
    margin-top: var(--space-12);
}

.hero-cta-button {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    box-shadow: 
        0 12px 48px rgba(30, 64, 175, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-cta-button:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 
        0 20px 64px rgba(30, 64, 175, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Enhanced Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-24);
}

.section-title {
    margin-bottom: var(--space-8);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -var(--space-6);
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: var(--radius-sm);
}

.section-subtitle {
    font-size: var(--text-2xl);
    color: var(--gray-600);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 600;
}

/* Enhanced Why Work With Us Section */
.why-work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--space-16);
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    position: relative;
    padding: var(--space-16);
    background: var(--white);
    border-radius: var(--radius-3xl);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.service-icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-8);
    transition: all 0.4s ease;
}

.service-icon {
    width: 36px;
    height: 36px;
    stroke: var(--white);
    stroke-width: 2.5;
}

.service-card:hover .service-icon-container {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.3);
}

.service-number {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 800;
    color: var(--primary-blue);
}

.service-title {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Enhanced Grid Layouts */
.grid {
    display: grid;
    gap: var(--space-12);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Enhanced Flagship Engagements */
.flagship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: var(--space-20);
    max-width: 1400px;
    margin: 0 auto;
}

.flagship-card {
    background: var(--white);
    border-radius: var(--radius-3xl);
    padding: var(--space-20);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gray-200);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.flagship-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
}

.flagship-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.service-badge {
    display: inline-block;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-2xl);
    font-size: var(--text-sm);
    font-weight: 800;
    margin-bottom: var(--space-12);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ai-badge {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
}

.ux-badge {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    color: var(--white);
}

.service-main-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-8);
    color: var(--gray-900);
    font-weight: 900;
}

.service-tagline {
    font-size: var(--text-xl);
    color: var(--gray-600);
    font-style: italic;
    font-weight: 600;
    margin-bottom: var(--space-16);
}

.flagship-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    padding: var(--space-8) var(--space-16);
    font-size: var(--text-xl);
    font-weight: 800;
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.flagship-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(30, 64, 175, 0.4);
}

/* Enhanced What You Can Expect */
.expectations-block {
    background: var(--white);
    border-radius: var(--radius-3xl);
    padding: var(--space-24);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gray-200);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.expectations-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
}

.expectations-content {
    display: grid;
    gap: var(--space-8);
}

.expectation-item {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-6);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.expectation-item:hover {
    background: var(--gray-100);
    transform: translateX(8px);
}

.expectation-check {
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.expectation-item span {
    font-weight: 600;
    color: var(--gray-900);
    font-size: var(--text-xl);
    line-height: 1.5;
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: var(--white);
    padding: var(--space-64) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::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.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    color: var(--white);
    margin-bottom: var(--space-12);
    font-size: clamp(var(--text-4xl), 5vw, var(--text-7xl));
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-16);
    font-size: var(--text-2xl);
    font-weight: 600;
}

.cta-main-button {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    font-size: var(--text-2xl);
    padding: var(--space-10) var(--space-20);
}

.cta-main-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.3);
}

/* Enhanced Footer */
.main-footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-48) 0 var(--space-16);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-24);
    margin-bottom: var(--space-24);
    align-items: start;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.footer-logo {
    width: 48px;
    height: 48px;
}

.footer-brand {
    font-family: 'Inter Tight', sans-serif;
    font-size: var(--text-4xl);
    font-weight: 900;
    color: var(--white);
    margin: 0;
}

.footer-tagline {
    color: var(--gray-300);
    font-size: var(--text-xl);
    line-height: 1.6;
    margin: 0;
}

.footer-links-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
}

.footer-heading {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-5);
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: var(--text-lg);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-blue);
    transform: translateX(8px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: var(--space-16);
    text-align: center;
}

.footer-copyright {
    color: var(--gray-400);
    font-size: var(--text-base);
    margin: 0;
}

/* Enhanced Cards */
.card {
    background: var(--white);
    border-radius: var(--radius-3xl);
    padding: var(--space-16);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.card-icon {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-10);
    display: block;
}

.card-title {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: var(--text-lg);
    font-weight: 500;
}

/* Service List Styles */
.service-list {
    list-style: none;
    padding: 0;
    margin: var(--space-8) 0;
}

.service-list li {
    padding: var(--space-4) 0;
    color: var(--gray-600);
    position: relative;
    padding-left: var(--space-10);
    line-height: 1.6;
    font-size: var(--text-lg);
    font-weight: 500;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 900;
    font-size: var(--text-xl);
}

/* Service Details */
.service-details {
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    margin: var(--space-12) 0;
    border: 1px solid var(--gray-200);
}

.service-investment,
.service-format {
    margin-bottom: var(--space-6);
    font-size: var(--text-lg);
    font-weight: 600;
}

.service-investment strong,
.service-format strong {
    color: var(--primary-blue);
    font-weight: 800;
}

.service-outcome {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: var(--white);
    padding: var(--space-12);
    border-radius: var(--radius-2xl);
    margin: var(--space-12) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-outcome p {
    color: var(--white);
    margin: 0;
    font-weight: 700;
    font-size: var(--text-xl);
}

/* Detailed Service Card Styles */
.detailed-service-card {
    background: var(--white);
    border-radius: var(--radius-3xl);
    padding: var(--space-20);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gray-200);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.detailed-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
}

.detailed-service-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.service-header {
    margin-bottom: var(--space-16);
}

.service-section {
    margin-bottom: var(--space-16);
}

.service-section h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-8);
}

/* Detailed Service Card Styles */
.detailed-service-card {
    background: var(--white);
    border-radius: var(--radius-3xl);
    padding: var(--space-20);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gray-200);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.detailed-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
}

.detailed-service-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.service-header {
    margin-bottom: var(--space-16);
}

.service-section {
    margin-bottom: var(--space-16);
}

.service-section h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-8);
}

/* Enhanced Animations */
.fade-in {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Cursor */
.custom-cursor {
    width: 24px;
    height: 24px;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    opacity: 0.8;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-6);
    }
    
    .hero {
        padding: var(--space-64) 0 var(--space-48);
        min-height: 80vh;
    }
    
    .section {
        padding: var(--space-48) 0;
    }
    
    .flagship-card {
        padding: var(--space-16);
    }
    
    .why-work-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .flagship-grid {
        grid-template-columns: 1fr;
        gap: var(--space-16);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: var(--space-48) 0 var(--space-32);
        min-height: 75vh;
    }
    
    .hero-title {
        font-size: clamp(var(--text-4xl), 10vw, var(--text-6xl));
    }
    
    .hero-subtitle {
        font-size: var(--text-3xl);
    }
    
    .hero-description {
        font-size: var(--text-lg);
    }
    
    .section {
        padding: var(--space-32) 0;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-16);
    }
    
    .flagship-card {
        padding: var(--space-12);
    }
    
    .why-work-grid {
        gap: var(--space-10);
    }
    
    .flagship-grid {
        gap: var(--space-12);
    }
    
    .btn-large {
        padding: var(--space-8) var(--space-12);
        font-size: var(--text-xl);
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .custom-cursor {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: clamp(var(--text-3xl), 8vw, var(--text-5xl));
    }
    
    h2 {
        font-size: clamp(var(--text-2xl), 6vw, var(--text-4xl));
    }
    
    .btn {
        padding: var(--space-5) var(--space-10);
        font-size: var(--text-lg);
    }
    
    .card {
        padding: var(--space-12);
    }
    
    .service-main-title {
        font-size: var(--text-2xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-2xl);
    }
    
    .section {
        padding: var(--space-24) 0;
    }
    
    .flagship-card,
    .expectations-block {
        padding: var(--space-10);
    }
}

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

/* Enhanced Focus Styles */
.btn:focus,
.nav-link:focus,
a:focus {
    outline: 4px solid var(--accent-blue);
    outline-offset: 3px;
    border-radius: var(--radius-lg);
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .card {
        border: 4px solid var(--gray-600);
    }
    
    .btn-primary {
        border: 3px solid var(--primary-blue-dark);
    }
    
    .service-badge {
        border: 3px solid var(--white);
    }
}

/* Print Styles */
@media print {
    .main-header,
    .custom-cursor,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        padding: 20pt 0;
    }
}