.hg-about-page {
    --hg-primary: #0170B9;
    --hg-text: #3a3a3a;
    --hg-surface: #f2f5f7;
    --hg-title: #14284c;
    --hg-card: #ffffff;
    --hg-border: rgba(20, 40, 76, 0.08);
    max-width: 1280px;
    margin: 0 auto;
    padding: 26px 24px 80px;
    color: var(--hg-text);
}

.hg-about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
    min-height: 440px;
    border-radius: 28px;
    overflow: hidden;
    background: radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.9), rgba(242, 245, 247, 0.98) 58%, rgba(230, 236, 242, 0.96));
    border: 1px solid var(--hg-border);
    position: relative;
}

.hg-about-hero__content {
    padding: 56px 56px 46px;
    position: relative;
    z-index: 2;
}

.hg-about-hero h1,
.hg-about-hero h2 {
    margin: 0;
    color: var(--hg-title);
    line-height: 1.14;
    letter-spacing: -0.02em;
}

.hg-about-hero p {
    margin: 20px 0 0;
    line-height: 1.66;
    max-width: 760px;
}

.hg-about-hero__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.hg-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 49px;
    padding: 11px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hg-about-btn:hover,
.hg-about-btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(20, 40, 76, 0.14);
}

.hg-about-btn--primary {
    background: #f19b4f;
    color: #ffffff;
}

.hg-about-btn--ghost {
    background: #f4f4f8;
    border-color: #d9dde5;
    color: var(--hg-text);
}

.hg-about-hero__visual {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.hg-about-hero__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(242, 245, 247, 0.98) 0%, rgba(242, 245, 247, 0.6) 26%, rgba(242, 245, 247, 0) 52%);
    z-index: 1;
}

.hg-about-hero__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(1, 112, 185, 0.12), rgba(1, 112, 185, 0));
}

.hg-about-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hg-about-story,
.hg-about-different,
.hg-about-panels {
    margin-top: 24px;
}

