/* ============================================================
   agencies.css
   Minimal page overrides for /agencies landing page
   ============================================================ */

/* ── Hero Section Override ────────────────────────────────── */
.universal-hero.agencies-hero {
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(67, 56, 202, 0.06) 0%, transparent 100%),
        linear-gradient(180deg, #C7D2FE 0%, #EEF2FF 25%, #FFFFFF 50%, #FAFAFA 100%);
}

.universal-hero.agencies-hero .hero-content {
    max-width: 100%;
}

.universal-hero.agencies-hero .hero-title {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.universal-hero.agencies-hero .hero-subtitle {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.universal-hero.agencies-hero .hero-title .gradient-text {
    background: linear-gradient(135deg, #4338CA 0%, #6366F1 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

/* Ghost outline feature pills on agencies page */
.universal-hero.agencies-hero .hero-feature {
    background: var(--accent-light, rgba(67, 56, 202, 0.06));
    color: var(--accent, #4338ca);
    box-shadow: none;
    border: 1px solid rgba(67, 56, 202, 0.15);
    font-weight: var(--fw-medium, 500);
}

.universal-hero.agencies-hero .hero-feature i {
    color: var(--accent, #4338ca);
}

.universal-hero.agencies-hero .hero-feature:hover {
    background: var(--accent, #4338ca);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 56, 202, 0.2);
}

.universal-hero.agencies-hero .hero-feature:hover i {
    color: #FFFFFF;
}

/* ── Target Audiences Layout Tweaks ───────────────────────── */
.no-code-section.agencies-audiences {
    background: #FAFAFA;
}

.agencies-audiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.2rem;
}

.audience-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.2rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(67, 56, 202, 0.15);
}

.audience-card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.audience-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(67, 56, 202, 0.06);
    border-radius: 10px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.audience-icon i {
    font-size: 1.5rem;
    color: var(--primary-color, #4338ca);
}

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.audience-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ── Section Centering & Badge Alignment ──────────────────── */
.no-code-section .section-header,
.split-showcase-section .section-header,
.tier-cards-section .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3.5rem;
}

/* ── Centering CTA Button & Adding Margins ───────────────── */
.no-code-section-cta {
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
}

.no-code-section.agencies-audiences {
    padding-bottom: 6rem;
}
