/* ================= TEM CSR Project Page ================= */

.csr-page {
    background: #ffffff;
    color: #061c38;
}

.csr-eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.csr-eyebrow--light {
    color: #440067;
    background: rgba(68, 0, 103, 0.08);
    border-color: rgba(68, 0, 103, 0.12);
}

/* Hero */

.csr-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #061c38;
}

.csr-hero__media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.csr-hero__media picture,
.csr-hero__media img {
    width: 100%;
    height: 100%;
    display: block;
}

.csr-hero__media img {
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
}

.csr-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(3, 18, 41, 0.94) 0%, rgba(3, 18, 41, 0.74) 48%, rgba(68, 0, 103, 0.42) 100%),
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.14), transparent 28%);
}

.csr-hero .container {
    position: relative;
    z-index: 3;
}

.csr-hero__content {
    max-width: 860px;
    padding: 120px 0;
}

.csr-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(44px, 6vw, 82px);
    font-weight: 950;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.csr-hero p {
    max-width: 700px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.75;
}

.csr-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

/* Buttons */

.csr-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 950;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.csr-btn--primary {
    color: #ffffff;
    background: linear-gradient(135deg, #440067, #7516a8);
    box-shadow: 0 18px 42px rgba(68, 0, 103, 0.34);
}

.csr-btn--primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 24px 54px rgba(68, 0, 103, 0.42);
}

.csr-btn--secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(10px);
}

.csr-btn--secondary:hover {
    color: #440067;
    background: #ffffff;
    transform: translateY(-2px);
}

.csr-btn--white {
    color: #440067;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.csr-btn--white:hover {
    color: #440067;
    transform: translateY(-2px);
}

/* Intro */

.csr-intro {
    padding: 105px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(68, 0, 103, 0.06), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.csr-intro__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.csr-intro__content h2,
.csr-section__head h2,
.csr-split__content h2,
.csr-collaborate__card h2 {
    margin: 0;
    color: #061c38;
    font-size: clamp(36px, 4.8vw, 60px);
    font-weight: 950;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.csr-intro__content p,
.csr-split__content p {
    max-width: 760px;
    margin: 22px 0 0;
    color: #506070;
    font-size: 16.5px;
    line-height: 1.8;
}

.csr-intro__stats {
    display: grid;
    gap: 16px;
}

.csr-intro__stats div {
    padding: 26px 28px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.csr-intro__stats strong {
    display: block;
    color: #440067;
    font-size: 34px;
    font-weight: 950;
    line-height: 1;
}

.csr-intro__stats span {
    display: block;
    margin-top: 6px;
    color: #5f6b7a;
    font-size: 14px;
    font-weight: 850;
}

/* Sections */

.csr-section {
    padding: 105px 0 115px;
    background: #ffffff;
}

.csr-section--soft {
    background:
        radial-gradient(circle at top right, rgba(68, 0, 103, 0.06), transparent 32%),
        #f7f8fc;
}

.csr-section__head {
    max-width: 820px;
    margin: 0 auto 46px;
    text-align: center;
}

.csr-section__head p {
    max-width: 700px;
    margin: 18px auto 0;
    color: #5f6b7a;
    font-size: 16.5px;
    line-height: 1.75;
}

.csr-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.csr-card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.csr-info-card {
    min-height: 100%;
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.csr-info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(68, 0, 103, 0.18);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.13);
}

.csr-info-card span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #440067, #7516a8);
    border-radius: 14px;
    font-size: 13px;
    font-weight: 950;
}

.csr-info-card h3 {
    margin: 20px 0 10px;
    color: #061c38;
    font-size: 21px;
    font-weight: 950;
    line-height: 1.2;
}

.csr-info-card p {
    margin: 0;
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.72;
}

/* Feature Image */

.csr-feature-image {
    padding: 0 0 105px;
    background: #ffffff;
}

.csr-feature-image__wrap {
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.16);
}

.csr-feature-image__wrap img {
    width: 100%;
    height: 560px;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Solution Split */

.csr-split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.csr-list-panel {
    padding: 34px;
    background:
        radial-gradient(circle at top right, rgba(68, 0, 103, 0.08), transparent 32%),
        #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.csr-list-panel h3 {
    margin: 0 0 22px;
    color: #061c38;
    font-size: 24px;
    font-weight: 950;
    line-height: 1.25;
}

.csr-list-panel ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.csr-list-panel li {
    position: relative;
    padding: 12px 14px 12px 42px;
    color: #35465b;
    background: #f7f8fc;
    border-radius: 16px;
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1.35;
}

.csr-list-panel li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #440067;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 950;
    transform: translateY(-50%);
}

