/*About us*/
.getis-philosophy {
    --getis-blue: #004c84;
    --getis-blue-dark: #00345b;
    --getis-light: #eef6fb;

    position: relative;
    overflow: hidden;
    padding: 90px 45px;
    background:
        linear-gradient(
            115deg,
            var(--getis-blue-dark) 0%,
            var(--getis-blue) 58%,
            #0873a9 100%
        );
    color: #fff;
    border-radius: 24px;
}

/* Họa tiết vòng tròn nền */
.getis-philosophy__decor {
    position: absolute;
    top: -190px;
    right: -130px;
    width: 520px;
    height: 520px;
    border: 100px solid rgba(255, 255, 255, 0.055);
    border-radius: 50%;
    pointer-events: none;
}

.getis-philosophy::after {
    content: "";
    position: absolute;
    bottom: -190px;
    left: 38%;
    width: 360px;
    height: 360px;
    border: 65px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
    pointer-events: none;
}

.getis-philosophy__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

/* Tiêu đề nhỏ */
.getis-philosophy__label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.getis-philosophy__label::before {
    content: "";
    width: 42px;
    height: 2px;
    background: #fff;
}

/* Tiêu đề chính */
.getis-philosophy__heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 300;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.getis-philosophy__heading h2 span {
    display: block;
    margin-top: 12px;
    font-weight: 700;
}

/* Nội dung */
.getis-philosophy__text {
    padding-left: 45px;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.getis-philosophy__text p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}

.getis-philosophy__text .getis-philosophy__lead {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.65;
}

/* Đoạn nhấn mạnh cuối */
.getis-philosophy__highlight {
    position: relative;
    margin: 32px 0 0 !important;
    padding: 25px 28px 25px 34px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0 14px 14px 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff !important;
    font-weight: 600 !important;
}

.getis-philosophy__highlight::before {
    content: "";
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    width: 4px;
    background: #fff;
    border-radius: 4px;
}

/* Tablet */
@media (max-width: 991px) {
    .getis-philosophy {
        padding: 70px 35px;
    }

    .getis-philosophy__content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .getis-philosophy__text {
        max-width: 750px;
        padding-left: 30px;
    }
}
.getis-philosophy__decor::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -165px;
    width: 660px;
    height: 660px;
    box-sizing: border-box;
    border: 95px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    clip-path: inset(80% 0 0 0);
    pointer-events: none;
}
/* Mobile */
@media (max-width: 549px) {
    .getis-philosophy {
        padding: 55px 22px;
        border-radius: 16px;
    }

    .getis-philosophy__content {
        gap: 35px;
    }

    .getis-philosophy__heading h2 {
        font-size: 34px;
        letter-spacing: -0.8px;
    }

    .getis-philosophy__label {
        margin-bottom: 18px;
        font-size: 11px;
        letter-spacing: 1.7px;
    }

    .getis-philosophy__text {
        padding-left: 20px;
    }

    .getis-philosophy__text p {
        font-size: 15px;
        line-height: 1.75;
    }

    .getis-philosophy__text .getis-philosophy__lead {
        font-size: 17px;
    }

    .getis-philosophy__highlight {
        padding: 21px 20px 21px 25px;
    }

    .getis-philosophy__decor {
        top: -120px;
        right: -150px;
        width: 350px;
        height: 350px;
        border-width: 70px;
    }
	.getis-philosophy__decor::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -195px;
    width: 560px;
    height: 560px;
    box-sizing: border-box;
    border: 65px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    clip-path: inset(80% 0 0 0);
    pointer-events: none;
}
}
.getis-companion {
    --getis-blue: #004c84;
    --getis-blue-dark: #00345d;
    --getis-blue-light: #0b6da5;

    position: relative;
    overflow: hidden;
    padding: 100px 40px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 255, 255, 0.1),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            var(--getis-blue-dark) 0%,
            var(--getis-blue) 55%,
            var(--getis-blue-light) 100%
        );
    color: #fff;
}

.getis-companion__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

/* Nhãn nhỏ phía trên */
.getis-companion__label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.getis-companion__label::before,
.getis-companion__label::after {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(255, 255, 255, 0.55);
}

/* Tiêu đề chính */
.getis-companion h2 {
    max-width: 850px;
    margin: 0 auto;
    color: #fff;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1px;
}

.getis-companion__line {
    display: block;
    width: 68px;
    height: 3px;
    margin: 30px auto 34px;
    background: #fff;
    border-radius: 10px;
}

/* Nội dung giới thiệu */
.getis-companion__content {
    max-width: 800px;
    margin: 0 auto;
}

.getis-companion__content p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
}

.getis-companion__content .getis-companion__lead {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

/* Khung thông điệp cuối */
.getis-companion__message {
    position: relative;
    max-width: 850px;
    margin: 42px auto 0;
    padding: 34px 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 26, 48, 0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.getis-companion__message::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: 90px;
    height: 3px;
    background: #fff;
    border-radius: 0 0 6px 6px;
    transform: translateX(-50%);
}

.getis-companion__message p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.75;
}

.getis-companion__quote {
    position: absolute;
    top: -18px;
    left: 22px;
    color: rgba(255, 255, 255, 0.12);
    font-family: Georgia, serif;
    font-size: 130px;
    line-height: 1;
    pointer-events: none;
}

/* Vòng tròn trang trí */
.getis-companion__decor {
    position: absolute;
    border: 80px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

.getis-companion__decor--top {
    top: -230px;
    right: -160px;
    width: 500px;
    height: 500px;
}

.getis-companion__decor--bottom {
    bottom: -260px;
    left: -150px;
    width: 480px;
    height: 480px;
}

/* Tablet */
@media (max-width: 991px) {
    .getis-companion {
        padding: 80px 35px;
    }

    .getis-companion h2 {
        font-size: 44px;
    }
}
.getis-companion__decor--top::before {
    content: "";
    position: absolute;
    top: -130px;
    right: -155px;
    width: 660px;
    height: 660px;
    box-sizing: border-box;
    border: 75px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    clip-path: inset(80% 0 0 0);
    pointer-events: none;
}
/* Điện thoại */
@media (max-width: 549px) {
    .getis-companion {
        padding: 60px 20px;
    }

    .getis-companion__label {
        margin-bottom: 18px;
        font-size: 11px;
        letter-spacing: 1.7px;
    }

    .getis-companion__label::before,
    .getis-companion__label::after {
        width: 22px;
    }

    .getis-companion h2 {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: -0.7px;
    }

    .getis-companion__line {
        margin: 24px auto 28px;
    }

    .getis-companion__content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .getis-companion__content .getis-companion__lead {
        font-size: 18px;
        line-height: 1.65;
    }

    .getis-companion__message {
        margin-top: 32px;
        padding: 28px 22px;
        border-radius: 12px;
    }

    .getis-companion__message p {
        font-size: 16px;
        line-height: 1.7;
    }

    .getis-companion__quote {
        top: -10px;
        left: 10px;
        font-size: 90px;
    }
	.getis-companion__decor--top::before {
    content: "";
    position: absolute;
    top: -130px;
    right: -155px;
    width: 660px;
    height: 660px;
    box-sizing: border-box;
    border: 75px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    clip-path: inset(80% 0 0 0);
    pointer-events: none;
}
}