/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --color-white: #FFFFFF;
    --color-black: #0A0A0A;
    --color-gray: #6B7280;
    --color-gray-light: #F3F4F6;
    --color-tech-blue: #0071E3;
    --color-tech-blue-dark: #0055B3;
    
    --font-system: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;
    
    --container-max: 1280px;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-y: scroll;
}

html.no-scroll {
    scroll-behavior: auto;
}

body {
    font-family: var(--font-system);
    background-color: var(--color-white);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}

button {
    text-decoration: none !important;
    border: none;
    outline: none;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-full {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.logo-full:hover {
    opacity: 0.8;
}

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

.nav-links a {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-black);
}

.nav-cta {
    background: var(--color-black);
    color: var(--color-white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 24px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--color-tech-blue);
    transform: translateY(-1px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(135deg, rgba(0, 113, 227, 0.02) 0%, rgba(255, 255, 255, 0) 50%),
        linear-gradient(45deg, rgba(0, 113, 227, 0.01) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 113, 227, 0.01) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0, 113, 227, 0.01) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0, 113, 227, 0.01) 75%);
    background-size: 100% 100%, 60px 60px, 60px 60px, 60px 60px, 60px 60px;
    background-position: 0 0, 0 0, 30px 0, 30px -30px, 0px 30px;
    background-color: #fafbfc;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 113, 227, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 113, 227, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 113, 227, 0.01) 2px, rgba(0, 113, 227, 0.01) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 113, 227, 0.01) 2px, rgba(0, 113, 227, 0.01) 4px);
    pointer-events: none;
    z-index: 0;
}

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

.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #0A0A0A !important;
    margin-bottom: var(--spacing-md);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.typing-line {
    display: inline;
}

.typing-text {
    display: inline;
}

.cursor {
    display: inline-block;
    animation: blink 1s infinite;
    color: var(--color-tech-blue);
    font-weight: 400;
}

.hero-subtext {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-tech-blue);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-tech-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 113, 227, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-black);
}

.btn-secondary:hover {
    background: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Modern Hero with Laptop Mockup */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text-content {
    z-index: 2;
    padding-top: 40px;
}

.hero-headline-modern {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1d1d1f;
    margin-bottom: 24px;
    margin-top: 0;
    padding-top: 0;
    min-height: 2.3em;
}

.typing-text {
    color: #0071E3 !important;
    border-right: 3px solid #0071E3 !important;
    padding-right: 5px;
    font-size: 0.85em;
    display: block;
    white-space: nowrap;
}

.hero-headline .typing-text {
    color: #0071E3 !important;
}

.hero-subtext-modern {
    font-size: 1.125rem;
    color: #6e6e73;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-cta-modern {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-primary:link,
.btn-hero-primary:visited,
.btn-hero-primary:hover,
.btn-hero-primary:active {
    background: #0071E3;
    color: white !important;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    display: inline-block;
}

.btn-hero-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: #1d1d1f;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-hero-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Laptop Mockup */
.hero-device {
    perspective: 1200px;
    z-index: 1;
}

.laptop-mockup {
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float-device 6s ease-in-out infinite;
}

.laptop-mockup:hover {
    transform: rotateY(-10deg) rotateX(3deg);
}

.laptop-screen {
    background: #1d1d1f;
    border-radius: 12px 12px 0 0;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.screen-content {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.screen-header {
    background: #f5f5f7;
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.screen-dots {
    display: flex;
    gap: 6px;
}

.screen-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f56;
}

.screen-dots span:nth-child(2) {
    background: #ffbd2e;
}

.screen-dots span:nth-child(3) {
    background: #27c93f;
}

.screen-body {
    padding: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.screen-hero {
    margin-bottom: 24px;
}

.screen-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    animation: fade-in-up 1s ease-out 0.5s both;
}

.screen-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    animation: fade-in-up 1s ease-out 0.7s both;
}

.screen-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.screen-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    height: 80px;
    animation: scale-in 0.5s ease-out both;
}

.screen-card:nth-child(1) {
    animation-delay: 0.9s;
}

.screen-card:nth-child(2) {
    animation-delay: 1.1s;
}

.screen-card:nth-child(3) {
    animation-delay: 1.3s;
}

.screen-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.stat-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8));
    animation: progress-fill 2s ease-out 1.5s both;
}

