/* Page 1 Styles */

/* Hero Section */
.hero-section {
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-desktop {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

@media (max-width: 767px) {
    .hero-desktop {
        display: none;
    }
}

.hero-mobile {
    display: none;
}

@media (max-width: 767px) {
    .hero-mobile {
        display: block;
        position: relative;
        width: 100%;
        height: 70vh;
        min-height: 400px;
    }
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 254px;
    margin: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center bottom;
}

.hero-content {
    position: absolute;
    inset: 0;
}

.hero-title {
    position: absolute;
    width: 465px;
    height: 60px;
    top: 50px;
    left: 113px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 60px;
    color: black;
}

.hero-subtitle {
    position: absolute;
    width: 537px;
    height: 24px;
    top: 123px;
    left: -10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #525252;
}



.hero-mobile-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-mobile-content {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    color: black;
}

.hero-mobile-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    line-height: 1.2;
}

.hero-mobile-subtitle {
    margin-top: 8px;
    font-size: clamp(0.875rem, 3.5vw, 1.125rem);
    max-width: 400px;
}

/* Philosophy Section */
.philosophy-section {
    width: 100%;
}

.philosophy-desktop {
    display: block;
    padding-top: 48px;
    min-height: 260px;
}

@media (max-width: 767px) {
    .philosophy-desktop {
        display: none;
    }
}

.philosophy-mobile {
    display: none;
}

@media (max-width: 767px) {
    .philosophy-mobile {
        display: block;
        background: white;
        padding: 32px 24px 48px;
    }
}

.philosophy-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    min-height: 260px;
}

.philosophy-blue-bar {
    position: absolute;
    width: 8px;
    height: 117px;
    top: clamp(1.5rem, 4vw, 2rem);
    left: clamp(2rem, 8vw, 7.1875rem);
    background: #0070C0;
    border-radius: 12px;
}

.philosophy-title {
    position: absolute;
    width: clamp(300px, 40vw, 581px);
    top: clamp(1.5rem, 4vw, 1.5rem);
    left: clamp(3rem, 10vw, 9.375rem);
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: clamp(1.75rem, 3.8vw, 2.25rem);
    line-height: clamp(2.25rem, 4.5vw, 3rem);
    color: #000;
    margin: 0;
}

.philosophy-text-1 {
    position: absolute;
    width: clamp(280px, 80vw, 1175px);
    top: clamp(5rem, 12vw, 6rem);
    left: clamp(1rem, 10vw, 9.375rem);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: clamp(1.75rem, 3vw, 2rem);
    color: #525252;
    margin: 0;
}

.philosophy-text-2 {
    position: absolute;
    width: clamp(280px, 85vw, 1206px);
    top: clamp(10rem, 20vw, 11.5rem);
    left: clamp(2rem, 8vw, 7.1875rem);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9375rem, 1.8vw, 1rem);
    line-height: clamp(1.5rem, 2.5vw, 1.5rem);
    color: #525252;
    margin: 0;
}

/* iPad/Tablet Responsive Styles for Philosophy Section */
@media (min-width: 768px) and (max-width: 1024px) {
    .philosophy-desktop {
        padding-top: 40px;
        padding-bottom: 48px;
    }

    .philosophy-container {
        padding: 0 32px;
        min-height: 280px;
    }

    .philosophy-blue-bar {
        left: 32px;
        height: clamp(100px, 15vw, 117px);
        top: 24px;
    }

    .philosophy-title {
        left: 48px;
        width: calc(100% - 96px);
        max-width: 650px;
        top: 24px;
        font-size: clamp(1.875rem, 4vw, 2rem);
        line-height: clamp(2.5rem, 5vw, 2.75rem);
    }

    .philosophy-text-1 {
        left: 48px;
        width: calc(100% - 96px);
        max-width: 720px;
        top: 80px;
        font-size: clamp(1.125rem, 2.5vw, 1.25rem);
        line-height: clamp(1.75rem, 3vw, 2rem);
    }

    .philosophy-text-2 {
        left: 48px;
        width: calc(100% - 96px);
        max-width: 720px;
        top: 180px;
        font-size: clamp(1rem, 2vw, 1.125rem);
        line-height: clamp(1.5rem, 2.5vw, 1.75rem);
    }
}

