/* Hero Section Styles */
.hero-section {
    background: var(--gradient-primary);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.trust-badge .stars {
    font-size: 14px;
}

.trust-badge .rating {
    font-size: 14px;
    font-weight: 600;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(90deg, #ffd89b 0%, #19547b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-cta .btn {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn-primary {
    background: white;
    color: var(--primary);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-cta .btn-outline-light {
    border-color: white;
    color: white;
}

.hero-cta .btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

.hero-features {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.feature-item i {
    font-size: 24px;
}

/* Hero Image/Illustration */
.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    position: relative;
    width: 100%;
    height: 100%;
}

.phone-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 480px;
    background: #fff;
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 12px #1a1a1a,
        0 50px 100px rgba(0, 0, 0, 0.4),
        inset 0 0 0 4px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    z-index: 5;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 6;
}

.phone-mockup i {
    font-size: 120px;
    color: var(--primary);
}

.floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: bounce 4s ease-in-out infinite;
    z-index: 6;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.95);
}

.floating-icon.instagram {
    top: 10%;
    right: 15%;
    color: #E1306C;
    animation-delay: 0s;
}

.floating-icon.tiktok {
    bottom: 25%;
    left: 5%;
    color: #000000;
    animation-delay: 0.5s;
}

.floating-icon.youtube {
    top: 55%;
    right: 5%;
    color: #FF0000;
    animation-delay: 1s;
}

.floating-icon.facebook {
    top: 30%;
    left: 10%;
    color: #1877F2;
    animation-delay: 1.5s;
}

/* Wave Divider */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) translate(-50%, -50%);
    }

    50% {
        transform: translateY(-20px) translate(-50%, -50%);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 80px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .hero-image {
        height: 400px;
    }

    .phone-mockup {
        width: 150px;
        height: 300px;
    }

    .phone-mockup i {
        font-size: 80px;
    }

    .floating-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}