* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #0a0a1f;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #010027;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #7BF0BB;
}

.btn-book {
    background: #7BF0BB;
    color: #0a0a1f;
    border: none;
    padding: 12px;
    border-radius: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-book:hover {
    background: #5ee0a5;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #010027;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    text-align: center;
    color: #ffffff;
    margin-bottom: 32px;
}

.hero-description {
    background: #ffffff;
    padding: 32px 40px;
    margin: 0 auto 40px;
    max-width: 800px;
}

.hero-description p {
    font-family: 'Switzer', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0;
    color: #0a0a1f;
    margin: 0;
}

.btn-get-in-touch {
    background: #7BF0BB;
    color: #0a0a1f;
    border: 1px solid #7BF0BB;
    padding: 12px 24px;
    border-radius: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    margin-bottom: 60px;
    text-decoration: none;
}

.btn-get-in-touch:hover {
    background: #5ee0a5;
    border-color: #5ee0a5;
}

.btn-book-meeting {
    background: #7BF0BB;
    color: #0a0a1f;
    border: 1px solid #7BF0BB;
    padding: 12px 24px;
    border-radius: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-book-meeting:hover {
    background: #5ee0a5;
    border-color: #5ee0a5;
}

.workday-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.workday-logo-img {
    max-width: 200px;
    height: auto;
}

/* Key Outcomes Section */
.key-outcomes {
    background: #ffffff;
    padding: 80px 0 40px 0;
    text-align: center;
}

.outcomes-badge {
    display: inline-block;
    border: 1px solid #0a0a1f;
    border-radius: 50px;
    padding: 8px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0a0a1f;
    margin-bottom: 60px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.outcome-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
    position: relative;
    padding-top: 24px;
}

.outcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #7BF0BB;
}

.outcome-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.outcome-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0;
    color: #0a0a1f;
    margin: 0;
}

/* Services Section */
.services {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
    opacity: 1 !important;
}

.services-badge {
    display: inline-block;
    border: 1px solid #0a0a1f;
    border-radius: 50px;
    padding: 8px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0a0a1f;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    opacity: 1 !important;
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0;
    color: #0a0a1f;
    margin: 0;
}

.service-card p {
    font-family: 'Switzer', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0;
    color: #666;
    margin: 0;
}

/* Implementation Approach Section */
.implementation {
    background: #ffffff;
    padding: 40px 0 80px 0;
}

.implementation-badge {
    display: inline-block;
    border: 1px solid #0a0a1f;
    border-radius: 50px;
    padding: 8px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0a0a1f;
    margin-bottom: 60px;
}

.implementation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.implementation-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    align-items: center;
    gap: 24px;
}

.step-arrow {
    font-size: 32px;
    color: #7BF0BB;
    font-weight: 400;
}

.step h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    color: #0a0a1f;
    margin: 0;
}

.implementation-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f0f0f0;
}

.implementation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team Section */
.team {
    background: #ffffff;
    padding: 80px 0;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.team-member {
    text-align: left;
}

.member-image {
    width: 100%;
    max-width: 280px;
    height: 280px;
    overflow: hidden;
    margin-bottom: 24px;
    background: #f0f0f0;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    color: #0a0a1f;
    margin-bottom: 8px;
}

.member-role {
    font-family: 'Switzer', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0;
    color: #666;
    margin: 0;
}

.team-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0;
    color: #0a0a1f;
    margin-bottom: 24px;
}

.team-description {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0;
    color: #0a0a1f;
    margin-bottom: 24px;
}

.team-collaboration {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0;
    color: #0a0a1f;
    margin-bottom: 16px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    background: #7BF0BB;
    color: #0a0a1f;
    padding: 8px 16px;
    border-radius: 0;
    font-family: 'Switzer', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
}

/* Testimonial Section */
.testimonial {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.testimonial-badge {
    display: inline-block;
    border: 1px solid #0a0a1f;
    border-radius: 50px;
    padding: 8px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0a0a1f;
    margin-bottom: 60px;
}

.testimonial-image {
    max-width: 395.5px;
    margin: 0 auto;
}

.testimonial-image img {
    width: 395.5px;
    height: 395.5px;
    display: block;
    transform: rotate(-0deg);
    opacity: 1;
}

/* Clients Section */
.clients {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.clients-badge {
    display: inline-block;
    border: 1px solid #0a0a1f;
    border-radius: 50px;
    padding: 8px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0a0a1f;
    margin-bottom: 60px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.client-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.client-card p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    color: #0a0a1f;
    margin: 0;
}

/* CTA Section */
.cta {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0;
    color: #0a0a1f;
    margin-bottom: 24px;
}

.cta p {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0;
    color: #0a0a1f;
    margin-bottom: 32px;
}

/* Final CTA Section */
.final-cta {
    background: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #0a0a1f;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.btn-view-projects {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    color: #0a0a1f;
    text-decoration: none;
    transition: color 0.3s;
    border: 1px solid #0a0a1f;
    padding: 12px 24px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-view-projects:hover {
    color: #7BF0BB;
    border-color: #7BF0BB;
}

/* Footer */
.footer {
    background: #010027;
    color: #ffffff;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-copyright a {
    color: #F8FAFC;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s;
    position: relative;
}

.social-icon:hover {
    opacity: 0.8;
}

.social-icon-img {
    width: 24px;
    height: 23.85px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #7BF0BB;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #7BF0BB;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #010027;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 40px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .btn-book {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description p {
        font-size: 16px;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .implementation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .final-cta h2 {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        padding: 24px;
    }

    .hero-description p {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}
