.pp-home__hero {
    position: relative;
    padding: 56px 0 0;
    margin-bottom: 24px;
    background: #ffffff;
    overflow: hidden;
}

.pp-home__hero::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -49%;
    width: 112%;
    height: 129%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #fbf9f7;
    filter: blur(10px);
    pointer-events: none;
    z-index: 0;
}

.pp-home__hero-inner {
    position: relative;
    z-index: 1;
}

.pp-home__h1 {
    text-align: center;
    color: #0d2642;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
}

.pp-home__subtitle {
    font-size: 16px;
    color: #5b4a2c;
    text-align: center;
    margin: 0 0 32px;
    line-height: 1.5;
}

.pp-home__products-h2 {
    font-size: 22px;
    font-weight: 600;
    color: #0d2642;
    margin: 24px 0 4px;
    line-height: 1.3;
}

.pp-home__products-subtext {
    font-size: 14px;
    color: #5b4a2c;
    margin: 0 0 16px;
    line-height: 1.4;
}

.pp-onboarding {
    margin: 0;
}

.pp-onboarding__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pp-onboarding__card {
    position: relative;
    padding: 20px 42px 20px 20px;
    background: #fef9f3;
    border: 1px solid #faeddf;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(61, 42, 15, 0.04);
}

.pp-onboarding__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #ef7a1e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 1px 3px rgba(61, 42, 15, 0.06);
}

.pp-onboarding__headline {
    font-size: 16px;
    font-weight: 700;
    color: #0d2642;
    margin: 0 0 6px;
    line-height: 1.3;
}

.pp-onboarding__subline {
    font-size: 14px;
    color: #7a5a33;
    margin: 0;
    line-height: 1.5;
}

.pp-onboarding__help {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 24px;
    height: 24px;
    padding: 0;
    border-radius: 50%;
    border: 0;
    background: #ffffff;
    color: #b07235;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(61, 42, 15, 0.08);
    transition: background 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.pp-onboarding__help:hover,
.pp-onboarding__help:focus {
    background: #fff7ea;
    color: #92560e;
    outline: none;
    box-shadow: 0 2px 6px rgba(61, 42, 15, 0.12);
}

.pp-onboarding__help:focus-visible {
    box-shadow: 0 0 0 2px #ef7a1e;
}

.pp-onboarding__popover {
    position: absolute;
    top: 50px;
    right: 12px;
    left: 12px;
    z-index: 10;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #f0d9b5;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(61, 42, 15, 0.14);
    font-size: 13px;
    line-height: 1.5;
    color: #3d2a0f;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 150ms ease 200ms, visibility 0s linear 350ms;
}

.pp-onboarding__popover[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 150ms ease 0s, visibility 0s linear 0s;
}

.pp-onboarding__popover p {
    margin: 0 0 8px;
}

.pp-onboarding__popover p:last-child {
    margin-bottom: 0;
}

.pp-onboarding__methodology-link {
    display: inline-block;
    margin-top: 4px;
    color: #ef7a1e;
    font-weight: 500;
    text-decoration: none;
}

.pp-onboarding__methodology-link:hover,
.pp-onboarding__methodology-link:focus {
    text-decoration: underline;
}

.pp-onboarding__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #7a5a33;
    text-align: center;
    margin: 28px 0 0;
}

.pp-onboarding__trust-icon {
    color: #ef7a1e;
    flex-shrink: 0;
}

@media (hover: hover) and (pointer: fine) {
    .pp-onboarding__help:hover ~ .pp-onboarding__popover,
    .pp-onboarding__help:focus ~ .pp-onboarding__popover,
    .pp-onboarding__help:focus-visible ~ .pp-onboarding__popover,
    .pp-onboarding__popover:hover {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity 150ms ease 200ms, visibility 0s linear 200ms;
    }
}

@media (max-width: 959px) {
    .pp-home__hero {
        padding: 40px 0 36px;
    }

    .pp-home__h1 {
        font-size: 32px;
    }

    .pp-home__subtitle {
        font-size: 15px;
        margin-bottom: 26px;
    }

    .pp-onboarding__grid {
        gap: 14px;
    }

    .pp-onboarding__card {
        padding: 18px 46px 18px 18px;
    }

    .pp-onboarding__headline {
        font-size: 16px;
    }
}

@media (max-width: 599px) {
    .pp-home__hero {
        padding: 32px 0 28px;
        margin-bottom: 20px;
    }

    .pp-home__h1 {
        font-size: 26px;
    }

    .pp-home__subtitle {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .pp-onboarding__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pp-onboarding__trust {
        flex-wrap: wrap;
        margin-top: 20px;
        font-size: 13px;
    }
}