.laptop-base {
    background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
    height: 20px;
    border-radius: 0 0 12px 12px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.laptop-base::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #3d3d3d, transparent);
}

.laptop-notch {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: #4d4d4d;
    border-radius: 4px 4px 0 0;
}

/* Animations */
@keyframes float-device {
    0%, 100% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(0);
    }
    50% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(-10px);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes progress-fill {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

    background: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.impact {
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

.section-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-md);
    color: var(--color-black);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-headline::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0071E3, #005BB5);
    border-radius: 2px;
}

.section-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--color-gray);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    margin-top: 30px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.impact-item {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.impact-item:nth-child(1) { animation-delay: 0.1s; }
.impact-item:nth-child(2) { animation-delay: 0.2s; }
.impact-item:nth-child(3) { animation-delay: 0.3s; }

.impact-item span {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-black);
    letter-spacing: -0.01em;
}

.capabilities {
    padding: var(--spacing-2xl) 0;
    background: var(--color-gray-light);
}

.division-logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 80px;
    margin: 50px 0 70px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
}

.division-logos::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to right, #f8f9fa, transparent);
    z-index: 2;
}

.division-logos::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to left, #ffffff, transparent);
    z-index: 2;
}

.division-logos-track {
    display: flex;
    gap: 80px;
    animation: scroll-logos 20s linear infinite;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.division-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.85;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.division-logos-track:hover {
    animation-play-state: paused;
}

.division-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.capabilities-grid-three {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.capabilities-grid-four {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.capability-card {
    background: var(--color-white);
    border: 2px solid rgba(0, 113, 227, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    display: flex;
    flex-direction: column;
    position: relative;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0071E3, #005BB5);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.capability-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,113,227,0.25);
    box-shadow: 0 20px 40px rgba(0,113,227,0.15);
}

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

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 113, 227, 0.2);
}

.capability-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.capability-card:hover .service-image {
    transform: scale(1.05);
}

.capability-content {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.capability-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--spacing-md);
    color: var(--color-tech-blue);
}

.capability-icon svg {
    width: 100%;
    height: 100%;
}

.capability-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-black);
    letter-spacing: -0.01em;
}

.capability-card p {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.empowerment {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.empowerment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,113,227,0.2), transparent);
}

.empowerment-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.empowerment-image {
    position: relative;
}

.image-slider {
    position: relative;
    width: 100%;
}

.slider-container {
    overflow: hidden;
    border-radius: 16px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 16px;
}

.slider-item {
    min-width: 100%;
    flex-shrink: 0;
}

.slider-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-arrow:hover {
    background: var(--color-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--color-tech-blue);
}

.slider-prev {
    left: 16px;
}

.slider-next {
    right: 16px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--color-tech-blue);
    width: 24px;
    border-radius: 4px;
}

.slider-dot:hover {
    background: rgba(0, 113, 227, 0.5);
}

.empowerment-content {
    animation: fadeInRight 1s ease-out;
}

.empowerment-stat {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
}

.empowerment-text-content {
    margin-bottom: var(--spacing-lg);
}

.empowerment-text {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-sm);
}

.empowerment-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.empowerment-list li {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    padding-left: var(--spacing-sm);
    border-left: 3px solid var(--color-tech-blue);
}

.empowerment-tagline {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-black);
    font-style: italic;
}

.about {
    padding: var(--spacing-2xl) 0;
    background: var(--color-white);
}

.about-layout {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-image-tile {
    position: relative;
}

.image-tile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 12px;
    border-radius: 20px;
    overflow: hidden;
}

