/* ==========================================================================
   Diantar.id — Halaman Bantuin
   Melengkapi landing-v2.css; hanya berisi komponen khusus halaman ini.
   ========================================================================== */

/* ---------------------------------------------------------------- hero --- */
.bantuin-hero {
    padding-bottom: clamp(40px, 5vw, 64px);
}

.bantuin-hero__inner {
    position: relative;
    max-width: 860px;
    text-align: center;
    animation: rv .9s var(--ease) both;
}

.bantuin-hero .hero-title {
    margin-top: 18px;
}

.bantuin-hero__sub {
    margin-left: auto;
    margin-right: auto;
    max-width: 660px;
}

.bantuin-hero .hero-actions {
    justify-content: center;
}

.hero-ticks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 26px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.hero-ticks li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
}

.hero-ticks .ms {
    font-size: 19px;
    color: var(--teal-dark);
}

/* --------------------------------------------------------------- peran --- */
.roles {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
}

.role-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px -30px rgba(12, 45, 90, .5);
    transition: transform .35s var(--ease);
}

.role-card:hover {
    transform: translateY(-6px);
}

.role-card::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    pointer-events: none;
}

.role-card--seeker::after {
    background: radial-gradient(circle, rgba(125, 194, 255, .2), transparent 70%);
}

.role-card--helper::after {
    background: radial-gradient(circle, rgba(34, 184, 176, .2), transparent 70%);
}

.role-card h3 {
    margin: 20px 0 10px;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -.025em;
}

.role-card>p {
    margin: 0;
    font-size: 15px;
    line-height: 1.62;
    color: var(--muted);
}

.ticks {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.ticks li {
    position: relative;
    padding-left: 28px;
    font-size: 14.5px;
    line-height: 1.55;
    font-weight: 600;
    color: var(--ink-2);
}

.ticks li::before {
    content: 'check';
    font-family: 'Material Symbols Rounded';
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 18px;
    color: var(--blue);
}

.role-card--helper .ticks li::before {
    color: var(--teal-dark);
}

/* ------------------------------------------------------------ dua cara --- */
.ways {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
}

.way-card {
    padding: 32px;
    border-radius: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px -30px rgba(12, 45, 90, .5);
}

.way-head {
    display: flex;
    align-items: center;
    gap: 16px;
}

.way-badge {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--muted-2);
}

.way-head h3 {
    margin: 4px 0 0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.025em;
}

.way-lead {
    margin: 20px 0 0;
    font-size: 14.8px;
    line-height: 1.62;
    color: var(--muted);
}

.way-steps {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    counter-reset: waystep;
}

.way-steps li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.way-step-n {
    flex: none;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--blue-50);
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}

.way-steps b {
    display: block;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.01em;
    margin-bottom: 3px;
}

.way-steps span {
    font-size: 14.2px;
    line-height: 1.58;
    color: var(--muted);
}

/* ---------------------------------------------------------------- alur --- */
.flow {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
}

.flow-item h3 {
    margin: 18px 0 8px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.flow-item p {
    margin: 0;
    font-size: 14.3px;
    line-height: 1.6;
    color: var(--muted);
}

/* ------------------------------------------------------- dana ditahan --- */
.escrow {
    align-items: center;
}

.escrow-visual {
    padding: clamp(24px, 3vw, 40px);
    display: grid;
    place-items: center;
}

.escrow-card {
    width: 100%;
    max-width: 340px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(12px);
    color: #fff;
}

.escrow-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .72);
}

.escrow-row b {
    font-weight: 700;
    color: #fff;
}

.escrow-row--total {
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    font-size: 14.5px;
}

.escrow-row--total b {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.escrow-hold {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(169, 214, 255, .14);
    border: 1px solid rgba(169, 214, 255, .22);
}

.escrow-hold .ms {
    font-size: 22px;
    color: var(--blue-300);
    flex: none;
}

.escrow-hold b {
    display: block;
    font-size: 13.5px;
    font-weight: 800;
}

.escrow-hold em {
    font-style: normal;
    font-size: 11.5px;
    line-height: 1.45;
    color: rgba(255, 255, 255, .68);
}

.escrow-steps {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
}

.escrow-steps span {
    flex: 1;
    text-align: center;
    padding: 7px 4px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .6);
}

