/* =============================================================================
   ENGAGE HUB — /engage
============================================================================= */

/* ─── HERO ─── */
.eng-hero {
    background: linear-gradient(135deg, #1a2e10 0%, #14161A 50%, #0e1012 100%);
    padding: 80px 0 70px;
}

.eng-hero-tagline {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-green);
    border-left: 4px solid var(--primary-green);
    padding-left: 14px;
    margin-bottom: 1.5rem;
    display: block;
}

.eng-hero-title {
    font-size: clamp(1.6rem, 2.6vw, 2.5rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.eng-hero-title span,
.eng-hero-title strong { color: var(--primary-green); }

.eng-hero-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 2rem;
}

.eng-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-green);
    border: 1px solid var(--primary-green);
    color: #ffffff;
    border-radius: var(--btn-radius);
    padding: 0.85rem 2rem;
    font-weight: 500;
    font-size: 0.875rem;
    height: auto;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
}
.eng-hero-btn-primary:hover { background: #96DC4B; border-color: #96DC4B; color: #ffffff; }

.eng-hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--btn-radius);
    padding: 0.85rem 2rem;
    font-weight: 500;
    font-size: 0.875rem;
    height: auto;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
}
.eng-hero-btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: #ffffff; }

/* Hero right — channel previews */
.eng-hero-channels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.eng-hero-channel-card {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.eng-hero-channel-card:hover {
    background: rgba(123, 185, 62, 0.1);
    border-color: rgba(123, 185, 62, 0.35);
    transform: translateX(4px);
}

.eng-hero-channel-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(123, 185, 62, 0.15);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.eng-hero-channel-body {
    flex: 1;
}

.eng-hero-channel-title {
    font-size: 0.92rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.eng-hero-channel-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
}

.eng-hero-channel-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    transition: color 0.2s, transform 0.2s;
}
.eng-hero-channel-card:hover .eng-hero-channel-arrow {
    color: var(--primary-green);
    transform: translateX(3px);
}


/* ─── SECTION 2: CHANNEL CARDS ─── */
.eng-channels {
    background: #f5f5f5;
    padding: 5rem 0;
}

.eng-channels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.eng-card {
    background: #ffffff;
    border: 1px solid var(--neutral-200);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    transition: box-shadow 0.25s, transform 0.25s;
}
.eng-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.eng-card-head {
    background: var(--navbar-bg);
    padding: 2.25rem 2rem 1.75rem;
    display: flex;
    flex-direction: column;
}

.eng-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(123, 185, 62, 0.15);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.eng-card-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.eng-card-desc {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.eng-card-body {
    background: #ffffff;
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.eng-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}

.eng-card-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

.eng-card-features li i {
    color: var(--primary-green);
    font-size: 0.65rem;
    flex-shrink: 0;
}

.eng-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.1rem;
    background: var(--primary-green);
    border-radius: var(--btn-radius);
    font-size: 0.84rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s;
}
.eng-card-link i { color: #ffffff; transition: transform 0.2s; }
.eng-card-link:hover { background: #96DC4B; color: #ffffff; }
.eng-card-link:hover i { transform: translateX(4px); }


/* ─── SECTION 3: SOCIAL STRIP ─── */
.eng-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(123, 185, 62, 0.1);
    color: var(--primary-green);
    border: 1px solid rgba(123, 185, 62, 0.28);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.3rem 1rem;
    margin-bottom: 1rem;
}

.eng-social {
    background: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.eng-social-channels {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2.5rem;
}

.eng-social-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.eng-social-pill:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.eng-social-pill--li   { background: #0A66C2; color: #ffffff; }
.eng-social-pill--yt   { background: #FF0000; color: #ffffff; }
.eng-social-pill--x    { background: #000000; color: #ffffff; }
.eng-social-pill--fb   { background: #1877F2; color: #ffffff; }
.eng-social-pill--ig   { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #ffffff; }
.eng-social-pill--pt   { background: #E60023; color: #ffffff; }

.eng-social-note {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-top: 1.75rem;
}


/* ─── SECTION 4: CTA ─── */
.eng-cta {
    background: linear-gradient(135deg, #14161A 0%, #1a2e10 100%);
    padding: 5rem 0;
    text-align: center;
}

.eng-cta-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(123, 185, 62, 0.9);
    display: block;
    margin-bottom: 1rem;
}

.eng-cta-title {
    font-size: clamp(1.5rem, 2.2vw, 2.2rem);
    font-weight: 300;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.eng-cta-sub {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.eng-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-green);
    border: 1px solid var(--primary-green);
    color: #ffffff;
    border-radius: var(--btn-radius);
    padding: 0.9rem 2rem;
    font-weight: 500;
    font-size: 0.875rem;
    height: auto;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
}
.eng-cta-btn-primary:hover { background: #96DC4B; border-color: #96DC4B; color: #ffffff; }

.eng-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--btn-radius);
    padding: 0.9rem 2rem;
    font-weight: 500;
    font-size: 0.875rem;
    height: auto;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
}
.eng-cta-btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: #ffffff; }


/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .eng-hero { padding: 60px 0 50px; }
    .eng-hero-subtitle { max-width: 100%; text-align: center; }
    /* Hero mobile centering */
    .eng-hero .column:first-child { text-align: center; }
    .eng-hero .buttons { justify-content: center; }
    .eng-hero-channels { margin-top: 2.5rem; }

    .eng-channels { padding: 3.5rem 0; }
    .eng-channels-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    .eng-social { padding: 3.5rem 0; }
    .eng-social-pill { padding: 0.65rem 1.2rem; font-size: 0.82rem; }

    .eng-cta { padding: 3.5rem 0; }
    .eng-cta-sub { max-width: 100%; }
}
