.hp-hero {
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 176, 92, 0.28), transparent 58%),
        linear-gradient(180deg, var(--cream) 0%, var(--page) 86%);
    padding: 36px 0 28px;
    text-align: center;
}
.hp-hero-inner { max-width: 720px; margin-inline: auto; }
.hp-hero h1 {
    font-size: clamp(36px, 5.6vw, 60px);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.1;
    margin: 0 0 14px;
    text-wrap: balance;
}
.hp-jump {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}
.hp-jump a {
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--pill);
    padding: 8px 14px;
    font-size: 13.5px;
    font-weight: 550;
    color: #5c606b;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
.hp-jump a:hover { color: var(--ink); border-color: #d9d6d0; }

.hp-section { padding: 56px 0 4px; }
.hp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.hp-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px 22px 22px;
    text-align: left;
    box-shadow: var(--shadow-soft);
}
.hp-card h2 {
    margin: 0 0 10px;
    font-size: 22px;
    letter-spacing: -0.03em;
}
.hp-card p { margin: 0 0 12px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.hp-card p:last-child { margin-bottom: 0; }
.hp-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--orange-soft);
    color: #c45f00;
    margin-bottom: 14px;
}
.hp-wide { grid-column: 1 / -1; }
.hp-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}
.hp-steps li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid #f1efe9;
    font-size: 14.5px;
    line-height: 1.6;
}
.hp-steps li:first-child { border-top: 0; }
.hp-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--soft);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    flex: 0 0 22px;
    margin-top: 2px;
}

.faq-list { max-width: 720px; margin: 0 auto; text-align: left; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    background: none;
    border: 0;
    padding: 18px 0;
    font: inherit;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
    cursor: pointer;
}
.faq-chevron {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-right: 1.6px solid #9aa0ab;
    border-bottom: 1.6px solid #9aa0ab;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}
.faq-item.is-open .faq-chevron { transform: rotate(-135deg); }
.faq-item dd {
    display: none;
    margin: -4px 28px 18px 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}
.faq-item.is-open dd { display: block; }

.hp-cta {
    margin: 64px 0 12px;
    padding: 56px 28px;
    text-align: center;
    background:
        radial-gradient(ellipse 70% 80% at 50% 0%, rgba(255, 176, 92, 0.22), transparent 60%),
        var(--cream);
    border-radius: 28px;
}
.hp-cta h2 {
    font-size: clamp(26px, 4vw, 40px);
    letter-spacing: -0.04em;
    margin: 0 0 10px;
}
.hp-cta p { color: var(--muted); margin: 0 0 22px; }
.hp-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 860px) {
    .hp-hero { padding-top: 20px; }
    .hp-hero h1 { font-size: 34px; }
    .hp-grid { grid-template-columns: 1fr; }
    .hp-wide { grid-column: auto; }
}
