.pph-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: radial-gradient(circle at top right, #f4a261 0, #0b2545 45%, #020817 100%);
    color: #ffffff;
    box-sizing: border-box;
}

.pph-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.pph-inner {
    position: relative;
    z-index: 2;
    padding: 5vw;
    max-width: 650px;
}

.pph-title {
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    line-height: 1.05;
    font-weight: 800;
    margin: 0 0 1.5rem;
}

.pph-title .pph-underline {
    border-bottom: 3px solid #ff6b6b;
    display: inline-block;
    padding-bottom: 0.1em;
}

.pph-subtitle {
    font-size: 1rem;
    max-width: 480px;
    margin: 0 0 2rem;
    opacity: 0.9;
}

.pph-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #4c6fff, #8f3eff);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.03em;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.pph-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    filter: brightness(1.07);
}

@media (max-width: 768px) {
    .pph-inner {
        padding: 3rem 1.6rem;
    }
    .pph-title {
        font-size: 2.2rem;
    }
    .pph-subtitle {
        font-size: 0.95rem;
    }
}
