html:has(.about-page),
body:has(.about-page) {
    height: 100%;
}

body:has(.about-page) {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.about-page {
    flex: 1 1 auto;
    padding-top: 64px;
    background: #fff;
    color: #100d24;
}

.about-wrap {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.about-hero {
    padding: 72px 0 64px;
    background:
        radial-gradient(ellipse 70% 80% at 92% 8%, rgba(253, 43, 84, 0.1), transparent 52%),
        linear-gradient(180deg, #fff8f9 0%, #ffffff 78%);
}

.about-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 48px;
    align-items: center;
}

.about-kicker {
    display: inline-block;
    margin: 0 0 14px;
    color: #fd2b54;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.about-hero h1 {
    margin: 0 0 16px;
    font-size: 36px;
    line-height: 1.28;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.about-lead {
    max-width: 560px;
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.75;
    color: #595a5c;
}

.about-lead:last-child {
    margin-bottom: 0;
}

.about-hero-panel {
    background: #fff;
    border: 1px solid #eeeef1;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(16, 13, 36, 0.06);
}

.about-hero-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #eeeef1;
}

.about-hero-brand img {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.about-hero-brand strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.about-hero-brand span {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.4;
    color: #8b8c8f;
}

.about-facts {
    margin: 0;
    display: grid;
    gap: 14px;
}

.about-facts dt {
    margin: 0 0 4px;
    font-size: 12px;
    font-weight: 500;
    color: #8b8c8f;
}

.about-facts dd {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #100d24;
}

.about-section {
    padding: 64px 0;
}

.about-section-alt {
    background: #f7f8fa;
}

.about-section-head {
    max-width: 640px;
    margin-bottom: 28px;
}

.about-section-head h2 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.about-section-head p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #595a5c;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.about-card {
    background: #fff;
    border: 1px solid #eeeef1;
    border-radius: 16px;
    padding: 24px 22px;
    box-sizing: border-box;
}

.about-card-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    border-radius: 12px;
}

.about-card-icon {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    object-fit: contain;
}

.about-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.about-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #595a5c;
}

.about-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px 40px;
    align-items: center;
    background: #f7f8fa;
    border: 1px solid #eeeef1;
    border-radius: 16px;
    padding: 32px;
    box-sizing: border-box;
}

.about-bottom h2 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.about-bottom p {
    margin: 0;
    max-width: 520px;
    font-size: 15px;
    line-height: 1.7;
    color: #595a5c;
}

.about-bottom p a {
    color: #fd2b54;
}

.about-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    box-sizing: border-box;
    transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.about-btn-primary {
    background: #100d24;
    color: #fff;
    box-shadow: 0 8px 20px rgba(16, 13, 36, 0.16);
}

.about-btn-primary:hover {
    background: #2a2738;
    color: #fff;
}

.about-btn-ghost {
    background: #fff;
    color: #100d24;
    border: 1px solid #e6e6e8;
}

.about-btn-ghost:hover {
    border-color: #fd2b54;
    color: #fd2b54;
}

.about-cta-more {
    width: 100%;
    margin: 4px 0 0;
    font-size: 14px;
    color: #8b8c8f;
}

.about-cta-more a {
    color: #595a5c;
}

.about-cta-more a:hover {
    color: #fd2b54;
}

.about-cta-more span {
    margin: 0 8px;
    color: #d0d0d3;
}

@media (max-width: 960px) {
    .about-hero {
        padding: 48px 0 40px;
    }

    .about-hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-hero h1 {
        font-size: 28px;
    }

    .about-section {
        padding: 48px 0;
    }

    .about-section-head h2 {
        font-size: 24px;
    }

    .about-bottom {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .about-wrap {
        padding: 0 16px;
    }

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

    .about-btn {
        flex: 1 1 100%;
    }
}
