/* Hero Section */
.phi-hero-marketing {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
    border-radius: 32px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin: 0;
    margin-top: calc(-1 * var(--header-height));
}

/* Content Container */
.phi-hero-marketing__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    width: 100%;
}

/* Main Heading */
.phi-hero-marketing__heading {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* Subheading */
.phi-hero-marketing__subheading {
    font-size: 19px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.6;
}

/* Button Container */
.phi-hero-marketing__button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.phi-hero-marketing__button a {
    text-decoration: none;
}

.phi-hero-marketing__button span {
    color: #000;
    background: #fff;
    border-radius: 84px;
   
    padding: 19px 42px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0;
    text-align: center;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

a.phi-hero-marketing__button-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 32px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 11px 12px;
    transition: all 0.3s ease;
}

svg.phi-hero-marketing__arrow-icon {
    stroke: #000;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

/* Button Hover Effects - Desktop Only */
@media (hover: hover) and (pointer: fine) {
    .phi-hero-marketing__button:hover span {
        background: #16e0a8;
        transform: translateX(2px);
    }

    .phi-hero-marketing__button:hover a.phi-hero-marketing__button-arrow {
        background: #16e0a8;
        transform: translateX(-2px);
    }

    .phi-hero-marketing__button:hover svg {
        transform: rotate(45deg);
    }
}

/* Animated Gradient Eclipses */
.phi-hero-marketing__eclipse {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.phi-hero-marketing__eclipse--1 {
    width: 600px;
    height: 600px;
    background: var(--background);
    top: -200px;
    left: -200px;
    animation-duration: 25s;
    animation-delay: 0s;
}

.phi-hero-marketing__eclipse--2 {
    width: 500px;
    height: 500px;
    background: var(--background);
    bottom: -150px;
    right: -150px;
    animation-duration: 30s;
    animation-delay: 5s;
    animation-name: float, pulse;
}

.phi-hero-marketing__eclipse--3 {
    width: 400px;
    height: 400px;
    background: var(--background);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 35s;
    animation-delay: 10s;
}

.phi-hero-marketing__eclipse--4 {
    width: 300px;
    height: 300px;
    background: var(--background);
    top: 20%;
    right: 20%;
    animation-duration: 28s;
    animation-delay: 15s;
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 50px) scale(0.9);
    }
    75% {
        transform: translate(30px, 30px) scale(1.05);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .phi-hero-marketing {
        min-height: 600px;
    }

    .phi-hero-marketing__content {
        max-width: 1000px;
    }

    .phi-hero-marketing__heading {
        font-size: 64px;
        margin-bottom: 24px;
        letter-spacing: -1px;
    }

    .phi-hero-marketing__subheading {
        font-size: 22px;
        margin-bottom: 44px;
    }

    .phi-hero-marketing__button span {
        padding: 20px 48px;
        font-size: 15px;
    }

    a.phi-hero-marketing__button-arrow {
        padding: 12px 14px;
    }

    svg.phi-hero-marketing__arrow-icon {
        width: 28px;
        height: 28px;
    }
}

/* Ultra-Wide Desktop (1600px+) */
@media (min-width: 1600px) {
    .phi-hero-marketing {
        min-height: 800px;
    }

    .phi-hero-marketing__heading {
        font-size: 72px;
        margin-bottom: 28px;
    }

    .phi-hero-marketing__subheading {
        font-size: 24px;
    }
}

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) and (min-width: 769px) {
    .phi-hero-marketing {
        min-height: 550px;
    }

    .phi-hero-marketing__heading {
        font-size: 48px;
        margin-bottom: 18px;
    }

    .phi-hero-marketing__subheading {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .phi-hero-marketing__eclipse--1 {
        width: 500px;
        height: 500px;
    }

    .phi-hero-marketing__eclipse--2 {
        width: 400px;
        height: 400px;
    }
}

/* Tablet & Mobile */
@media (max-width: 768px) {
    .phi-hero-marketing {
        min-height: 500px;
    }

    .phi-hero-marketing__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 400px;
        padding: 0 20px;
    }

    .phi-hero-marketing__heading {
        font-size: 36px;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }

    .phi-hero-marketing__subheading {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .phi-hero-marketing__button span {
        padding: 14px 32px;
        font-size: 13px;
    }

    a.phi-hero-marketing__button-arrow {
        padding: 8px 12px;
    }

    a.phi-hero-marketing__button-arrow svg {
        width: 24px;
        height: 24px;
    }

    .phi-hero-marketing__eclipse--1 {
        width: 400px;
        height: 400px;
        filter: blur(70px);
    }

    .phi-hero-marketing__eclipse--2 {
        width: 350px;
        height: 350px;
        filter: blur(70px);
    }

    .phi-hero-marketing__eclipse--3 {
        width: 300px;
        height: 300px;
        filter: blur(60px);
    }

    .phi-hero-marketing__eclipse--4 {
        width: 250px;
        height: 250px;
        filter: blur(60px);
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .phi-hero-marketing {
        min-height: 450px;
        border-bottom-right-radius: 24px;
        border-bottom-left-radius: 24px;
    }

    .phi-hero-marketing__content {
        height: 350px;
        padding: 0 16px;
    }

    .phi-hero-marketing__heading {
        font-size: 28px;
        margin-bottom: 12px;
        letter-spacing: -0.3px;
    }

    .phi-hero-marketing__subheading {
        font-size: 14px;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .phi-hero-marketing__button span {
        padding: 12px 24px;
        font-size: 12px;
        border-radius: 60px;
    }

    a.phi-hero-marketing__button-arrow {
        padding: 6px 10px;
        border-radius: 24px;
    }

    a.phi-hero-marketing__button-arrow svg {
        width: 20px;
        height: 20px;
    }

    .phi-hero-marketing__eclipse--1 {
        width: 300px;
        height: 300px;
        filter: blur(60px);
        top: -150px;
        left: -150px;
    }

    .phi-hero-marketing__eclipse--2 {
        width: 250px;
        height: 250px;
        filter: blur(60px);
        bottom: -100px;
        right: -100px;
    }

    .phi-hero-marketing__eclipse--3 {
        width: 200px;
        height: 200px;
        filter: blur(50px);
    }

    .phi-hero-marketing__eclipse--4 {
        width: 150px;
        height: 150px;
        filter: blur(50px);
    }
}

/* Extra Small Mobile (below 375px) */
@media (max-width: 374px) {
    .phi-hero-marketing {
        min-height: 400px;
    }

    .phi-hero-marketing__content {
        height: 320px;
    }

    .phi-hero-marketing__heading {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .phi-hero-marketing__subheading {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .phi-hero-marketing__button span {
        padding: 10px 20px;
        font-size: 11px;
    }

    a.phi-hero-marketing__button-arrow {
        padding: 5px 8px;
    }

    a.phi-hero-marketing__button-arrow svg {
        width: 18px;
        height: 18px;
    }
}

/* Touch Device - Active State */
@media (max-width: 768px) {
    .phi-hero-marketing__button:active span,
    .phi-hero-marketing__button:active a.phi-hero-marketing__button-arrow {
        transform: scale(0.98);
        opacity: 0.9;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .phi-hero-marketing__eclipse,
    .phi-hero-marketing__button span,
    a.phi-hero-marketing__button-arrow,
    svg.phi-hero-marketing__arrow-icon {
        animation: none;
        transition: none;
    }

    .phi-hero-marketing__button:hover span,
    .phi-hero-marketing__button:hover a.phi-hero-marketing__button-arrow,
    .phi-hero-marketing__button:hover svg {
        transform: none;
    }
}


.phi-hero-marketing .phi-hero-marketing__button-arrow {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 32px;
    padding: 11px 12px;
}