.tile-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.tile-small {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.tile-1 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.tile-2 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.tile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tile-main:hover .tile-image,
.tile-small:hover .tile-image {
    transform: scale(1.05);
}

.tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.tile-main:hover .tile-overlay {
    opacity: 1;
}

.tile-label {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    max-width: 600px;
}

.about-badge {
    display: inline-block;
    background: rgba(0, 113, 227, 0.1);
    color: var(--color-tech-blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
}

.about-header {
    margin-bottom: var(--spacing-lg);
}

.about-header .section-headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
}

.about-preview {
    margin-bottom: var(--spacing-xl);
}

.about-text {
    font-size: 1.0625rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-tech-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray);
    font-weight: 500;
}

.about-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-tech-blue);
    color: var(--color-white);
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.about-cta-button:hover {
    background: var(--color-tech-blue-dark);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.3);
}

.about-cta-button svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.about-cta-button:hover svg {
    transform: translateX(4px);
}

.trusted {
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

.trusted-intro {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.trusted-item {
    background: var(--color-gray-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.trusted-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.trusted-logo {
    width: 120px;
    height: 80px;
    color: var(--color-tech-blue);
    opacity: 0.7;
}

.trusted-logo svg {
    width: 100%;
    height: 100%;
}

.trusted-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    text-align: center;
}

.leadership {
    padding: var(--spacing-2xl) 0;
    background: var(--color-white);
}

.leadership-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.ceo-image {
    position: relative;
}

.ceo-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    animation: fadeInLeft 1s ease-out;
}

.ceo-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.ceo-content {
    animation: fadeInRight 1s ease-out;
}

.ceo-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-tech-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xs);
}

.ceo-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-xs);
}

.ceo-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-gray);
    margin-bottom: var(--spacing-xs);
}

.ceo-email {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-tech-blue);
    text-decoration: none;
    margin-bottom: var(--spacing-md);
    transition: var(--transition);
}

.ceo-email:hover {
    color: var(--color-black);
    text-decoration: underline;
}

.ceo-bio {
    font-size: 1.125rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.ceo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-tech-blue);
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray);
    font-weight: 500;
}

.vision {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #0071E3 0%, #005BB5 100%);
    position: relative;
    overflow: hidden;
}

.vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.vision-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    z-index: 0;
}

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

.vision .section-headline {
    color: white;
}

.vision .section-headline::after {
    background: white;
}

.vision-statement {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.01em;
    max-width: 900px;
    margin: var(--spacing-md) auto 0;
    color: rgba(255,255,255,0.95);
    color: var(--color-black);
    animation: fadeIn 1s ease-out;
}

.digital-future {
    padding: var(--spacing-2xl) 0;
    background: var(--color-white);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.news-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    border-bottom: 3px solid var(--color-tech-blue);
}

.news-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-tech-blue);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-label svg {
    width: 24px;
    height: 24px;
}

.news-date {
    font-size: 0.875rem;
    color: var(--color-gray);
    font-weight: 500;
}

.news-content {
    max-width: 900px;
    margin: 0 auto;
}

.news-header {
    margin-bottom: var(--spacing-xl);
}

.news-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
}

.news-subheadline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color-gray);
    line-height: 1.5;
    font-weight: 500;
}

.news-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-black);
}

.news-lead {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.7;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: var(--spacing-lg);
    padding-left: var(--spacing-md);
    border-left: 4px solid var(--color-tech-blue);
}

.news-highlights {
    background: var(--color-gray-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    margin: var(--spacing-xl) 0;
}

.news-highlights h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
}

.news-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.news-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.highlight-bullet {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--color-tech-blue);
    border-radius: 50%;
    margin-top: 8px;
}

.highlight-icon {
    font-size: 1.5rem;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-list li div {
    flex: 1;
}

.news-list strong {
    color: var(--color-tech-blue);
    font-weight: 700;
}

.news-quote {
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.05) 0%, rgba(0, 113, 227, 0.02) 100%);
    border-left: 4px solid var(--color-tech-blue);
    padding: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.news-quote p {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
}

