.angie-premium-hero-5829 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
}

.ph-bg-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.ph-bg-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.ph-bg-orbs .orb-1 {
    width: 400px;
    height: 400px;
    background: #ff6b35;
    top: -100px;
    right: -100px;
    animation: pulseOrb 5s infinite alternate;
}

.ph-bg-orbs .orb-2 {
    width: 300px;
    height: 300px;
    background: #4a569d;
    bottom: -50px;
    left: 20%;
    animation: pulseOrb 4s infinite alternate-reverse;
}

@keyframes pulseOrb {
    0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
    100% { transform: scale(1.1) translate(-20px, 20px); opacity: 0.5; }
}

.ph-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.ph-content {
    flex: 1;
    max-width: 600px;
}

.ph-tagline {
    display: block;
    font-size: 0.9rem;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
}

.ph-heading {
    font-size: 4rem;
    font-weight: 800;
    margin: 0 0 24px;
    line-height: 1.1;
    background: linear-gradient(90deg, #fff, #b0b0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ph-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0 0 40px;
}

.ph-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ph-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ph-btn-primary {
    background: #ff6b35;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.ph-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 107, 53, 0.4);
}

.ph-btn-secondary {
    background: transparent;
    color: #ff6b35 !important;
    border: 2px solid #ff6b35;
}

.ph-btn-secondary:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
}

.ph-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ph-image-wrapper {
    position: relative;
    max-width: 400px;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: glowPulse 3s infinite alternate;
}

.ph-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

@keyframes glowPulse {
    0% { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 107, 53, 0.1); }
    100% { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 25px rgba(255, 107, 53, 0.3); }
}

.ph-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.ph-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.ph-wheel {
    width: 4px;
    height: 8px;
    background: #ff6b35;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { top: 10px; opacity: 1; }
    50% { top: 25px; opacity: 0; }
    100% { top: 10px; opacity: 0; }
}

/* Animations */
.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-fade-in-right {
    opacity: 0;
    animation: fadeInRight 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 1199px) {
    .ph-heading { font-size: 3rem; }
    .ph-image-wrapper { max-width: 350px; }
}

@media (max-width: 767px) {
    .ph-container {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        padding-top: 60px;
        padding-bottom: 80px;
        gap: 40px;
    }
    
    .ph-heading { font-size: 2.5rem; }
    
    .ph-buttons { justify-content: center; }
    
    .ph-image-wrapper { max-width: 280px; margin: 0 auto; }
}