/* assets/css/hero_v2.css */

.hero-v2-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 140px 92px 100px;
    /* Increased top padding */
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .hero-v2-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-height: 850px;
    }

    .mobile-banner-wrapper-v2 {
        display: none !important;
    }
}

.hero-v2-content {
    flex: 1;
    max-width: 650px;
    z-index: 2;
}

.hero-v2-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #FF4B91 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-v2-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4B5563;
    line-height: 1.3;
    margin-bottom: 30px;
}

.hero-v2-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-pill {
    background: #F3E8FF;
    color: #7C3AED;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-v2-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.hero-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 12px;
    font-weight: 500;
}

.hero-benefit-item svg {
    color: #10B981;
    width: 20px;
    height: 20px;
}

.hero-v2-cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center children (button and subtext) */
    gap: 10px;
    width: fit-content;
    /* Only as wide as the button */
}

@media (min-width: 1024px) {

    /* Keep the block aligned to the left of the content area, but internally centered */
    .hero-v2-cta-block {
        margin-left: 0;
    }
}

@media (max-width: 1023px) {
    .hero-v2-cta-block {
        margin: 0 auto;
    }
}

/* Button centenring and shimmer */
.btn-hero-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF4B91 0%, #7C3AED 100%);
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    padding: 18px 56px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(255, 75, 145, 0.3);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

@keyframes heroShimmer {
    0% {
        transform: translateX(-150%) skewX(-20deg);
    }

    100% {
        transform: translateX(150%) skewX(-20deg);
    }
}

.btn-hero-v2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    animation: heroShimmer 3s infinite ease-in-out;
    pointer-events: none;
}


.btn-hero-v2:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 75, 145, 0.5);
    filter: brightness(1.1);
}

.cta-subtext {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.hero-highlight-icon {
    flex-shrink: 0;
}

/* Mockup Layout */
.hero-v2-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 500px;
}

/* Reuse existing phone/halo styles if needed, but wrapped in v2 */
.hero-v2-visual .phone {
    margin-right: 0;
    transform: perspective(1000px) rotateY(-5deg);
}

/* Mobile Adjustments */
@media (max-width: 1023px) {
    .hero-v2-container {
        padding: 100px 20px 60px;
        /* Increased top padding to avoid header cutoff */
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-v2-title {
        font-size: 2.5rem;
    }

    .hero-v2-subtitle {
        font-size: 1.25rem;
    }

    .hero-v2-highlights {
        justify-content: center;
    }

    .hero-v2-benefits {
        display: inline-block;
        text-align: left;
    }

    .hero-v2-visual {
        margin-top: 50px;
        width: 100%;
        max-width: 320px;
    }

    .hero-v2-visual .phone {
        width: 280px;
        height: 560px;
    }
}