.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, #1a0b2e 0%, #0b1021 45%, #02040a 100%);
    color: #ffffff;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.pph-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgoJPHJlY3Qgd2lkdGg9IjQiIGhlaWdodD0iNCIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIwLjAyIi8+Cjwvc3ZnPg==');
    pointer-events: none;
    z-index: 1;
}

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

.pph-inner {
    position: relative;
    z-index: 2;
    padding: 5vw;
    max-width: 700px;
    animation: pphFadeInUp 1.2s ease-out forwards;
}

@keyframes pphFadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.pph-title {
    font-size: clamp(2.8rem, 4.5vw, 5rem);
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 1.5rem;
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.pph-title .pph-underline {
    border-bottom: none;
    display: inline-block;
    padding-bottom: 0.05em;
    background: linear-gradient(90deg, #00f2fe, #4facfe, #00f2fe);
    background-size: 200% auto;
    color: transparent !important;
    -webkit-background-clip: text;
    background-clip: text;
    animation: pphShine 3s linear infinite;
    text-shadow: none;
}

@keyframes pphShine {
    to { background-position: 200% center; }
}

.pph-subtitle {
    font-size: 1.1rem;
    max-width: 540px;
    margin: 0 0 2.5rem;
    color: #e2e8f0 !important;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pph-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    color: #ffffff !important;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 25px rgba(79, 172, 254, 0.4), inset 0 2px 0 rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.pph-button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s ease;
}

.pph-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(79, 172, 254, 0.6), inset 0 2px 0 rgba(255,255,255,0.2);
    color: #ffffff !important;
}

.pph-button:hover::before {
    left: 100%;
}

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