.main-hero {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%), url("../../assets/banners/careers-banner-min.png") center / cover no-repeat;
    height: 100vh;
    padding: 32px 0px;
    display: flex;
    align-items: flex-end;
    position: relative;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.1);    
}

.hero-header {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-header>h1 {
    width: 40%;
    font-family: Urbanist, sans-serif;
    font-size: 3.14rem;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
}

.hero-header>p {
    width: 40%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    color: #ffffff;
}

@media screen and (max-width:768px) {
    .main-hero {
        background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url("../../assets/banners/careers-banner-min.png");
        background-position: center;
        padding: 40px;
        align-items: center;
    }

    .hero-header>h1 {
        width: 90%;
        font-size: 2.617rem;
        font-weight: 700;
    }

    .hero-header>p {
        width: 90%;
        font-size: 1rem;
    }
}

@media screen and (max-width:430px) {
    .main-hero {
        padding: 20px;
        align-items: center;
    }

    .hero-header>h1 {
        font-family: Urbanist;
        font-size: 2.617rem;
        font-weight: 700;
        line-height: 1.2;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #ffffff;
    }

    .hero-header>p {
        font-size: 1rem;
        width: 100%;
    }
}

/* Introductory section after hero */
.intro-section {
    background-color: #fff;
    padding: 80px 0 100px;
}

.intro-section-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 128px;
}

.intro-section-left {
    flex: 0 1 45%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.intro-section-subtitle {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.618;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #141E47;
}

.intro-section-heading {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.intro-section-left>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    color: #333;
}

.intro-section-right {
    flex: 0 1 45%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.intro-section-item h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 500;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.intro-section-item p {
    width: 90%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    color: #333;
}

@media screen and (max-width: 1024px) {
    .intro-section-inner {
        flex-direction: column;
        gap: 64px;
    }

    .intro-section-left,
    .intro-section-right {
        flex: 1 1 100%;
    }

}

@media screen and (max-width: 768px) {
    .intro-section {
        padding: 48px 0 64px;
    }

}

@media screen and (max-width: 430px) {
    .intro-section {
        padding: 40px 0 56px;
    }

    .intro-section-inner {
        gap: 32px;
    }
}

.gretex-difference-container-main {
    max-width: 1440px;
    margin: 0 auto;
}

.slider-custom-buttons {
    display: flex;
    gap: 16px;
}

.gretex-difference-prev,
.gretex-difference-next {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(26, 26, 26);
    cursor: pointer;
    border: 1px solid var(--border, #141E4733);
    border-radius: 50%;
    background: rgb(255, 255, 255);
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.gretex-difference-prev:hover:not(.swiper-button-disabled),
.gretex-difference-next:hover:not(.swiper-button-disabled) {
    background-color: #f5f5f5;
    border-color: #141E47;
}

.gretex-difference-prev.swiper-button-disabled,
.gretex-difference-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gretex-difference-container-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gretex-difference-container-main-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 500;
    line-height: 1.2;
    color: #1a1a1a;
}

.gretex-difference-container-main-body {
    margin-top: 32px;
    overflow: hidden;
}

.gretex-difference-swiper {
    overflow: hidden;
}

/* Make every slide/card same height */
.gretex-difference-swiper .swiper-wrapper {
    align-items: stretch;
}

.gretex-difference-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.gretex-difference-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    min-height: 480px;
    /* ✅ default desktop-ish */
    padding: 32px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 12px;
}

.gretex-difference-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gretex-difference-card-content h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.25;
    color: #fff;
    margin: 0;
}

.gretex-difference-card-content p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Tablet */


/* Mobile */
@media screen and (max-width: 767px) {
    .gretex-difference-card {
        padding: 24px;
    }
}

.image-collage-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1440px;
    margin: 0 auto;
}

.image-collage>img {
    width: 100%;
    margin: 0 auto;
    object-fit: cover;
}

.company-culture-content-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e0e0e0;
}