.news-quote cite {
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--color-tech-blue);
}

.news-paragraph {
    margin: var(--spacing-lg) 0;
    line-height: 1.8;
}

.news-cta {
    background: linear-gradient(135deg, var(--color-tech-blue) 0%, var(--color-tech-blue-dark) 100%);
    color: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    margin-top: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
}

.cta-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.cta-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.news-cta .btn {
    background: var(--color-white);
    color: var(--color-tech-blue);
    white-space: nowrap;
    flex-shrink: 0;
}

.news-cta .btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

/* Featured Portfolio Section */
.featured-portfolio {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 113, 227, 0.1);
    color: #0071E3;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto 50px;
    max-width: 1200px;
}

.featured-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.featured-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f3f4f6;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-item:hover .featured-image img {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
    padding: 40px 24px 24px;
    color: white;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.featured-item:hover .featured-overlay {
    background: linear-gradient(to top, rgba(0,113,227,0.95) 0%, rgba(0,91,181,0.85) 60%, transparent 100%);
}

.project-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
}

.featured-overlay h3 {
    font-size: 1.5rem;
    margin: 0 0 8px 0;
    color: white;
    font-weight: 700;
}

.featured-overlay p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.portfolio-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: #0071E3;
    border: 2px solid #0071E3;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,113,227,0.2);
}

.btn-secondary:hover {
    background: #0071E3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,113,227,0.3);
}

.btn-secondary svg {
    transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
    transform: translateX(4px);
}

/* Divisions Section */
.divisions-section {
    padding: 100px 0;
    background: white;
}

.divisions-header {
    text-align: center;
    margin-bottom: 60px;
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.division-card {
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px solid rgba(0,113,227,0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.division-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,113,227,0.15);
    border-color: rgba(0,113,227,0.3);
}

.division-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.division-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.division-card h3 {
    font-size: 1.5rem;
    color: #0A0A0A;
    margin-bottom: 15px;
    font-weight: 700;
}

.division-card p {
    color: #6B7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

.stagger-4 {
    animation-delay: 0.6s;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .division-logos {
        gap: 60px;
        padding: 25px;
    }
    
    .division-logos-track {
        gap: 60px;
    }
    
    .division-logos img {
        height: 36px;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .featured-overlay h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .division-logos {
        gap: 50px;
        padding: 20px 15px;
    }
    
    .division-logos-track {
        gap: 50px;
    }
    
    .division-logos img {
        height: 35px;
    }
    
    .divisions-section {
        padding: 60px 0;
    }
    
    .divisions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .division-logo {
        width: 80px;
        height: 80px;
    }
    
    .division-card h3 {
        font-size: 1.25rem;
    }
    
    .featured-portfolio {
        padding: 60px 0;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .featured-overlay {
        padding: 30px 20px 20px;
    }
    
    .featured-overlay h3 {
        font-size: 1.125rem;
    }
    
    .featured-overlay p {
        font-size: 0.875rem;
    }
    
    .portfolio-header {
        margin-bottom: 40px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid rgba(0,113,227,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,113,227,0.2);
    box-shadow: 0 20px 40px rgba(0,113,227,0.12);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0071E3 0%, #005BB5 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #0A0A0A;
    font-weight: 600;
}

.author-info p {
    margin: 3px 0 0;
    font-size: 0.85rem;
    color: #6B7280;
}

.insights {
    padding: var(--spacing-2xl) 0;
    background: var(--color-white);
}

.insights-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.insight-card.featured-news {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.03) 0%, rgba(0, 113, 227, 0.08) 100%);
    border: 2px solid var(--color-tech-blue);
    position: relative;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-tech-blue);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
}

.news-badge svg {
    width: 16px;
    height: 16px;
}

.news-highlights-compact {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--color-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-black);
}

.highlight-dot {
    width: 6px;
    height: 6px;
    background: var(--color-tech-blue);
    border-radius: 50%;
}

.featured-news .insight-link {
    background: var(--color-tech-blue);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.featured-news .insight-link:hover {
    background: var(--color-tech-blue-dark);
    transform: translateX(4px);
}

.insight-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.insight-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.insight-card:hover .article-image {
    transform: scale(1.05);
}

.insight-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.featured-news .insight-image {
    height: 300px;
}

.featured-news .news-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 113, 227, 0.2);
}