/* iPad Air specific adjustments (820px width) */
@media (min-width: 820px) and (max-width: 834px) {
    .philosophy-container {
        padding: 0 40px;
        min-height: 300px;
    }

    .philosophy-blue-bar {
        left: 40px;
    }

    .philosophy-title {
        left: 56px;
        width: calc(100% - 112px);
    }

    .philosophy-text-1 {
        left: 56px;
        width: calc(100% - 112px);
        top: 85px;
    }

    .philosophy-text-2 {
        left: 56px;
        width: calc(100% - 112px);
        top: 190px;
    }
}

.philosophy-mobile-container {
    max-width: 672px;
    margin: 0 auto;
}

.philosophy-mobile-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    line-height: clamp(2.25rem, 6vw, 3rem);
    color: #000;
    margin-bottom: 24px;
}

.philosophy-mobile-text-1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 3vw, 1.375rem);
    line-height: clamp(1.5rem, 4vw, 2rem);
    color: #525252;
    margin-bottom: 24px;
}

.philosophy-mobile-text-2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9375rem, 2.5vw, 1rem);
    line-height: clamp(1.4rem, 3.5vw, 1.5rem);
    color: #525252;
}

/* Leadership Section */
.leadership-section {
    width: 100%;
    padding-top: clamp(3rem, 6vw, 6rem);
    padding-bottom: 4rem;
}

.leadership-desktop {
    display: block;
}

@media (max-width: 1279px) {
    .leadership-desktop {
        display: none;
    }
}

.leadership-mobile {
    display: none;
}

@media (max-width: 1279px) {
    .leadership-mobile {
        display: block;
        background: white;
        padding: 48px 24px;
    }
}

.leadership-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.leadership-heading {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.leadership-title {
    width: min(679px, 90%);
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 48px;
    color: #000;
    margin: 0;
}

.leadership-subtitle {
    width: min(679px, 90%);
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #525252;
    margin: 16px 0 0 0;
}

.leadership-content {
    display: flex;
    flex-direction: row;
    gap: 64px;
    margin-top: 32px;
    width: 100%;
    max-width: 1136px;
    margin-left: auto;
    margin-right: auto;
}

.leadership-image {
    flex: 1;
    min-height: 400px;
    border-radius: 24px;
    overflow: hidden;
}

.leadership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leadership-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 24px;
}

.leadership-text-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: #000;
    margin-bottom: 16px;
}

.leadership-text-desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #525252;
    margin-bottom: 24px;
}

.leadership-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.leadership-feature-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: #000;
    margin-bottom: 8px;
}

.leadership-feature-desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #525252;
}

.leadership-text-final {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #525252;
}

.leadership-mobile-container {
    width: 100%;
    max-width: 672px;
    margin: 0 auto;
}

.leadership-mobile-heading {
    text-align: center;
    margin-bottom: 32px;
}

.leadership-mobile-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 6vw, 2.25rem);
    line-height: clamp(2rem, 7vw, 3rem);
    color: #000;
    margin-bottom: 16px;
}

.leadership-mobile-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 3vw, 1rem);
    line-height: clamp(1.375rem, 4vw, 1.5rem);
    color: #525252;
}

.leadership-mobile-image {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.leadership-mobile-image img {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 4/3;
    object-fit: contain;
}

.leadership-mobile-text {
    text-align: left;
}

.leadership-mobile-text-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: clamp(1.125rem, 3.5vw, 1.5rem);
    line-height: clamp(1.5rem, 4.5vw, 2rem);
    color: #000;
    margin-bottom: 12px;
}

.leadership-mobile-text-desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    line-height: clamp(1.375rem, 3.5vw, 1.5rem);
    color: #525252;
    margin-bottom: 24px;
}

