/* ===== Community (VK) Block — Blue Edition ===== */
.community-concept {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(10,15,20,0) 0%, rgba(10,15,20,0.5) 100%);
}
.community-concept__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.community-concept__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.community-concept__title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

/* Header join button — синяя, полноценная */
.community-concept__join {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: #1a6fc4;
    border: 1px solid #2a85e0;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 18px rgba(26, 111, 196, 0.35);
}
.community-concept__join:hover {
    background: #2280d8;
    border-color: #3d9aee;
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 24px rgba(26, 111, 196, 0.55);
}

.community-concept__content {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 32px;
    align-items: start;
}

/* ── Left: VK card ── */
.community-concept__card {
    background: linear-gradient(135deg, rgba(26,111,196,0.18) 0%, rgba(26,111,196,0.06) 100%);
    border: 1px solid rgba(42, 133, 224, 0.45);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(26, 111, 196, 0.12);
}
.community-concept__card::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(26,111,196,0.22) 0%, transparent 70%);
    pointer-events: none;
}
.community-concept__logo {
    width: 80px;
    height: 80px;
    background: rgba(26,111,196,0.2);
    border: 2px solid rgba(42,133,224,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 0 20px rgba(26,111,196,0.3);
}
.community-concept__name {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.community-concept__desc {
    font-size: 13px;
    color: #8aafd4;
    margin-bottom: 20px;
}
.community-concept__stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    text-align: left;
}
.community-concept__stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a8c4e0;
    font-size: 13px;
    padding: 8px 12px;
    background: rgba(26,111,196,0.1);
    border: 1px solid rgba(42,133,224,0.2);
    border-radius: 8px;
}
.community-concept__stat svg {
    color: #4da3f5;
    flex-shrink: 0;
}

/* VK кнопка — насыщенно синяя, полноценная */
.community-concept__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #1a6fc4, #1259a8);
    border: 1px solid rgba(42,133,224,0.6);
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(26,111,196,0.4);
    letter-spacing: 0.3px;
}
.community-concept__btn:hover {
    background: linear-gradient(135deg, #2280d8, #1a6fc4);
    border-color: rgba(77,163,245,0.8);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 28px rgba(26,111,196,0.6);
}

/* Telegram кнопка — полноценная */
.community-concept__tg {
    margin-top: 12px;
}
.community-concept__tg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 18px;
    background: linear-gradient(135deg, rgba(42,171,238,0.18), rgba(42,171,238,0.08));
    border: 1px solid rgba(42,171,238,0.45);
    border-radius: 10px;
    color: #4dc6f5;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 12px rgba(42,171,238,0.15);
}
.community-concept__tg-btn:hover {
    background: linear-gradient(135deg, rgba(42,171,238,0.28), rgba(42,171,238,0.15));
    border-color: rgba(42,171,238,0.7);
    color: #7dd8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(42,171,238,0.3);
}

/* ── Right: feature rows ── */
.community-concept__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 4px;
}
.community-concept__feature {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(26,111,196,0.1) 0%, rgba(26,111,196,0.04) 100%);
    border: 1px solid rgba(42,133,224,0.25);
    border-radius: 14px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 12px rgba(26,111,196,0.06);
}
.community-concept__feature:hover {
    background: linear-gradient(135deg, rgba(26,111,196,0.18) 0%, rgba(26,111,196,0.08) 100%);
    border-color: rgba(42,133,224,0.5);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(26,111,196,0.15);
}
.community-concept__feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(26,111,196,0.25), rgba(26,111,196,0.12));
    border: 1px solid rgba(42,133,224,0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #4da3f5;
    box-shadow: 0 0 14px rgba(26,111,196,0.2);
}
.community-concept__feature-title {
    font-size: 15px;
    font-weight: 700;
    color: #d4e8ff;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}
.community-concept__feature-desc {
    font-size: 13px;
    color: #7ba3c8;
    line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .community-concept { padding: 48px 0; }
    .community-concept__header { flex-direction: column; gap: 16px; text-align: center; }
    .community-concept__content { grid-template-columns: 1fr; }
    .community-concept__title { font-size: 22px; }
    .community-concept__feature:hover { transform: none; }
}