.insight-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-tech-blue);
    background: rgba(0, 113, 227, 0.1);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    margin-bottom: var(--spacing-sm);
    align-self: flex-start;
}

.insight-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: var(--spacing-sm);
}

.insight-excerpt {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.read-time {
    font-size: 0.875rem;
    color: var(--color-gray);
    font-weight: 500;
}

.insight-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-tech-blue);
    text-decoration: none;
    transition: var(--transition);
}

.insight-link:hover {
    color: var(--color-black);
    transform: translateX(4px);
}

.final-cta {
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

.final-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin: 0 auto var(--spacing-sm);
    color: var(--color-black);
}

.final-subtext {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.cta-note {
    font-size: 0.875rem;
    color: var(--color-gray);
    font-style: italic;
}

/* ============================================
   FOOTER - APPLE STYLE
   ============================================ */

.footer {
    background: #f5f5f7;
    color: #1d1d1f;
    padding: 48px 0 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 12px;
    font-weight: 600;
    color: #1d1d1f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

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

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: #6e6e73;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: #0071E3;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-bottom-left {
    display: flex;
    align-items: center;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 32px;
    width: auto;
}

.footer-tagline {
    font-size: 13px;
    color: #6e6e73;
    font-weight: 500;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
}

.footer-contact-links {
    display: flex;
    gap: 24px;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6e6e73;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-contact-link:hover {
    color: #0071E3;
}

.footer-contact-link svg {
    width: 16px;
    height: 16px;
}

/* Footer Copyright */
.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
}

.footer-copyright p {
    font-size: 12px;
    color: #86868b;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal-links a {
    font-size: 12px;
    color: #86868b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #0071E3;
}

.footer-legal-links .separator {
    color: #d2d2d7;
    font-size: 12px;
}

/* Old Footer Styles - Remove */
.footer-grid,
.footer-col,
.footer-contact,
.footer-contact-item {
    /* Deprecated - using new structure */
}
    color: var(--color-gray);
    font-size: 0.875rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@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);
    }
}