.leadership-mobile-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.leadership-mobile-feature-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 2.8vw, 1.25rem);
    line-height: clamp(1.375rem, 3.8vw, 1.75rem);
    color: #000;
    margin-bottom: 8px;
}

.leadership-mobile-feature-desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    line-height: clamp(1.375rem, 3.5vw, 1.5rem);
    color: #525252;
}

.leadership-mobile-text-final {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    line-height: clamp(1.375rem, 3.5vw, 1.5rem);
    color: #525252;
}

/* Skills Intelligence Section */
.skills-intelligence-section {
    width: 100%;
    background: #F6F6F6;
    padding: 32px 0;
}

.skills-intelligence-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.skills-intelligence-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 16px;
}

.skills-intelligence-title {
    display: inline-block;
    max-width: 591px;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(1.5rem, 4vw, 36px);
    line-height: clamp(2rem, 5vw, 48px);
    text-align: center;
    margin-bottom: 24px;
}

.skills-intelligence-subtitle {
    font-size: 18px;
    color: #6B7280;
    max-width: 1024px;
    margin: 0 auto;
    line-height: 1.6;
}

.skills-intelligence-desktop {
    display: block;
}

@media (max-width: 1279px) {
    .skills-intelligence-desktop {
        display: none;
    }
}

.skills-intelligence-mobile {
    display: none;
}

@media (max-width: 1279px) {
    .skills-intelligence-mobile {
        display: block;
        position: relative;
        padding: 48px 16px;
    }
}

.skills-pills-container {
    position: relative;
    margin: 56px auto 0;
    height: 307px;
    max-width: 965px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F6F6F6;
}

.skills-pill-top {
    position: relative;
    display: flex;
    height: 124px;
    max-width: 965px;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 9999px;
    background: #FFFFFF;
    padding: 16px 40px;
    z-index: 0;
}

.skills-pill-bottom {
    position: relative;
    margin-top: auto;
    z-index: 0;
    display: flex;
    height: 134px;
    max-width: 965px;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 9999px;
    background: #FFFFFF;
    padding: 16px 40px;
}

.skills-logo-center {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 307px;
    height: 307px;
}

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

.pill-content-left,
.pill-content-right {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.pill-title {
    width: 288px;
    height: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 6px;
}

.pill-text {
    width: 288px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #555555;
    margin-top: 6px;
}

.skills-mobile-logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.2;
    width: 250px;
}

.skills-mobile-logo-bg img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.skills-mobile-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.skills-mobile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.skills-mobile-item-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000;
}

.skills-mobile-item-text {
    font-size: 14px;
    color: #6B7280;
    max-width: 384px;
}

/* SynapseScope Delivers Section */
.synapse-delivers-section {
    width: 100%;
}

.synapse-delivers-desktop {
    display: block;
    height: 526px;
    position: relative;
}

@media (max-width: 1279px) {
    .synapse-delivers-desktop {
        display: none;
    }
}

.synapse-delivers-mobile {
    display: none;
}

@media (max-width: 1279px) {
    .synapse-delivers-mobile {
        display: block;
        background: white;
        padding: 48px 16px;
    }
}

.synapse-delivers-container {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    position: relative;
    margin: 0 auto;
}

.synapse-delivers-title {
    position: absolute;
    top: 78px;
    left: 50%;
    transform: translateX(-50%);
    width: 491px;
    height: 42px;
    z-index: 10;
    margin: 0;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 42px;
    color: #000000;
}

.synapse-delivers-cards {
    position: absolute;
    top: 175px;
    left: 140px;
    width: 1160px;
    display: flex;
    gap: 28px;
}

.synapse-card {
    width: 368px;
    height: 239px;
    background: #F6F6F6;
    border: 1px solid white;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 18px;
}

.synapse-card img {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
}

.synapse-card-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    margin: 0;
}

.synapse-card-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #555555;
    margin: 0;
}

.synapse-card-button {
    width: 97.808px;
    height: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #007AFF;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.synapse-delivers-mobile-container {
    max-width: 1536px;
    margin: 0 auto;
}

