.account-page {
    min-height: 75vh;
    background: #f7f6f2;
}

.account-hero {
    padding: 110px 24px 70px;
    text-align: center;
    background: #ffffff;
    border-bottom: 1px solid #e8e6df;
}

.account-hero-inner {
    width: min(760px, 100%);
    margin: 0 auto;
}

.account-eyebrow {
    margin: 0 0 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #77736a;
}

.account-hero h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 500;
    color: #171714;
}

.account-intro {
    max-width: 620px;
    margin: 24px auto 0;
    font-size: 18px;
    line-height: 1.7;
    color: #66635d;
}

.account-selection {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 80px 0 100px;
}

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

.account-card {
    display: flex;
    min-height: 430px;
    padding: 48px;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e2da;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.account-card:hover {
    transform: translateY(-5px);
    border-color: #cbc7bd;
    box-shadow: 0 22px 50px rgba(25, 24, 20, 0.08);
}

.account-icon {
    display: flex;
    width: 66px;
    height: 66px;
    margin-bottom: 34px;
    align-items: center;
    justify-content: center;
    color: #171714;
    background: #f4f2ec;
}

.account-label {
    margin: 0 0 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #817d74;
}

.account-card h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 500;
    color: #171714;
}

.account-description {
    margin: 22px 0 38px;
    font-size: 16px;
    line-height: 1.75;
    color: #68655f;
}

.account-button {
    display: flex;
    width: 100%;
    min-height: 58px;
    margin-top: auto;
    padding: 15px 22px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #ffffff;
    background: #171714;
    border: 1px solid #171714;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.account-button:hover {
    background: #000000;
}

.account-button-light {
    color: #171714;
    background: #ffffff;
}

.account-button-light:hover {
    color: #ffffff;
    background: #171714;
}

.account-help {
    max-width: 750px;
    margin: 50px auto 0;
    padding: 28px 32px;
    text-align: center;
    background: #eeece6;
}

.account-help strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #171714;
}

.account-help p {
    margin: 0;
    line-height: 1.65;
    color: #6c6962;
}

@media (max-width: 820px) {
    .account-hero {
        padding: 80px 20px 55px;
    }

    .account-selection {
        width: min(100% - 28px, 1180px);
        padding: 48px 0 70px;
    }

    .account-grid {
        grid-template-columns: 1fr;
    }

    .account-card {
        min-height: 0;
        padding: 34px 26px;
    }

    .account-description {
        margin-bottom: 30px;
    }
}

@media (max-width: 520px) {
    .account-hero h1 {
        font-size: 38px;
    }

    .account-intro {
        font-size: 16px;
    }

    .account-button {
        font-size: 13px;
    }

    .account-help {
        padding: 24px 20px;
    }
}

.account-register-link {
    margin: 20px 0 0;
    text-align: center;
    font-size: 14px;
    color: #6f6b63;
}

.account-register-link a {
    color: #171714;
    font-weight: 600;
}