.hg-about-bottom-cta {
    margin-top: 18px;
    padding: 28px 24px;
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(20, 40, 76, 0.08);
    border-bottom: 1px solid rgba(20, 40, 76, 0.08);
    background:
        radial-gradient(circle at 0% 100%, rgba(1, 112, 185, 0.12) 0, rgba(1, 112, 185, 0) 28%),
        radial-gradient(circle at 100% 100%, rgba(1, 112, 185, 0.12) 0, rgba(1, 112, 185, 0) 26%),
        linear-gradient(180deg, #f7f9fd 0%, #edf3fb 100%);
}

.hg-about-bottom-cta h2,
.hg-about-bottom-cta h3 {
    margin: 0;
    color: var(--hg-title);
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.hg-about-bottom-cta h2 strong,
.hg-about-bottom-cta h3 strong {
    color: var(--hg-title);
    font-weight: 800;
}

.hg-about-bottom-cta p {
    margin: 8px 0 0;
    color: #4e5b72;
    line-height: 1.7;
}

.hg-about-bottom-cta p a {
    color: var(--hg-text);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.hg-about-bottom-cta p a:hover,
.hg-about-bottom-cta p a:focus-visible {
    color: var(--hg-primary);
    border-bottom-color: var(--hg-primary);
}

.hg-about-story h2,
.hg-about-story h3,
.hg-about-different h2,
.hg-about-different h3,
.hg-about-panel h2,
.hg-about-panel h3 {
    margin: 0;
    color: var(--hg-title);
    text-align: center;
    line-height: 1.2;
}

.hg-about-story__grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: center;
}

.hg-about-story__art {
    border-radius: 24px;
    overflow: hidden;
    min-height: 290px;
    border: 1px solid var(--hg-border);
    background: linear-gradient(140deg, #fcfcfb, #edf3f8);
}

.hg-about-story__art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hg-about-story__content {
    line-height: 1.72;
}

.hg-about-story__content p {
    margin: 0 0 14px;
}

.hg-about-story__content .hg-about-intro {
    color: var(--hg-title);
    line-height: 1.3;
    margin-bottom: 14px;
}

.hg-about-story__content ul {
    margin: 2px 0 0 18px;
    padding: 0;
}

.hg-about-story__content li {
    margin: 9px 0;
}

.hg-about-cards {
    margin-top: 26px;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hg-about-card {
    background: linear-gradient(180deg, #fcfdff 0%, #f8fafd 100%);
    border: 1px solid rgba(20, 40, 76, 0.08);
    border-radius: 24px;
    overflow: hidden;
    padding: 0 0 18px;
}

.hg-about-card header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2px;
    padding: 16px 18px 14px;
    border-bottom: 1px solid rgba(20, 40, 76, 0.08);
}

.hg-about-card:nth-child(1) header {
    background: linear-gradient(180deg, rgba(148, 184, 135, 0.2), rgba(148, 184, 135, 0.08));
}

.hg-about-card:nth-child(2) header {
    background: linear-gradient(180deg, rgba(1, 112, 185, 0.10), rgba(1, 112, 185, 0.03));
}

.hg-about-card:nth-child(3) header {
    background: linear-gradient(180deg, rgba(180, 135, 175, 0.18), rgba(180, 135, 175, 0.07));
}

.hg-about-card h5 {
    margin: 0;
    color: var(--hg-title);
    line-height: 1.25;
}

.hg-about-card p {
    margin: 12px 18px 0;
    line-height: 1.65;
}

.hg-about-icon {
    width: 22px;
    height: 22px;
    padding: 8px;
    border-radius: 999px;
    background: #e9eef5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    box-sizing: content-box;
}

.hg-about-icon--smart-filtering {
    background: #e7efe3;
}

.hg-about-icon--structured-experience-pages {
    background: #dfe8f4;
}

.hg-about-icon--fair-transparent-partner-model {
    background: #ebe5f0;
}

.hg-about-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.hg-about-card ul {
    margin: 8px 18px 0 34px;
    padding: 0;
    line-height: 1.65;
}

.hg-about-card li {
    margin: 6px 0;
}

.hg-about-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.hg-about-panel {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    background: linear-gradient(180deg, #f8f9fe 0%, #f3f5fb 100%);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(20, 40, 76, 0.1);
    padding: 28px 30px 245px;
}

.hg-about-panel h2,
.hg-about-panel h3,
.hg-about-panel h5 {
    text-align: left;
    margin-bottom: 0;
    line-height: 1.2;
}

.hg-about-panel h5 {
    font-size: 1.5rem;
    color: var(--hg-title);
    margin: 0;
}

.hg-about-panel p,
.hg-about-panel li {
    line-height: 1.6;
    margin: 0 0 10px;
    position: relative;
    z-index: 3;
}

.hg-about-panel ul {
    margin: 0 0 0 18px;
    padding: 0;
    position: relative;
    z-index: 3;
}

.hg-about-panel__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    position: relative;
    z-index: 3;
}

.hg-about-panel__icon {
    width: 22px;
    height: 22px;
    padding: 8px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e9eef5;
    flex: 0 0 auto;
    box-sizing: content-box;
}

.hg-about-panel__icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.hg-about-panel__checks {
    list-style: none;
    margin: 0 0 10px;
}

.hg-about-panel__checks li {
    position: relative;
    padding-left: 24px;
    margin: 0 0 8px;
}

.hg-about-panel__checks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #7caf45;
    font-weight: 800;
}

.hg-about-panel__media {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 46%;
    z-index: 1;
}

.hg-about-panel__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(243, 245, 251, 0.95) 0%, rgba(243, 245, 251, 0.5) 30%, rgba(243, 245, 251, 0) 70%);
    z-index: 2;
}

.hg-about-panel__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    z-index: 1;
    display: block;
}

@media (max-width: 1150px) {
    .hg-about-page {
        padding: 22px 18px 62px;
    }

    .hg-about-hero {
        grid-template-columns: 1fr;
    }

    .hg-about-hero__visual {
        min-height: 300px;
    }

    .hg-about-hero__visual::before {
        background: linear-gradient(180deg, rgba(242, 245, 247, 0.95) 0%, rgba(242, 245, 247, 0) 50%);
    }

    .hg-about-story__grid,
    .hg-about-cards,
    .hg-about-panels {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .hg-about-hero__content {
        padding: 34px 22px 26px;
    }

    .hg-about-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hg-about-btn {
        width: 100%;
    }

    .hg-about-panel {
        min-height: 0;
        padding: 24px 20px 210px;
    }

    .hg-about-panel__media {
        height: 190px;
    }

    .hg-about-bottom-cta {
        padding: 22px 14px;
    }
}