.company-culture-content-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.company-culture-content-header>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.618rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.03em;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.author-box {
    padding: 64px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-image-container {
    width: 96px;
    height: 96px;
}

.author-image-container>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
    display: block;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.author-details>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
}

.author-details>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #000;
}

@media screen and (max-width:768px) {
    .author-box {
        padding: 32px 0;
        gap: 8px;
    }

    .author-image-container {
        width: 64px;
        height: 64px;
    }

    .author-details>h3 {
        font-size: 1.2rem;
    }

    .author-details>p {
        font-size: 0.9rem;
    }
}

.company-culture-metrics {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 0;
    flex-wrap: wrap;
    width: auto;
    width: auto;
    gap: 32px;
}

.metric {
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 32px;
    flex: 1 1 20%;
}

.metric-number {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.metric-description {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.03em;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

@media screen and (max-width:1024px) {
    .company-culture-header>h2 {
        width: 100%;
    }
}

@media screen and (max-width:768px) {
    .company-culture {
        background: linear-gradient(to bottom, #141E47 40%, #ffffff 40%);
    }

    .company-culture-header>h2 {
        font-size: 2.617rem;
        width: 100%;
    }

    .company-culture-metrics {
        padding: 40px 0;
    }
}

@media screen and (max-width:430px) {
    .company-culture {
        background: linear-gradient(to bottom, #141E47 30%, #ffffff 30%);
        padding: 64px 20px;
        gap: 32px;
    }
}

/* Student testimonials */
.student-testimonials-section {
    padding: 80px 0;
    background-color: #f0f2f4;
}

.student-testimonials-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.student-testimonials-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.student-testimonials-label {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.618;
    letter-spacing: 0.05em;
    color: #000;
    text-transform: uppercase;
    width: 100%;
}

.student-testimonials-title {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
    margin: 0;
    flex: 1 1 60%;
}

.student-testimonials-prev,
.student-testimonials-next {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(26, 26, 26);
    cursor: pointer;
    border: 1px solid var(--border, #141E4733);
    border-radius: 50%;
    background: rgb(255, 255, 255);
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.student-testimonials-prev:hover:not(.swiper-button-disabled),
.student-testimonials-next:hover:not(.swiper-button-disabled) {
    background-color: #f5f5f5;
    border-color: #141E47;
}

.student-testimonials-prev.swiper-button-disabled,
.student-testimonials-next.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.student-testimonials-swiper-wrapper {
    position: relative;
    overflow: hidden;
}

.student-testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.student-testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f0f2f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Urbanist, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
}

.student-testimonial-name {
    font-family: Urbanist, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    margin: 0;
}

.student-testimonial-designation {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
    color: #555;
    margin: 0 0 4px 0;
}

.student-testimonial-quote {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #555;
    margin: 0;
    flex: 1;
}

.student-testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #777;
    margin-top: auto;
}

@media screen and (max-width: 768px) {
    .student-testimonials-section {
        padding: 48px 0;
    }

    .student-testimonials-header {
        flex-direction: column;
        align-items: stretch;
    }



    .student-testimonial-card {
        min-height: 280px;
        padding: 24px;
    }
}

@media screen and (max-width: 430px) {
    .student-testimonials-section {
        padding: 40px 0;
    }

}

/* Catylst connect */
.catalyst-connect {
    padding: 50px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url("../../assets/catalyst-connect.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 32px;
}

.catalyst-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 16px;
}

.catalyst-content>h2 {
    font-family: Urbanist;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

.catalyst-content>p {
    width: 70%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.618;
    letter-spacing: -0.03em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

.cta-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 8px 12px 8px 24px;
    border-radius: 80px;
    background-color: #fff;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.618;
    text-decoration: none;
    color: #000;
}

.inline-svg-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    background-color: #212121;
    border-radius: 80px;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inline-svg-icon>svg {
    width: 24px;
    height: 24px;
    transform: scale(2.5);
    transform-origin: center;
}

@media screen and (max-width:768px) {}

@media screen and (max-width:430px) {
    .catalyst-connect {
        background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url("../../assets/catalyst-connect.png");
        background-position: center;
        background-size: cover;
        padding: 20px;
        height: 80vh;
        gap: 32px;
    }

    .catalyst-content>h2 {
        font-family: Urbanist;
        font-size: 2.617rem;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: -0.03em;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #ffffff;
    }

    .catalyst-content>p {
        width: 100%;
        font-family: Plus Jakarta Sans, sans-serif;
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.618;
        letter-spacing: -0.03em;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #ffffff;
    }

}

.open-roles-container {
    padding: 128px 50px;
    background: #f0f2f4;
}

.open-roles-container-main {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.open-roles-container-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.open-roles-container-header>span {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.618;
    color: #000;
    text-transform: uppercase;
}

.open-roles-container-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.open-roles-container-header>p {
    width: 60%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    text-align: left;
    /* padding-top: 8px; */
}

.open-roles-container-body {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.open-roles-container-body-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.open-roles-container-body-section>h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.open-roles-container-body-row {
    border-top: 1px solid #b2ba9b80;
    padding: 32px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.open-roles-container-body-row:last-child {
    border-bottom: 1px solid #b2ba9b80;
}

.body-roles-heading>h4,
.body-roles-location>p {
    font-family: Urbanist, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    margin: 0;
}

.view-cta-button>a {
    border: 1px solid #000000;
    padding: 12px;
    border-radius: 8px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    display: inline-block;
}

@media screen and (max-width:768px) {

    .open-roles-container-header>p {
        width: 100%;
        font-family: Plus Jakarta Sans, sans-serif;
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.618;
        text-align: left;
        padding-top: 8px;
    }

    .open-roles-container-body-row {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

@media screen and (max-width:430px) {
    .open-roles-container {
        padding: 64px 20px;
    }
}

/* No Open Roles state */
.no-open-roles-container {
    padding: 128px 50px;
    background: #f0f2f4;
}

.no-open-roles-container-main {
    max-width: 1440px;
    padding: 64px 50px;
}

.no-open-roles-container-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* align-items: center; */
    /* text-align: center; */
}

.no-open-roles-container-header > span {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.618;
    color: #000;
    text-transform: uppercase;
}

.no-open-roles-container-header > h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
}

.no-open-roles-container-header > p {
    max-width: 560px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    color: #333;
}

@media screen and (max-width:768px) {
    .no-open-roles-container {
        padding: 80px 24px;
    }

    .no-open-roles-container-header > h2 {
        font-size: 2.1rem;
    }
}

@media screen and (max-width:430px) {
    .no-open-roles-container {
        padding: 64px 20px;
    }
}


/* FAQ Section */
.faq-section {
    background-color: #000000;
    padding: 128px 50px;
}

.faq-container {
    max-width: 1440px;
    margin: 0 auto;
}

.faq-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 64px 0;
    text-align: left;
    letter-spacing: -0.02em;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-question span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    flex: 1;
    padding-right: 24px;
}

.faq-arrow {
    width: 24px;
    height: 24px;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 0;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 0 32px 0;
}

.faq-answer p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.faq-disclaimer {
    margin-top: 48px;
    padding-top: 48px;

}

.faq-disclaimer p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.faq-disclaimer a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-disclaimer a:hover {
    opacity: 0.85;
}

@media screen and (max-width: 768px) {
    .faq-section {
        padding: 64px 40px;
    }

    .faq-title {
        font-size: 2.235rem;
        margin-bottom: 48px;
    }

    .faq-question {
        padding: 24px 0;
    }

    .faq-question span {
        font-size: 1.1rem;
        padding-right: 16px;
    }

    .faq-arrow {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 430px) {
    .faq-section {
        padding: 64px 20px;
    }

    .faq-title {
        font-size: 1.8rem;
        margin-bottom: 32px;
    }

    .faq-question {
        padding: 20px 0;
    }

    .faq-question span {
        font-size: 1rem;
        padding-right: 12px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .faq-disclaimer {
        margin-top: 48px;
        padding-top: 32px;
    }

    .faq-disclaimer p {
        font-size: 0.9rem;
    }
}