/* HumanResources LP Manager - Front CSS */
.humanresources-lp,
.humanresources-lp * {
    box-sizing: border-box;
}

.humanresources-lp {
    --hr-primary: #1f4ed8;
    --hr-primary-dark: #14358f;
    --hr-accent: #f5b335;
    --hr-bg: #f7f9fc;
    --hr-text: #172033;
    --hr-muted: #667085;
    --hr-card: #ffffff;
    --hr-max: 1160px;
    color: var(--hr-text);
    background: var(--hr-bg);
    font-family: inherit;
    overflow: hidden;
}

.hrlp-wrap {
    width: min(var(--hr-max), calc(100% - 40px));
    margin: 0 auto;
}

.hrlp-center { text-align: center; }

.hrlp-section {
    padding: 76px 0;
}

.hrlp-section-head {
    margin-bottom: 34px;
}

.hrlp-eyebrow,
.hrlp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--hr-primary-dark);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 12px;
}

.hrlp-badge {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(31, 78, 216, .1);
}

.hrlp-section h2,
.hrlp-final-cta h2,
.hrlp-hero h1 {
    letter-spacing: -.04em;
    line-height: 1.08;
    color: var(--hr-text);
}

.hrlp-hero h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 68px);
    max-width: 720px;
}

.hrlp-section h2,
.hrlp-final-cta h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 46px);
}

.hrlp-lead,
.hrlp-section-lead {
    color: var(--hr-muted);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.9;
}

.hrlp-lead {
    margin: 24px 0 0;
    max-width: 680px;
}

.hrlp-section-lead {
    margin: 18px auto 0;
    max-width: 760px;
}

.hrlp-note {
    margin: 18px 0 0;
    color: var(--hr-muted);
    font-size: 14px;
}

.hrlp-hero {
    position: relative;
    padding: 92px 0 72px;
    background:
        radial-gradient(circle at top left, rgba(245, 179, 53, .28), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, var(--hr-bg) 52%, rgba(31, 78, 216, .08) 100%);
}

.hrlp-hero:before {
    content: "";
    position: absolute;
    inset: auto -12% -35% auto;
    width: 520px;
    height: 520px;
    background: rgba(31, 78, 216, .08);
    border-radius: 50%;
}

.hrlp-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.07fr) minmax(320px, .93fr);
    gap: 52px;
    align-items: center;
}

.hrlp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hrlp-actions-center {
    justify-content: center;
}

.hrlp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
    line-height: 1.2;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.hrlp-btn:hover {
    transform: translateY(-1px);
}

.hrlp-btn-primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--hr-primary), var(--hr-primary-dark));
    box-shadow: 0 14px 30px rgba(31, 78, 216, .26);
}

.hrlp-btn-secondary {
    color: var(--hr-primary-dark) !important;
    background: #fff;
    border: 1px solid rgba(31, 78, 216, .18);
    box-shadow: 0 12px 30px rgba(23, 32, 51, .08);
}

.hrlp-btn-light {
    color: var(--hr-primary-dark) !important;
    background: #fff;
}

.hrlp-btn-outline-light {
    color: #fff !important;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.4);
}

.hrlp-btn-block {
    width: 100%;
    margin-top: 18px;
}

.hrlp-hero-visual {
    position: relative;
    min-height: 420px;
}

.hrlp-hero-visual img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(23, 32, 51, .16);
}

.hrlp-profile-card {
    position: absolute;
    display: block;
    width: 86%;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 30px 80px rgba(23, 32, 51, .13);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.72);
}

.hrlp-profile-card span {
    display: inline-flex;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 800;
    color: var(--hr-primary);
}

.hrlp-profile-card strong {
    display: block;
    font-size: 25px;
    line-height: 1.35;
    letter-spacing: -.03em;
}

.hrlp-profile-card p {
    color: var(--hr-muted);
    line-height: 1.8;
    margin: 14px 0 0;
}

.hrlp-profile-card-main {
    top: 20px;
    left: 0;
}

.hrlp-profile-card-sub {
    right: 0;
    bottom: 20px;
    border-top: 5px solid var(--hr-accent);
}

.hrlp-feature-grid,
.hrlp-branch-grid,
.hrlp-flow-grid,
.hrlp-trust-grid {
    display: grid;
    gap: 22px;
}

.hrlp-feature-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: -46px;
    position: relative;
    z-index: 2;
}

.hrlp-feature-card,
.hrlp-branch-card,
.hrlp-category-card,
.hrlp-flow-card,
.hrlp-faq-item,
.hrlp-trust-item {
    background: var(--hr-card);
    border: 1px solid rgba(23, 32, 51, .08);
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(23, 32, 51, .07);
}

.hrlp-feature-card {
    padding: 26px;
}

.hrlp-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--hr-primary), var(--hr-primary-dark));
    margin-bottom: 18px;
}