.synapse-delivers-mobile-title {
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: clamp(2rem, 6vw, 2.625rem);
    color: #000;
}

.synapse-delivers-mobile-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .synapse-delivers-mobile-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.synapse-mobile-card {
    background: #F6F6F6;
    border: 1px solid white;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 220px;
}

.synapse-mobile-card img {
    width: 54px;
    height: 54px;
}

.synapse-mobile-card-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(1rem, 3vw, 1.25rem);
    line-height: clamp(1.5rem, 4vw, 1.5rem);
    color: #000;
    margin: 0;
}

.synapse-mobile-card-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 2.5vw, 0.875rem);
    line-height: clamp(1.25rem, 3.5vw, 1.25rem);
    color: #555555;
    margin: 0;
    flex-grow: 1;
}

.synapse-mobile-card-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #007AFF;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(0.875rem, 2.5vw, 0.875rem);
    font-weight: 600;
    width: fit-content;
}

/* SynapseScope Matters Section */
.synapse-matters-section {
    width: 100%;
}

.synapse-matters-desktop {
    display: block;
    position: relative;
    height: 559px;
}

@media (max-width: 1279px) {
    .synapse-matters-desktop {
        display: none;
    }
}

.synapse-matters-mobile {
    display: none;
}

@media (max-width: 1279px) {
    .synapse-matters-mobile {
        display: block;
        background: white;
        padding: 48px 16px;
    }
}

.synapse-matters-container {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    position: relative;
    margin: 0 auto;
}

.synapse-matters-text {
    position: absolute;
    width: 641px;
    height: 158px;
    top: 47px;
    left: 106px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.synapse-matters-title {
    width: 591px;
    height: 62px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 48px;
    color: #000000;
    margin: 0;
}

.synapse-matters-subtitle {
    width: 641px;
    height: 48px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #525252;
    margin: 0;
}

.synapse-matters-subtitle-2 {
    width: 641px;
    height: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #525252;
    margin: 0;
}

.synapse-matters-items {
    position: absolute;
    width: 1211px;
    height: 192px;
    top: 288px;
    left: 115px;
    display: flex;
    gap: 49px;
}

.synapse-matters-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 371px;
    height: 192px;
    gap: 3px;
}

.synapse-matters-item img {
    width: 255px;
    height: 139px;
    object-fit: contain;
}

.synapse-matters-item-title {
    width: 371px;
    height: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    margin-top: 8px;
}

.synapse-matters-item-subtitle {
    width: 371px;
    height: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    margin-top: 4px;
}

.synapse-matters-mobile-container {
    max-width: 1024px;
    margin: 0 auto;
}

.synapse-matters-mobile-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
}

.synapse-matters-mobile-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    line-height: clamp(2.25rem, 6vw, 3rem);
    color: #000;
}

.synapse-matters-mobile-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9375rem, 2.5vw, 1rem);
    line-height: clamp(1.5rem, 3.5vw, 1.5rem);
    color: #525252;
}

.synapse-matters-mobile-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .synapse-matters-mobile-items {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.synapse-matters-mobile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.synapse-matters-mobile-item img {
    width: 100%;
    max-width: 255px;
    height: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.synapse-matters-mobile-item-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 3vw, 1.25rem);
    line-height: clamp(1.5rem, 4vw, 1.5rem);
    color: #000;
    margin-bottom: 8px;
}

.synapse-matters-mobile-item-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    line-height: clamp(1.25rem, 3.5vw, 1.5rem);
    color: #000;
}

/* Vision Section */
.vision-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.vision-desktop {
    display: block;
    width: 100%;
    height: 618px;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

@media (max-width: 1279px) {
    .vision-desktop {
        display: none;
    }
}

.vision-mobile {
    display: none;
}

@media (max-width: 1279px) {
    .vision-mobile {
        display: block;
        position: relative;
        width: 100%;
        height: 60vh;
        min-height: 400px;
    }
}

.vision-container {
    width: 100%;
    max-width: 100%;
    height: 100%;
    position: relative;
    margin: 0;
}

.vision-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.64);
}