.escrow-steps .done {
    background: linear-gradient(135deg, var(--blue-200), var(--blue));
    color: #fff;
}

/* -------------------------------------------------------- jadi helper --- */
.helper-steps {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: hstep;
}

.helper-step {
    position: relative;
    padding: 28px;
    border-radius: 26px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px -30px rgba(12, 45, 90, .5);
    transition: transform .35s var(--ease), box-shadow .35s;
}

.helper-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 56px -28px rgba(12, 45, 90, .45);
}

.helper-step__n {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
    color: var(--blue);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.helper-step h3 {
    margin: 18px 0 8px;
    font-size: 17.5px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.helper-step p {
    margin: 0;
    font-size: 14.3px;
    line-height: 1.6;
    color: var(--muted);
}

/* -------------------------------------------------------------- status --- */
.status-table {
    border-radius: 24px;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 0 18px 40px -30px rgba(12, 45, 90, .5);
    overflow-x: auto;
}

.status-table table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    text-align: left;
}

.status-table th,
.status-table td {
    padding: 16px 20px;
    vertical-align: top;
}

.status-table thead th {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--muted-2);
    text-transform: uppercase;
    background: #F6FAFF;
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
}

.status-table tbody tr+tr th,
.status-table tbody tr+tr td {
    border-top: 1px solid var(--line);
}

.status-table tbody tr:hover th,
.status-table tbody tr:hover td {
    background: #FAFCFF;
}

.status-table td {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--muted);
}

.status-table .status-do {
    color: var(--ink-2);
    font-weight: 600;
}

.pill {
    display: inline-block;
    padding: 6px 13px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 800;
    white-space: nowrap;
}

.pill--blue {
    background: var(--blue-50);
    color: var(--blue);
}

.pill--teal {
    background: var(--teal-50);
    color: var(--teal-dark);
}

.pill--amber {
    background: var(--amber-75);
    color: var(--amber-deep);
}

.pill--red {
    background: #FDECEC;
    color: #C3392E;
}

.pill--grey {
    background: var(--grey-50);
    color: var(--muted);
}

/* ------------------------------------------------------------ download --- */
.dl-inner--solo {
    grid-template-columns: minmax(0, 1fr);
    max-width: 760px;
}

.dl-inner--solo p {
    max-width: 560px;
}

/* ========================================================================
   Foto asli
   Hanya tampil kalau berkasnya ada (lihat partials/photo.blade.php).
   Tidak ada gaya placeholder di sini — memang disengaja.
   ======================================================================== */
.photo {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #0B1A2A;
    /* warna dasar saat foto masih dimuat, bukan placeholder */
}

.photo img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: var(--photo-ratio, 16/10);
    object-fit: cover;
    object-position: center;
}

.photo figcaption {
    padding: 12px 4px 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted-2);
}

/* Hero: lebar penuh, sinematik, sedikit menjorok ke bawah */
.photo--hero {
    position: relative;
    margin-top: clamp(36px, 5vw, 56px);
    border-radius: clamp(22px, 3vw, 34px);
    box-shadow: 0 44px 90px -40px rgba(12, 45, 90, .6), 0 0 0 1px rgba(11, 26, 42, .06);
    animation: rvs 1s var(--ease) .15s both;
}

/* Gradasi tipis di bawah supaya teks/latar menyatu, bukan efek ilustratif */
.photo--hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 34%;
    background: linear-gradient(180deg, transparent, rgba(11, 26, 42, .28));
    pointer-events: none;
}

/* Foto di kartu contoh pekerjaan */
.photo--case {
    margin-top: 20px;
    border-radius: 18px;
}

/* Foto di kartu dua cara */
.photo--way {
    margin-top: 22px;
    border-radius: 20px;
}

/* Foto pita lebar antar-bagian */
.photo--band {
    margin: 0 0 32px;
    border-radius: clamp(22px, 3vw, 30px);
    box-shadow: 0 34px 70px -40px rgba(12, 45, 90, .55);
}
