.audience-section {
    padding: 5rem 0;
    background: #fff;
}

.btn-discover-services {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-discover-services:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(236, 172, 50, 0.15);
}

.btn-discover-services i {
    transition: transform 0.3s ease;
}

.btn-discover-services:hover i {
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .btn-discover-services {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.audience-card {
    background: #fdfdfd;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(236, 172, 50, 0.08);
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(236, 172, 50, 0.1);
    border-color: rgba(236, 172, 50, 0.3);
}

.audience-icon {
    width: 70px;
    height: 70px;
    background: rgba(236, 172, 50, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.audience-card:hover .audience-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(10deg);
}

.audience-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

@media (max-width: 991.98px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

.how-it-works-brief {
    padding: 5rem 0;
    background: #f8fafc;
}

.brief-card {
    background: #fff;
    border-radius: 30px;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.brief-content {
    flex: 1;
}

.brief-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.brief-content p {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.brief-image-box {
    width: 150px;
    height: 150px;
    background: rgba(236, 172, 50, 0.1);
    color: var(--primary-color);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    transform: rotate(-5deg);
}

@media (max-width: 991px) {
    .brief-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2.5rem;
    }

    .brief-content .section-title {
        font-size: 2rem;
    }
}

.main-cta-section {
    padding: 3rem 0;
    background: #fff;
}

.cta-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 40px;
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 172, 50, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.cta-desc {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-color);
    color: #fff;
    padding: 1.4rem 4rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(236, 172, 50, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(236, 172, 50, 0.4);
    color: #fff;
}

.cta-contacts {
    margin-top: 4rem;
    position: relative;
    z-index: 1;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-contacts p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-contacts .numbers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 1.2rem;
    font-weight: 700;
}

.cta-contacts .numbers a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-contacts .numbers a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.cta-contacts .sep {
    color: #334155;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.2rem;
    }

    .cta-desc {
        font-size: 1.1rem;
    }

    .cta-box {
        padding: 4rem 1.5rem;
    }

    .btn-cta-primary {
        padding: 1.1rem 2.5rem;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }

    .cta-contacts .numbers {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-contacts .sep {
        display: none;
    }
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}