.vision-content {
    position: absolute;
    max-width: 582px;
    width: 100%;
    padding: 0 16px;
    height: 197px;
    top: 330px;
    left: clamp(1rem, 8vw, 138px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.vision-text-1,
.vision-text-2 {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(1rem, 1.5vw, 22px);
    line-height: clamp(1.5rem, 2vw, 32px);
    color: #FFFFFF;
    margin: 0;
}

.vision-mobile-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.vision-mobile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.vision-mobile-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.64);
}

.vision-mobile-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    gap: 30px;
}

.vision-mobile-text-1,
.vision-mobile-text-2 {
    width: 100%;
    max-width: 582px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(1rem, 4vw, 1.375rem);
    line-height: clamp(1.5rem, 5vw, 2rem);
    color: #FFFFFF;
    margin: 0;
}

/* Our Story Section */
.our-story-section {
    width: 100%;
}

.our-story-desktop {
    display: block;
    height: 800px;
    position: relative;
}

@media (max-width: 1279px) {
    .our-story-desktop {
        display: none;
    }
}

.our-story-mobile {
    display: none;
}

@media (max-width: 1279px) {
    .our-story-mobile {
        display: block;
        background: white;
        padding: 40px 16px;
        position: relative;
        min-height: 500px;
    }
}

.our-story-container {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    position: relative;
    margin: 0 auto;
}

.our-story-title {
    position: absolute;
    width: 491px;
    height: 42px;
    top: 10%;
    left: 475px;
    font-family: 'Roboto', sans-serif;
    font-weight: 550;
    font-size: 32px;
    line-height: 42px;
    text-align: center;
    margin: 0;
}

.our-story-image {
    position: absolute;
    width: 686.886962890625px;
    height: 448.3898010253906px;
    top: 15%;
    left: 288px;
    overflow: hidden;
}

.our-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-story-text-1 {
    position: absolute;
    width: 281px;
    height: 109px;
    top: 35%;
    left: 249px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #000;
}

.our-story-text-2 {
    position: absolute;
    width: 289px;
    height: 103px;
    top: 35%;
    left: 934px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #000;
}

.our-story-text-3 {
    position: absolute;
    width: 279px;
    height: 103px;
    top: 80%;
    left: 589px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #000;
}

.our-story-mobile-container {
    max-width: 512px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.our-story-mobile-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.1;
    pointer-events: none;
}

.our-story-mobile-bg img {
    width: 80%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.our-story-mobile-content {
    position: relative;
    z-index: 10;
}

.our-story-mobile-title {
    text-align: center;
    margin-bottom: 32px;
    font-family: 'Roboto', sans-serif;
    font-weight: 550;
    font-size: clamp(1.75rem, 6vw, 2rem);
    line-height: clamp(2.25rem, 7vw, 2.625rem);
    color: #000;
    margin: 0 0 32px 0;
}

.our-story-mobile-text-1,
.our-story-mobile-text-2,
.our-story-mobile-text-3 {
    text-align: center;
    margin: 0 auto 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 3.5vw, 1rem);
    line-height: clamp(1.375rem, 5vw, 1.625rem);
    color: #000;
}

/* Stats Section */
.stats-section {
    width: 100%;
    background: #F6F6F6;
}

.stats-desktop {
    display: block;
    height: 747px;
    position: relative;
    display: flex;
    justify-content: center;
}

@media (max-width: 1279px) {
    .stats-desktop {
        display: none;
    }
}

.stats-mobile {
    display: none;
}

@media (max-width: 1279px) {
    .stats-mobile {
        display: block;
        padding: 48px 16px;
    }
}

.stats-container {
    width: 100%;
    max-width: 1440px;
    height: 747px;
    position: relative;
    margin: 0 auto;
}

.stats-text-block {
    position: absolute;
    width: 657px;
    height: 172px;
    top: 45px;
    left: 129px;
    padding: 20px;
}

