.han-about-page,
.han-about-page * {
    box-sizing: border-box;
}

.han-about-page {
    --han-about-accent: #d20f1f;
    --han-about-dark: #111111;
    --han-about-soft: #f7f7f7;
    --han-about-border: rgba(17, 17, 17, .08);
    width: 100%;
    overflow: hidden;
    font-family: Poppins, Arial, Helvetica, sans-serif;
}

.han-about-page a,
.han-about-page button,
.han-about-page h1,
.han-about-page h2,
.han-about-page h3,
.han-about-page p,
.han-about-page span,
.han-about-page strong {
    font-family: Poppins, Arial, Helvetica, sans-serif;
}

.han-about-page__container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.han-about-page__hero {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.han-about-page__visual {
    position: relative;
    min-width: 0;
}

.han-about-page__image-wrap {
    position: relative;
    display: block;
    width: 100%;
    height: 520px;
    min-height: 220px;
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, .06);
}

.han-about-page__image-wrap::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
}

.han-about-page__image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fff;
}

.han-about-page__badge {
    position: absolute;
    left: clamp(14px, 3vw, 34px);
    bottom: clamp(14px, 3vw, 34px);
    width: min(86%, 380px);
    padding: 20px 22px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .7);
    border-left: 4px solid var(--han-about-accent);
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .14);
    backdrop-filter: blur(10px);
}

.han-about-page__badge strong {
    display: block;
    color: var(--han-about-dark);
    font-size: clamp(18px, 2.1vw, 28px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.03em;
    margin-bottom: 7px;
}

.han-about-page__badge span {
    display: block;
    color: #5c5c5c;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 400;
}

.han-about-page__content {
    min-width: 0;
}

.han-about-page__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--han-about-accent);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.han-about-page__eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--han-about-accent);
    border-radius: 20px;
}

.han-about-page__title {
    margin: 0 0 22px;
    color: var(--han-about-dark);
    font-size: clamp(30px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -.045em;
}

.han-about-page__text {
    color: #565656;
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.85;
    font-weight: 400;
}

.han-about-page__text p {
    margin: 0 0 16px;
}

.han-about-page__text p:last-child {
    margin-bottom: 0;
}

.han-about-page__vm {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: clamp(36px, 5vw, 74px);
}

.han-about-page__vm-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: clamp(24px, 3vw, 36px);
    background: #fff;
    border: 1px solid var(--han-about-border);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.han-about-page__vm-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -92px;
    bottom: -96px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--han-about-accent) 10%, transparent);
    pointer-events: none;
}

.han-about-page__vm-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--han-about-accent) 28%, rgba(17,17,17,.08));
    box-shadow: 0 26px 70px rgba(0, 0, 0, .09);
}

.han-about-page__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    color: #fff;
    background: var(--han-about-accent);
    border-radius: 16px;
    box-shadow: 0 18px 42px color-mix(in srgb, var(--han-about-accent) 22%, transparent);
}

.han-about-page__icon svg,
.han-about-page__icon i {
    width: 19px;
    height: 19px;
    font-size: 19px;
    line-height: 1;
}

.han-about-page__vm-title {
    position: relative;
    margin: 0 0 10px;
    color: var(--han-about-dark);
    font-size: clamp(20px, 2.1vw, 28px);
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -.02em;
    z-index: 1;
}

.han-about-page__vm-text {
    position: relative;
    margin: 0;
    color: #606060;
    font-size: 15px;
    line-height: 1.78;
    font-weight: 400;
    z-index: 1;
}

.han-about-page__cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 26px;
    align-items: center;
    margin-top: 24px;
    padding: clamp(28px, 4vw, 46px);
    overflow: hidden;
    background: var(--han-about-dark);
}

.han-about-page__cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, color-mix(in srgb, var(--han-about-accent) 34%, transparent), transparent 28%),
        linear-gradient(135deg, rgba(255,255,255,.08), transparent 42%);
    pointer-events: none;
}

.han-about-page__cta-copy,
.han-about-page__cta-actions {
    position: relative;
    z-index: 1;
}

.han-about-page__cta-title {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(23px, 3vw, 38px);
    line-height: 1.18;
    font-weight: 600;
    letter-spacing: -.03em;
}

.han-about-page__cta-text {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 400;
}

.han-about-page__cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.han-about-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none !important;
    transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
    white-space: nowrap;
}

.han-about-page__btn:hover {
    transform: translateY(-2px);
}

.han-about-page__btn--primary {
    color: #fff;
    background: var(--han-about-accent);
    border: 1px solid var(--han-about-accent);
}

.han-about-page__btn--secondary {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .24);
}

.han-about-page__btn--secondary:hover {
    color: var(--han-about-dark);
    background: #fff;
    border-color: #fff;
}

@media (max-width: 1024px) {
    .han-about-page__hero {
        grid-template-columns: 1fr;
    }

    .han-about-page__image-wrap {
        height: 420px;
    }

    .han-about-page__cta {
        grid-template-columns: 1fr;
    }

    .han-about-page__cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .han-about-page {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .han-about-page__hero {
        gap: 28px;
    }

    .han-about-page__image-wrap {
        height: 300px;
    }

    .han-about-page__image-wrap::before {
        inset: 10px;
    }

    .han-about-page__badge {
        position: relative;
        left: auto;
        bottom: auto;
        width: calc(100% - 20px);
        margin: -54px auto 0;
        padding: 16px 17px;
    }

    .han-about-page__eyebrow {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .han-about-page__title {
        margin-bottom: 16px;
    }

    .han-about-page__vm {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .han-about-page__vm-card {
        padding: 22px;
    }

    .han-about-page__cta {
        margin-top: 18px;
        padding: 24px 20px;
    }

    .han-about-page__cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .han-about-page__btn {
        width: 100%;
    }
}