.hrlp-feature-card h3,
.hrlp-branch-card h3,
.hrlp-category-card h3,
.hrlp-flow-card h3 {
    margin: 0;
    color: var(--hr-text);
    line-height: 1.35;
    letter-spacing: -.025em;
}

.hrlp-feature-card p,
.hrlp-branch-card p,
.hrlp-category-card p {
    color: var(--hr-muted);
    line-height: 1.8;
    margin: 12px 0 0;
}

.hrlp-problem-section {
    background: #fff;
}

.hrlp-branch-grid {
    grid-template-columns: repeat(2, 1fr);
}

.hrlp-branch-card {
    padding: 34px;
    overflow: hidden;
    position: relative;
}

.hrlp-branch-card:after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -70px;
    top: -70px;
    background: rgba(31, 78, 216, .08);
    border-radius: 50%;
}

.hrlp-branch-card-alt:after {
    background: rgba(245, 179, 53, .20);
}

.hrlp-branch-kicker {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(31, 78, 216, .1);
    color: var(--hr-primary-dark);
    font-weight: 800;
    margin-bottom: 16px;
}

.hrlp-branch-card ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 10px;
}

.hrlp-branch-card li {
    position: relative;
    padding-left: 26px;
    color: var(--hr-text);
    line-height: 1.65;
}

.hrlp-branch-card li:before,
.hrlp-trust-item:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--hr-primary);
    font-weight: 900;
}

.hrlp-categories-section {
    background: #fff;
}

.hrlp-category-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 14px;
}

.hrlp-category-card {
    padding: 20px;
    min-height: 178px;
}

.hrlp-category-card h3 {
    font-size: 17px;
}

.hrlp-category-card p {
    font-size: 14px;
}

.hrlp-flow-grid {
    grid-template-columns: repeat(2, 1fr);
}

.hrlp-flow-card {
    padding: 32px;
}

.hrlp-flow-card ol {
    margin: 22px 0 0;
    padding: 0;
    counter-reset: hrlp-step;
    display: grid;
    gap: 14px;
    list-style: none;
}

.hrlp-flow-card li {
    position: relative;
    padding: 15px 15px 15px 58px;
    min-height: 50px;
    display: flex;
    align-items: center;
    border-radius: 16px;
    background: rgba(31, 78, 216, .055);
    color: var(--hr-text);
}

.hrlp-flow-card li:before {
    counter-increment: hrlp-step;
    content: counter(hrlp-step);
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: var(--hr-primary);
    font-weight: 900;
}

.hrlp-trust-section {
    background: linear-gradient(135deg, rgba(31, 78, 216, .08), rgba(245, 179, 53, .12));
}

.hrlp-trust-grid {
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
}

.hrlp-trust-list {
    display: grid;
    gap: 12px;
}

.hrlp-trust-item {
    position: relative;
    padding: 18px 20px 18px 48px;
    line-height: 1.7;
}

.hrlp-trust-item:before {
    left: 22px;
    top: 18px;
}

.hrlp-faq-list {
    display: grid;
    gap: 12px;
    max-width: 920px;
    margin: 0 auto;
}

.hrlp-faq-item {
    padding: 0;
    overflow: hidden;
}

.hrlp-faq-item summary {
    cursor: pointer;
    padding: 20px 24px;
    font-weight: 800;
    color: var(--hr-text);
}

.hrlp-faq-item p {
    margin: 0;
    padding: 0 24px 22px;
    color: var(--hr-muted);
    line-height: 1.8;
}

.hrlp-final-cta {
    padding: 82px 0;
    color: #fff;
    background: linear-gradient(135deg, var(--hr-primary), var(--hr-primary-dark));
}

.hrlp-final-cta h2,
.hrlp-final-cta p {
    color: #fff;
}

.hrlp-final-cta p {
    max-width: 720px;
    margin: 18px auto 0;
    line-height: 1.8;
    opacity: .9;
}

@media (max-width: 1100px) {
    .hrlp-category-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .hrlp-hero-grid,
    .hrlp-branch-grid,
    .hrlp-flow-grid,
    .hrlp-trust-grid {
        grid-template-columns: 1fr;
    }
    .hrlp-feature-grid {
        grid-template-columns: 1fr;
        margin-top: 0;
    }
    .hrlp-hero-visual {
        min-height: 320px;
    }
    .hrlp-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hrlp-wrap {
        width: min(100% - 26px, var(--hr-max));
    }
    .hrlp-hero {
        padding: 58px 0 44px;
    }
    .hrlp-section {
        padding: 54px 0;
    }
    .hrlp-actions,
    .hrlp-actions-center {
        flex-direction: column;
    }
    .hrlp-btn {
        width: 100%;
    }
    .hrlp-hero-visual {
        min-height: auto;
        display: grid;
        gap: 14px;
    }
    .hrlp-profile-card {
        position: static;
        width: 100%;
        padding: 22px;
    }
    .hrlp-category-grid {
        grid-template-columns: 1fr;
    }
    .hrlp-branch-card,
    .hrlp-flow-card {
        padding: 24px;
    }
}