.stats-title {
    width: 657px;
    height: 48px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 48px;
    color: #000000;
    margin: 0 0 14px 0;
}

.stats-desc {
    width: 657px;
    height: 72px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #525252;
    margin: 14px 0;
}

.stats-label {
    width: 657px;
    height: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #525252;
    margin: 14px 0 0 0;
}

.stats-image {
    position: absolute;
    width: 527px;
    height: 352.54px;
    top: 30%;
    left: 771px;
}

.stats-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-features {
    position: absolute;
    width: 480px;
    height: 368px;
    top: 265px;
    left: 165px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stats-feature {
    width: 433px;
    opacity: 1;
}

.stats-feature-title {
    width: 407.5364685058594px;
    height: 29px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 33px;
    color: #0070C0;
    margin-bottom: -5px;
}

.stats-feature-desc {
    width: 407.5364685058594px;
    padding-left: 14px;
    margin-top: -5px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #525252;
}

.stats-mobile-container {
    max-width: 1024px;
    margin: 0 auto;
}

.stats-mobile-heading {
    margin-bottom: 32px;
}

.stats-mobile-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    line-height: clamp(2rem, 6vw, 3rem);
    color: #000;
    margin: 0 0 16px 0;
}

.stats-mobile-desc {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9375rem, 2.5vw, 1rem);
    line-height: clamp(1.5rem, 3.5vw, 1.5rem);
    color: #525252;
    margin: 0 0 16px 0;
}

.stats-mobile-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9375rem, 2.5vw, 1rem);
    line-height: clamp(1.5rem, 3.5vw, 1.5rem);
    color: #525252;
    margin: 0;
}

.stats-mobile-image {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.stats-mobile-image img {
    width: 100%;
    max-width: 527px;
    height: auto;
    object-fit: contain;
}

.stats-mobile-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stats-mobile-feature-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: clamp(0.9375rem, 2.5vw, 1rem);
    line-height: clamp(1.5rem, 3.5vw, 2rem);
    color: #0070C0;
    margin-bottom: 8px;
}

.stats-mobile-feature-desc {
    padding-left: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    line-height: clamp(1.25rem, 3.5vw, 1.5rem);
    color: #525252;
}

/* Insight Section */
.insight-section {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 110px;
}

.insight-desktop {
    display: block;
    min-height: 820px;
    position: relative;
}

@media (max-width: 1279px) {
    .insight-desktop {
        display: none;
    }
}

.insight-mobile {
    display: none;
}

@media (max-width: 1279px) {
    .insight-mobile {
        display: block;
        background: white;
        padding: 100px 16px;
    }
}

.insight-container {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    position: relative;
    margin: 0 auto;
}

.insight-heading {
    position: absolute;
    width: 563px;
    height: 95px;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.insight-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    color: #000000;
    margin: 0;
    white-space: pre-line;
}

.insight-logos {
    position: absolute;
    width: 868px;
    height: 419px;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0px;
}

.insight-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.insight-logo {
    width: 143.63px;
    height: 163.06px;
    object-fit: cover;
}

.insight-connector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    transform: translateX(125px);
}

.insight-connector img:first-child {
    width: 33px;
    height: 33px;
}

.insight-connector img:last-child {
    width: 240px;
    height: 6px;
}

.insight-point {
    width: 33px;
    height: 33px;
    margin-top: 10px;
}

.insight-vertical {
    width: 6px;
    height: 57px;
    margin-top: 10px;
}

.insight-column-title {
    width: 156px;
    height: 21px;
    margin-top: 10px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
}

.insight-column-text {
    width: 248px;
    height: 78px;
    margin-top: 5px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #525252;
}