/* Purple Section */

.csr-section--purple {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.16), transparent 30%),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.12), transparent 32%),
        linear-gradient(135deg, #440067 0%, #7516a8 56%, #00306e 100%);
}

.csr-section__head--light h2,
.csr-section__head--light p {
    color: #ffffff;
}

.csr-section__head--light p {
    color: rgba(255, 255, 255, 0.78);
}

.csr-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.csr-benefit {
    padding: 26px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.csr-benefit h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 950;
}

.csr-benefit p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14.5px;
    line-height: 1.7;
}

/* Gallery */

.csr-gallery {
    padding: 105px 0 115px;
    background:
        radial-gradient(circle at 12% 16%, rgba(68, 0, 103, 0.06), transparent 30%),
        #ffffff;
}

.csr-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 230px;
    gap: 18px;
}

.csr-gallery__item {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    background: #eef1f7;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.csr-gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.csr-gallery__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.csr-gallery__item:hover img {
    transform: scale(1.06);
    filter: saturate(1.05);
}

/* Collaborate */

.csr-collaborate {
    padding: 0 0 105px;
    background: #ffffff;
}

.csr-collaborate__card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 48px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(135deg, #440067 0%, #7516a8 58%, #00306e 100%);
    border-radius: 34px;
    box-shadow: 0 28px 80px rgba(68, 0, 103, 0.22);
}

.csr-collaborate__card h2 {
    max-width: 760px;
    color: #ffffff;
}

.csr-collaborate__card p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16.5px;
    line-height: 1.75;
}

/* Responsive */

@media (max-width: 1199px) {
    .csr-card-grid--four,
    .csr-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .csr-gallery__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .csr-intro__grid,
    .csr-split,
    .csr-collaborate__card {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .csr-card-grid {
        grid-template-columns: 1fr;
    }

    .csr-collaborate__card .csr-btn {
        width: fit-content;
    }

    .csr-feature-image__wrap img {
        height: 460px;
    }
}

@media (max-width: 767px) {
    .csr-hero {
        min-height: 560px;
        align-items: flex-end;
    }

    .csr-hero__overlay {
        background:
            linear-gradient(180deg, rgba(3, 18, 41, 0.24) 0%, rgba(3, 18, 41, 0.84) 48%, rgba(3, 18, 41, 0.96) 100%),
            linear-gradient(90deg, rgba(68, 0, 103, 0.32), rgba(0, 48, 110, 0.28));
    }

    .csr-hero__content {
        padding: 150px 0 54px;
    }

    .csr-hero h1 {
        font-size: 38px;
        line-height: 1.04;
    }

    .csr-hero p {
        margin-top: 18px;
        font-size: 15.5px;
        line-height: 1.65;
    }

    .csr-hero__actions,
    .csr-btn {
        width: 100%;
    }

    .csr-intro,
    .csr-section,
    .csr-gallery {
        padding: 76px 0 86px;
    }

    .csr-feature-image {
        padding-bottom: 76px;
    }

    .csr-collaborate {
        padding-bottom: 76px;
    }

    .csr-intro__content h2,
    .csr-section__head h2,
    .csr-split__content h2,
    .csr-collaborate__card h2 {
        font-size: 34px;
        line-height: 1.08;
    }

    .csr-section__head {
        text-align: left;
        margin-bottom: 34px;
    }

    .csr-intro__content p,
    .csr-split__content p,
    .csr-section__head p,
    .csr-collaborate__card p {
        font-size: 15.5px;
        line-height: 1.72;
    }

    .csr-intro__stats div,
    .csr-info-card,
    .csr-list-panel,
    .csr-benefit {
        border-radius: 20px;
        padding: 22px;
    }

    .csr-list-panel ul {
        grid-template-columns: 1fr;
    }

    .csr-feature-image__wrap {
        border-radius: 24px;
    }

    .csr-feature-image__wrap img {
        height: 340px;
    }

    .csr-benefits-grid,
    .csr-card-grid--four {
        grid-template-columns: 1fr;
    }

    .csr-gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
        gap: 16px;
    }

    .csr-gallery__item--large {
        grid-column: auto;
        grid-row: auto;
    }

    .csr-collaborate__card {
        padding: 30px 24px;
        border-radius: 26px;
    }

    .csr-collaborate__card .csr-btn {
        width: 100%;
    }
}