.prest-page-main {
    background: var(--white);
}

.prest-intro {
    max-width: 800px;
    margin: 0 auto 60px;
}

.prest-intro-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.prest-intro-highlight {
    color: var(--gold-dark);
}

.prest-intro-text {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.prest-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 0 auto 46px;
}

.prest-proof-item {
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    padding: 18px 16px;
    text-align: center;
}

.prest-proof-item strong {
    display: block;
    color: var(--navy-900);
    font-size: 1.45rem;
    line-height: 1.1;
    margin-bottom: 4px;
}

.prest-proof-item span {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    font-weight: 600;
}

.prest-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 1024px) {
    .prest-hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .prest-hub-grid { grid-template-columns: 1fr; }
}

.prest-hub-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-200);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.prest-hub-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    border-color: var(--gray-300);
}

.prest-hub-card::after {
    content: '→';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    font-size: 15px;
    z-index: 4;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.prest-hub-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.prest-hub-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--gray-100);
}

.prest-hub-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.prest-hub-card:hover .prest-hub-card-image img {
    transform: scale(1.05);
}

.prest-hub-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 270px;
}

.prest-hub-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-900);
    margin: 0 0 12px;
    line-height: 1.3;
}

.prest-hub-desc {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 24px;
    flex: 1;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prest-hub-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--navy-900);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    margin-top: auto;
    transition: color 0.3s;
}

.prest-hub-link svg {
    transition: transform 0.3s;
}
.prest-hub-card:hover .prest-hub-link {
    color: var(--gold-dark);
}
.prest-hub-card:hover .prest-hub-link svg {
    transform: translateX(4px);
}

.prest-hub-cta {
    text-align: center;
    margin-top: 100px;
    padding: 64px 24px;
    background: var(--navy-900);
    border-radius: 16px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.prest-process {
    margin-top: 86px;
}

.prest-cta-wrap {
    margin-top: 100px;
    padding: 0;
    background: transparent;
}

.prest-cta-wrap .cta-strip {
    border-radius: var(--r-lg);
    border: 1px solid var(--gray-200);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.prest-sticky-mobile-cta {
    display: none;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.prest-process-step h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    color: var(--navy-900);
}

.prest-process-step p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.55;
    font-size: 0.95rem;
}

.prest-sticky-mobile-cta {
    display: none;
}
.prest-hub-cta h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}
.prest-hub-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.prest-hub-cta .prest-cta-btn {
    padding: 14px 30px;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .prest-process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .prest-proof-strip {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 34px;
    }

    .prest-hub-grid {
        gap: 20px;
    }

    .prest-hub-card {
        box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    }

    .prest-hub-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    }

    .prest-hub-card-image {
        height: 200px;
    }

    .prest-hub-content {
        padding: 24px 20px;
        min-height: auto;
    }

    .prest-hub-title {
        font-size: 1.25rem;
    }

    .prest-hub-desc {
        font-size: 0.95rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .prest-process {
        margin-top: 64px;
    }

    .prest-cta-wrap {
        margin-top: 72px;
        padding-bottom: 90px;
    }

    .prest-sticky-mobile-cta {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--navy-900);
        color: var(--white);
        text-decoration: none;
        font-weight: 700;
        padding: 14px 16px;
        box-shadow: 0 12px 24px rgba(0,0,0,0.2);
        z-index: 1000;
    }
}
