/* ==========================================================================
   Magazine-Style Sections - For Brands & For Agencies
   ========================================================================== */

/* Shared Section Styles */
.for-brands-section,
.for-agencies-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: linear-gradient(135deg, var(--moco-cream) 0%, var(--color-white) 100%);
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

/* Large Background Numbers */
.for-brands-section::before {
    content: '01';
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    font-family: var(--font-headline);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(132, 128, 92, 0.03);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.for-agencies-section::before {
    content: '02';
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    font-family: var(--font-headline);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(132, 128, 92, 0.03);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.for-brands-content,
.for-agencies-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography Elements */
.section-eyebrow {
    font-family: var(--font-headline);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--moco-olive);
    margin-bottom: 1.5rem;
}

.section-headline {
    font-family: var(--font-headline);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--color-charcoal);
    margin-bottom: 3rem;
}

.lead-text {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.lead-text p {
    font-size: 1.375rem;
    line-height: 1.6;
    color: var(--color-charcoal);
    font-weight: 400;
}

.pull-quote {
    max-width: 800px;
    margin: 0 auto 5rem;
    padding: 2rem 0;
    border-top: 3px solid var(--moco-olive);
    border-bottom: 3px solid var(--moco-olive);
}

.pull-quote p {
    font-family: var(--font-headline);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--color-charcoal);
    margin: 0;
    font-style: italic;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    margin-bottom: 5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.value-prop h3 {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
}

.value-prop p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(26, 27, 61, 0.8);
    margin: 0;
}

.closing-statement {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.closing-statement p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-charcoal);
    margin-bottom: 2rem;
}

.cta-text {
    margin-top: 2.5rem;
}

.cta-text a {
    font-family: var(--font-headline);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--moco-olive);
    text-decoration: none;
    border-bottom: 3px solid var(--moco-olive);
    padding-bottom: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.cta-text a:hover {
    color: var(--color-charcoal);
    border-bottom-color: var(--color-charcoal);
}

/* Content Separator */
.content-separator {
    padding: 6rem 0;
}

/* Responsive */
@media (max-width: 968px) {
    .value-props {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .for-brands-section,
    .for-agencies-section {
        padding: 5rem 0;
    }

    .section-headline {
        font-size: 2.5rem;
    }

    .pull-quote p {
        font-size: 1.5rem;
    }

    .for-brands-section::before,
    .for-agencies-section::before {
        font-size: 12rem;
    }

    .for-brands-section::before {
        right: -30px;
    }

    .for-agencies-section::before {
        left: -30px;
    }

    .content-separator {
        padding: 3rem 0;
    }
}
