/* ===== GENERAL ===== */

.hero-streaming {
    position: relative;
    background: linear-gradient(135deg, #f7f1e8 50%, #f5c44f 50%);
    overflow: hidden;
    padding: 120px 8%;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
    margin: auto;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(0,0,0,0.08);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-streaming h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: .95;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: -3px;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 40px;
    color: #2d2d2d;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary {
    background: #000;
    color: white;
    padding: 18px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    border: 2px solid #000;
    color: #000;
    padding: 18px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
}

/* TRUST */

.hero-trust {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item h3 {
    font-size: 2rem;
    margin-bottom: 6px;
    font-weight: 800;
}

.trust-item p {
    opacity: .75;
}

/* IMAGE */

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 650px;
    object-fit: contain;
}

/* FLOATING CARD */

.floating-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: white;
    border-radius: 18px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.live-dot {
    width: 14px;
    height: 14px;
    background: #ff2b63;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }

}

/* ===== SERVICES ===== */

.services-streaming {
    padding: 120px 8%;
    background: #f7f7f7;
}

.section-header {
    max-width: 850px;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    margin-bottom: 18px;
    font-weight: 700;
    color: #ff2b63;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    margin-bottom: 24px;
    font-weight: 800;
}

.section-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 650px;
}

/* GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 28px;
    padding: 40px;
    transition: .3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-number {
    font-size: 4rem;
    font-weight: 800;
    opacity: .08;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.7rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.service-card p {
    line-height: 1.8;
    color: #555;
}

/* CTA STRIP */

.cta-strip {
    background: #ff005c;
    padding: 60px 8%;
    color: white;
}

.cta-strip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-strip h2 {
    font-size: 3rem;
    margin-bottom: 12px;
}

.cta-strip-button {
    border: 2px solid white;
    color: white;
    padding: 18px 30px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
}

.cta-strip-button:hover {
    background: white;
    color: #ff005c;
}

/* ===== MOBILE ===== */

@media(max-width: 980px) {

    .hero-container {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-strip-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-streaming {
        padding-top: 80px;
    }

    .hero-streaming h1 {
        letter-spacing: -1px;
    }

    .floating-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
    }

}