.insight-principle {
    position: absolute;
    width: 1156px;
    top: 700px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.insight-principle-title {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    padding-left: 20px;
    margin: 0;
    padding-bottom: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    color: #0070C0;
}

.insight-principle-text {
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 20px;
    margin: 0;
    padding-top: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #525252;
}

.insight-mobile-container {
    max-width: 1024px;
    margin: 0 auto;
}

.insight-mobile-title {
    text-align: center;
    margin-bottom: 48px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    line-height: clamp(2rem, 6vw, 2.625rem);
    color: #000;
    margin: 0 0 48px 0;
    white-space: pre-line;
}

.insight-mobile-columns {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 48px;
}

.insight-mobile-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.insight-mobile-logo {
    width: 120px;
    height: auto;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .insight-mobile-logo {
        width: 143.63px;
    }
}

.insight-mobile-connector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.insight-mobile-connector img {
    width: 33px;
    height: 33px;
}

.insight-mobile-point {
    width: 33px;
    height: 33px;
    margin-top: 10px;
}

.insight-mobile-vertical {
    width: 6px;
    height: 57px;
    margin-top: 10px;
}

.insight-mobile-column-title {
    margin-top: 10px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: clamp(0.9375rem, 2.5vw, 1rem);
    line-height: clamp(1.5rem, 3.5vw, 1.625rem);
    color: #000;
    margin-bottom: 4px;
}

.insight-mobile-column-text {
    margin-top: 6px;
    text-align: center;
    max-width: 248px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 2.5vw, 0.875rem);
    line-height: clamp(1.25rem, 3.5vw, 1.25rem);
    color: #525252;
}

.insight-mobile-principle {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.insight-mobile-principle-title {
    margin-bottom: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    line-height: clamp(1.75rem, 4vw, 2.625rem);
    color: #0070C0;
}

.insight-mobile-principle-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9375rem, 2.5vw, 1rem);
    line-height: clamp(1.5rem, 3.5vw, 1.5rem);
    color: #525252;
}

/* Skills Section */
.skills-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.skills-desktop {
    display: block;
    width: 100%;
    height: 433px;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

@media (max-width: 1279px) {
    .skills-desktop {
        display: none;
    }
}

.skills-mobile {
    display: none;
}

@media (max-width: 1279px) {
    .skills-mobile {
        display: block;
        position: relative;
        overflow: hidden;
        height: clamp(400px, 60vh, 500px);
    }
}

.skills-container {
    width: 100%;
    max-width: 100%;
    height: 100%;
    position: relative;
    margin: 0;
}

.skills-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 0;
    left: 0;
}

.skills-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
}

.skills-content {
    position: absolute;
    width: 456px;
    height: 137px;
    top: 150px;
    left: 94px;
}

.skills-text-1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 52px;
    color: #FFFFFF;
}

.skills-text-2 {
    position: absolute;
    width: 456px;
    height: 23px;
    top: 110px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFF;
}

.skills-buttons {
    position: absolute;
    width: 412px;
    height: 48px;
    top: 150px;
    display: flex;
    flex-direction: row;
    gap: 9px;
}

.skills-button {
    width: 197px;
    height: 48px;
    background-color: #0070C0;
    border-radius: 6px;
    border: 1px solid #0070C0;
    padding: 17px 24px;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.03em;
    text-align: center;
    white-space: nowrap;
}

.skills-mobile-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.skills-mobile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: 1;
}

.skills-mobile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.skills-mobile-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 16px;
    height: 100%;
}

.skills-mobile-text-1 {
    color: white;
    text-align: center;
    margin-bottom: 16px;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: clamp(1.5rem, 6vw, 2.25rem);
    line-height: clamp(2rem, 7vw, 3rem);
}

.skills-mobile-text-2 {
    color: white;
    text-align: center;
    margin-bottom: 24px;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 4vw, 1.25rem);
    line-height: clamp(1.25rem, 5vw, 1.5rem);
}

.skills-mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 384px;
}

@media (min-width: 640px) {
    .skills-mobile-buttons {
        flex-direction: row;
    }
}

.skills-mobile-button {
    width: 100%;
    min-height: 44px;
    background-color: #0070C0;
    border-radius: 6px;
    border: 1px solid #0070C0;
    padding: 12px 24px;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .skills-mobile-button {
        flex: 1;
    }
}

/* Footer styles are handled by /footer/footer.css */