@media (max-width: 1024px) {
    .product-layout,
    .empowerment-layout,
    .leadership-layout,
    .about-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-image-tile {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .laptop-mockup {
        transform: rotateY(0) rotateX(0);
        max-width: 600px;
        margin: 0 auto;
    }
    
    .news-highlights-compact {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ceo-photo {
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: var(--spacing-sm);
    }
    
    .nav-links a {
        font-size: 0.875rem;
    }
    
    .hero {
        min-height: 90vh;
        padding: var(--spacing-xl) 0;
    }
    
    .hero-background {
        width: 100%;
        opacity: 0.5;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .capabilities-grid-three,
    .capabilities-grid-four {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .mockup-content {
        min-height: 300px;
    }
    
    .mockup-sidebar {
        width: 60px;
        padding: var(--spacing-xs);
    }
    
    .sidebar-item {
        height: 30px;
    }
    
    .product-cta {
        flex-direction: column;
    }
    
    .trusted-grid {
        grid-template-columns: 1fr;
    }
    
    .ceo-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .news-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .news-cta .btn {
        width: 100%;
    }
    
    .news-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    
    .training-photo:first-child {
        height: 300px;
    }
    
    .training-photo {
        height: 200px;
    }
    
    .slider-image {
        height: 300px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-contact-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
        --spacing-2xl: 5rem;
    }
    
    .nav-container {
        padding: var(--spacing-sm);
    }
    
    .nav-logo {
        font-size: 1.25rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .nav-links a:not(.nav-cta) {
        display: none;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .capability-icon {
        width: 48px;
        height: 48px;
    }
}

/* Scroll Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in.animate-in {
    opacity: 1;
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scale-in.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Smooth transitions for interactive elements */
.capability-card,
.trusted-item,
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navigation smooth transition */
.nav {
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

/* Typing cursor blink animation */
@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

/* TechLife Assistant */
.assistant-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.assistant-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-black);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.assistant-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.assistant-button:active {
    transform: scale(0.95);
}

.assistant-icon,
.assistant-close-icon {
    width: 28px;
    height: 28px;
    color: var(--color-white);
    transition: all 0.3s ease;
    position: absolute;
}

.assistant-close-icon {
    opacity: 0;
    transform: rotate(90deg);
}

.assistant-button.active .assistant-icon {
    opacity: 0;
    transform: rotate(-90deg);
}

.assistant-button.active .assistant-close-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.assistant-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 420px;
    max-height: 600px;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.assistant-panel.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.assistant-header {
    padding: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.assistant-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-black);
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
}

.assistant-header p {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin: 0;
}

.assistant-content {
    padding: 24px;
    max-height: 480px;
    overflow-y: auto;
}

.assistant-view {
    display: none;
    animation: fadeInUp 0.3s ease-out;
}

.assistant-view.active {
    display: block;
}

.assistant-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.assistant-subtitle {
    font-size: 0.9375rem;
    color: var(--color-gray);
    margin: 0 0 20px 0;
}

.options-grid {
    display: grid;
    gap: 12px;
}

.option-button {
    width: 100%;
    padding: 16px 20px;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-black);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-button:hover {
    background: rgba(0, 113, 227, 0.04);
    border-color: rgba(0, 113, 227, 0.3);
    transform: translateX(4px);
}

.back-button {
    background: none;
    border: none;
    color: var(--color-tech-blue);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px;
    transition: var(--transition);
}

.back-button:hover {
    color: var(--color-black);
}

.assistant-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-black);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--color-black);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-tech-blue);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--color-tech-blue);
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.success-message {
    font-size: 0.9375rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0 0 24px 0;
    text-align: center;
}

#success-view {
    text-align: center;
}

#success-view .assistant-question {
    text-align: center;
}

#success-view .btn {
    margin-bottom: 12px;
}

#success-view .btn:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .assistant-container {
        bottom: 16px;
        right: 16px;
    }
    
    .assistant-button {
        width: 56px;
        height: 56px;
    }
    
    .assistant-icon,
    .assistant-close-icon {
        width: 24px;
        height: 24px;
    }
    
    .assistant-panel {
        width: calc(100vw - 32px);
        max-width: 380px;
        bottom: 72px;
    }
}

/* Photo Gallery Lightbox */
.photo-count {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.photo-count:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.05);
}

.gallery-trigger {
    cursor: pointer;
    transition: var(--transition);
}

.gallery-trigger:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#gallery-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-caption {
    color: var(--color-white);
    font-size: 1.125rem;
    margin-top: var(--spacing-md);
    text-align: center;
}

.gallery-counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-top: var(--spacing-xs);
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 32px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev svg,
.gallery-next svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
    }
}

/* Plain Buttons (No Style) */
.btn-plain {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: inherit;
    padding: 14px 32px;
    font: inherit;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-plain:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1d1d1f;
    border-radius: 2px;
    transition: all 0.3s ease;
    pointer-events: none;
}

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

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

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        display: block !important;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        text-align: left;
        color: #1d1d1f;
        font-size: 16px;
        font-weight: 500;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .nav-links a.nav-cta {
        background: #0071E3;
        color: white !important;
        padding: 15px 20px;
        border-radius: 8px;
        text-align: center;
        margin-top: 10px;
    }
}